@seamapi/types 1.564.0 → 1.565.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 +90 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +136 -2
- package/dist/index.cjs +90 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +124 -2
- package/lib/seam/connect/openapi.js +88 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +88 -2
- package/src/lib/seam/connect/route-types.ts +12 -0
|
@@ -58229,10 +58229,17 @@ export type Routes = {
|
|
|
58229
58229
|
ends_at: string | null;
|
|
58230
58230
|
created_at: string;
|
|
58231
58231
|
guest_name: string | null;
|
|
58232
|
+
spaces: {
|
|
58233
|
+
space_id: string | null;
|
|
58234
|
+
space_key: string;
|
|
58235
|
+
name: string | null;
|
|
58236
|
+
}[];
|
|
58232
58237
|
access_methods: {
|
|
58233
58238
|
access_method_id: string;
|
|
58234
58239
|
mode: string;
|
|
58235
58240
|
is_issued: boolean;
|
|
58241
|
+
is_card_encoding_required?: boolean | undefined;
|
|
58242
|
+
code?: (string | null) | undefined;
|
|
58236
58243
|
}[];
|
|
58237
58244
|
};
|
|
58238
58245
|
};
|
|
@@ -58269,6 +58276,11 @@ export type Routes = {
|
|
|
58269
58276
|
mode: string;
|
|
58270
58277
|
is_issued: boolean;
|
|
58271
58278
|
}[];
|
|
58279
|
+
spaces: {
|
|
58280
|
+
space_id: string | null;
|
|
58281
|
+
space_key: string;
|
|
58282
|
+
name: string | null;
|
|
58283
|
+
}[];
|
|
58272
58284
|
}[];
|
|
58273
58285
|
/** Information about the current page of results. */
|
|
58274
58286
|
pagination: {
|
package/package.json
CHANGED
|
@@ -50021,7 +50021,20 @@ export default {
|
|
|
50021
50021
|
reservation: {
|
|
50022
50022
|
properties: {
|
|
50023
50023
|
access_methods: {
|
|
50024
|
-
items: {
|
|
50024
|
+
items: {
|
|
50025
|
+
properties: {
|
|
50026
|
+
access_method_id: {
|
|
50027
|
+
format: 'uuid',
|
|
50028
|
+
type: 'string',
|
|
50029
|
+
},
|
|
50030
|
+
code: { nullable: true, type: 'string' },
|
|
50031
|
+
is_card_encoding_required: { type: 'boolean' },
|
|
50032
|
+
is_issued: { type: 'boolean' },
|
|
50033
|
+
mode: { type: 'string' },
|
|
50034
|
+
},
|
|
50035
|
+
required: ['access_method_id', 'mode', 'is_issued'],
|
|
50036
|
+
type: 'object',
|
|
50037
|
+
},
|
|
50025
50038
|
type: 'array',
|
|
50026
50039
|
},
|
|
50027
50040
|
created_at: { format: 'date-time', type: 'string' },
|
|
@@ -50034,6 +50047,22 @@ export default {
|
|
|
50034
50047
|
name: { nullable: true, type: 'string' },
|
|
50035
50048
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
50036
50049
|
reservation_key: { type: 'string' },
|
|
50050
|
+
spaces: {
|
|
50051
|
+
items: {
|
|
50052
|
+
properties: {
|
|
50053
|
+
name: { nullable: true, type: 'string' },
|
|
50054
|
+
space_id: {
|
|
50055
|
+
format: 'uuid',
|
|
50056
|
+
nullable: true,
|
|
50057
|
+
type: 'string',
|
|
50058
|
+
},
|
|
50059
|
+
space_key: { type: 'string' },
|
|
50060
|
+
},
|
|
50061
|
+
required: ['space_id', 'space_key', 'name'],
|
|
50062
|
+
type: 'object',
|
|
50063
|
+
},
|
|
50064
|
+
type: 'array',
|
|
50065
|
+
},
|
|
50037
50066
|
starts_at: {
|
|
50038
50067
|
format: 'date-time',
|
|
50039
50068
|
nullable: true,
|
|
@@ -50048,6 +50077,7 @@ export default {
|
|
|
50048
50077
|
'ends_at',
|
|
50049
50078
|
'created_at',
|
|
50050
50079
|
'guest_name',
|
|
50080
|
+
'spaces',
|
|
50051
50081
|
'access_methods',
|
|
50052
50082
|
],
|
|
50053
50083
|
type: 'object',
|
|
@@ -50107,7 +50137,20 @@ export default {
|
|
|
50107
50137
|
reservation: {
|
|
50108
50138
|
properties: {
|
|
50109
50139
|
access_methods: {
|
|
50110
|
-
items: {
|
|
50140
|
+
items: {
|
|
50141
|
+
properties: {
|
|
50142
|
+
access_method_id: {
|
|
50143
|
+
format: 'uuid',
|
|
50144
|
+
type: 'string',
|
|
50145
|
+
},
|
|
50146
|
+
code: { nullable: true, type: 'string' },
|
|
50147
|
+
is_card_encoding_required: { type: 'boolean' },
|
|
50148
|
+
is_issued: { type: 'boolean' },
|
|
50149
|
+
mode: { type: 'string' },
|
|
50150
|
+
},
|
|
50151
|
+
required: ['access_method_id', 'mode', 'is_issued'],
|
|
50152
|
+
type: 'object',
|
|
50153
|
+
},
|
|
50111
50154
|
type: 'array',
|
|
50112
50155
|
},
|
|
50113
50156
|
created_at: { format: 'date-time', type: 'string' },
|
|
@@ -50120,6 +50163,22 @@ export default {
|
|
|
50120
50163
|
name: { nullable: true, type: 'string' },
|
|
50121
50164
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
50122
50165
|
reservation_key: { type: 'string' },
|
|
50166
|
+
spaces: {
|
|
50167
|
+
items: {
|
|
50168
|
+
properties: {
|
|
50169
|
+
name: { nullable: true, type: 'string' },
|
|
50170
|
+
space_id: {
|
|
50171
|
+
format: 'uuid',
|
|
50172
|
+
nullable: true,
|
|
50173
|
+
type: 'string',
|
|
50174
|
+
},
|
|
50175
|
+
space_key: { type: 'string' },
|
|
50176
|
+
},
|
|
50177
|
+
required: ['space_id', 'space_key', 'name'],
|
|
50178
|
+
type: 'object',
|
|
50179
|
+
},
|
|
50180
|
+
type: 'array',
|
|
50181
|
+
},
|
|
50123
50182
|
starts_at: {
|
|
50124
50183
|
format: 'date-time',
|
|
50125
50184
|
nullable: true,
|
|
@@ -50134,6 +50193,7 @@ export default {
|
|
|
50134
50193
|
'ends_at',
|
|
50135
50194
|
'created_at',
|
|
50136
50195
|
'guest_name',
|
|
50196
|
+
'spaces',
|
|
50137
50197
|
'access_methods',
|
|
50138
50198
|
],
|
|
50139
50199
|
type: 'object',
|
|
@@ -50242,6 +50302,18 @@ export default {
|
|
|
50242
50302
|
name: { nullable: true, type: 'string' },
|
|
50243
50303
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
50244
50304
|
reservation_key: { type: 'string' },
|
|
50305
|
+
spaces: {
|
|
50306
|
+
items: {
|
|
50307
|
+
properties: {
|
|
50308
|
+
name: { nullable: true, type: 'string' },
|
|
50309
|
+
space_id: { nullable: true, type: 'string' },
|
|
50310
|
+
space_key: { type: 'string' },
|
|
50311
|
+
},
|
|
50312
|
+
required: ['space_id', 'space_key', 'name'],
|
|
50313
|
+
type: 'object',
|
|
50314
|
+
},
|
|
50315
|
+
type: 'array',
|
|
50316
|
+
},
|
|
50245
50317
|
starts_at: {
|
|
50246
50318
|
format: 'date-time',
|
|
50247
50319
|
nullable: true,
|
|
@@ -50257,6 +50329,7 @@ export default {
|
|
|
50257
50329
|
'created_at',
|
|
50258
50330
|
'guest_name',
|
|
50259
50331
|
'access_methods',
|
|
50332
|
+
'spaces',
|
|
50260
50333
|
],
|
|
50261
50334
|
type: 'object',
|
|
50262
50335
|
},
|
|
@@ -50354,6 +50427,18 @@ export default {
|
|
|
50354
50427
|
name: { nullable: true, type: 'string' },
|
|
50355
50428
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
50356
50429
|
reservation_key: { type: 'string' },
|
|
50430
|
+
spaces: {
|
|
50431
|
+
items: {
|
|
50432
|
+
properties: {
|
|
50433
|
+
name: { nullable: true, type: 'string' },
|
|
50434
|
+
space_id: { nullable: true, type: 'string' },
|
|
50435
|
+
space_key: { type: 'string' },
|
|
50436
|
+
},
|
|
50437
|
+
required: ['space_id', 'space_key', 'name'],
|
|
50438
|
+
type: 'object',
|
|
50439
|
+
},
|
|
50440
|
+
type: 'array',
|
|
50441
|
+
},
|
|
50357
50442
|
starts_at: {
|
|
50358
50443
|
format: 'date-time',
|
|
50359
50444
|
nullable: true,
|
|
@@ -50369,6 +50454,7 @@ export default {
|
|
|
50369
50454
|
'created_at',
|
|
50370
50455
|
'guest_name',
|
|
50371
50456
|
'access_methods',
|
|
50457
|
+
'spaces',
|
|
50372
50458
|
],
|
|
50373
50459
|
type: 'object',
|
|
50374
50460
|
},
|
|
@@ -69352,10 +69352,17 @@ export type Routes = {
|
|
|
69352
69352
|
ends_at: string | null
|
|
69353
69353
|
created_at: string
|
|
69354
69354
|
guest_name: string | null
|
|
69355
|
+
spaces: {
|
|
69356
|
+
space_id: string | null
|
|
69357
|
+
space_key: string
|
|
69358
|
+
name: string | null
|
|
69359
|
+
}[]
|
|
69355
69360
|
access_methods: {
|
|
69356
69361
|
access_method_id: string
|
|
69357
69362
|
mode: string
|
|
69358
69363
|
is_issued: boolean
|
|
69364
|
+
is_card_encoding_required?: boolean | undefined
|
|
69365
|
+
code?: (string | null) | undefined
|
|
69359
69366
|
}[]
|
|
69360
69367
|
}
|
|
69361
69368
|
}
|
|
@@ -69392,6 +69399,11 @@ export type Routes = {
|
|
|
69392
69399
|
mode: string
|
|
69393
69400
|
is_issued: boolean
|
|
69394
69401
|
}[]
|
|
69402
|
+
spaces: {
|
|
69403
|
+
space_id: string | null
|
|
69404
|
+
space_key: string
|
|
69405
|
+
name: string | null
|
|
69406
|
+
}[]
|
|
69395
69407
|
}[]
|
|
69396
69408
|
/** Information about the current page of results. */
|
|
69397
69409
|
pagination: {
|