@seamapi/types 1.757.0 → 1.759.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +44 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +82 -0
- package/dist/index.cjs +44 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +65 -0
- package/lib/seam/connect/openapi.js +42 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +17 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +54 -2
- package/src/lib/seam/connect/route-types.ts +25 -0
|
@@ -13055,6 +13055,10 @@ export type Routes = {
|
|
|
13055
13055
|
acs_entrance_id?: string | undefined;
|
|
13056
13056
|
/** Filter unmanaged Access Grants by reservation_key. */
|
|
13057
13057
|
reservation_key?: string | undefined;
|
|
13058
|
+
/** Numerical limit on the number of unmanaged access grants to return. */
|
|
13059
|
+
limit?: number;
|
|
13060
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
13061
|
+
page_cursor?: (string | undefined) | null;
|
|
13058
13062
|
};
|
|
13059
13063
|
formData: {};
|
|
13060
13064
|
jsonResponse: {
|
|
@@ -13207,6 +13211,15 @@ export type Routes = {
|
|
|
13207
13211
|
/** ID of user identity to which the Access Grant gives access. */
|
|
13208
13212
|
user_identity_id?: string | undefined;
|
|
13209
13213
|
}[];
|
|
13214
|
+
/** Information about the current page of results. */
|
|
13215
|
+
pagination: {
|
|
13216
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
13217
|
+
next_page_cursor: string | null;
|
|
13218
|
+
/** Indicates whether there is another page of results after this one. */
|
|
13219
|
+
has_next_page: boolean;
|
|
13220
|
+
/** URL to get the next page of results. */
|
|
13221
|
+
next_page_url: string | null;
|
|
13222
|
+
};
|
|
13210
13223
|
};
|
|
13211
13224
|
maxDuration: undefined;
|
|
13212
13225
|
};
|
|
@@ -59655,6 +59668,7 @@ export type Routes = {
|
|
|
59655
59668
|
code_count_on_reservation_create?: number | undefined;
|
|
59656
59669
|
instant_key_max_use_count?: number | undefined;
|
|
59657
59670
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
59671
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
59658
59672
|
};
|
|
59659
59673
|
} | undefined;
|
|
59660
59674
|
reservation_time_updated?: {
|
|
@@ -59738,6 +59752,7 @@ export type Routes = {
|
|
|
59738
59752
|
code_count_on_reservation_create?: number | undefined;
|
|
59739
59753
|
instant_key_max_use_count?: number | undefined;
|
|
59740
59754
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
59755
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
59741
59756
|
};
|
|
59742
59757
|
} | undefined;
|
|
59743
59758
|
reservation_time_updated?: {
|
|
@@ -60034,6 +60049,7 @@ export type Routes = {
|
|
|
60034
60049
|
code_count_on_reservation_create?: number | undefined;
|
|
60035
60050
|
instant_key_max_use_count?: number | undefined;
|
|
60036
60051
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
60052
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
60037
60053
|
};
|
|
60038
60054
|
} | undefined;
|
|
60039
60055
|
reservation_time_updated?: {
|
|
@@ -60116,6 +60132,7 @@ export type Routes = {
|
|
|
60116
60132
|
code_count_on_reservation_create?: number | undefined;
|
|
60117
60133
|
instant_key_max_use_count?: number | undefined;
|
|
60118
60134
|
prefer_guest_phone_last4_as_code?: boolean | undefined;
|
|
60135
|
+
allow_shared_email_and_phone_across_user_identities?: boolean | undefined;
|
|
60119
60136
|
};
|
|
60120
60137
|
} | undefined;
|
|
60121
60138
|
reservation_time_updated?: {
|
package/package.json
CHANGED
|
@@ -36106,6 +36106,27 @@ export default {
|
|
|
36106
36106
|
type: 'string',
|
|
36107
36107
|
},
|
|
36108
36108
|
},
|
|
36109
|
+
{
|
|
36110
|
+
in: 'query',
|
|
36111
|
+
name: 'limit',
|
|
36112
|
+
schema: {
|
|
36113
|
+
default: 500,
|
|
36114
|
+
description:
|
|
36115
|
+
'Numerical limit on the number of unmanaged access grants to return.',
|
|
36116
|
+
format: 'float',
|
|
36117
|
+
type: 'number',
|
|
36118
|
+
},
|
|
36119
|
+
},
|
|
36120
|
+
{
|
|
36121
|
+
in: 'query',
|
|
36122
|
+
name: 'page_cursor',
|
|
36123
|
+
schema: {
|
|
36124
|
+
description:
|
|
36125
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
36126
|
+
nullable: true,
|
|
36127
|
+
type: 'string',
|
|
36128
|
+
},
|
|
36129
|
+
},
|
|
36109
36130
|
],
|
|
36110
36131
|
responses: {
|
|
36111
36132
|
200: {
|
|
@@ -36687,8 +36708,9 @@ export default {
|
|
|
36687
36708
|
type: 'array',
|
|
36688
36709
|
},
|
|
36689
36710
|
ok: { type: 'boolean' },
|
|
36711
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
36690
36712
|
},
|
|
36691
|
-
required: ['access_grants', 'ok'],
|
|
36713
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
36692
36714
|
type: 'object',
|
|
36693
36715
|
},
|
|
36694
36716
|
},
|
|
@@ -36733,6 +36755,19 @@ export default {
|
|
|
36733
36755
|
format: 'uuid',
|
|
36734
36756
|
type: 'string',
|
|
36735
36757
|
},
|
|
36758
|
+
limit: {
|
|
36759
|
+
default: 500,
|
|
36760
|
+
description:
|
|
36761
|
+
'Numerical limit on the number of unmanaged access grants to return.',
|
|
36762
|
+
format: 'float',
|
|
36763
|
+
type: 'number',
|
|
36764
|
+
},
|
|
36765
|
+
page_cursor: {
|
|
36766
|
+
description:
|
|
36767
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
36768
|
+
nullable: true,
|
|
36769
|
+
type: 'string',
|
|
36770
|
+
},
|
|
36736
36771
|
reservation_key: {
|
|
36737
36772
|
description:
|
|
36738
36773
|
'Filter unmanaged Access Grants by reservation_key.',
|
|
@@ -37330,8 +37365,9 @@ export default {
|
|
|
37330
37365
|
type: 'array',
|
|
37331
37366
|
},
|
|
37332
37367
|
ok: { type: 'boolean' },
|
|
37368
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
37333
37369
|
},
|
|
37334
|
-
required: ['access_grants', 'ok'],
|
|
37370
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
37335
37371
|
type: 'object',
|
|
37336
37372
|
},
|
|
37337
37373
|
},
|
|
@@ -61409,6 +61445,8 @@ export default {
|
|
|
61409
61445
|
minItems: 1,
|
|
61410
61446
|
type: 'array',
|
|
61411
61447
|
},
|
|
61448
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
61449
|
+
{ type: 'boolean' },
|
|
61412
61450
|
card_count_on_reservation_create: {
|
|
61413
61451
|
minimum: 0,
|
|
61414
61452
|
type: 'integer',
|
|
@@ -61710,6 +61748,8 @@ export default {
|
|
|
61710
61748
|
minItems: 1,
|
|
61711
61749
|
type: 'array',
|
|
61712
61750
|
},
|
|
61751
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
61752
|
+
{ type: 'boolean' },
|
|
61713
61753
|
card_count_on_reservation_create: {
|
|
61714
61754
|
minimum: 0,
|
|
61715
61755
|
type: 'integer',
|
|
@@ -61997,6 +62037,8 @@ export default {
|
|
|
61997
62037
|
minItems: 1,
|
|
61998
62038
|
type: 'array',
|
|
61999
62039
|
},
|
|
62040
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
62041
|
+
{ type: 'boolean' },
|
|
62000
62042
|
card_count_on_reservation_create: {
|
|
62001
62043
|
minimum: 0,
|
|
62002
62044
|
type: 'integer',
|
|
@@ -62285,6 +62327,8 @@ export default {
|
|
|
62285
62327
|
minItems: 1,
|
|
62286
62328
|
type: 'array',
|
|
62287
62329
|
},
|
|
62330
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
62331
|
+
{ type: 'boolean' },
|
|
62288
62332
|
card_count_on_reservation_create: {
|
|
62289
62333
|
minimum: 0,
|
|
62290
62334
|
type: 'integer',
|
|
@@ -63548,6 +63592,8 @@ export default {
|
|
|
63548
63592
|
minItems: 1,
|
|
63549
63593
|
type: 'array',
|
|
63550
63594
|
},
|
|
63595
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
63596
|
+
{ type: 'boolean' },
|
|
63551
63597
|
card_count_on_reservation_create: {
|
|
63552
63598
|
minimum: 0,
|
|
63553
63599
|
type: 'integer',
|
|
@@ -63848,6 +63894,8 @@ export default {
|
|
|
63848
63894
|
minItems: 1,
|
|
63849
63895
|
type: 'array',
|
|
63850
63896
|
},
|
|
63897
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
63898
|
+
{ type: 'boolean' },
|
|
63851
63899
|
card_count_on_reservation_create: {
|
|
63852
63900
|
minimum: 0,
|
|
63853
63901
|
type: 'integer',
|
|
@@ -64148,6 +64196,8 @@ export default {
|
|
|
64148
64196
|
minItems: 1,
|
|
64149
64197
|
type: 'array',
|
|
64150
64198
|
},
|
|
64199
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
64200
|
+
{ type: 'boolean' },
|
|
64151
64201
|
card_count_on_reservation_create: {
|
|
64152
64202
|
minimum: 0,
|
|
64153
64203
|
type: 'integer',
|
|
@@ -64436,6 +64486,8 @@ export default {
|
|
|
64436
64486
|
minItems: 1,
|
|
64437
64487
|
type: 'array',
|
|
64438
64488
|
},
|
|
64489
|
+
allow_shared_email_and_phone_across_user_identities:
|
|
64490
|
+
{ type: 'boolean' },
|
|
64439
64491
|
card_count_on_reservation_create: {
|
|
64440
64492
|
minimum: 0,
|
|
64441
64493
|
type: 'integer',
|
|
@@ -14984,6 +14984,10 @@ export type Routes = {
|
|
|
14984
14984
|
acs_entrance_id?: string | undefined
|
|
14985
14985
|
/** Filter unmanaged Access Grants by reservation_key. */
|
|
14986
14986
|
reservation_key?: string | undefined
|
|
14987
|
+
/** Numerical limit on the number of unmanaged access grants to return. */
|
|
14988
|
+
limit?: number
|
|
14989
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
14990
|
+
page_cursor?: (string | undefined) | null
|
|
14987
14991
|
}
|
|
14988
14992
|
formData: {}
|
|
14989
14993
|
jsonResponse: {
|
|
@@ -15146,6 +15150,15 @@ export type Routes = {
|
|
|
15146
15150
|
/** ID of user identity to which the Access Grant gives access. */
|
|
15147
15151
|
user_identity_id?: string | undefined
|
|
15148
15152
|
}[]
|
|
15153
|
+
/** Information about the current page of results. */
|
|
15154
|
+
pagination: {
|
|
15155
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
15156
|
+
next_page_cursor: string | null
|
|
15157
|
+
/** Indicates whether there is another page of results after this one. */
|
|
15158
|
+
has_next_page: boolean
|
|
15159
|
+
/** URL to get the next page of results. */
|
|
15160
|
+
next_page_url: string | null
|
|
15161
|
+
}
|
|
15149
15162
|
}
|
|
15150
15163
|
maxDuration: undefined
|
|
15151
15164
|
}
|
|
@@ -70995,6 +71008,9 @@ export type Routes = {
|
|
|
70995
71008
|
code_count_on_reservation_create?: number | undefined
|
|
70996
71009
|
instant_key_max_use_count?: number | undefined
|
|
70997
71010
|
prefer_guest_phone_last4_as_code?: boolean | undefined
|
|
71011
|
+
allow_shared_email_and_phone_across_user_identities?:
|
|
71012
|
+
| boolean
|
|
71013
|
+
| undefined
|
|
70998
71014
|
}
|
|
70999
71015
|
}
|
|
71000
71016
|
| undefined
|
|
@@ -71107,6 +71123,9 @@ export type Routes = {
|
|
|
71107
71123
|
code_count_on_reservation_create?: number | undefined
|
|
71108
71124
|
instant_key_max_use_count?: number | undefined
|
|
71109
71125
|
prefer_guest_phone_last4_as_code?: boolean | undefined
|
|
71126
|
+
allow_shared_email_and_phone_across_user_identities?:
|
|
71127
|
+
| boolean
|
|
71128
|
+
| undefined
|
|
71110
71129
|
}
|
|
71111
71130
|
}
|
|
71112
71131
|
| undefined
|
|
@@ -71440,6 +71459,9 @@ export type Routes = {
|
|
|
71440
71459
|
code_count_on_reservation_create?: number | undefined
|
|
71441
71460
|
instant_key_max_use_count?: number | undefined
|
|
71442
71461
|
prefer_guest_phone_last4_as_code?: boolean | undefined
|
|
71462
|
+
allow_shared_email_and_phone_across_user_identities?:
|
|
71463
|
+
| boolean
|
|
71464
|
+
| undefined
|
|
71443
71465
|
}
|
|
71444
71466
|
}
|
|
71445
71467
|
| undefined
|
|
@@ -71553,6 +71575,9 @@ export type Routes = {
|
|
|
71553
71575
|
code_count_on_reservation_create?: number | undefined
|
|
71554
71576
|
instant_key_max_use_count?: number | undefined
|
|
71555
71577
|
prefer_guest_phone_last4_as_code?: boolean | undefined
|
|
71578
|
+
allow_shared_email_and_phone_across_user_identities?:
|
|
71579
|
+
| boolean
|
|
71580
|
+
| undefined
|
|
71556
71581
|
}
|
|
71557
71582
|
}
|
|
71558
71583
|
| undefined
|