@seamapi/types 1.721.2 → 1.723.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 +32 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/dist/index.cjs +32 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +18 -0
- package/lib/seam/connect/openapi.js +32 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -2
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -55573,8 +55573,10 @@ export type Routes = {
|
|
|
55573
55573
|
space_key: string;
|
|
55574
55574
|
name: string | null;
|
|
55575
55575
|
}[];
|
|
55576
|
+
access_grant_id: string | null;
|
|
55576
55577
|
access_methods: {
|
|
55577
55578
|
access_method_id: string;
|
|
55579
|
+
access_grant_id: string;
|
|
55578
55580
|
mode: string;
|
|
55579
55581
|
is_issued: boolean;
|
|
55580
55582
|
is_card_encoding_required?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -57150,9 +57150,18 @@ export default {
|
|
|
57150
57150
|
ok: { type: 'boolean' },
|
|
57151
57151
|
reservation: {
|
|
57152
57152
|
properties: {
|
|
57153
|
+
access_grant_id: {
|
|
57154
|
+
format: 'uuid',
|
|
57155
|
+
nullable: true,
|
|
57156
|
+
type: 'string',
|
|
57157
|
+
},
|
|
57153
57158
|
access_methods: {
|
|
57154
57159
|
items: {
|
|
57155
57160
|
properties: {
|
|
57161
|
+
access_grant_id: {
|
|
57162
|
+
format: 'uuid',
|
|
57163
|
+
type: 'string',
|
|
57164
|
+
},
|
|
57156
57165
|
access_method_id: {
|
|
57157
57166
|
format: 'uuid',
|
|
57158
57167
|
type: 'string',
|
|
@@ -57166,7 +57175,12 @@ export default {
|
|
|
57166
57175
|
is_issued: { type: 'boolean' },
|
|
57167
57176
|
mode: { type: 'string' },
|
|
57168
57177
|
},
|
|
57169
|
-
required: [
|
|
57178
|
+
required: [
|
|
57179
|
+
'access_method_id',
|
|
57180
|
+
'access_grant_id',
|
|
57181
|
+
'mode',
|
|
57182
|
+
'is_issued',
|
|
57183
|
+
],
|
|
57170
57184
|
type: 'object',
|
|
57171
57185
|
},
|
|
57172
57186
|
type: 'array',
|
|
@@ -57212,6 +57226,7 @@ export default {
|
|
|
57212
57226
|
'created_at',
|
|
57213
57227
|
'guest_name',
|
|
57214
57228
|
'spaces',
|
|
57229
|
+
'access_grant_id',
|
|
57215
57230
|
'access_methods',
|
|
57216
57231
|
],
|
|
57217
57232
|
type: 'object',
|
|
@@ -57270,9 +57285,18 @@ export default {
|
|
|
57270
57285
|
ok: { type: 'boolean' },
|
|
57271
57286
|
reservation: {
|
|
57272
57287
|
properties: {
|
|
57288
|
+
access_grant_id: {
|
|
57289
|
+
format: 'uuid',
|
|
57290
|
+
nullable: true,
|
|
57291
|
+
type: 'string',
|
|
57292
|
+
},
|
|
57273
57293
|
access_methods: {
|
|
57274
57294
|
items: {
|
|
57275
57295
|
properties: {
|
|
57296
|
+
access_grant_id: {
|
|
57297
|
+
format: 'uuid',
|
|
57298
|
+
type: 'string',
|
|
57299
|
+
},
|
|
57276
57300
|
access_method_id: {
|
|
57277
57301
|
format: 'uuid',
|
|
57278
57302
|
type: 'string',
|
|
@@ -57286,7 +57310,12 @@ export default {
|
|
|
57286
57310
|
is_issued: { type: 'boolean' },
|
|
57287
57311
|
mode: { type: 'string' },
|
|
57288
57312
|
},
|
|
57289
|
-
required: [
|
|
57313
|
+
required: [
|
|
57314
|
+
'access_method_id',
|
|
57315
|
+
'access_grant_id',
|
|
57316
|
+
'mode',
|
|
57317
|
+
'is_issued',
|
|
57318
|
+
],
|
|
57290
57319
|
type: 'object',
|
|
57291
57320
|
},
|
|
57292
57321
|
type: 'array',
|
|
@@ -57332,6 +57361,7 @@ export default {
|
|
|
57332
57361
|
'created_at',
|
|
57333
57362
|
'guest_name',
|
|
57334
57363
|
'spaces',
|
|
57364
|
+
'access_grant_id',
|
|
57335
57365
|
'access_methods',
|
|
57336
57366
|
],
|
|
57337
57367
|
type: 'object',
|
|
@@ -66577,8 +66577,10 @@ export type Routes = {
|
|
|
66577
66577
|
space_key: string
|
|
66578
66578
|
name: string | null
|
|
66579
66579
|
}[]
|
|
66580
|
+
access_grant_id: string | null
|
|
66580
66581
|
access_methods: {
|
|
66581
66582
|
access_method_id: string
|
|
66583
|
+
access_grant_id: string
|
|
66582
66584
|
mode: string
|
|
66583
66585
|
is_issued: boolean
|
|
66584
66586
|
is_card_encoding_required?: boolean | undefined
|