@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
package/dist/connect.cjs
CHANGED
|
@@ -53568,41 +53568,88 @@ var openapi_default = {
|
|
|
53568
53568
|
properties: {
|
|
53569
53569
|
reservation_created: {
|
|
53570
53570
|
properties: {
|
|
53571
|
-
|
|
53571
|
+
automated_occupied_preset: {
|
|
53572
53572
|
properties: {
|
|
53573
|
+
cooling_set_point_celsius: {
|
|
53574
|
+
format: "float",
|
|
53575
|
+
type: "number"
|
|
53576
|
+
},
|
|
53577
|
+
cooling_set_point_fahrenheit: {
|
|
53578
|
+
format: "float",
|
|
53579
|
+
type: "number"
|
|
53580
|
+
},
|
|
53573
53581
|
fan_mode: {
|
|
53574
53582
|
enum: ["on", "auto", "circulate"],
|
|
53575
53583
|
type: "string"
|
|
53576
53584
|
},
|
|
53585
|
+
heating_set_point_celsius: {
|
|
53586
|
+
format: "float",
|
|
53587
|
+
type: "number"
|
|
53588
|
+
},
|
|
53589
|
+
heating_set_point_fahrenheit: {
|
|
53590
|
+
format: "float",
|
|
53591
|
+
type: "number"
|
|
53592
|
+
},
|
|
53577
53593
|
is_override_allowed: { type: "boolean" },
|
|
53594
|
+
max_override_period_minutes: {
|
|
53595
|
+
format: "float",
|
|
53596
|
+
type: "number"
|
|
53597
|
+
},
|
|
53578
53598
|
mode: {
|
|
53579
53599
|
enum: ["heat", "cool", "auto"],
|
|
53580
53600
|
type: "string"
|
|
53601
|
+
}
|
|
53602
|
+
},
|
|
53603
|
+
required: [
|
|
53604
|
+
"mode",
|
|
53605
|
+
"fan_mode",
|
|
53606
|
+
"is_override_allowed",
|
|
53607
|
+
"max_override_period_minutes"
|
|
53608
|
+
],
|
|
53609
|
+
type: "object"
|
|
53610
|
+
},
|
|
53611
|
+
automated_unoccupied_preset: {
|
|
53612
|
+
properties: {
|
|
53613
|
+
cooling_set_point_celsius: {
|
|
53614
|
+
format: "float",
|
|
53615
|
+
type: "number"
|
|
53616
|
+
},
|
|
53617
|
+
cooling_set_point_fahrenheit: {
|
|
53618
|
+
format: "float",
|
|
53619
|
+
type: "number"
|
|
53620
|
+
},
|
|
53621
|
+
fan_mode: {
|
|
53622
|
+
enum: ["on", "auto", "circulate"],
|
|
53623
|
+
type: "string"
|
|
53624
|
+
},
|
|
53625
|
+
heating_set_point_celsius: {
|
|
53626
|
+
format: "float",
|
|
53627
|
+
type: "number"
|
|
53581
53628
|
},
|
|
53582
|
-
|
|
53629
|
+
heating_set_point_fahrenheit: {
|
|
53583
53630
|
format: "float",
|
|
53584
53631
|
type: "number"
|
|
53585
53632
|
},
|
|
53586
|
-
|
|
53633
|
+
is_override_allowed: { type: "boolean" },
|
|
53634
|
+
max_override_period_minutes: {
|
|
53587
53635
|
format: "float",
|
|
53588
53636
|
type: "number"
|
|
53589
53637
|
},
|
|
53590
|
-
|
|
53591
|
-
enum: ["
|
|
53638
|
+
mode: {
|
|
53639
|
+
enum: ["heat", "cool", "auto"],
|
|
53592
53640
|
type: "string"
|
|
53593
53641
|
}
|
|
53594
53642
|
},
|
|
53595
53643
|
required: [
|
|
53596
53644
|
"mode",
|
|
53597
|
-
"temperature",
|
|
53598
|
-
"temperature_unit",
|
|
53599
53645
|
"fan_mode",
|
|
53600
53646
|
"is_override_allowed",
|
|
53601
|
-
"
|
|
53647
|
+
"max_override_period_minutes"
|
|
53602
53648
|
],
|
|
53603
53649
|
type: "object"
|
|
53604
53650
|
},
|
|
53605
|
-
occupied_preset_key: { type: "string" }
|
|
53651
|
+
occupied_preset_key: { type: "string" },
|
|
53652
|
+
unoccupied_preset_key: { type: "string" }
|
|
53606
53653
|
},
|
|
53607
53654
|
type: "object"
|
|
53608
53655
|
},
|
|
@@ -53777,41 +53824,88 @@ var openapi_default = {
|
|
|
53777
53824
|
properties: {
|
|
53778
53825
|
reservation_created: {
|
|
53779
53826
|
properties: {
|
|
53780
|
-
|
|
53827
|
+
automated_occupied_preset: {
|
|
53781
53828
|
properties: {
|
|
53829
|
+
cooling_set_point_celsius: {
|
|
53830
|
+
format: "float",
|
|
53831
|
+
type: "number"
|
|
53832
|
+
},
|
|
53833
|
+
cooling_set_point_fahrenheit: {
|
|
53834
|
+
format: "float",
|
|
53835
|
+
type: "number"
|
|
53836
|
+
},
|
|
53782
53837
|
fan_mode: {
|
|
53783
53838
|
enum: ["on", "auto", "circulate"],
|
|
53784
53839
|
type: "string"
|
|
53785
53840
|
},
|
|
53841
|
+
heating_set_point_celsius: {
|
|
53842
|
+
format: "float",
|
|
53843
|
+
type: "number"
|
|
53844
|
+
},
|
|
53845
|
+
heating_set_point_fahrenheit: {
|
|
53846
|
+
format: "float",
|
|
53847
|
+
type: "number"
|
|
53848
|
+
},
|
|
53786
53849
|
is_override_allowed: { type: "boolean" },
|
|
53850
|
+
max_override_period_minutes: {
|
|
53851
|
+
format: "float",
|
|
53852
|
+
type: "number"
|
|
53853
|
+
},
|
|
53787
53854
|
mode: {
|
|
53788
53855
|
enum: ["heat", "cool", "auto"],
|
|
53789
53856
|
type: "string"
|
|
53857
|
+
}
|
|
53858
|
+
},
|
|
53859
|
+
required: [
|
|
53860
|
+
"mode",
|
|
53861
|
+
"fan_mode",
|
|
53862
|
+
"is_override_allowed",
|
|
53863
|
+
"max_override_period_minutes"
|
|
53864
|
+
],
|
|
53865
|
+
type: "object"
|
|
53866
|
+
},
|
|
53867
|
+
automated_unoccupied_preset: {
|
|
53868
|
+
properties: {
|
|
53869
|
+
cooling_set_point_celsius: {
|
|
53870
|
+
format: "float",
|
|
53871
|
+
type: "number"
|
|
53872
|
+
},
|
|
53873
|
+
cooling_set_point_fahrenheit: {
|
|
53874
|
+
format: "float",
|
|
53875
|
+
type: "number"
|
|
53876
|
+
},
|
|
53877
|
+
fan_mode: {
|
|
53878
|
+
enum: ["on", "auto", "circulate"],
|
|
53879
|
+
type: "string"
|
|
53880
|
+
},
|
|
53881
|
+
heating_set_point_celsius: {
|
|
53882
|
+
format: "float",
|
|
53883
|
+
type: "number"
|
|
53790
53884
|
},
|
|
53791
|
-
|
|
53885
|
+
heating_set_point_fahrenheit: {
|
|
53792
53886
|
format: "float",
|
|
53793
53887
|
type: "number"
|
|
53794
53888
|
},
|
|
53795
|
-
|
|
53889
|
+
is_override_allowed: { type: "boolean" },
|
|
53890
|
+
max_override_period_minutes: {
|
|
53796
53891
|
format: "float",
|
|
53797
53892
|
type: "number"
|
|
53798
53893
|
},
|
|
53799
|
-
|
|
53800
|
-
enum: ["
|
|
53894
|
+
mode: {
|
|
53895
|
+
enum: ["heat", "cool", "auto"],
|
|
53801
53896
|
type: "string"
|
|
53802
53897
|
}
|
|
53803
53898
|
},
|
|
53804
53899
|
required: [
|
|
53805
53900
|
"mode",
|
|
53806
|
-
"temperature",
|
|
53807
|
-
"temperature_unit",
|
|
53808
53901
|
"fan_mode",
|
|
53809
53902
|
"is_override_allowed",
|
|
53810
|
-
"
|
|
53903
|
+
"max_override_period_minutes"
|
|
53811
53904
|
],
|
|
53812
53905
|
type: "object"
|
|
53813
53906
|
},
|
|
53814
|
-
occupied_preset_key: { type: "string" }
|
|
53907
|
+
occupied_preset_key: { type: "string" },
|
|
53908
|
+
unoccupied_preset_key: { type: "string" }
|
|
53815
53909
|
},
|
|
53816
53910
|
type: "object"
|
|
53817
53911
|
},
|
|
@@ -53977,41 +54071,88 @@ var openapi_default = {
|
|
|
53977
54071
|
properties: {
|
|
53978
54072
|
reservation_created: {
|
|
53979
54073
|
properties: {
|
|
53980
|
-
|
|
54074
|
+
automated_occupied_preset: {
|
|
53981
54075
|
properties: {
|
|
54076
|
+
cooling_set_point_celsius: {
|
|
54077
|
+
format: "float",
|
|
54078
|
+
type: "number"
|
|
54079
|
+
},
|
|
54080
|
+
cooling_set_point_fahrenheit: {
|
|
54081
|
+
format: "float",
|
|
54082
|
+
type: "number"
|
|
54083
|
+
},
|
|
53982
54084
|
fan_mode: {
|
|
53983
54085
|
enum: ["on", "auto", "circulate"],
|
|
53984
54086
|
type: "string"
|
|
53985
54087
|
},
|
|
54088
|
+
heating_set_point_celsius: {
|
|
54089
|
+
format: "float",
|
|
54090
|
+
type: "number"
|
|
54091
|
+
},
|
|
54092
|
+
heating_set_point_fahrenheit: {
|
|
54093
|
+
format: "float",
|
|
54094
|
+
type: "number"
|
|
54095
|
+
},
|
|
53986
54096
|
is_override_allowed: { type: "boolean" },
|
|
54097
|
+
max_override_period_minutes: {
|
|
54098
|
+
format: "float",
|
|
54099
|
+
type: "number"
|
|
54100
|
+
},
|
|
53987
54101
|
mode: {
|
|
53988
54102
|
enum: ["heat", "cool", "auto"],
|
|
53989
54103
|
type: "string"
|
|
54104
|
+
}
|
|
54105
|
+
},
|
|
54106
|
+
required: [
|
|
54107
|
+
"mode",
|
|
54108
|
+
"fan_mode",
|
|
54109
|
+
"is_override_allowed",
|
|
54110
|
+
"max_override_period_minutes"
|
|
54111
|
+
],
|
|
54112
|
+
type: "object"
|
|
54113
|
+
},
|
|
54114
|
+
automated_unoccupied_preset: {
|
|
54115
|
+
properties: {
|
|
54116
|
+
cooling_set_point_celsius: {
|
|
54117
|
+
format: "float",
|
|
54118
|
+
type: "number"
|
|
54119
|
+
},
|
|
54120
|
+
cooling_set_point_fahrenheit: {
|
|
54121
|
+
format: "float",
|
|
54122
|
+
type: "number"
|
|
54123
|
+
},
|
|
54124
|
+
fan_mode: {
|
|
54125
|
+
enum: ["on", "auto", "circulate"],
|
|
54126
|
+
type: "string"
|
|
54127
|
+
},
|
|
54128
|
+
heating_set_point_celsius: {
|
|
54129
|
+
format: "float",
|
|
54130
|
+
type: "number"
|
|
53990
54131
|
},
|
|
53991
|
-
|
|
54132
|
+
heating_set_point_fahrenheit: {
|
|
53992
54133
|
format: "float",
|
|
53993
54134
|
type: "number"
|
|
53994
54135
|
},
|
|
53995
|
-
|
|
54136
|
+
is_override_allowed: { type: "boolean" },
|
|
54137
|
+
max_override_period_minutes: {
|
|
53996
54138
|
format: "float",
|
|
53997
54139
|
type: "number"
|
|
53998
54140
|
},
|
|
53999
|
-
|
|
54000
|
-
enum: ["
|
|
54141
|
+
mode: {
|
|
54142
|
+
enum: ["heat", "cool", "auto"],
|
|
54001
54143
|
type: "string"
|
|
54002
54144
|
}
|
|
54003
54145
|
},
|
|
54004
54146
|
required: [
|
|
54005
54147
|
"mode",
|
|
54006
|
-
"temperature",
|
|
54007
|
-
"temperature_unit",
|
|
54008
54148
|
"fan_mode",
|
|
54009
54149
|
"is_override_allowed",
|
|
54010
|
-
"
|
|
54150
|
+
"max_override_period_minutes"
|
|
54011
54151
|
],
|
|
54012
54152
|
type: "object"
|
|
54013
54153
|
},
|
|
54014
|
-
occupied_preset_key: { type: "string" }
|
|
54154
|
+
occupied_preset_key: { type: "string" },
|
|
54155
|
+
unoccupied_preset_key: { type: "string" }
|
|
54015
54156
|
},
|
|
54016
54157
|
type: "object"
|
|
54017
54158
|
},
|
|
@@ -54186,41 +54327,88 @@ var openapi_default = {
|
|
|
54186
54327
|
properties: {
|
|
54187
54328
|
reservation_created: {
|
|
54188
54329
|
properties: {
|
|
54189
|
-
|
|
54330
|
+
automated_occupied_preset: {
|
|
54190
54331
|
properties: {
|
|
54332
|
+
cooling_set_point_celsius: {
|
|
54333
|
+
format: "float",
|
|
54334
|
+
type: "number"
|
|
54335
|
+
},
|
|
54336
|
+
cooling_set_point_fahrenheit: {
|
|
54337
|
+
format: "float",
|
|
54338
|
+
type: "number"
|
|
54339
|
+
},
|
|
54191
54340
|
fan_mode: {
|
|
54192
54341
|
enum: ["on", "auto", "circulate"],
|
|
54193
54342
|
type: "string"
|
|
54194
54343
|
},
|
|
54344
|
+
heating_set_point_celsius: {
|
|
54345
|
+
format: "float",
|
|
54346
|
+
type: "number"
|
|
54347
|
+
},
|
|
54348
|
+
heating_set_point_fahrenheit: {
|
|
54349
|
+
format: "float",
|
|
54350
|
+
type: "number"
|
|
54351
|
+
},
|
|
54195
54352
|
is_override_allowed: { type: "boolean" },
|
|
54353
|
+
max_override_period_minutes: {
|
|
54354
|
+
format: "float",
|
|
54355
|
+
type: "number"
|
|
54356
|
+
},
|
|
54196
54357
|
mode: {
|
|
54197
54358
|
enum: ["heat", "cool", "auto"],
|
|
54198
54359
|
type: "string"
|
|
54360
|
+
}
|
|
54361
|
+
},
|
|
54362
|
+
required: [
|
|
54363
|
+
"mode",
|
|
54364
|
+
"fan_mode",
|
|
54365
|
+
"is_override_allowed",
|
|
54366
|
+
"max_override_period_minutes"
|
|
54367
|
+
],
|
|
54368
|
+
type: "object"
|
|
54369
|
+
},
|
|
54370
|
+
automated_unoccupied_preset: {
|
|
54371
|
+
properties: {
|
|
54372
|
+
cooling_set_point_celsius: {
|
|
54373
|
+
format: "float",
|
|
54374
|
+
type: "number"
|
|
54375
|
+
},
|
|
54376
|
+
cooling_set_point_fahrenheit: {
|
|
54377
|
+
format: "float",
|
|
54378
|
+
type: "number"
|
|
54379
|
+
},
|
|
54380
|
+
fan_mode: {
|
|
54381
|
+
enum: ["on", "auto", "circulate"],
|
|
54382
|
+
type: "string"
|
|
54383
|
+
},
|
|
54384
|
+
heating_set_point_celsius: {
|
|
54385
|
+
format: "float",
|
|
54386
|
+
type: "number"
|
|
54199
54387
|
},
|
|
54200
|
-
|
|
54388
|
+
heating_set_point_fahrenheit: {
|
|
54201
54389
|
format: "float",
|
|
54202
54390
|
type: "number"
|
|
54203
54391
|
},
|
|
54204
|
-
|
|
54392
|
+
is_override_allowed: { type: "boolean" },
|
|
54393
|
+
max_override_period_minutes: {
|
|
54205
54394
|
format: "float",
|
|
54206
54395
|
type: "number"
|
|
54207
54396
|
},
|
|
54208
|
-
|
|
54209
|
-
enum: ["
|
|
54397
|
+
mode: {
|
|
54398
|
+
enum: ["heat", "cool", "auto"],
|
|
54210
54399
|
type: "string"
|
|
54211
54400
|
}
|
|
54212
54401
|
},
|
|
54213
54402
|
required: [
|
|
54214
54403
|
"mode",
|
|
54215
|
-
"temperature",
|
|
54216
|
-
"temperature_unit",
|
|
54217
54404
|
"fan_mode",
|
|
54218
54405
|
"is_override_allowed",
|
|
54219
|
-
"
|
|
54406
|
+
"max_override_period_minutes"
|
|
54220
54407
|
],
|
|
54221
54408
|
type: "object"
|
|
54222
54409
|
},
|
|
54223
|
-
occupied_preset_key: { type: "string" }
|
|
54410
|
+
occupied_preset_key: { type: "string" },
|
|
54411
|
+
unoccupied_preset_key: { type: "string" }
|
|
54224
54412
|
},
|
|
54225
54413
|
type: "object"
|
|
54226
54414
|
},
|