@seamapi/types 1.634.0 → 1.636.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 +160 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +162 -16
- package/dist/index.cjs +160 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +5 -3
- package/lib/seam/connect/models/access-grants/access-grant.js +6 -1
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +136 -8
- package/lib/seam/connect/openapi.js +152 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +26 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +11 -6
- package/src/lib/seam/connect/openapi.ts +152 -16
- package/src/lib/seam/connect/route-types.ts +30 -8
|
@@ -26809,7 +26809,6 @@ export default {
|
|
|
26809
26809
|
required: [
|
|
26810
26810
|
'workspace_id',
|
|
26811
26811
|
'access_grant_id',
|
|
26812
|
-
'user_identity_id',
|
|
26813
26812
|
'location_ids',
|
|
26814
26813
|
'space_ids',
|
|
26815
26814
|
'requested_access_methods',
|
|
@@ -27021,7 +27020,6 @@ export default {
|
|
|
27021
27020
|
required: [
|
|
27022
27021
|
'workspace_id',
|
|
27023
27022
|
'access_grant_id',
|
|
27024
|
-
'user_identity_id',
|
|
27025
27023
|
'location_ids',
|
|
27026
27024
|
'space_ids',
|
|
27027
27025
|
'requested_access_methods',
|
|
@@ -27256,7 +27254,6 @@ export default {
|
|
|
27256
27254
|
required: [
|
|
27257
27255
|
'workspace_id',
|
|
27258
27256
|
'access_grant_id',
|
|
27259
|
-
'user_identity_id',
|
|
27260
27257
|
'location_ids',
|
|
27261
27258
|
'space_ids',
|
|
27262
27259
|
'requested_access_methods',
|
|
@@ -27484,7 +27481,6 @@ export default {
|
|
|
27484
27481
|
required: [
|
|
27485
27482
|
'workspace_id',
|
|
27486
27483
|
'access_grant_id',
|
|
27487
|
-
'user_identity_id',
|
|
27488
27484
|
'location_ids',
|
|
27489
27485
|
'space_ids',
|
|
27490
27486
|
'requested_access_methods',
|
|
@@ -47682,21 +47678,55 @@ export default {
|
|
|
47682
47678
|
properties: {
|
|
47683
47679
|
reservation_created: {
|
|
47684
47680
|
properties: {
|
|
47685
|
-
|
|
47681
|
+
automated_occupied_preset: {
|
|
47686
47682
|
properties: {
|
|
47687
47683
|
fan_mode: {
|
|
47688
47684
|
enum: ['on', 'auto', 'circulate'],
|
|
47689
47685
|
type: 'string',
|
|
47690
47686
|
},
|
|
47691
47687
|
is_override_allowed: { type: 'boolean' },
|
|
47688
|
+
max_override_period_minutes: {
|
|
47689
|
+
format: 'float',
|
|
47690
|
+
type: 'number',
|
|
47691
|
+
},
|
|
47692
47692
|
mode: {
|
|
47693
47693
|
enum: ['heat', 'cool', 'auto'],
|
|
47694
47694
|
type: 'string',
|
|
47695
47695
|
},
|
|
47696
|
-
|
|
47696
|
+
temperature: {
|
|
47697
|
+
format: 'float',
|
|
47698
|
+
type: 'number',
|
|
47699
|
+
},
|
|
47700
|
+
temperature_unit: {
|
|
47701
|
+
enum: ['celsius', 'fahrenheit'],
|
|
47702
|
+
type: 'string',
|
|
47703
|
+
},
|
|
47704
|
+
},
|
|
47705
|
+
required: [
|
|
47706
|
+
'mode',
|
|
47707
|
+
'temperature',
|
|
47708
|
+
'temperature_unit',
|
|
47709
|
+
'fan_mode',
|
|
47710
|
+
'is_override_allowed',
|
|
47711
|
+
'max_override_period_minutes',
|
|
47712
|
+
],
|
|
47713
|
+
type: 'object',
|
|
47714
|
+
},
|
|
47715
|
+
automated_unoccupied_preset: {
|
|
47716
|
+
properties: {
|
|
47717
|
+
fan_mode: {
|
|
47718
|
+
enum: ['on', 'auto', 'circulate'],
|
|
47719
|
+
type: 'string',
|
|
47720
|
+
},
|
|
47721
|
+
is_override_allowed: { type: 'boolean' },
|
|
47722
|
+
max_override_period_minutes: {
|
|
47697
47723
|
format: 'float',
|
|
47698
47724
|
type: 'number',
|
|
47699
47725
|
},
|
|
47726
|
+
mode: {
|
|
47727
|
+
enum: ['heat', 'cool', 'auto'],
|
|
47728
|
+
type: 'string',
|
|
47729
|
+
},
|
|
47700
47730
|
temperature: {
|
|
47701
47731
|
format: 'float',
|
|
47702
47732
|
type: 'number',
|
|
@@ -47712,11 +47742,12 @@ export default {
|
|
|
47712
47742
|
'temperature_unit',
|
|
47713
47743
|
'fan_mode',
|
|
47714
47744
|
'is_override_allowed',
|
|
47715
|
-
'
|
|
47745
|
+
'max_override_period_minutes',
|
|
47716
47746
|
],
|
|
47717
47747
|
type: 'object',
|
|
47718
47748
|
},
|
|
47719
47749
|
occupied_preset_key: { type: 'string' },
|
|
47750
|
+
unoccupied_preset_key: { type: 'string' },
|
|
47720
47751
|
},
|
|
47721
47752
|
type: 'object',
|
|
47722
47753
|
},
|
|
@@ -47891,21 +47922,55 @@ export default {
|
|
|
47891
47922
|
properties: {
|
|
47892
47923
|
reservation_created: {
|
|
47893
47924
|
properties: {
|
|
47894
|
-
|
|
47925
|
+
automated_occupied_preset: {
|
|
47895
47926
|
properties: {
|
|
47896
47927
|
fan_mode: {
|
|
47897
47928
|
enum: ['on', 'auto', 'circulate'],
|
|
47898
47929
|
type: 'string',
|
|
47899
47930
|
},
|
|
47900
47931
|
is_override_allowed: { type: 'boolean' },
|
|
47932
|
+
max_override_period_minutes: {
|
|
47933
|
+
format: 'float',
|
|
47934
|
+
type: 'number',
|
|
47935
|
+
},
|
|
47901
47936
|
mode: {
|
|
47902
47937
|
enum: ['heat', 'cool', 'auto'],
|
|
47903
47938
|
type: 'string',
|
|
47904
47939
|
},
|
|
47905
|
-
|
|
47940
|
+
temperature: {
|
|
47941
|
+
format: 'float',
|
|
47942
|
+
type: 'number',
|
|
47943
|
+
},
|
|
47944
|
+
temperature_unit: {
|
|
47945
|
+
enum: ['celsius', 'fahrenheit'],
|
|
47946
|
+
type: 'string',
|
|
47947
|
+
},
|
|
47948
|
+
},
|
|
47949
|
+
required: [
|
|
47950
|
+
'mode',
|
|
47951
|
+
'temperature',
|
|
47952
|
+
'temperature_unit',
|
|
47953
|
+
'fan_mode',
|
|
47954
|
+
'is_override_allowed',
|
|
47955
|
+
'max_override_period_minutes',
|
|
47956
|
+
],
|
|
47957
|
+
type: 'object',
|
|
47958
|
+
},
|
|
47959
|
+
automated_unoccupied_preset: {
|
|
47960
|
+
properties: {
|
|
47961
|
+
fan_mode: {
|
|
47962
|
+
enum: ['on', 'auto', 'circulate'],
|
|
47963
|
+
type: 'string',
|
|
47964
|
+
},
|
|
47965
|
+
is_override_allowed: { type: 'boolean' },
|
|
47966
|
+
max_override_period_minutes: {
|
|
47906
47967
|
format: 'float',
|
|
47907
47968
|
type: 'number',
|
|
47908
47969
|
},
|
|
47970
|
+
mode: {
|
|
47971
|
+
enum: ['heat', 'cool', 'auto'],
|
|
47972
|
+
type: 'string',
|
|
47973
|
+
},
|
|
47909
47974
|
temperature: {
|
|
47910
47975
|
format: 'float',
|
|
47911
47976
|
type: 'number',
|
|
@@ -47921,11 +47986,12 @@ export default {
|
|
|
47921
47986
|
'temperature_unit',
|
|
47922
47987
|
'fan_mode',
|
|
47923
47988
|
'is_override_allowed',
|
|
47924
|
-
'
|
|
47989
|
+
'max_override_period_minutes',
|
|
47925
47990
|
],
|
|
47926
47991
|
type: 'object',
|
|
47927
47992
|
},
|
|
47928
47993
|
occupied_preset_key: { type: 'string' },
|
|
47994
|
+
unoccupied_preset_key: { type: 'string' },
|
|
47929
47995
|
},
|
|
47930
47996
|
type: 'object',
|
|
47931
47997
|
},
|
|
@@ -48091,21 +48157,55 @@ export default {
|
|
|
48091
48157
|
properties: {
|
|
48092
48158
|
reservation_created: {
|
|
48093
48159
|
properties: {
|
|
48094
|
-
|
|
48160
|
+
automated_occupied_preset: {
|
|
48095
48161
|
properties: {
|
|
48096
48162
|
fan_mode: {
|
|
48097
48163
|
enum: ['on', 'auto', 'circulate'],
|
|
48098
48164
|
type: 'string',
|
|
48099
48165
|
},
|
|
48100
48166
|
is_override_allowed: { type: 'boolean' },
|
|
48167
|
+
max_override_period_minutes: {
|
|
48168
|
+
format: 'float',
|
|
48169
|
+
type: 'number',
|
|
48170
|
+
},
|
|
48101
48171
|
mode: {
|
|
48102
48172
|
enum: ['heat', 'cool', 'auto'],
|
|
48103
48173
|
type: 'string',
|
|
48104
48174
|
},
|
|
48105
|
-
|
|
48175
|
+
temperature: {
|
|
48176
|
+
format: 'float',
|
|
48177
|
+
type: 'number',
|
|
48178
|
+
},
|
|
48179
|
+
temperature_unit: {
|
|
48180
|
+
enum: ['celsius', 'fahrenheit'],
|
|
48181
|
+
type: 'string',
|
|
48182
|
+
},
|
|
48183
|
+
},
|
|
48184
|
+
required: [
|
|
48185
|
+
'mode',
|
|
48186
|
+
'temperature',
|
|
48187
|
+
'temperature_unit',
|
|
48188
|
+
'fan_mode',
|
|
48189
|
+
'is_override_allowed',
|
|
48190
|
+
'max_override_period_minutes',
|
|
48191
|
+
],
|
|
48192
|
+
type: 'object',
|
|
48193
|
+
},
|
|
48194
|
+
automated_unoccupied_preset: {
|
|
48195
|
+
properties: {
|
|
48196
|
+
fan_mode: {
|
|
48197
|
+
enum: ['on', 'auto', 'circulate'],
|
|
48198
|
+
type: 'string',
|
|
48199
|
+
},
|
|
48200
|
+
is_override_allowed: { type: 'boolean' },
|
|
48201
|
+
max_override_period_minutes: {
|
|
48106
48202
|
format: 'float',
|
|
48107
48203
|
type: 'number',
|
|
48108
48204
|
},
|
|
48205
|
+
mode: {
|
|
48206
|
+
enum: ['heat', 'cool', 'auto'],
|
|
48207
|
+
type: 'string',
|
|
48208
|
+
},
|
|
48109
48209
|
temperature: {
|
|
48110
48210
|
format: 'float',
|
|
48111
48211
|
type: 'number',
|
|
@@ -48121,11 +48221,12 @@ export default {
|
|
|
48121
48221
|
'temperature_unit',
|
|
48122
48222
|
'fan_mode',
|
|
48123
48223
|
'is_override_allowed',
|
|
48124
|
-
'
|
|
48224
|
+
'max_override_period_minutes',
|
|
48125
48225
|
],
|
|
48126
48226
|
type: 'object',
|
|
48127
48227
|
},
|
|
48128
48228
|
occupied_preset_key: { type: 'string' },
|
|
48229
|
+
unoccupied_preset_key: { type: 'string' },
|
|
48129
48230
|
},
|
|
48130
48231
|
type: 'object',
|
|
48131
48232
|
},
|
|
@@ -48300,21 +48401,55 @@ export default {
|
|
|
48300
48401
|
properties: {
|
|
48301
48402
|
reservation_created: {
|
|
48302
48403
|
properties: {
|
|
48303
|
-
|
|
48404
|
+
automated_occupied_preset: {
|
|
48304
48405
|
properties: {
|
|
48305
48406
|
fan_mode: {
|
|
48306
48407
|
enum: ['on', 'auto', 'circulate'],
|
|
48307
48408
|
type: 'string',
|
|
48308
48409
|
},
|
|
48309
48410
|
is_override_allowed: { type: 'boolean' },
|
|
48411
|
+
max_override_period_minutes: {
|
|
48412
|
+
format: 'float',
|
|
48413
|
+
type: 'number',
|
|
48414
|
+
},
|
|
48310
48415
|
mode: {
|
|
48311
48416
|
enum: ['heat', 'cool', 'auto'],
|
|
48312
48417
|
type: 'string',
|
|
48313
48418
|
},
|
|
48314
|
-
|
|
48419
|
+
temperature: {
|
|
48420
|
+
format: 'float',
|
|
48421
|
+
type: 'number',
|
|
48422
|
+
},
|
|
48423
|
+
temperature_unit: {
|
|
48424
|
+
enum: ['celsius', 'fahrenheit'],
|
|
48425
|
+
type: 'string',
|
|
48426
|
+
},
|
|
48427
|
+
},
|
|
48428
|
+
required: [
|
|
48429
|
+
'mode',
|
|
48430
|
+
'temperature',
|
|
48431
|
+
'temperature_unit',
|
|
48432
|
+
'fan_mode',
|
|
48433
|
+
'is_override_allowed',
|
|
48434
|
+
'max_override_period_minutes',
|
|
48435
|
+
],
|
|
48436
|
+
type: 'object',
|
|
48437
|
+
},
|
|
48438
|
+
automated_unoccupied_preset: {
|
|
48439
|
+
properties: {
|
|
48440
|
+
fan_mode: {
|
|
48441
|
+
enum: ['on', 'auto', 'circulate'],
|
|
48442
|
+
type: 'string',
|
|
48443
|
+
},
|
|
48444
|
+
is_override_allowed: { type: 'boolean' },
|
|
48445
|
+
max_override_period_minutes: {
|
|
48315
48446
|
format: 'float',
|
|
48316
48447
|
type: 'number',
|
|
48317
48448
|
},
|
|
48449
|
+
mode: {
|
|
48450
|
+
enum: ['heat', 'cool', 'auto'],
|
|
48451
|
+
type: 'string',
|
|
48452
|
+
},
|
|
48318
48453
|
temperature: {
|
|
48319
48454
|
format: 'float',
|
|
48320
48455
|
type: 'number',
|
|
@@ -48330,11 +48465,12 @@ export default {
|
|
|
48330
48465
|
'temperature_unit',
|
|
48331
48466
|
'fan_mode',
|
|
48332
48467
|
'is_override_allowed',
|
|
48333
|
-
'
|
|
48468
|
+
'max_override_period_minutes',
|
|
48334
48469
|
],
|
|
48335
48470
|
type: 'object',
|
|
48336
48471
|
},
|
|
48337
48472
|
occupied_preset_key: { type: 'string' },
|
|
48473
|
+
unoccupied_preset_key: { type: 'string' },
|
|
48338
48474
|
},
|
|
48339
48475
|
type: 'object',
|
|
48340
48476
|
},
|