Skip to content

Commit c8c24e7

Browse files
authored
feat: Sync with Seam API via c0a0cc1ba65e825dd2106979b9ccaa77da150736 (#2724)
1 parent b83203c commit c8c24e7

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61409,6 +61409,8 @@ export default {
6140961409
minItems: 1,
6141061410
type: 'array',
6141161411
},
61412+
allow_shared_email_and_phone_across_user_identities:
61413+
{ type: 'boolean' },
6141261414
card_count_on_reservation_create: {
6141361415
minimum: 0,
6141461416
type: 'integer',
@@ -61710,6 +61712,8 @@ export default {
6171061712
minItems: 1,
6171161713
type: 'array',
6171261714
},
61715+
allow_shared_email_and_phone_across_user_identities:
61716+
{ type: 'boolean' },
6171361717
card_count_on_reservation_create: {
6171461718
minimum: 0,
6171561719
type: 'integer',
@@ -61997,6 +62001,8 @@ export default {
6199762001
minItems: 1,
6199862002
type: 'array',
6199962003
},
62004+
allow_shared_email_and_phone_across_user_identities:
62005+
{ type: 'boolean' },
6200062006
card_count_on_reservation_create: {
6200162007
minimum: 0,
6200262008
type: 'integer',
@@ -62285,6 +62291,8 @@ export default {
6228562291
minItems: 1,
6228662292
type: 'array',
6228762293
},
62294+
allow_shared_email_and_phone_across_user_identities:
62295+
{ type: 'boolean' },
6228862296
card_count_on_reservation_create: {
6228962297
minimum: 0,
6229062298
type: 'integer',
@@ -63548,6 +63556,8 @@ export default {
6354863556
minItems: 1,
6354963557
type: 'array',
6355063558
},
63559+
allow_shared_email_and_phone_across_user_identities:
63560+
{ type: 'boolean' },
6355163561
card_count_on_reservation_create: {
6355263562
minimum: 0,
6355363563
type: 'integer',
@@ -63848,6 +63858,8 @@ export default {
6384863858
minItems: 1,
6384963859
type: 'array',
6385063860
},
63861+
allow_shared_email_and_phone_across_user_identities:
63862+
{ type: 'boolean' },
6385163863
card_count_on_reservation_create: {
6385263864
minimum: 0,
6385363865
type: 'integer',
@@ -64148,6 +64160,8 @@ export default {
6414864160
minItems: 1,
6414964161
type: 'array',
6415064162
},
64163+
allow_shared_email_and_phone_across_user_identities:
64164+
{ type: 'boolean' },
6415164165
card_count_on_reservation_create: {
6415264166
minimum: 0,
6415364167
type: 'integer',
@@ -64436,6 +64450,8 @@ export default {
6443664450
minItems: 1,
6443764451
type: 'array',
6443864452
},
64453+
allow_shared_email_and_phone_across_user_identities:
64454+
{ type: 'boolean' },
6443964455
card_count_on_reservation_create: {
6444064456
minimum: 0,
6444164457
type: 'integer',

src/lib/seam/connect/route-types.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70995,6 +70995,9 @@ export type Routes = {
7099570995
code_count_on_reservation_create?: number | undefined
7099670996
instant_key_max_use_count?: number | undefined
7099770997
prefer_guest_phone_last4_as_code?: boolean | undefined
70998+
allow_shared_email_and_phone_across_user_identities?:
70999+
| boolean
71000+
| undefined
7099871001
}
7099971002
}
7100071003
| undefined
@@ -71107,6 +71110,9 @@ export type Routes = {
7110771110
code_count_on_reservation_create?: number | undefined
7110871111
instant_key_max_use_count?: number | undefined
7110971112
prefer_guest_phone_last4_as_code?: boolean | undefined
71113+
allow_shared_email_and_phone_across_user_identities?:
71114+
| boolean
71115+
| undefined
7111071116
}
7111171117
}
7111271118
| undefined
@@ -71440,6 +71446,9 @@ export type Routes = {
7144071446
code_count_on_reservation_create?: number | undefined
7144171447
instant_key_max_use_count?: number | undefined
7144271448
prefer_guest_phone_last4_as_code?: boolean | undefined
71449+
allow_shared_email_and_phone_across_user_identities?:
71450+
| boolean
71451+
| undefined
7144371452
}
7144471453
}
7144571454
| undefined
@@ -71553,6 +71562,9 @@ export type Routes = {
7155371562
code_count_on_reservation_create?: number | undefined
7155471563
instant_key_max_use_count?: number | undefined
7155571564
prefer_guest_phone_last4_as_code?: boolean | undefined
71565+
allow_shared_email_and_phone_across_user_identities?:
71566+
| boolean
71567+
| undefined
7155671568
}
7155771569
}
7155871570
| undefined

0 commit comments

Comments
 (0)