@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
|
@@ -42734,28 +42734,73 @@ declare const _default: {
|
|
|
42734
42734
|
properties: {
|
|
42735
42735
|
reservation_created: {
|
|
42736
42736
|
properties: {
|
|
42737
|
-
|
|
42737
|
+
automated_occupied_preset: {
|
|
42738
42738
|
properties: {
|
|
42739
|
+
cooling_set_point_celsius: {
|
|
42740
|
+
format: string;
|
|
42741
|
+
type: string;
|
|
42742
|
+
};
|
|
42743
|
+
cooling_set_point_fahrenheit: {
|
|
42744
|
+
format: string;
|
|
42745
|
+
type: string;
|
|
42746
|
+
};
|
|
42739
42747
|
fan_mode: {
|
|
42740
42748
|
enum: string[];
|
|
42741
42749
|
type: string;
|
|
42742
42750
|
};
|
|
42751
|
+
heating_set_point_celsius: {
|
|
42752
|
+
format: string;
|
|
42753
|
+
type: string;
|
|
42754
|
+
};
|
|
42755
|
+
heating_set_point_fahrenheit: {
|
|
42756
|
+
format: string;
|
|
42757
|
+
type: string;
|
|
42758
|
+
};
|
|
42743
42759
|
is_override_allowed: {
|
|
42744
42760
|
type: string;
|
|
42745
42761
|
};
|
|
42762
|
+
max_override_period_minutes: {
|
|
42763
|
+
format: string;
|
|
42764
|
+
type: string;
|
|
42765
|
+
};
|
|
42746
42766
|
mode: {
|
|
42747
42767
|
enum: string[];
|
|
42748
42768
|
type: string;
|
|
42749
42769
|
};
|
|
42750
|
-
|
|
42770
|
+
};
|
|
42771
|
+
required: string[];
|
|
42772
|
+
type: string;
|
|
42773
|
+
};
|
|
42774
|
+
automated_unoccupied_preset: {
|
|
42775
|
+
properties: {
|
|
42776
|
+
cooling_set_point_celsius: {
|
|
42751
42777
|
format: string;
|
|
42752
42778
|
type: string;
|
|
42753
42779
|
};
|
|
42754
|
-
|
|
42780
|
+
cooling_set_point_fahrenheit: {
|
|
42755
42781
|
format: string;
|
|
42756
42782
|
type: string;
|
|
42757
42783
|
};
|
|
42758
|
-
|
|
42784
|
+
fan_mode: {
|
|
42785
|
+
enum: string[];
|
|
42786
|
+
type: string;
|
|
42787
|
+
};
|
|
42788
|
+
heating_set_point_celsius: {
|
|
42789
|
+
format: string;
|
|
42790
|
+
type: string;
|
|
42791
|
+
};
|
|
42792
|
+
heating_set_point_fahrenheit: {
|
|
42793
|
+
format: string;
|
|
42794
|
+
type: string;
|
|
42795
|
+
};
|
|
42796
|
+
is_override_allowed: {
|
|
42797
|
+
type: string;
|
|
42798
|
+
};
|
|
42799
|
+
max_override_period_minutes: {
|
|
42800
|
+
format: string;
|
|
42801
|
+
type: string;
|
|
42802
|
+
};
|
|
42803
|
+
mode: {
|
|
42759
42804
|
enum: string[];
|
|
42760
42805
|
type: string;
|
|
42761
42806
|
};
|
|
@@ -42766,6 +42811,9 @@ declare const _default: {
|
|
|
42766
42811
|
occupied_preset_key: {
|
|
42767
42812
|
type: string;
|
|
42768
42813
|
};
|
|
42814
|
+
unoccupied_preset_key: {
|
|
42815
|
+
type: string;
|
|
42816
|
+
};
|
|
42769
42817
|
};
|
|
42770
42818
|
type: string;
|
|
42771
42819
|
};
|
|
@@ -42947,28 +42995,73 @@ declare const _default: {
|
|
|
42947
42995
|
properties: {
|
|
42948
42996
|
reservation_created: {
|
|
42949
42997
|
properties: {
|
|
42950
|
-
|
|
42998
|
+
automated_occupied_preset: {
|
|
42951
42999
|
properties: {
|
|
43000
|
+
cooling_set_point_celsius: {
|
|
43001
|
+
format: string;
|
|
43002
|
+
type: string;
|
|
43003
|
+
};
|
|
43004
|
+
cooling_set_point_fahrenheit: {
|
|
43005
|
+
format: string;
|
|
43006
|
+
type: string;
|
|
43007
|
+
};
|
|
42952
43008
|
fan_mode: {
|
|
42953
43009
|
enum: string[];
|
|
42954
43010
|
type: string;
|
|
42955
43011
|
};
|
|
43012
|
+
heating_set_point_celsius: {
|
|
43013
|
+
format: string;
|
|
43014
|
+
type: string;
|
|
43015
|
+
};
|
|
43016
|
+
heating_set_point_fahrenheit: {
|
|
43017
|
+
format: string;
|
|
43018
|
+
type: string;
|
|
43019
|
+
};
|
|
42956
43020
|
is_override_allowed: {
|
|
42957
43021
|
type: string;
|
|
42958
43022
|
};
|
|
43023
|
+
max_override_period_minutes: {
|
|
43024
|
+
format: string;
|
|
43025
|
+
type: string;
|
|
43026
|
+
};
|
|
42959
43027
|
mode: {
|
|
42960
43028
|
enum: string[];
|
|
42961
43029
|
type: string;
|
|
42962
43030
|
};
|
|
42963
|
-
|
|
43031
|
+
};
|
|
43032
|
+
required: string[];
|
|
43033
|
+
type: string;
|
|
43034
|
+
};
|
|
43035
|
+
automated_unoccupied_preset: {
|
|
43036
|
+
properties: {
|
|
43037
|
+
cooling_set_point_celsius: {
|
|
42964
43038
|
format: string;
|
|
42965
43039
|
type: string;
|
|
42966
43040
|
};
|
|
42967
|
-
|
|
43041
|
+
cooling_set_point_fahrenheit: {
|
|
42968
43042
|
format: string;
|
|
42969
43043
|
type: string;
|
|
42970
43044
|
};
|
|
42971
|
-
|
|
43045
|
+
fan_mode: {
|
|
43046
|
+
enum: string[];
|
|
43047
|
+
type: string;
|
|
43048
|
+
};
|
|
43049
|
+
heating_set_point_celsius: {
|
|
43050
|
+
format: string;
|
|
43051
|
+
type: string;
|
|
43052
|
+
};
|
|
43053
|
+
heating_set_point_fahrenheit: {
|
|
43054
|
+
format: string;
|
|
43055
|
+
type: string;
|
|
43056
|
+
};
|
|
43057
|
+
is_override_allowed: {
|
|
43058
|
+
type: string;
|
|
43059
|
+
};
|
|
43060
|
+
max_override_period_minutes: {
|
|
43061
|
+
format: string;
|
|
43062
|
+
type: string;
|
|
43063
|
+
};
|
|
43064
|
+
mode: {
|
|
42972
43065
|
enum: string[];
|
|
42973
43066
|
type: string;
|
|
42974
43067
|
};
|
|
@@ -42979,6 +43072,9 @@ declare const _default: {
|
|
|
42979
43072
|
occupied_preset_key: {
|
|
42980
43073
|
type: string;
|
|
42981
43074
|
};
|
|
43075
|
+
unoccupied_preset_key: {
|
|
43076
|
+
type: string;
|
|
43077
|
+
};
|
|
42982
43078
|
};
|
|
42983
43079
|
type: string;
|
|
42984
43080
|
};
|
|
@@ -43169,28 +43265,73 @@ declare const _default: {
|
|
|
43169
43265
|
properties: {
|
|
43170
43266
|
reservation_created: {
|
|
43171
43267
|
properties: {
|
|
43172
|
-
|
|
43268
|
+
automated_occupied_preset: {
|
|
43173
43269
|
properties: {
|
|
43270
|
+
cooling_set_point_celsius: {
|
|
43271
|
+
format: string;
|
|
43272
|
+
type: string;
|
|
43273
|
+
};
|
|
43274
|
+
cooling_set_point_fahrenheit: {
|
|
43275
|
+
format: string;
|
|
43276
|
+
type: string;
|
|
43277
|
+
};
|
|
43174
43278
|
fan_mode: {
|
|
43175
43279
|
enum: string[];
|
|
43176
43280
|
type: string;
|
|
43177
43281
|
};
|
|
43282
|
+
heating_set_point_celsius: {
|
|
43283
|
+
format: string;
|
|
43284
|
+
type: string;
|
|
43285
|
+
};
|
|
43286
|
+
heating_set_point_fahrenheit: {
|
|
43287
|
+
format: string;
|
|
43288
|
+
type: string;
|
|
43289
|
+
};
|
|
43178
43290
|
is_override_allowed: {
|
|
43179
43291
|
type: string;
|
|
43180
43292
|
};
|
|
43293
|
+
max_override_period_minutes: {
|
|
43294
|
+
format: string;
|
|
43295
|
+
type: string;
|
|
43296
|
+
};
|
|
43181
43297
|
mode: {
|
|
43182
43298
|
enum: string[];
|
|
43183
43299
|
type: string;
|
|
43184
43300
|
};
|
|
43185
|
-
|
|
43301
|
+
};
|
|
43302
|
+
required: string[];
|
|
43303
|
+
type: string;
|
|
43304
|
+
};
|
|
43305
|
+
automated_unoccupied_preset: {
|
|
43306
|
+
properties: {
|
|
43307
|
+
cooling_set_point_celsius: {
|
|
43186
43308
|
format: string;
|
|
43187
43309
|
type: string;
|
|
43188
43310
|
};
|
|
43189
|
-
|
|
43311
|
+
cooling_set_point_fahrenheit: {
|
|
43190
43312
|
format: string;
|
|
43191
43313
|
type: string;
|
|
43192
43314
|
};
|
|
43193
|
-
|
|
43315
|
+
fan_mode: {
|
|
43316
|
+
enum: string[];
|
|
43317
|
+
type: string;
|
|
43318
|
+
};
|
|
43319
|
+
heating_set_point_celsius: {
|
|
43320
|
+
format: string;
|
|
43321
|
+
type: string;
|
|
43322
|
+
};
|
|
43323
|
+
heating_set_point_fahrenheit: {
|
|
43324
|
+
format: string;
|
|
43325
|
+
type: string;
|
|
43326
|
+
};
|
|
43327
|
+
is_override_allowed: {
|
|
43328
|
+
type: string;
|
|
43329
|
+
};
|
|
43330
|
+
max_override_period_minutes: {
|
|
43331
|
+
format: string;
|
|
43332
|
+
type: string;
|
|
43333
|
+
};
|
|
43334
|
+
mode: {
|
|
43194
43335
|
enum: string[];
|
|
43195
43336
|
type: string;
|
|
43196
43337
|
};
|
|
@@ -43201,6 +43342,9 @@ declare const _default: {
|
|
|
43201
43342
|
occupied_preset_key: {
|
|
43202
43343
|
type: string;
|
|
43203
43344
|
};
|
|
43345
|
+
unoccupied_preset_key: {
|
|
43346
|
+
type: string;
|
|
43347
|
+
};
|
|
43204
43348
|
};
|
|
43205
43349
|
type: string;
|
|
43206
43350
|
};
|
|
@@ -43402,28 +43546,73 @@ declare const _default: {
|
|
|
43402
43546
|
properties: {
|
|
43403
43547
|
reservation_created: {
|
|
43404
43548
|
properties: {
|
|
43405
|
-
|
|
43549
|
+
automated_occupied_preset: {
|
|
43406
43550
|
properties: {
|
|
43551
|
+
cooling_set_point_celsius: {
|
|
43552
|
+
format: string;
|
|
43553
|
+
type: string;
|
|
43554
|
+
};
|
|
43555
|
+
cooling_set_point_fahrenheit: {
|
|
43556
|
+
format: string;
|
|
43557
|
+
type: string;
|
|
43558
|
+
};
|
|
43407
43559
|
fan_mode: {
|
|
43408
43560
|
enum: string[];
|
|
43409
43561
|
type: string;
|
|
43410
43562
|
};
|
|
43563
|
+
heating_set_point_celsius: {
|
|
43564
|
+
format: string;
|
|
43565
|
+
type: string;
|
|
43566
|
+
};
|
|
43567
|
+
heating_set_point_fahrenheit: {
|
|
43568
|
+
format: string;
|
|
43569
|
+
type: string;
|
|
43570
|
+
};
|
|
43411
43571
|
is_override_allowed: {
|
|
43412
43572
|
type: string;
|
|
43413
43573
|
};
|
|
43574
|
+
max_override_period_minutes: {
|
|
43575
|
+
format: string;
|
|
43576
|
+
type: string;
|
|
43577
|
+
};
|
|
43414
43578
|
mode: {
|
|
43415
43579
|
enum: string[];
|
|
43416
43580
|
type: string;
|
|
43417
43581
|
};
|
|
43418
|
-
|
|
43582
|
+
};
|
|
43583
|
+
required: string[];
|
|
43584
|
+
type: string;
|
|
43585
|
+
};
|
|
43586
|
+
automated_unoccupied_preset: {
|
|
43587
|
+
properties: {
|
|
43588
|
+
cooling_set_point_celsius: {
|
|
43419
43589
|
format: string;
|
|
43420
43590
|
type: string;
|
|
43421
43591
|
};
|
|
43422
|
-
|
|
43592
|
+
cooling_set_point_fahrenheit: {
|
|
43423
43593
|
format: string;
|
|
43424
43594
|
type: string;
|
|
43425
43595
|
};
|
|
43426
|
-
|
|
43596
|
+
fan_mode: {
|
|
43597
|
+
enum: string[];
|
|
43598
|
+
type: string;
|
|
43599
|
+
};
|
|
43600
|
+
heating_set_point_celsius: {
|
|
43601
|
+
format: string;
|
|
43602
|
+
type: string;
|
|
43603
|
+
};
|
|
43604
|
+
heating_set_point_fahrenheit: {
|
|
43605
|
+
format: string;
|
|
43606
|
+
type: string;
|
|
43607
|
+
};
|
|
43608
|
+
is_override_allowed: {
|
|
43609
|
+
type: string;
|
|
43610
|
+
};
|
|
43611
|
+
max_override_period_minutes: {
|
|
43612
|
+
format: string;
|
|
43613
|
+
type: string;
|
|
43614
|
+
};
|
|
43615
|
+
mode: {
|
|
43427
43616
|
enum: string[];
|
|
43428
43617
|
type: string;
|
|
43429
43618
|
};
|
|
@@ -43434,6 +43623,9 @@ declare const _default: {
|
|
|
43434
43623
|
occupied_preset_key: {
|
|
43435
43624
|
type: string;
|
|
43436
43625
|
};
|
|
43626
|
+
unoccupied_preset_key: {
|
|
43627
|
+
type: string;
|
|
43628
|
+
};
|
|
43437
43629
|
};
|
|
43438
43630
|
type: string;
|
|
43439
43631
|
};
|