@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
|
@@ -57344,13 +57344,26 @@ export type Routes = {
|
|
|
57344
57344
|
rules: {
|
|
57345
57345
|
reservation_created?: {
|
|
57346
57346
|
occupied_preset_key?: string | undefined;
|
|
57347
|
-
|
|
57347
|
+
automated_occupied_preset?: {
|
|
57348
57348
|
mode: 'heat' | 'cool' | 'auto';
|
|
57349
|
-
|
|
57350
|
-
|
|
57349
|
+
heating_set_point_celsius?: number | undefined;
|
|
57350
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
57351
|
+
cooling_set_point_celsius?: number | undefined;
|
|
57352
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
57353
|
+
fan_mode: 'on' | 'auto' | 'circulate';
|
|
57354
|
+
is_override_allowed: boolean;
|
|
57355
|
+
max_override_period_minutes: number;
|
|
57356
|
+
} | undefined;
|
|
57357
|
+
unoccupied_preset_key?: string | undefined;
|
|
57358
|
+
automated_unoccupied_preset?: {
|
|
57359
|
+
mode: 'heat' | 'cool' | 'auto';
|
|
57360
|
+
heating_set_point_celsius?: number | undefined;
|
|
57361
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
57362
|
+
cooling_set_point_celsius?: number | undefined;
|
|
57363
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
57351
57364
|
fan_mode: 'on' | 'auto' | 'circulate';
|
|
57352
57365
|
is_override_allowed: boolean;
|
|
57353
|
-
|
|
57366
|
+
max_override_period_minutes: number;
|
|
57354
57367
|
} | undefined;
|
|
57355
57368
|
} | undefined;
|
|
57356
57369
|
reservation_time_updated?: {} | undefined;
|
|
@@ -57403,13 +57416,26 @@ export type Routes = {
|
|
|
57403
57416
|
rules?: {
|
|
57404
57417
|
reservation_created?: {
|
|
57405
57418
|
occupied_preset_key?: string | undefined;
|
|
57406
|
-
|
|
57419
|
+
automated_occupied_preset?: {
|
|
57407
57420
|
mode: 'heat' | 'cool' | 'auto';
|
|
57408
|
-
|
|
57409
|
-
|
|
57421
|
+
heating_set_point_celsius?: number | undefined;
|
|
57422
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
57423
|
+
cooling_set_point_celsius?: number | undefined;
|
|
57424
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
57425
|
+
fan_mode: 'on' | 'auto' | 'circulate';
|
|
57426
|
+
is_override_allowed: boolean;
|
|
57427
|
+
max_override_period_minutes: number;
|
|
57428
|
+
} | undefined;
|
|
57429
|
+
unoccupied_preset_key?: string | undefined;
|
|
57430
|
+
automated_unoccupied_preset?: {
|
|
57431
|
+
mode: 'heat' | 'cool' | 'auto';
|
|
57432
|
+
heating_set_point_celsius?: number | undefined;
|
|
57433
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
57434
|
+
cooling_set_point_celsius?: number | undefined;
|
|
57435
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
57410
57436
|
fan_mode: 'on' | 'auto' | 'circulate';
|
|
57411
57437
|
is_override_allowed: boolean;
|
|
57412
|
-
|
|
57438
|
+
max_override_period_minutes: number;
|
|
57413
57439
|
} | undefined;
|
|
57414
57440
|
} | undefined;
|
|
57415
57441
|
reservation_time_updated?: {} | undefined;
|
package/package.json
CHANGED
|
@@ -51871,41 +51871,88 @@ export default {
|
|
|
51871
51871
|
properties: {
|
|
51872
51872
|
reservation_created: {
|
|
51873
51873
|
properties: {
|
|
51874
|
-
|
|
51874
|
+
automated_occupied_preset: {
|
|
51875
51875
|
properties: {
|
|
51876
|
+
cooling_set_point_celsius: {
|
|
51877
|
+
format: 'float',
|
|
51878
|
+
type: 'number',
|
|
51879
|
+
},
|
|
51880
|
+
cooling_set_point_fahrenheit: {
|
|
51881
|
+
format: 'float',
|
|
51882
|
+
type: 'number',
|
|
51883
|
+
},
|
|
51876
51884
|
fan_mode: {
|
|
51877
51885
|
enum: ['on', 'auto', 'circulate'],
|
|
51878
51886
|
type: 'string',
|
|
51879
51887
|
},
|
|
51888
|
+
heating_set_point_celsius: {
|
|
51889
|
+
format: 'float',
|
|
51890
|
+
type: 'number',
|
|
51891
|
+
},
|
|
51892
|
+
heating_set_point_fahrenheit: {
|
|
51893
|
+
format: 'float',
|
|
51894
|
+
type: 'number',
|
|
51895
|
+
},
|
|
51880
51896
|
is_override_allowed: { type: 'boolean' },
|
|
51897
|
+
max_override_period_minutes: {
|
|
51898
|
+
format: 'float',
|
|
51899
|
+
type: 'number',
|
|
51900
|
+
},
|
|
51881
51901
|
mode: {
|
|
51882
51902
|
enum: ['heat', 'cool', 'auto'],
|
|
51883
51903
|
type: 'string',
|
|
51884
51904
|
},
|
|
51885
|
-
|
|
51905
|
+
},
|
|
51906
|
+
required: [
|
|
51907
|
+
'mode',
|
|
51908
|
+
'fan_mode',
|
|
51909
|
+
'is_override_allowed',
|
|
51910
|
+
'max_override_period_minutes',
|
|
51911
|
+
],
|
|
51912
|
+
type: 'object',
|
|
51913
|
+
},
|
|
51914
|
+
automated_unoccupied_preset: {
|
|
51915
|
+
properties: {
|
|
51916
|
+
cooling_set_point_celsius: {
|
|
51917
|
+
format: 'float',
|
|
51918
|
+
type: 'number',
|
|
51919
|
+
},
|
|
51920
|
+
cooling_set_point_fahrenheit: {
|
|
51921
|
+
format: 'float',
|
|
51922
|
+
type: 'number',
|
|
51923
|
+
},
|
|
51924
|
+
fan_mode: {
|
|
51925
|
+
enum: ['on', 'auto', 'circulate'],
|
|
51926
|
+
type: 'string',
|
|
51927
|
+
},
|
|
51928
|
+
heating_set_point_celsius: {
|
|
51929
|
+
format: 'float',
|
|
51930
|
+
type: 'number',
|
|
51931
|
+
},
|
|
51932
|
+
heating_set_point_fahrenheit: {
|
|
51886
51933
|
format: 'float',
|
|
51887
51934
|
type: 'number',
|
|
51888
51935
|
},
|
|
51889
|
-
|
|
51936
|
+
is_override_allowed: { type: 'boolean' },
|
|
51937
|
+
max_override_period_minutes: {
|
|
51890
51938
|
format: 'float',
|
|
51891
51939
|
type: 'number',
|
|
51892
51940
|
},
|
|
51893
|
-
|
|
51894
|
-
enum: ['
|
|
51941
|
+
mode: {
|
|
51942
|
+
enum: ['heat', 'cool', 'auto'],
|
|
51895
51943
|
type: 'string',
|
|
51896
51944
|
},
|
|
51897
51945
|
},
|
|
51898
51946
|
required: [
|
|
51899
51947
|
'mode',
|
|
51900
|
-
'temperature',
|
|
51901
|
-
'temperature_unit',
|
|
51902
51948
|
'fan_mode',
|
|
51903
51949
|
'is_override_allowed',
|
|
51904
|
-
'
|
|
51950
|
+
'max_override_period_minutes',
|
|
51905
51951
|
],
|
|
51906
51952
|
type: 'object',
|
|
51907
51953
|
},
|
|
51908
51954
|
occupied_preset_key: { type: 'string' },
|
|
51955
|
+
unoccupied_preset_key: { type: 'string' },
|
|
51909
51956
|
},
|
|
51910
51957
|
type: 'object',
|
|
51911
51958
|
},
|
|
@@ -52081,41 +52128,88 @@ export default {
|
|
|
52081
52128
|
properties: {
|
|
52082
52129
|
reservation_created: {
|
|
52083
52130
|
properties: {
|
|
52084
|
-
|
|
52131
|
+
automated_occupied_preset: {
|
|
52085
52132
|
properties: {
|
|
52133
|
+
cooling_set_point_celsius: {
|
|
52134
|
+
format: 'float',
|
|
52135
|
+
type: 'number',
|
|
52136
|
+
},
|
|
52137
|
+
cooling_set_point_fahrenheit: {
|
|
52138
|
+
format: 'float',
|
|
52139
|
+
type: 'number',
|
|
52140
|
+
},
|
|
52086
52141
|
fan_mode: {
|
|
52087
52142
|
enum: ['on', 'auto', 'circulate'],
|
|
52088
52143
|
type: 'string',
|
|
52089
52144
|
},
|
|
52145
|
+
heating_set_point_celsius: {
|
|
52146
|
+
format: 'float',
|
|
52147
|
+
type: 'number',
|
|
52148
|
+
},
|
|
52149
|
+
heating_set_point_fahrenheit: {
|
|
52150
|
+
format: 'float',
|
|
52151
|
+
type: 'number',
|
|
52152
|
+
},
|
|
52090
52153
|
is_override_allowed: { type: 'boolean' },
|
|
52154
|
+
max_override_period_minutes: {
|
|
52155
|
+
format: 'float',
|
|
52156
|
+
type: 'number',
|
|
52157
|
+
},
|
|
52091
52158
|
mode: {
|
|
52092
52159
|
enum: ['heat', 'cool', 'auto'],
|
|
52093
52160
|
type: 'string',
|
|
52094
52161
|
},
|
|
52095
|
-
|
|
52162
|
+
},
|
|
52163
|
+
required: [
|
|
52164
|
+
'mode',
|
|
52165
|
+
'fan_mode',
|
|
52166
|
+
'is_override_allowed',
|
|
52167
|
+
'max_override_period_minutes',
|
|
52168
|
+
],
|
|
52169
|
+
type: 'object',
|
|
52170
|
+
},
|
|
52171
|
+
automated_unoccupied_preset: {
|
|
52172
|
+
properties: {
|
|
52173
|
+
cooling_set_point_celsius: {
|
|
52174
|
+
format: 'float',
|
|
52175
|
+
type: 'number',
|
|
52176
|
+
},
|
|
52177
|
+
cooling_set_point_fahrenheit: {
|
|
52178
|
+
format: 'float',
|
|
52179
|
+
type: 'number',
|
|
52180
|
+
},
|
|
52181
|
+
fan_mode: {
|
|
52182
|
+
enum: ['on', 'auto', 'circulate'],
|
|
52183
|
+
type: 'string',
|
|
52184
|
+
},
|
|
52185
|
+
heating_set_point_celsius: {
|
|
52186
|
+
format: 'float',
|
|
52187
|
+
type: 'number',
|
|
52188
|
+
},
|
|
52189
|
+
heating_set_point_fahrenheit: {
|
|
52096
52190
|
format: 'float',
|
|
52097
52191
|
type: 'number',
|
|
52098
52192
|
},
|
|
52099
|
-
|
|
52193
|
+
is_override_allowed: { type: 'boolean' },
|
|
52194
|
+
max_override_period_minutes: {
|
|
52100
52195
|
format: 'float',
|
|
52101
52196
|
type: 'number',
|
|
52102
52197
|
},
|
|
52103
|
-
|
|
52104
|
-
enum: ['
|
|
52198
|
+
mode: {
|
|
52199
|
+
enum: ['heat', 'cool', 'auto'],
|
|
52105
52200
|
type: 'string',
|
|
52106
52201
|
},
|
|
52107
52202
|
},
|
|
52108
52203
|
required: [
|
|
52109
52204
|
'mode',
|
|
52110
|
-
'temperature',
|
|
52111
|
-
'temperature_unit',
|
|
52112
52205
|
'fan_mode',
|
|
52113
52206
|
'is_override_allowed',
|
|
52114
|
-
'
|
|
52207
|
+
'max_override_period_minutes',
|
|
52115
52208
|
],
|
|
52116
52209
|
type: 'object',
|
|
52117
52210
|
},
|
|
52118
52211
|
occupied_preset_key: { type: 'string' },
|
|
52212
|
+
unoccupied_preset_key: { type: 'string' },
|
|
52119
52213
|
},
|
|
52120
52214
|
type: 'object',
|
|
52121
52215
|
},
|
|
@@ -52282,41 +52376,88 @@ export default {
|
|
|
52282
52376
|
properties: {
|
|
52283
52377
|
reservation_created: {
|
|
52284
52378
|
properties: {
|
|
52285
|
-
|
|
52379
|
+
automated_occupied_preset: {
|
|
52286
52380
|
properties: {
|
|
52381
|
+
cooling_set_point_celsius: {
|
|
52382
|
+
format: 'float',
|
|
52383
|
+
type: 'number',
|
|
52384
|
+
},
|
|
52385
|
+
cooling_set_point_fahrenheit: {
|
|
52386
|
+
format: 'float',
|
|
52387
|
+
type: 'number',
|
|
52388
|
+
},
|
|
52287
52389
|
fan_mode: {
|
|
52288
52390
|
enum: ['on', 'auto', 'circulate'],
|
|
52289
52391
|
type: 'string',
|
|
52290
52392
|
},
|
|
52393
|
+
heating_set_point_celsius: {
|
|
52394
|
+
format: 'float',
|
|
52395
|
+
type: 'number',
|
|
52396
|
+
},
|
|
52397
|
+
heating_set_point_fahrenheit: {
|
|
52398
|
+
format: 'float',
|
|
52399
|
+
type: 'number',
|
|
52400
|
+
},
|
|
52291
52401
|
is_override_allowed: { type: 'boolean' },
|
|
52402
|
+
max_override_period_minutes: {
|
|
52403
|
+
format: 'float',
|
|
52404
|
+
type: 'number',
|
|
52405
|
+
},
|
|
52292
52406
|
mode: {
|
|
52293
52407
|
enum: ['heat', 'cool', 'auto'],
|
|
52294
52408
|
type: 'string',
|
|
52295
52409
|
},
|
|
52296
|
-
|
|
52410
|
+
},
|
|
52411
|
+
required: [
|
|
52412
|
+
'mode',
|
|
52413
|
+
'fan_mode',
|
|
52414
|
+
'is_override_allowed',
|
|
52415
|
+
'max_override_period_minutes',
|
|
52416
|
+
],
|
|
52417
|
+
type: 'object',
|
|
52418
|
+
},
|
|
52419
|
+
automated_unoccupied_preset: {
|
|
52420
|
+
properties: {
|
|
52421
|
+
cooling_set_point_celsius: {
|
|
52422
|
+
format: 'float',
|
|
52423
|
+
type: 'number',
|
|
52424
|
+
},
|
|
52425
|
+
cooling_set_point_fahrenheit: {
|
|
52426
|
+
format: 'float',
|
|
52427
|
+
type: 'number',
|
|
52428
|
+
},
|
|
52429
|
+
fan_mode: {
|
|
52430
|
+
enum: ['on', 'auto', 'circulate'],
|
|
52431
|
+
type: 'string',
|
|
52432
|
+
},
|
|
52433
|
+
heating_set_point_celsius: {
|
|
52434
|
+
format: 'float',
|
|
52435
|
+
type: 'number',
|
|
52436
|
+
},
|
|
52437
|
+
heating_set_point_fahrenheit: {
|
|
52297
52438
|
format: 'float',
|
|
52298
52439
|
type: 'number',
|
|
52299
52440
|
},
|
|
52300
|
-
|
|
52441
|
+
is_override_allowed: { type: 'boolean' },
|
|
52442
|
+
max_override_period_minutes: {
|
|
52301
52443
|
format: 'float',
|
|
52302
52444
|
type: 'number',
|
|
52303
52445
|
},
|
|
52304
|
-
|
|
52305
|
-
enum: ['
|
|
52446
|
+
mode: {
|
|
52447
|
+
enum: ['heat', 'cool', 'auto'],
|
|
52306
52448
|
type: 'string',
|
|
52307
52449
|
},
|
|
52308
52450
|
},
|
|
52309
52451
|
required: [
|
|
52310
52452
|
'mode',
|
|
52311
|
-
'temperature',
|
|
52312
|
-
'temperature_unit',
|
|
52313
52453
|
'fan_mode',
|
|
52314
52454
|
'is_override_allowed',
|
|
52315
|
-
'
|
|
52455
|
+
'max_override_period_minutes',
|
|
52316
52456
|
],
|
|
52317
52457
|
type: 'object',
|
|
52318
52458
|
},
|
|
52319
52459
|
occupied_preset_key: { type: 'string' },
|
|
52460
|
+
unoccupied_preset_key: { type: 'string' },
|
|
52320
52461
|
},
|
|
52321
52462
|
type: 'object',
|
|
52322
52463
|
},
|
|
@@ -52492,41 +52633,88 @@ export default {
|
|
|
52492
52633
|
properties: {
|
|
52493
52634
|
reservation_created: {
|
|
52494
52635
|
properties: {
|
|
52495
|
-
|
|
52636
|
+
automated_occupied_preset: {
|
|
52496
52637
|
properties: {
|
|
52638
|
+
cooling_set_point_celsius: {
|
|
52639
|
+
format: 'float',
|
|
52640
|
+
type: 'number',
|
|
52641
|
+
},
|
|
52642
|
+
cooling_set_point_fahrenheit: {
|
|
52643
|
+
format: 'float',
|
|
52644
|
+
type: 'number',
|
|
52645
|
+
},
|
|
52497
52646
|
fan_mode: {
|
|
52498
52647
|
enum: ['on', 'auto', 'circulate'],
|
|
52499
52648
|
type: 'string',
|
|
52500
52649
|
},
|
|
52650
|
+
heating_set_point_celsius: {
|
|
52651
|
+
format: 'float',
|
|
52652
|
+
type: 'number',
|
|
52653
|
+
},
|
|
52654
|
+
heating_set_point_fahrenheit: {
|
|
52655
|
+
format: 'float',
|
|
52656
|
+
type: 'number',
|
|
52657
|
+
},
|
|
52501
52658
|
is_override_allowed: { type: 'boolean' },
|
|
52659
|
+
max_override_period_minutes: {
|
|
52660
|
+
format: 'float',
|
|
52661
|
+
type: 'number',
|
|
52662
|
+
},
|
|
52502
52663
|
mode: {
|
|
52503
52664
|
enum: ['heat', 'cool', 'auto'],
|
|
52504
52665
|
type: 'string',
|
|
52505
52666
|
},
|
|
52506
|
-
|
|
52667
|
+
},
|
|
52668
|
+
required: [
|
|
52669
|
+
'mode',
|
|
52670
|
+
'fan_mode',
|
|
52671
|
+
'is_override_allowed',
|
|
52672
|
+
'max_override_period_minutes',
|
|
52673
|
+
],
|
|
52674
|
+
type: 'object',
|
|
52675
|
+
},
|
|
52676
|
+
automated_unoccupied_preset: {
|
|
52677
|
+
properties: {
|
|
52678
|
+
cooling_set_point_celsius: {
|
|
52679
|
+
format: 'float',
|
|
52680
|
+
type: 'number',
|
|
52681
|
+
},
|
|
52682
|
+
cooling_set_point_fahrenheit: {
|
|
52683
|
+
format: 'float',
|
|
52684
|
+
type: 'number',
|
|
52685
|
+
},
|
|
52686
|
+
fan_mode: {
|
|
52687
|
+
enum: ['on', 'auto', 'circulate'],
|
|
52688
|
+
type: 'string',
|
|
52689
|
+
},
|
|
52690
|
+
heating_set_point_celsius: {
|
|
52691
|
+
format: 'float',
|
|
52692
|
+
type: 'number',
|
|
52693
|
+
},
|
|
52694
|
+
heating_set_point_fahrenheit: {
|
|
52507
52695
|
format: 'float',
|
|
52508
52696
|
type: 'number',
|
|
52509
52697
|
},
|
|
52510
|
-
|
|
52698
|
+
is_override_allowed: { type: 'boolean' },
|
|
52699
|
+
max_override_period_minutes: {
|
|
52511
52700
|
format: 'float',
|
|
52512
52701
|
type: 'number',
|
|
52513
52702
|
},
|
|
52514
|
-
|
|
52515
|
-
enum: ['
|
|
52703
|
+
mode: {
|
|
52704
|
+
enum: ['heat', 'cool', 'auto'],
|
|
52516
52705
|
type: 'string',
|
|
52517
52706
|
},
|
|
52518
52707
|
},
|
|
52519
52708
|
required: [
|
|
52520
52709
|
'mode',
|
|
52521
|
-
'temperature',
|
|
52522
|
-
'temperature_unit',
|
|
52523
52710
|
'fan_mode',
|
|
52524
52711
|
'is_override_allowed',
|
|
52525
|
-
'
|
|
52712
|
+
'max_override_period_minutes',
|
|
52526
52713
|
],
|
|
52527
52714
|
type: 'object',
|
|
52528
52715
|
},
|
|
52529
52716
|
occupied_preset_key: { type: 'string' },
|
|
52717
|
+
unoccupied_preset_key: { type: 'string' },
|
|
52530
52718
|
},
|
|
52531
52719
|
type: 'object',
|
|
52532
52720
|
},
|
|
@@ -68134,14 +68134,29 @@ export type Routes = {
|
|
|
68134
68134
|
reservation_created?:
|
|
68135
68135
|
| {
|
|
68136
68136
|
occupied_preset_key?: string | undefined
|
|
68137
|
-
|
|
68137
|
+
automated_occupied_preset?:
|
|
68138
68138
|
| {
|
|
68139
68139
|
mode: 'heat' | 'cool' | 'auto'
|
|
68140
|
-
|
|
68141
|
-
|
|
68140
|
+
heating_set_point_celsius?: number | undefined
|
|
68141
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
68142
|
+
cooling_set_point_celsius?: number | undefined
|
|
68143
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
68142
68144
|
fan_mode: 'on' | 'auto' | 'circulate'
|
|
68143
68145
|
is_override_allowed: boolean
|
|
68144
|
-
|
|
68146
|
+
max_override_period_minutes: number
|
|
68147
|
+
}
|
|
68148
|
+
| undefined
|
|
68149
|
+
unoccupied_preset_key?: string | undefined
|
|
68150
|
+
automated_unoccupied_preset?:
|
|
68151
|
+
| {
|
|
68152
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
68153
|
+
heating_set_point_celsius?: number | undefined
|
|
68154
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
68155
|
+
cooling_set_point_celsius?: number | undefined
|
|
68156
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
68157
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
68158
|
+
is_override_allowed: boolean
|
|
68159
|
+
max_override_period_minutes: number
|
|
68145
68160
|
}
|
|
68146
68161
|
| undefined
|
|
68147
68162
|
}
|
|
@@ -68219,14 +68234,29 @@ export type Routes = {
|
|
|
68219
68234
|
reservation_created?:
|
|
68220
68235
|
| {
|
|
68221
68236
|
occupied_preset_key?: string | undefined
|
|
68222
|
-
|
|
68237
|
+
automated_occupied_preset?:
|
|
68238
|
+
| {
|
|
68239
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
68240
|
+
heating_set_point_celsius?: number | undefined
|
|
68241
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
68242
|
+
cooling_set_point_celsius?: number | undefined
|
|
68243
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
68244
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
68245
|
+
is_override_allowed: boolean
|
|
68246
|
+
max_override_period_minutes: number
|
|
68247
|
+
}
|
|
68248
|
+
| undefined
|
|
68249
|
+
unoccupied_preset_key?: string | undefined
|
|
68250
|
+
automated_unoccupied_preset?:
|
|
68223
68251
|
| {
|
|
68224
68252
|
mode: 'heat' | 'cool' | 'auto'
|
|
68225
|
-
|
|
68226
|
-
|
|
68253
|
+
heating_set_point_celsius?: number | undefined
|
|
68254
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
68255
|
+
cooling_set_point_celsius?: number | undefined
|
|
68256
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
68227
68257
|
fan_mode: 'on' | 'auto' | 'circulate'
|
|
68228
68258
|
is_override_allowed: boolean
|
|
68229
|
-
|
|
68259
|
+
max_override_period_minutes: number
|
|
68230
68260
|
}
|
|
68231
68261
|
| undefined
|
|
68232
68262
|
}
|