@seamapi/types 1.635.0 → 1.637.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 +224 -36
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +242 -24
- package/dist/index.cjs +224 -36
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +208 -16
- package/lib/seam/connect/openapi.js +220 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +220 -32
- package/src/lib/seam/connect/route-types.ts +38 -8
|
@@ -47678,41 +47678,88 @@ export default {
|
|
|
47678
47678
|
properties: {
|
|
47679
47679
|
reservation_created: {
|
|
47680
47680
|
properties: {
|
|
47681
|
-
|
|
47681
|
+
automated_occupied_preset: {
|
|
47682
47682
|
properties: {
|
|
47683
|
+
cooling_set_point_celsius: {
|
|
47684
|
+
format: 'float',
|
|
47685
|
+
type: 'number',
|
|
47686
|
+
},
|
|
47687
|
+
cooling_set_point_fahrenheit: {
|
|
47688
|
+
format: 'float',
|
|
47689
|
+
type: 'number',
|
|
47690
|
+
},
|
|
47683
47691
|
fan_mode: {
|
|
47684
47692
|
enum: ['on', 'auto', 'circulate'],
|
|
47685
47693
|
type: 'string',
|
|
47686
47694
|
},
|
|
47695
|
+
heating_set_point_celsius: {
|
|
47696
|
+
format: 'float',
|
|
47697
|
+
type: 'number',
|
|
47698
|
+
},
|
|
47699
|
+
heating_set_point_fahrenheit: {
|
|
47700
|
+
format: 'float',
|
|
47701
|
+
type: 'number',
|
|
47702
|
+
},
|
|
47687
47703
|
is_override_allowed: { type: 'boolean' },
|
|
47704
|
+
max_override_period_minutes: {
|
|
47705
|
+
format: 'float',
|
|
47706
|
+
type: 'number',
|
|
47707
|
+
},
|
|
47688
47708
|
mode: {
|
|
47689
47709
|
enum: ['heat', 'cool', 'auto'],
|
|
47690
47710
|
type: 'string',
|
|
47691
47711
|
},
|
|
47692
|
-
|
|
47712
|
+
},
|
|
47713
|
+
required: [
|
|
47714
|
+
'mode',
|
|
47715
|
+
'fan_mode',
|
|
47716
|
+
'is_override_allowed',
|
|
47717
|
+
'max_override_period_minutes',
|
|
47718
|
+
],
|
|
47719
|
+
type: 'object',
|
|
47720
|
+
},
|
|
47721
|
+
automated_unoccupied_preset: {
|
|
47722
|
+
properties: {
|
|
47723
|
+
cooling_set_point_celsius: {
|
|
47724
|
+
format: 'float',
|
|
47725
|
+
type: 'number',
|
|
47726
|
+
},
|
|
47727
|
+
cooling_set_point_fahrenheit: {
|
|
47728
|
+
format: 'float',
|
|
47729
|
+
type: 'number',
|
|
47730
|
+
},
|
|
47731
|
+
fan_mode: {
|
|
47732
|
+
enum: ['on', 'auto', 'circulate'],
|
|
47733
|
+
type: 'string',
|
|
47734
|
+
},
|
|
47735
|
+
heating_set_point_celsius: {
|
|
47736
|
+
format: 'float',
|
|
47737
|
+
type: 'number',
|
|
47738
|
+
},
|
|
47739
|
+
heating_set_point_fahrenheit: {
|
|
47693
47740
|
format: 'float',
|
|
47694
47741
|
type: 'number',
|
|
47695
47742
|
},
|
|
47696
|
-
|
|
47743
|
+
is_override_allowed: { type: 'boolean' },
|
|
47744
|
+
max_override_period_minutes: {
|
|
47697
47745
|
format: 'float',
|
|
47698
47746
|
type: 'number',
|
|
47699
47747
|
},
|
|
47700
|
-
|
|
47701
|
-
enum: ['
|
|
47748
|
+
mode: {
|
|
47749
|
+
enum: ['heat', 'cool', 'auto'],
|
|
47702
47750
|
type: 'string',
|
|
47703
47751
|
},
|
|
47704
47752
|
},
|
|
47705
47753
|
required: [
|
|
47706
47754
|
'mode',
|
|
47707
|
-
'temperature',
|
|
47708
|
-
'temperature_unit',
|
|
47709
47755
|
'fan_mode',
|
|
47710
47756
|
'is_override_allowed',
|
|
47711
|
-
'
|
|
47757
|
+
'max_override_period_minutes',
|
|
47712
47758
|
],
|
|
47713
47759
|
type: 'object',
|
|
47714
47760
|
},
|
|
47715
47761
|
occupied_preset_key: { type: 'string' },
|
|
47762
|
+
unoccupied_preset_key: { type: 'string' },
|
|
47716
47763
|
},
|
|
47717
47764
|
type: 'object',
|
|
47718
47765
|
},
|
|
@@ -47887,41 +47934,88 @@ export default {
|
|
|
47887
47934
|
properties: {
|
|
47888
47935
|
reservation_created: {
|
|
47889
47936
|
properties: {
|
|
47890
|
-
|
|
47937
|
+
automated_occupied_preset: {
|
|
47891
47938
|
properties: {
|
|
47939
|
+
cooling_set_point_celsius: {
|
|
47940
|
+
format: 'float',
|
|
47941
|
+
type: 'number',
|
|
47942
|
+
},
|
|
47943
|
+
cooling_set_point_fahrenheit: {
|
|
47944
|
+
format: 'float',
|
|
47945
|
+
type: 'number',
|
|
47946
|
+
},
|
|
47892
47947
|
fan_mode: {
|
|
47893
47948
|
enum: ['on', 'auto', 'circulate'],
|
|
47894
47949
|
type: 'string',
|
|
47895
47950
|
},
|
|
47951
|
+
heating_set_point_celsius: {
|
|
47952
|
+
format: 'float',
|
|
47953
|
+
type: 'number',
|
|
47954
|
+
},
|
|
47955
|
+
heating_set_point_fahrenheit: {
|
|
47956
|
+
format: 'float',
|
|
47957
|
+
type: 'number',
|
|
47958
|
+
},
|
|
47896
47959
|
is_override_allowed: { type: 'boolean' },
|
|
47960
|
+
max_override_period_minutes: {
|
|
47961
|
+
format: 'float',
|
|
47962
|
+
type: 'number',
|
|
47963
|
+
},
|
|
47897
47964
|
mode: {
|
|
47898
47965
|
enum: ['heat', 'cool', 'auto'],
|
|
47899
47966
|
type: 'string',
|
|
47900
47967
|
},
|
|
47901
|
-
|
|
47968
|
+
},
|
|
47969
|
+
required: [
|
|
47970
|
+
'mode',
|
|
47971
|
+
'fan_mode',
|
|
47972
|
+
'is_override_allowed',
|
|
47973
|
+
'max_override_period_minutes',
|
|
47974
|
+
],
|
|
47975
|
+
type: 'object',
|
|
47976
|
+
},
|
|
47977
|
+
automated_unoccupied_preset: {
|
|
47978
|
+
properties: {
|
|
47979
|
+
cooling_set_point_celsius: {
|
|
47980
|
+
format: 'float',
|
|
47981
|
+
type: 'number',
|
|
47982
|
+
},
|
|
47983
|
+
cooling_set_point_fahrenheit: {
|
|
47984
|
+
format: 'float',
|
|
47985
|
+
type: 'number',
|
|
47986
|
+
},
|
|
47987
|
+
fan_mode: {
|
|
47988
|
+
enum: ['on', 'auto', 'circulate'],
|
|
47989
|
+
type: 'string',
|
|
47990
|
+
},
|
|
47991
|
+
heating_set_point_celsius: {
|
|
47992
|
+
format: 'float',
|
|
47993
|
+
type: 'number',
|
|
47994
|
+
},
|
|
47995
|
+
heating_set_point_fahrenheit: {
|
|
47902
47996
|
format: 'float',
|
|
47903
47997
|
type: 'number',
|
|
47904
47998
|
},
|
|
47905
|
-
|
|
47999
|
+
is_override_allowed: { type: 'boolean' },
|
|
48000
|
+
max_override_period_minutes: {
|
|
47906
48001
|
format: 'float',
|
|
47907
48002
|
type: 'number',
|
|
47908
48003
|
},
|
|
47909
|
-
|
|
47910
|
-
enum: ['
|
|
48004
|
+
mode: {
|
|
48005
|
+
enum: ['heat', 'cool', 'auto'],
|
|
47911
48006
|
type: 'string',
|
|
47912
48007
|
},
|
|
47913
48008
|
},
|
|
47914
48009
|
required: [
|
|
47915
48010
|
'mode',
|
|
47916
|
-
'temperature',
|
|
47917
|
-
'temperature_unit',
|
|
47918
48011
|
'fan_mode',
|
|
47919
48012
|
'is_override_allowed',
|
|
47920
|
-
'
|
|
48013
|
+
'max_override_period_minutes',
|
|
47921
48014
|
],
|
|
47922
48015
|
type: 'object',
|
|
47923
48016
|
},
|
|
47924
48017
|
occupied_preset_key: { type: 'string' },
|
|
48018
|
+
unoccupied_preset_key: { type: 'string' },
|
|
47925
48019
|
},
|
|
47926
48020
|
type: 'object',
|
|
47927
48021
|
},
|
|
@@ -48087,41 +48181,88 @@ export default {
|
|
|
48087
48181
|
properties: {
|
|
48088
48182
|
reservation_created: {
|
|
48089
48183
|
properties: {
|
|
48090
|
-
|
|
48184
|
+
automated_occupied_preset: {
|
|
48091
48185
|
properties: {
|
|
48186
|
+
cooling_set_point_celsius: {
|
|
48187
|
+
format: 'float',
|
|
48188
|
+
type: 'number',
|
|
48189
|
+
},
|
|
48190
|
+
cooling_set_point_fahrenheit: {
|
|
48191
|
+
format: 'float',
|
|
48192
|
+
type: 'number',
|
|
48193
|
+
},
|
|
48092
48194
|
fan_mode: {
|
|
48093
48195
|
enum: ['on', 'auto', 'circulate'],
|
|
48094
48196
|
type: 'string',
|
|
48095
48197
|
},
|
|
48198
|
+
heating_set_point_celsius: {
|
|
48199
|
+
format: 'float',
|
|
48200
|
+
type: 'number',
|
|
48201
|
+
},
|
|
48202
|
+
heating_set_point_fahrenheit: {
|
|
48203
|
+
format: 'float',
|
|
48204
|
+
type: 'number',
|
|
48205
|
+
},
|
|
48096
48206
|
is_override_allowed: { type: 'boolean' },
|
|
48207
|
+
max_override_period_minutes: {
|
|
48208
|
+
format: 'float',
|
|
48209
|
+
type: 'number',
|
|
48210
|
+
},
|
|
48097
48211
|
mode: {
|
|
48098
48212
|
enum: ['heat', 'cool', 'auto'],
|
|
48099
48213
|
type: 'string',
|
|
48100
48214
|
},
|
|
48101
|
-
|
|
48215
|
+
},
|
|
48216
|
+
required: [
|
|
48217
|
+
'mode',
|
|
48218
|
+
'fan_mode',
|
|
48219
|
+
'is_override_allowed',
|
|
48220
|
+
'max_override_period_minutes',
|
|
48221
|
+
],
|
|
48222
|
+
type: 'object',
|
|
48223
|
+
},
|
|
48224
|
+
automated_unoccupied_preset: {
|
|
48225
|
+
properties: {
|
|
48226
|
+
cooling_set_point_celsius: {
|
|
48227
|
+
format: 'float',
|
|
48228
|
+
type: 'number',
|
|
48229
|
+
},
|
|
48230
|
+
cooling_set_point_fahrenheit: {
|
|
48231
|
+
format: 'float',
|
|
48232
|
+
type: 'number',
|
|
48233
|
+
},
|
|
48234
|
+
fan_mode: {
|
|
48235
|
+
enum: ['on', 'auto', 'circulate'],
|
|
48236
|
+
type: 'string',
|
|
48237
|
+
},
|
|
48238
|
+
heating_set_point_celsius: {
|
|
48239
|
+
format: 'float',
|
|
48240
|
+
type: 'number',
|
|
48241
|
+
},
|
|
48242
|
+
heating_set_point_fahrenheit: {
|
|
48102
48243
|
format: 'float',
|
|
48103
48244
|
type: 'number',
|
|
48104
48245
|
},
|
|
48105
|
-
|
|
48246
|
+
is_override_allowed: { type: 'boolean' },
|
|
48247
|
+
max_override_period_minutes: {
|
|
48106
48248
|
format: 'float',
|
|
48107
48249
|
type: 'number',
|
|
48108
48250
|
},
|
|
48109
|
-
|
|
48110
|
-
enum: ['
|
|
48251
|
+
mode: {
|
|
48252
|
+
enum: ['heat', 'cool', 'auto'],
|
|
48111
48253
|
type: 'string',
|
|
48112
48254
|
},
|
|
48113
48255
|
},
|
|
48114
48256
|
required: [
|
|
48115
48257
|
'mode',
|
|
48116
|
-
'temperature',
|
|
48117
|
-
'temperature_unit',
|
|
48118
48258
|
'fan_mode',
|
|
48119
48259
|
'is_override_allowed',
|
|
48120
|
-
'
|
|
48260
|
+
'max_override_period_minutes',
|
|
48121
48261
|
],
|
|
48122
48262
|
type: 'object',
|
|
48123
48263
|
},
|
|
48124
48264
|
occupied_preset_key: { type: 'string' },
|
|
48265
|
+
unoccupied_preset_key: { type: 'string' },
|
|
48125
48266
|
},
|
|
48126
48267
|
type: 'object',
|
|
48127
48268
|
},
|
|
@@ -48296,41 +48437,88 @@ export default {
|
|
|
48296
48437
|
properties: {
|
|
48297
48438
|
reservation_created: {
|
|
48298
48439
|
properties: {
|
|
48299
|
-
|
|
48440
|
+
automated_occupied_preset: {
|
|
48300
48441
|
properties: {
|
|
48442
|
+
cooling_set_point_celsius: {
|
|
48443
|
+
format: 'float',
|
|
48444
|
+
type: 'number',
|
|
48445
|
+
},
|
|
48446
|
+
cooling_set_point_fahrenheit: {
|
|
48447
|
+
format: 'float',
|
|
48448
|
+
type: 'number',
|
|
48449
|
+
},
|
|
48301
48450
|
fan_mode: {
|
|
48302
48451
|
enum: ['on', 'auto', 'circulate'],
|
|
48303
48452
|
type: 'string',
|
|
48304
48453
|
},
|
|
48454
|
+
heating_set_point_celsius: {
|
|
48455
|
+
format: 'float',
|
|
48456
|
+
type: 'number',
|
|
48457
|
+
},
|
|
48458
|
+
heating_set_point_fahrenheit: {
|
|
48459
|
+
format: 'float',
|
|
48460
|
+
type: 'number',
|
|
48461
|
+
},
|
|
48305
48462
|
is_override_allowed: { type: 'boolean' },
|
|
48463
|
+
max_override_period_minutes: {
|
|
48464
|
+
format: 'float',
|
|
48465
|
+
type: 'number',
|
|
48466
|
+
},
|
|
48306
48467
|
mode: {
|
|
48307
48468
|
enum: ['heat', 'cool', 'auto'],
|
|
48308
48469
|
type: 'string',
|
|
48309
48470
|
},
|
|
48310
|
-
|
|
48471
|
+
},
|
|
48472
|
+
required: [
|
|
48473
|
+
'mode',
|
|
48474
|
+
'fan_mode',
|
|
48475
|
+
'is_override_allowed',
|
|
48476
|
+
'max_override_period_minutes',
|
|
48477
|
+
],
|
|
48478
|
+
type: 'object',
|
|
48479
|
+
},
|
|
48480
|
+
automated_unoccupied_preset: {
|
|
48481
|
+
properties: {
|
|
48482
|
+
cooling_set_point_celsius: {
|
|
48483
|
+
format: 'float',
|
|
48484
|
+
type: 'number',
|
|
48485
|
+
},
|
|
48486
|
+
cooling_set_point_fahrenheit: {
|
|
48487
|
+
format: 'float',
|
|
48488
|
+
type: 'number',
|
|
48489
|
+
},
|
|
48490
|
+
fan_mode: {
|
|
48491
|
+
enum: ['on', 'auto', 'circulate'],
|
|
48492
|
+
type: 'string',
|
|
48493
|
+
},
|
|
48494
|
+
heating_set_point_celsius: {
|
|
48495
|
+
format: 'float',
|
|
48496
|
+
type: 'number',
|
|
48497
|
+
},
|
|
48498
|
+
heating_set_point_fahrenheit: {
|
|
48311
48499
|
format: 'float',
|
|
48312
48500
|
type: 'number',
|
|
48313
48501
|
},
|
|
48314
|
-
|
|
48502
|
+
is_override_allowed: { type: 'boolean' },
|
|
48503
|
+
max_override_period_minutes: {
|
|
48315
48504
|
format: 'float',
|
|
48316
48505
|
type: 'number',
|
|
48317
48506
|
},
|
|
48318
|
-
|
|
48319
|
-
enum: ['
|
|
48507
|
+
mode: {
|
|
48508
|
+
enum: ['heat', 'cool', 'auto'],
|
|
48320
48509
|
type: 'string',
|
|
48321
48510
|
},
|
|
48322
48511
|
},
|
|
48323
48512
|
required: [
|
|
48324
48513
|
'mode',
|
|
48325
|
-
'temperature',
|
|
48326
|
-
'temperature_unit',
|
|
48327
48514
|
'fan_mode',
|
|
48328
48515
|
'is_override_allowed',
|
|
48329
|
-
'
|
|
48516
|
+
'max_override_period_minutes',
|
|
48330
48517
|
],
|
|
48331
48518
|
type: 'object',
|
|
48332
48519
|
},
|
|
48333
48520
|
occupied_preset_key: { type: 'string' },
|
|
48521
|
+
unoccupied_preset_key: { type: 'string' },
|
|
48334
48522
|
},
|
|
48335
48523
|
type: 'object',
|
|
48336
48524
|
},
|