@seamapi/types 1.564.0 → 1.566.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 +377 -163
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +675 -405
- package/dist/index.cjs +377 -163
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +52 -2
- package/lib/seam/connect/models/customer/customer-portal.js +10 -2
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +644 -401
- package/lib/seam/connect/openapi.js +375 -161
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +31 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +12 -2
- package/src/lib/seam/connect/openapi.ts +376 -161
- package/src/lib/seam/connect/route-types.ts +95 -54
|
@@ -35331,6 +35331,11 @@ export default {
|
|
|
35331
35331
|
description: 'Whether to exclude this feature from the portal.',
|
|
35332
35332
|
type: 'boolean',
|
|
35333
35333
|
},
|
|
35334
|
+
excluded_providers: {
|
|
35335
|
+
description: 'List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.',
|
|
35336
|
+
items: { type: 'string' },
|
|
35337
|
+
type: 'array',
|
|
35338
|
+
},
|
|
35334
35339
|
},
|
|
35335
35340
|
type: 'object',
|
|
35336
35341
|
},
|
|
@@ -35372,59 +35377,96 @@ export default {
|
|
|
35372
35377
|
manage: {
|
|
35373
35378
|
oneOf: [
|
|
35374
35379
|
{
|
|
35375
|
-
|
|
35376
|
-
|
|
35377
|
-
|
|
35378
|
-
|
|
35379
|
-
|
|
35380
|
-
|
|
35381
|
-
|
|
35382
|
-
|
|
35383
|
-
|
|
35384
|
-
|
|
35385
|
-
|
|
35386
|
-
|
|
35387
|
-
|
|
35388
|
-
|
|
35389
|
-
|
|
35390
|
-
|
|
35391
|
-
|
|
35392
|
-
|
|
35393
|
-
|
|
35394
|
-
|
|
35395
|
-
|
|
35396
|
-
|
|
35397
|
-
|
|
35398
|
-
|
|
35399
|
-
|
|
35400
|
-
|
|
35401
|
-
|
|
35402
|
-
|
|
35403
|
-
|
|
35404
|
-
|
|
35405
|
-
|
|
35406
|
-
|
|
35407
|
-
|
|
35408
|
-
|
|
35409
|
-
|
|
35410
|
-
|
|
35411
|
-
|
|
35412
|
-
|
|
35413
|
-
|
|
35414
|
-
|
|
35415
|
-
|
|
35416
|
-
|
|
35417
|
-
|
|
35418
|
-
|
|
35419
|
-
|
|
35420
|
-
|
|
35380
|
+
oneOf: [
|
|
35381
|
+
{
|
|
35382
|
+
properties: {
|
|
35383
|
+
space_key: { type: 'string' },
|
|
35384
|
+
},
|
|
35385
|
+
required: ['space_key'],
|
|
35386
|
+
type: 'object',
|
|
35387
|
+
},
|
|
35388
|
+
{
|
|
35389
|
+
properties: {
|
|
35390
|
+
property_key: { type: 'string' },
|
|
35391
|
+
},
|
|
35392
|
+
required: ['property_key'],
|
|
35393
|
+
type: 'object',
|
|
35394
|
+
},
|
|
35395
|
+
{
|
|
35396
|
+
properties: {
|
|
35397
|
+
room_key: { type: 'string' },
|
|
35398
|
+
},
|
|
35399
|
+
required: ['room_key'],
|
|
35400
|
+
type: 'object',
|
|
35401
|
+
},
|
|
35402
|
+
{
|
|
35403
|
+
properties: {
|
|
35404
|
+
common_area_key: { type: 'string' },
|
|
35405
|
+
},
|
|
35406
|
+
required: ['common_area_key'],
|
|
35407
|
+
type: 'object',
|
|
35408
|
+
},
|
|
35409
|
+
{
|
|
35410
|
+
properties: {
|
|
35411
|
+
unit_key: { type: 'string' },
|
|
35412
|
+
},
|
|
35413
|
+
required: ['unit_key'],
|
|
35414
|
+
type: 'object',
|
|
35415
|
+
},
|
|
35416
|
+
{
|
|
35417
|
+
properties: {
|
|
35418
|
+
facility_key: { type: 'string' },
|
|
35419
|
+
},
|
|
35420
|
+
required: ['facility_key'],
|
|
35421
|
+
type: 'object',
|
|
35422
|
+
},
|
|
35423
|
+
{
|
|
35424
|
+
properties: {
|
|
35425
|
+
building_key: { type: 'string' },
|
|
35426
|
+
},
|
|
35427
|
+
required: ['building_key'],
|
|
35428
|
+
type: 'object',
|
|
35429
|
+
},
|
|
35430
|
+
{
|
|
35431
|
+
properties: {
|
|
35432
|
+
listing_key: { type: 'string' },
|
|
35433
|
+
},
|
|
35434
|
+
required: ['listing_key'],
|
|
35435
|
+
type: 'object',
|
|
35436
|
+
},
|
|
35437
|
+
{
|
|
35438
|
+
properties: {
|
|
35439
|
+
property_listing_key: { type: 'string' },
|
|
35440
|
+
},
|
|
35441
|
+
required: ['property_listing_key'],
|
|
35442
|
+
type: 'object',
|
|
35443
|
+
},
|
|
35444
|
+
],
|
|
35421
35445
|
},
|
|
35422
35446
|
{
|
|
35423
|
-
|
|
35424
|
-
|
|
35425
|
-
|
|
35426
|
-
|
|
35427
|
-
|
|
35447
|
+
oneOf: [
|
|
35448
|
+
{
|
|
35449
|
+
properties: {
|
|
35450
|
+
reservation_key: { type: 'string' },
|
|
35451
|
+
},
|
|
35452
|
+
required: ['reservation_key'],
|
|
35453
|
+
type: 'object',
|
|
35454
|
+
},
|
|
35455
|
+
{
|
|
35456
|
+
properties: {
|
|
35457
|
+
booking_key: { type: 'string' },
|
|
35458
|
+
},
|
|
35459
|
+
required: ['booking_key'],
|
|
35460
|
+
type: 'object',
|
|
35461
|
+
},
|
|
35462
|
+
{
|
|
35463
|
+
properties: {
|
|
35464
|
+
access_grant_key: { type: 'string' },
|
|
35465
|
+
},
|
|
35466
|
+
required: ['access_grant_key'],
|
|
35467
|
+
type: 'object',
|
|
35468
|
+
},
|
|
35469
|
+
],
|
|
35428
35470
|
},
|
|
35429
35471
|
],
|
|
35430
35472
|
},
|
|
@@ -45777,7 +45819,13 @@ export default {
|
|
|
45777
45819
|
type: 'object',
|
|
45778
45820
|
},
|
|
45779
45821
|
connect: {
|
|
45780
|
-
properties: {
|
|
45822
|
+
properties: {
|
|
45823
|
+
exclude: { type: 'boolean' },
|
|
45824
|
+
excluded_providers: {
|
|
45825
|
+
items: { type: 'string' },
|
|
45826
|
+
type: 'array',
|
|
45827
|
+
},
|
|
45828
|
+
},
|
|
45781
45829
|
type: 'object',
|
|
45782
45830
|
},
|
|
45783
45831
|
manage_devices: {
|
|
@@ -45797,61 +45845,98 @@ export default {
|
|
|
45797
45845
|
manage: {
|
|
45798
45846
|
oneOf: [
|
|
45799
45847
|
{
|
|
45800
|
-
|
|
45801
|
-
|
|
45802
|
-
|
|
45803
|
-
|
|
45804
|
-
|
|
45805
|
-
|
|
45806
|
-
|
|
45807
|
-
|
|
45808
|
-
|
|
45809
|
-
|
|
45810
|
-
|
|
45811
|
-
|
|
45812
|
-
|
|
45813
|
-
|
|
45814
|
-
|
|
45815
|
-
|
|
45816
|
-
|
|
45817
|
-
|
|
45818
|
-
|
|
45819
|
-
|
|
45820
|
-
|
|
45821
|
-
|
|
45822
|
-
|
|
45823
|
-
|
|
45824
|
-
|
|
45825
|
-
|
|
45826
|
-
|
|
45827
|
-
|
|
45828
|
-
|
|
45829
|
-
|
|
45830
|
-
|
|
45831
|
-
|
|
45832
|
-
|
|
45833
|
-
|
|
45834
|
-
|
|
45835
|
-
|
|
45836
|
-
|
|
45837
|
-
|
|
45838
|
-
|
|
45839
|
-
|
|
45840
|
-
|
|
45841
|
-
|
|
45842
|
-
|
|
45843
|
-
|
|
45844
|
-
|
|
45845
|
-
|
|
45846
|
-
|
|
45847
|
-
|
|
45848
|
+
oneOf: [
|
|
45849
|
+
{
|
|
45850
|
+
properties: {
|
|
45851
|
+
space_key: { type: 'string' },
|
|
45852
|
+
},
|
|
45853
|
+
required: ['space_key'],
|
|
45854
|
+
type: 'object',
|
|
45855
|
+
},
|
|
45856
|
+
{
|
|
45857
|
+
properties: {
|
|
45858
|
+
property_key: { type: 'string' },
|
|
45859
|
+
},
|
|
45860
|
+
required: ['property_key'],
|
|
45861
|
+
type: 'object',
|
|
45862
|
+
},
|
|
45863
|
+
{
|
|
45864
|
+
properties: {
|
|
45865
|
+
room_key: { type: 'string' },
|
|
45866
|
+
},
|
|
45867
|
+
required: ['room_key'],
|
|
45868
|
+
type: 'object',
|
|
45869
|
+
},
|
|
45870
|
+
{
|
|
45871
|
+
properties: {
|
|
45872
|
+
common_area_key: { type: 'string' },
|
|
45873
|
+
},
|
|
45874
|
+
required: ['common_area_key'],
|
|
45875
|
+
type: 'object',
|
|
45876
|
+
},
|
|
45877
|
+
{
|
|
45878
|
+
properties: {
|
|
45879
|
+
unit_key: { type: 'string' },
|
|
45880
|
+
},
|
|
45881
|
+
required: ['unit_key'],
|
|
45882
|
+
type: 'object',
|
|
45883
|
+
},
|
|
45884
|
+
{
|
|
45885
|
+
properties: {
|
|
45886
|
+
facility_key: { type: 'string' },
|
|
45887
|
+
},
|
|
45888
|
+
required: ['facility_key'],
|
|
45889
|
+
type: 'object',
|
|
45890
|
+
},
|
|
45891
|
+
{
|
|
45892
|
+
properties: {
|
|
45893
|
+
building_key: { type: 'string' },
|
|
45894
|
+
},
|
|
45895
|
+
required: ['building_key'],
|
|
45896
|
+
type: 'object',
|
|
45897
|
+
},
|
|
45898
|
+
{
|
|
45899
|
+
properties: {
|
|
45900
|
+
listing_key: { type: 'string' },
|
|
45901
|
+
},
|
|
45902
|
+
required: ['listing_key'],
|
|
45903
|
+
type: 'object',
|
|
45904
|
+
},
|
|
45905
|
+
{
|
|
45906
|
+
properties: {
|
|
45907
|
+
property_listing_key: {
|
|
45908
|
+
type: 'string',
|
|
45909
|
+
},
|
|
45910
|
+
},
|
|
45911
|
+
required: ['property_listing_key'],
|
|
45912
|
+
type: 'object',
|
|
45913
|
+
},
|
|
45914
|
+
],
|
|
45848
45915
|
},
|
|
45849
45916
|
{
|
|
45850
|
-
|
|
45851
|
-
|
|
45852
|
-
|
|
45853
|
-
|
|
45854
|
-
|
|
45917
|
+
oneOf: [
|
|
45918
|
+
{
|
|
45919
|
+
properties: {
|
|
45920
|
+
reservation_key: { type: 'string' },
|
|
45921
|
+
},
|
|
45922
|
+
required: ['reservation_key'],
|
|
45923
|
+
type: 'object',
|
|
45924
|
+
},
|
|
45925
|
+
{
|
|
45926
|
+
properties: {
|
|
45927
|
+
booking_key: { type: 'string' },
|
|
45928
|
+
},
|
|
45929
|
+
required: ['booking_key'],
|
|
45930
|
+
type: 'object',
|
|
45931
|
+
},
|
|
45932
|
+
{
|
|
45933
|
+
properties: {
|
|
45934
|
+
access_grant_key: { type: 'string' },
|
|
45935
|
+
},
|
|
45936
|
+
required: ['access_grant_key'],
|
|
45937
|
+
type: 'object',
|
|
45938
|
+
},
|
|
45939
|
+
],
|
|
45855
45940
|
},
|
|
45856
45941
|
],
|
|
45857
45942
|
},
|
|
@@ -45937,7 +46022,13 @@ export default {
|
|
|
45937
46022
|
type: 'object',
|
|
45938
46023
|
},
|
|
45939
46024
|
connect: {
|
|
45940
|
-
properties: {
|
|
46025
|
+
properties: {
|
|
46026
|
+
exclude: { type: 'boolean' },
|
|
46027
|
+
excluded_providers: {
|
|
46028
|
+
items: { type: 'string' },
|
|
46029
|
+
type: 'array',
|
|
46030
|
+
},
|
|
46031
|
+
},
|
|
45941
46032
|
type: 'object',
|
|
45942
46033
|
},
|
|
45943
46034
|
manage_devices: {
|
|
@@ -45957,61 +46048,98 @@ export default {
|
|
|
45957
46048
|
manage: {
|
|
45958
46049
|
oneOf: [
|
|
45959
46050
|
{
|
|
45960
|
-
|
|
45961
|
-
|
|
45962
|
-
|
|
45963
|
-
|
|
45964
|
-
|
|
45965
|
-
|
|
45966
|
-
|
|
45967
|
-
|
|
45968
|
-
|
|
45969
|
-
|
|
45970
|
-
|
|
45971
|
-
|
|
45972
|
-
|
|
45973
|
-
|
|
45974
|
-
|
|
45975
|
-
|
|
45976
|
-
|
|
45977
|
-
|
|
45978
|
-
|
|
45979
|
-
|
|
45980
|
-
|
|
45981
|
-
|
|
45982
|
-
|
|
45983
|
-
|
|
45984
|
-
|
|
45985
|
-
|
|
45986
|
-
|
|
45987
|
-
|
|
45988
|
-
|
|
45989
|
-
|
|
45990
|
-
|
|
45991
|
-
|
|
45992
|
-
|
|
45993
|
-
|
|
45994
|
-
|
|
45995
|
-
|
|
45996
|
-
|
|
45997
|
-
|
|
45998
|
-
|
|
45999
|
-
|
|
46000
|
-
|
|
46001
|
-
|
|
46002
|
-
|
|
46003
|
-
|
|
46004
|
-
|
|
46005
|
-
|
|
46006
|
-
|
|
46007
|
-
|
|
46051
|
+
oneOf: [
|
|
46052
|
+
{
|
|
46053
|
+
properties: {
|
|
46054
|
+
space_key: { type: 'string' },
|
|
46055
|
+
},
|
|
46056
|
+
required: ['space_key'],
|
|
46057
|
+
type: 'object',
|
|
46058
|
+
},
|
|
46059
|
+
{
|
|
46060
|
+
properties: {
|
|
46061
|
+
property_key: { type: 'string' },
|
|
46062
|
+
},
|
|
46063
|
+
required: ['property_key'],
|
|
46064
|
+
type: 'object',
|
|
46065
|
+
},
|
|
46066
|
+
{
|
|
46067
|
+
properties: {
|
|
46068
|
+
room_key: { type: 'string' },
|
|
46069
|
+
},
|
|
46070
|
+
required: ['room_key'],
|
|
46071
|
+
type: 'object',
|
|
46072
|
+
},
|
|
46073
|
+
{
|
|
46074
|
+
properties: {
|
|
46075
|
+
common_area_key: { type: 'string' },
|
|
46076
|
+
},
|
|
46077
|
+
required: ['common_area_key'],
|
|
46078
|
+
type: 'object',
|
|
46079
|
+
},
|
|
46080
|
+
{
|
|
46081
|
+
properties: {
|
|
46082
|
+
unit_key: { type: 'string' },
|
|
46083
|
+
},
|
|
46084
|
+
required: ['unit_key'],
|
|
46085
|
+
type: 'object',
|
|
46086
|
+
},
|
|
46087
|
+
{
|
|
46088
|
+
properties: {
|
|
46089
|
+
facility_key: { type: 'string' },
|
|
46090
|
+
},
|
|
46091
|
+
required: ['facility_key'],
|
|
46092
|
+
type: 'object',
|
|
46093
|
+
},
|
|
46094
|
+
{
|
|
46095
|
+
properties: {
|
|
46096
|
+
building_key: { type: 'string' },
|
|
46097
|
+
},
|
|
46098
|
+
required: ['building_key'],
|
|
46099
|
+
type: 'object',
|
|
46100
|
+
},
|
|
46101
|
+
{
|
|
46102
|
+
properties: {
|
|
46103
|
+
listing_key: { type: 'string' },
|
|
46104
|
+
},
|
|
46105
|
+
required: ['listing_key'],
|
|
46106
|
+
type: 'object',
|
|
46107
|
+
},
|
|
46108
|
+
{
|
|
46109
|
+
properties: {
|
|
46110
|
+
property_listing_key: {
|
|
46111
|
+
type: 'string',
|
|
46112
|
+
},
|
|
46113
|
+
},
|
|
46114
|
+
required: ['property_listing_key'],
|
|
46115
|
+
type: 'object',
|
|
46116
|
+
},
|
|
46117
|
+
],
|
|
46008
46118
|
},
|
|
46009
46119
|
{
|
|
46010
|
-
|
|
46011
|
-
|
|
46012
|
-
|
|
46013
|
-
|
|
46014
|
-
|
|
46120
|
+
oneOf: [
|
|
46121
|
+
{
|
|
46122
|
+
properties: {
|
|
46123
|
+
reservation_key: { type: 'string' },
|
|
46124
|
+
},
|
|
46125
|
+
required: ['reservation_key'],
|
|
46126
|
+
type: 'object',
|
|
46127
|
+
},
|
|
46128
|
+
{
|
|
46129
|
+
properties: {
|
|
46130
|
+
booking_key: { type: 'string' },
|
|
46131
|
+
},
|
|
46132
|
+
required: ['booking_key'],
|
|
46133
|
+
type: 'object',
|
|
46134
|
+
},
|
|
46135
|
+
{
|
|
46136
|
+
properties: {
|
|
46137
|
+
access_grant_key: { type: 'string' },
|
|
46138
|
+
},
|
|
46139
|
+
required: ['access_grant_key'],
|
|
46140
|
+
type: 'object',
|
|
46141
|
+
},
|
|
46142
|
+
],
|
|
46015
46143
|
},
|
|
46016
46144
|
],
|
|
46017
46145
|
},
|
|
@@ -46077,7 +46205,20 @@ export default {
|
|
|
46077
46205
|
reservation: {
|
|
46078
46206
|
properties: {
|
|
46079
46207
|
access_methods: {
|
|
46080
|
-
items: {
|
|
46208
|
+
items: {
|
|
46209
|
+
properties: {
|
|
46210
|
+
access_method_id: {
|
|
46211
|
+
format: 'uuid',
|
|
46212
|
+
type: 'string',
|
|
46213
|
+
},
|
|
46214
|
+
code: { nullable: true, type: 'string' },
|
|
46215
|
+
is_card_encoding_required: { type: 'boolean' },
|
|
46216
|
+
is_issued: { type: 'boolean' },
|
|
46217
|
+
mode: { type: 'string' },
|
|
46218
|
+
},
|
|
46219
|
+
required: ['access_method_id', 'mode', 'is_issued'],
|
|
46220
|
+
type: 'object',
|
|
46221
|
+
},
|
|
46081
46222
|
type: 'array',
|
|
46082
46223
|
},
|
|
46083
46224
|
created_at: { format: 'date-time', type: 'string' },
|
|
@@ -46090,6 +46231,22 @@ export default {
|
|
|
46090
46231
|
name: { nullable: true, type: 'string' },
|
|
46091
46232
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
46092
46233
|
reservation_key: { type: 'string' },
|
|
46234
|
+
spaces: {
|
|
46235
|
+
items: {
|
|
46236
|
+
properties: {
|
|
46237
|
+
name: { nullable: true, type: 'string' },
|
|
46238
|
+
space_id: {
|
|
46239
|
+
format: 'uuid',
|
|
46240
|
+
nullable: true,
|
|
46241
|
+
type: 'string',
|
|
46242
|
+
},
|
|
46243
|
+
space_key: { type: 'string' },
|
|
46244
|
+
},
|
|
46245
|
+
required: ['space_id', 'space_key', 'name'],
|
|
46246
|
+
type: 'object',
|
|
46247
|
+
},
|
|
46248
|
+
type: 'array',
|
|
46249
|
+
},
|
|
46093
46250
|
starts_at: {
|
|
46094
46251
|
format: 'date-time',
|
|
46095
46252
|
nullable: true,
|
|
@@ -46104,6 +46261,7 @@ export default {
|
|
|
46104
46261
|
'ends_at',
|
|
46105
46262
|
'created_at',
|
|
46106
46263
|
'guest_name',
|
|
46264
|
+
'spaces',
|
|
46107
46265
|
'access_methods',
|
|
46108
46266
|
],
|
|
46109
46267
|
type: 'object',
|
|
@@ -46162,7 +46320,20 @@ export default {
|
|
|
46162
46320
|
reservation: {
|
|
46163
46321
|
properties: {
|
|
46164
46322
|
access_methods: {
|
|
46165
|
-
items: {
|
|
46323
|
+
items: {
|
|
46324
|
+
properties: {
|
|
46325
|
+
access_method_id: {
|
|
46326
|
+
format: 'uuid',
|
|
46327
|
+
type: 'string',
|
|
46328
|
+
},
|
|
46329
|
+
code: { nullable: true, type: 'string' },
|
|
46330
|
+
is_card_encoding_required: { type: 'boolean' },
|
|
46331
|
+
is_issued: { type: 'boolean' },
|
|
46332
|
+
mode: { type: 'string' },
|
|
46333
|
+
},
|
|
46334
|
+
required: ['access_method_id', 'mode', 'is_issued'],
|
|
46335
|
+
type: 'object',
|
|
46336
|
+
},
|
|
46166
46337
|
type: 'array',
|
|
46167
46338
|
},
|
|
46168
46339
|
created_at: { format: 'date-time', type: 'string' },
|
|
@@ -46175,6 +46346,22 @@ export default {
|
|
|
46175
46346
|
name: { nullable: true, type: 'string' },
|
|
46176
46347
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
46177
46348
|
reservation_key: { type: 'string' },
|
|
46349
|
+
spaces: {
|
|
46350
|
+
items: {
|
|
46351
|
+
properties: {
|
|
46352
|
+
name: { nullable: true, type: 'string' },
|
|
46353
|
+
space_id: {
|
|
46354
|
+
format: 'uuid',
|
|
46355
|
+
nullable: true,
|
|
46356
|
+
type: 'string',
|
|
46357
|
+
},
|
|
46358
|
+
space_key: { type: 'string' },
|
|
46359
|
+
},
|
|
46360
|
+
required: ['space_id', 'space_key', 'name'],
|
|
46361
|
+
type: 'object',
|
|
46362
|
+
},
|
|
46363
|
+
type: 'array',
|
|
46364
|
+
},
|
|
46178
46365
|
starts_at: {
|
|
46179
46366
|
format: 'date-time',
|
|
46180
46367
|
nullable: true,
|
|
@@ -46189,6 +46376,7 @@ export default {
|
|
|
46189
46376
|
'ends_at',
|
|
46190
46377
|
'created_at',
|
|
46191
46378
|
'guest_name',
|
|
46379
|
+
'spaces',
|
|
46192
46380
|
'access_methods',
|
|
46193
46381
|
],
|
|
46194
46382
|
type: 'object',
|
|
@@ -46294,6 +46482,18 @@ export default {
|
|
|
46294
46482
|
name: { nullable: true, type: 'string' },
|
|
46295
46483
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
46296
46484
|
reservation_key: { type: 'string' },
|
|
46485
|
+
spaces: {
|
|
46486
|
+
items: {
|
|
46487
|
+
properties: {
|
|
46488
|
+
name: { nullable: true, type: 'string' },
|
|
46489
|
+
space_id: { nullable: true, type: 'string' },
|
|
46490
|
+
space_key: { type: 'string' },
|
|
46491
|
+
},
|
|
46492
|
+
required: ['space_id', 'space_key', 'name'],
|
|
46493
|
+
type: 'object',
|
|
46494
|
+
},
|
|
46495
|
+
type: 'array',
|
|
46496
|
+
},
|
|
46297
46497
|
starts_at: {
|
|
46298
46498
|
format: 'date-time',
|
|
46299
46499
|
nullable: true,
|
|
@@ -46309,6 +46509,7 @@ export default {
|
|
|
46309
46509
|
'created_at',
|
|
46310
46510
|
'guest_name',
|
|
46311
46511
|
'access_methods',
|
|
46512
|
+
'spaces',
|
|
46312
46513
|
],
|
|
46313
46514
|
type: 'object',
|
|
46314
46515
|
},
|
|
@@ -46402,6 +46603,18 @@ export default {
|
|
|
46402
46603
|
name: { nullable: true, type: 'string' },
|
|
46403
46604
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
46404
46605
|
reservation_key: { type: 'string' },
|
|
46606
|
+
spaces: {
|
|
46607
|
+
items: {
|
|
46608
|
+
properties: {
|
|
46609
|
+
name: { nullable: true, type: 'string' },
|
|
46610
|
+
space_id: { nullable: true, type: 'string' },
|
|
46611
|
+
space_key: { type: 'string' },
|
|
46612
|
+
},
|
|
46613
|
+
required: ['space_id', 'space_key', 'name'],
|
|
46614
|
+
type: 'object',
|
|
46615
|
+
},
|
|
46616
|
+
type: 'array',
|
|
46617
|
+
},
|
|
46405
46618
|
starts_at: {
|
|
46406
46619
|
format: 'date-time',
|
|
46407
46620
|
nullable: true,
|
|
@@ -46417,6 +46630,7 @@ export default {
|
|
|
46417
46630
|
'created_at',
|
|
46418
46631
|
'guest_name',
|
|
46419
46632
|
'access_methods',
|
|
46633
|
+
'spaces',
|
|
46420
46634
|
],
|
|
46421
46635
|
type: 'object',
|
|
46422
46636
|
},
|