@seamapi/types 1.6.0 → 1.7.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/lib/seam/connect/route-types.d.ts +76 -11
- package/lib/seam/connect/unstable/model-types.d.ts +1 -1
- package/lib/seam/connect/unstable/models/acs/access_group.d.ts +29 -0
- package/lib/seam/connect/unstable/models/acs/access_group.js +12 -0
- package/lib/seam/connect/unstable/models/acs/access_group.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/index.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/index.js +4 -0
- package/lib/seam/connect/unstable/models/acs/index.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/system.d.ts +23 -0
- package/lib/seam/connect/unstable/models/acs/system.js +10 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/user.d.ts +30 -0
- package/lib/seam/connect/unstable/models/acs/user.js +25 -0
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -0
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +42 -42
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +88 -88
- package/lib/seam/connect/unstable/models/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/index.js +1 -0
- package/lib/seam/connect/unstable/models/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/managed-device.d.ts +90 -90
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- package/package.json +8 -8
- package/src/lib/seam/connect/route-types.ts +76 -11
- package/src/lib/seam/connect/unstable/model-types.ts +5 -0
- package/src/lib/seam/connect/unstable/models/acs/access_group.ts +17 -0
- package/src/lib/seam/connect/unstable/models/acs/index.ts +3 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +15 -0
- package/src/lib/seam/connect/unstable/models/acs/user.ts +31 -0
- package/src/lib/seam/connect/unstable/models/index.ts +1 -0
- package/src/lib/seam/connect/unstable/schemas.ts +5 -0
|
@@ -15,7 +15,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
automatic_heating_enabled: boolean;
|
|
17
17
|
automatic_cooling_enabled: boolean;
|
|
18
|
-
hvac_mode_setting: "
|
|
18
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
19
19
|
manual_override_allowed: boolean;
|
|
20
20
|
cooling_set_point_celsius?: number | undefined;
|
|
21
21
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -24,7 +24,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
24
24
|
}, {
|
|
25
25
|
automatic_heating_enabled: boolean;
|
|
26
26
|
automatic_cooling_enabled: boolean;
|
|
27
|
-
hvac_mode_setting: "
|
|
27
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
28
28
|
manual_override_allowed: boolean;
|
|
29
29
|
cooling_set_point_celsius?: number | undefined;
|
|
30
30
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -58,7 +58,7 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
58
58
|
name?: string | undefined;
|
|
59
59
|
automatic_heating_enabled?: boolean | undefined;
|
|
60
60
|
automatic_cooling_enabled?: boolean | undefined;
|
|
61
|
-
hvac_mode_setting?: "
|
|
61
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
62
62
|
cooling_set_point_celsius?: number | undefined;
|
|
63
63
|
heating_set_point_celsius?: number | undefined;
|
|
64
64
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -74,7 +74,7 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
74
74
|
name?: string | undefined;
|
|
75
75
|
automatic_heating_enabled?: boolean | undefined;
|
|
76
76
|
automatic_cooling_enabled?: boolean | undefined;
|
|
77
|
-
hvac_mode_setting?: "
|
|
77
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
78
78
|
cooling_set_point_celsius?: number | undefined;
|
|
79
79
|
heating_set_point_celsius?: number | undefined;
|
|
80
80
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -94,7 +94,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
95
|
automatic_heating_enabled: boolean;
|
|
96
96
|
automatic_cooling_enabled: boolean;
|
|
97
|
-
hvac_mode_setting: "
|
|
97
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
98
98
|
manual_override_allowed: boolean;
|
|
99
99
|
cooling_set_point_celsius?: number | undefined;
|
|
100
100
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -103,7 +103,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
103
103
|
}, {
|
|
104
104
|
automatic_heating_enabled: boolean;
|
|
105
105
|
automatic_cooling_enabled: boolean;
|
|
106
|
-
hvac_mode_setting: "
|
|
106
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
107
107
|
manual_override_allowed: boolean;
|
|
108
108
|
cooling_set_point_celsius?: number | undefined;
|
|
109
109
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -134,7 +134,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
134
134
|
}, "strip", z.ZodTypeAny, {
|
|
135
135
|
automatic_heating_enabled: boolean;
|
|
136
136
|
automatic_cooling_enabled: boolean;
|
|
137
|
-
hvac_mode_setting: "
|
|
137
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
138
138
|
manual_override_allowed: boolean;
|
|
139
139
|
cooling_set_point_celsius?: number | undefined;
|
|
140
140
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -143,7 +143,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
143
143
|
}, {
|
|
144
144
|
automatic_heating_enabled: boolean;
|
|
145
145
|
automatic_cooling_enabled: boolean;
|
|
146
|
-
hvac_mode_setting: "
|
|
146
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
147
147
|
manual_override_allowed: boolean;
|
|
148
148
|
cooling_set_point_celsius?: number | undefined;
|
|
149
149
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -177,7 +177,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
177
177
|
name?: string | undefined;
|
|
178
178
|
automatic_heating_enabled?: boolean | undefined;
|
|
179
179
|
automatic_cooling_enabled?: boolean | undefined;
|
|
180
|
-
hvac_mode_setting?: "
|
|
180
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
181
181
|
cooling_set_point_celsius?: number | undefined;
|
|
182
182
|
heating_set_point_celsius?: number | undefined;
|
|
183
183
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -193,7 +193,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
193
193
|
name?: string | undefined;
|
|
194
194
|
automatic_heating_enabled?: boolean | undefined;
|
|
195
195
|
automatic_cooling_enabled?: boolean | undefined;
|
|
196
|
-
hvac_mode_setting?: "
|
|
196
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
197
197
|
cooling_set_point_celsius?: number | undefined;
|
|
198
198
|
heating_set_point_celsius?: number | undefined;
|
|
199
199
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -211,7 +211,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
211
211
|
relative_humidity: number;
|
|
212
212
|
can_enable_automatic_heating: boolean;
|
|
213
213
|
can_enable_automatic_cooling: boolean;
|
|
214
|
-
available_hvac_mode_settings: ("
|
|
214
|
+
available_hvac_mode_settings: ("off" | "cool" | "heat" | "heat_cool")[];
|
|
215
215
|
is_heating_available: false;
|
|
216
216
|
is_cooling_available: true;
|
|
217
217
|
is_heating: boolean;
|
|
@@ -222,7 +222,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
222
222
|
current_climate_setting: {
|
|
223
223
|
automatic_heating_enabled: boolean;
|
|
224
224
|
automatic_cooling_enabled: boolean;
|
|
225
|
-
hvac_mode_setting: "
|
|
225
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
226
226
|
manual_override_allowed: boolean;
|
|
227
227
|
cooling_set_point_celsius?: number | undefined;
|
|
228
228
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -237,7 +237,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
237
237
|
default_climate_setting?: {
|
|
238
238
|
automatic_heating_enabled: boolean;
|
|
239
239
|
automatic_cooling_enabled: boolean;
|
|
240
|
-
hvac_mode_setting: "
|
|
240
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
241
241
|
manual_override_allowed: boolean;
|
|
242
242
|
cooling_set_point_celsius?: number | undefined;
|
|
243
243
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -254,7 +254,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
254
254
|
name?: string | undefined;
|
|
255
255
|
automatic_heating_enabled?: boolean | undefined;
|
|
256
256
|
automatic_cooling_enabled?: boolean | undefined;
|
|
257
|
-
hvac_mode_setting?: "
|
|
257
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
258
258
|
cooling_set_point_celsius?: number | undefined;
|
|
259
259
|
heating_set_point_celsius?: number | undefined;
|
|
260
260
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -267,7 +267,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
267
267
|
relative_humidity: number;
|
|
268
268
|
can_enable_automatic_heating: boolean;
|
|
269
269
|
can_enable_automatic_cooling: boolean;
|
|
270
|
-
available_hvac_mode_settings: ("
|
|
270
|
+
available_hvac_mode_settings: ("off" | "cool" | "heat" | "heat_cool")[];
|
|
271
271
|
is_heating_available: false;
|
|
272
272
|
is_cooling_available: true;
|
|
273
273
|
is_heating: boolean;
|
|
@@ -278,7 +278,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
278
278
|
current_climate_setting: {
|
|
279
279
|
automatic_heating_enabled: boolean;
|
|
280
280
|
automatic_cooling_enabled: boolean;
|
|
281
|
-
hvac_mode_setting: "
|
|
281
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
282
282
|
manual_override_allowed: boolean;
|
|
283
283
|
cooling_set_point_celsius?: number | undefined;
|
|
284
284
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -293,7 +293,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
293
293
|
default_climate_setting?: {
|
|
294
294
|
automatic_heating_enabled: boolean;
|
|
295
295
|
automatic_cooling_enabled: boolean;
|
|
296
|
-
hvac_mode_setting: "
|
|
296
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
297
297
|
manual_override_allowed: boolean;
|
|
298
298
|
cooling_set_point_celsius?: number | undefined;
|
|
299
299
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -310,7 +310,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
310
310
|
name?: string | undefined;
|
|
311
311
|
automatic_heating_enabled?: boolean | undefined;
|
|
312
312
|
automatic_cooling_enabled?: boolean | undefined;
|
|
313
|
-
hvac_mode_setting?: "
|
|
313
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
314
314
|
cooling_set_point_celsius?: number | undefined;
|
|
315
315
|
heating_set_point_celsius?: number | undefined;
|
|
316
316
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -331,7 +331,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
332
|
automatic_heating_enabled: boolean;
|
|
333
333
|
automatic_cooling_enabled: boolean;
|
|
334
|
-
hvac_mode_setting: "
|
|
334
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
335
335
|
manual_override_allowed: boolean;
|
|
336
336
|
cooling_set_point_celsius?: number | undefined;
|
|
337
337
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -340,7 +340,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
340
340
|
}, {
|
|
341
341
|
automatic_heating_enabled: boolean;
|
|
342
342
|
automatic_cooling_enabled: boolean;
|
|
343
|
-
hvac_mode_setting: "
|
|
343
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
344
344
|
manual_override_allowed: boolean;
|
|
345
345
|
cooling_set_point_celsius?: number | undefined;
|
|
346
346
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -371,7 +371,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
372
|
automatic_heating_enabled: boolean;
|
|
373
373
|
automatic_cooling_enabled: boolean;
|
|
374
|
-
hvac_mode_setting: "
|
|
374
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
375
375
|
manual_override_allowed: boolean;
|
|
376
376
|
cooling_set_point_celsius?: number | undefined;
|
|
377
377
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -380,7 +380,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
380
380
|
}, {
|
|
381
381
|
automatic_heating_enabled: boolean;
|
|
382
382
|
automatic_cooling_enabled: boolean;
|
|
383
|
-
hvac_mode_setting: "
|
|
383
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
384
384
|
manual_override_allowed: boolean;
|
|
385
385
|
cooling_set_point_celsius?: number | undefined;
|
|
386
386
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -414,7 +414,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
414
414
|
name?: string | undefined;
|
|
415
415
|
automatic_heating_enabled?: boolean | undefined;
|
|
416
416
|
automatic_cooling_enabled?: boolean | undefined;
|
|
417
|
-
hvac_mode_setting?: "
|
|
417
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
418
418
|
cooling_set_point_celsius?: number | undefined;
|
|
419
419
|
heating_set_point_celsius?: number | undefined;
|
|
420
420
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -430,7 +430,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
430
430
|
name?: string | undefined;
|
|
431
431
|
automatic_heating_enabled?: boolean | undefined;
|
|
432
432
|
automatic_cooling_enabled?: boolean | undefined;
|
|
433
|
-
hvac_mode_setting?: "
|
|
433
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
434
434
|
cooling_set_point_celsius?: number | undefined;
|
|
435
435
|
heating_set_point_celsius?: number | undefined;
|
|
436
436
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -448,7 +448,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
448
448
|
relative_humidity: number;
|
|
449
449
|
can_enable_automatic_heating: boolean;
|
|
450
450
|
can_enable_automatic_cooling: boolean;
|
|
451
|
-
available_hvac_mode_settings: ("
|
|
451
|
+
available_hvac_mode_settings: ("off" | "cool" | "heat" | "heat_cool")[];
|
|
452
452
|
is_heating_available: true;
|
|
453
453
|
is_cooling_available: false;
|
|
454
454
|
is_heating: boolean;
|
|
@@ -459,7 +459,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
459
459
|
current_climate_setting: {
|
|
460
460
|
automatic_heating_enabled: boolean;
|
|
461
461
|
automatic_cooling_enabled: boolean;
|
|
462
|
-
hvac_mode_setting: "
|
|
462
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
463
463
|
manual_override_allowed: boolean;
|
|
464
464
|
cooling_set_point_celsius?: number | undefined;
|
|
465
465
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -474,7 +474,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
474
474
|
default_climate_setting?: {
|
|
475
475
|
automatic_heating_enabled: boolean;
|
|
476
476
|
automatic_cooling_enabled: boolean;
|
|
477
|
-
hvac_mode_setting: "
|
|
477
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
478
478
|
manual_override_allowed: boolean;
|
|
479
479
|
cooling_set_point_celsius?: number | undefined;
|
|
480
480
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -491,7 +491,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
491
491
|
name?: string | undefined;
|
|
492
492
|
automatic_heating_enabled?: boolean | undefined;
|
|
493
493
|
automatic_cooling_enabled?: boolean | undefined;
|
|
494
|
-
hvac_mode_setting?: "
|
|
494
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
495
495
|
cooling_set_point_celsius?: number | undefined;
|
|
496
496
|
heating_set_point_celsius?: number | undefined;
|
|
497
497
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -504,7 +504,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
504
504
|
relative_humidity: number;
|
|
505
505
|
can_enable_automatic_heating: boolean;
|
|
506
506
|
can_enable_automatic_cooling: boolean;
|
|
507
|
-
available_hvac_mode_settings: ("
|
|
507
|
+
available_hvac_mode_settings: ("off" | "cool" | "heat" | "heat_cool")[];
|
|
508
508
|
is_heating_available: true;
|
|
509
509
|
is_cooling_available: false;
|
|
510
510
|
is_heating: boolean;
|
|
@@ -515,7 +515,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
515
515
|
current_climate_setting: {
|
|
516
516
|
automatic_heating_enabled: boolean;
|
|
517
517
|
automatic_cooling_enabled: boolean;
|
|
518
|
-
hvac_mode_setting: "
|
|
518
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
519
519
|
manual_override_allowed: boolean;
|
|
520
520
|
cooling_set_point_celsius?: number | undefined;
|
|
521
521
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -530,7 +530,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
530
530
|
default_climate_setting?: {
|
|
531
531
|
automatic_heating_enabled: boolean;
|
|
532
532
|
automatic_cooling_enabled: boolean;
|
|
533
|
-
hvac_mode_setting: "
|
|
533
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
534
534
|
manual_override_allowed: boolean;
|
|
535
535
|
cooling_set_point_celsius?: number | undefined;
|
|
536
536
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -547,7 +547,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
547
547
|
name?: string | undefined;
|
|
548
548
|
automatic_heating_enabled?: boolean | undefined;
|
|
549
549
|
automatic_cooling_enabled?: boolean | undefined;
|
|
550
|
-
hvac_mode_setting?: "
|
|
550
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
551
551
|
cooling_set_point_celsius?: number | undefined;
|
|
552
552
|
heating_set_point_celsius?: number | undefined;
|
|
553
553
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -568,7 +568,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
568
568
|
}, "strip", z.ZodTypeAny, {
|
|
569
569
|
automatic_heating_enabled: boolean;
|
|
570
570
|
automatic_cooling_enabled: boolean;
|
|
571
|
-
hvac_mode_setting: "
|
|
571
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
572
572
|
manual_override_allowed: boolean;
|
|
573
573
|
cooling_set_point_celsius?: number | undefined;
|
|
574
574
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -577,7 +577,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
577
577
|
}, {
|
|
578
578
|
automatic_heating_enabled: boolean;
|
|
579
579
|
automatic_cooling_enabled: boolean;
|
|
580
|
-
hvac_mode_setting: "
|
|
580
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
581
581
|
manual_override_allowed: boolean;
|
|
582
582
|
cooling_set_point_celsius?: number | undefined;
|
|
583
583
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -607,7 +607,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
607
607
|
}, "strip", z.ZodTypeAny, {
|
|
608
608
|
automatic_heating_enabled: boolean;
|
|
609
609
|
automatic_cooling_enabled: boolean;
|
|
610
|
-
hvac_mode_setting: "
|
|
610
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
611
611
|
manual_override_allowed: boolean;
|
|
612
612
|
cooling_set_point_celsius?: number | undefined;
|
|
613
613
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -616,7 +616,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
616
616
|
}, {
|
|
617
617
|
automatic_heating_enabled: boolean;
|
|
618
618
|
automatic_cooling_enabled: boolean;
|
|
619
|
-
hvac_mode_setting: "
|
|
619
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
620
620
|
manual_override_allowed: boolean;
|
|
621
621
|
cooling_set_point_celsius?: number | undefined;
|
|
622
622
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -650,7 +650,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
650
650
|
name?: string | undefined;
|
|
651
651
|
automatic_heating_enabled?: boolean | undefined;
|
|
652
652
|
automatic_cooling_enabled?: boolean | undefined;
|
|
653
|
-
hvac_mode_setting?: "
|
|
653
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
654
654
|
cooling_set_point_celsius?: number | undefined;
|
|
655
655
|
heating_set_point_celsius?: number | undefined;
|
|
656
656
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -666,7 +666,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
666
666
|
name?: string | undefined;
|
|
667
667
|
automatic_heating_enabled?: boolean | undefined;
|
|
668
668
|
automatic_cooling_enabled?: boolean | undefined;
|
|
669
|
-
hvac_mode_setting?: "
|
|
669
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
670
670
|
cooling_set_point_celsius?: number | undefined;
|
|
671
671
|
heating_set_point_celsius?: number | undefined;
|
|
672
672
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -691,7 +691,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
691
691
|
relative_humidity: number;
|
|
692
692
|
can_enable_automatic_heating: boolean;
|
|
693
693
|
can_enable_automatic_cooling: boolean;
|
|
694
|
-
available_hvac_mode_settings: ("
|
|
694
|
+
available_hvac_mode_settings: ("off" | "cool" | "heat" | "heat_cool")[];
|
|
695
695
|
is_heating_available: true;
|
|
696
696
|
is_cooling_available: true;
|
|
697
697
|
is_heating: boolean;
|
|
@@ -702,7 +702,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
702
702
|
current_climate_setting: {
|
|
703
703
|
automatic_heating_enabled: boolean;
|
|
704
704
|
automatic_cooling_enabled: boolean;
|
|
705
|
-
hvac_mode_setting: "
|
|
705
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
706
706
|
manual_override_allowed: boolean;
|
|
707
707
|
cooling_set_point_celsius?: number | undefined;
|
|
708
708
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -723,7 +723,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
723
723
|
default_climate_setting?: {
|
|
724
724
|
automatic_heating_enabled: boolean;
|
|
725
725
|
automatic_cooling_enabled: boolean;
|
|
726
|
-
hvac_mode_setting: "
|
|
726
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
727
727
|
manual_override_allowed: boolean;
|
|
728
728
|
cooling_set_point_celsius?: number | undefined;
|
|
729
729
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -740,7 +740,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
740
740
|
name?: string | undefined;
|
|
741
741
|
automatic_heating_enabled?: boolean | undefined;
|
|
742
742
|
automatic_cooling_enabled?: boolean | undefined;
|
|
743
|
-
hvac_mode_setting?: "
|
|
743
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
744
744
|
cooling_set_point_celsius?: number | undefined;
|
|
745
745
|
heating_set_point_celsius?: number | undefined;
|
|
746
746
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -753,7 +753,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
753
753
|
relative_humidity: number;
|
|
754
754
|
can_enable_automatic_heating: boolean;
|
|
755
755
|
can_enable_automatic_cooling: boolean;
|
|
756
|
-
available_hvac_mode_settings: ("
|
|
756
|
+
available_hvac_mode_settings: ("off" | "cool" | "heat" | "heat_cool")[];
|
|
757
757
|
is_heating_available: true;
|
|
758
758
|
is_cooling_available: true;
|
|
759
759
|
is_heating: boolean;
|
|
@@ -764,7 +764,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
764
764
|
current_climate_setting: {
|
|
765
765
|
automatic_heating_enabled: boolean;
|
|
766
766
|
automatic_cooling_enabled: boolean;
|
|
767
|
-
hvac_mode_setting: "
|
|
767
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
768
768
|
manual_override_allowed: boolean;
|
|
769
769
|
cooling_set_point_celsius?: number | undefined;
|
|
770
770
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -785,7 +785,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
785
785
|
default_climate_setting?: {
|
|
786
786
|
automatic_heating_enabled: boolean;
|
|
787
787
|
automatic_cooling_enabled: boolean;
|
|
788
|
-
hvac_mode_setting: "
|
|
788
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
789
789
|
manual_override_allowed: boolean;
|
|
790
790
|
cooling_set_point_celsius?: number | undefined;
|
|
791
791
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -802,7 +802,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
802
802
|
name?: string | undefined;
|
|
803
803
|
automatic_heating_enabled?: boolean | undefined;
|
|
804
804
|
automatic_cooling_enabled?: boolean | undefined;
|
|
805
|
-
hvac_mode_setting?: "
|
|
805
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
806
806
|
cooling_set_point_celsius?: number | undefined;
|
|
807
807
|
heating_set_point_celsius?: number | undefined;
|
|
808
808
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -823,7 +823,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
823
823
|
}, "strip", z.ZodTypeAny, {
|
|
824
824
|
automatic_heating_enabled: boolean;
|
|
825
825
|
automatic_cooling_enabled: boolean;
|
|
826
|
-
hvac_mode_setting: "
|
|
826
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
827
827
|
manual_override_allowed: boolean;
|
|
828
828
|
cooling_set_point_celsius?: number | undefined;
|
|
829
829
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -832,7 +832,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
832
832
|
}, {
|
|
833
833
|
automatic_heating_enabled: boolean;
|
|
834
834
|
automatic_cooling_enabled: boolean;
|
|
835
|
-
hvac_mode_setting: "
|
|
835
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
836
836
|
manual_override_allowed: boolean;
|
|
837
837
|
cooling_set_point_celsius?: number | undefined;
|
|
838
838
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -862,7 +862,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
862
862
|
}, "strip", z.ZodTypeAny, {
|
|
863
863
|
automatic_heating_enabled: boolean;
|
|
864
864
|
automatic_cooling_enabled: boolean;
|
|
865
|
-
hvac_mode_setting: "
|
|
865
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
866
866
|
manual_override_allowed: boolean;
|
|
867
867
|
cooling_set_point_celsius?: number | undefined;
|
|
868
868
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -871,7 +871,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
871
871
|
}, {
|
|
872
872
|
automatic_heating_enabled: boolean;
|
|
873
873
|
automatic_cooling_enabled: boolean;
|
|
874
|
-
hvac_mode_setting: "
|
|
874
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
875
875
|
manual_override_allowed: boolean;
|
|
876
876
|
cooling_set_point_celsius?: number | undefined;
|
|
877
877
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -905,7 +905,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
905
905
|
name?: string | undefined;
|
|
906
906
|
automatic_heating_enabled?: boolean | undefined;
|
|
907
907
|
automatic_cooling_enabled?: boolean | undefined;
|
|
908
|
-
hvac_mode_setting?: "
|
|
908
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
909
909
|
cooling_set_point_celsius?: number | undefined;
|
|
910
910
|
heating_set_point_celsius?: number | undefined;
|
|
911
911
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -921,7 +921,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
921
921
|
name?: string | undefined;
|
|
922
922
|
automatic_heating_enabled?: boolean | undefined;
|
|
923
923
|
automatic_cooling_enabled?: boolean | undefined;
|
|
924
|
-
hvac_mode_setting?: "
|
|
924
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
925
925
|
cooling_set_point_celsius?: number | undefined;
|
|
926
926
|
heating_set_point_celsius?: number | undefined;
|
|
927
927
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -944,7 +944,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
944
944
|
default_climate_setting?: {
|
|
945
945
|
automatic_heating_enabled: boolean;
|
|
946
946
|
automatic_cooling_enabled: boolean;
|
|
947
|
-
hvac_mode_setting: "
|
|
947
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
948
948
|
manual_override_allowed: boolean;
|
|
949
949
|
cooling_set_point_celsius?: number | undefined;
|
|
950
950
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -956,7 +956,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
956
956
|
relative_humidity?: number | undefined;
|
|
957
957
|
can_enable_automatic_heating?: boolean | undefined;
|
|
958
958
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
959
|
-
available_hvac_mode_settings?: ("
|
|
959
|
+
available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
|
|
960
960
|
is_heating?: boolean | undefined;
|
|
961
961
|
is_cooling?: boolean | undefined;
|
|
962
962
|
is_fan_running?: boolean | undefined;
|
|
@@ -965,7 +965,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
965
965
|
current_climate_setting?: {
|
|
966
966
|
automatic_heating_enabled: boolean;
|
|
967
967
|
automatic_cooling_enabled: boolean;
|
|
968
|
-
hvac_mode_setting: "
|
|
968
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
969
969
|
manual_override_allowed: boolean;
|
|
970
970
|
cooling_set_point_celsius?: number | undefined;
|
|
971
971
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -983,7 +983,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
983
983
|
name?: string | undefined;
|
|
984
984
|
automatic_heating_enabled?: boolean | undefined;
|
|
985
985
|
automatic_cooling_enabled?: boolean | undefined;
|
|
986
|
-
hvac_mode_setting?: "
|
|
986
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
987
987
|
cooling_set_point_celsius?: number | undefined;
|
|
988
988
|
heating_set_point_celsius?: number | undefined;
|
|
989
989
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1006,7 +1006,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1006
1006
|
default_climate_setting?: {
|
|
1007
1007
|
automatic_heating_enabled: boolean;
|
|
1008
1008
|
automatic_cooling_enabled: boolean;
|
|
1009
|
-
hvac_mode_setting: "
|
|
1009
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1010
1010
|
manual_override_allowed: boolean;
|
|
1011
1011
|
cooling_set_point_celsius?: number | undefined;
|
|
1012
1012
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1018,7 +1018,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1018
1018
|
relative_humidity?: number | undefined;
|
|
1019
1019
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1020
1020
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1021
|
-
available_hvac_mode_settings?: ("
|
|
1021
|
+
available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
|
|
1022
1022
|
is_heating?: boolean | undefined;
|
|
1023
1023
|
is_cooling?: boolean | undefined;
|
|
1024
1024
|
is_fan_running?: boolean | undefined;
|
|
@@ -1027,7 +1027,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1027
1027
|
current_climate_setting?: {
|
|
1028
1028
|
automatic_heating_enabled: boolean;
|
|
1029
1029
|
automatic_cooling_enabled: boolean;
|
|
1030
|
-
hvac_mode_setting: "
|
|
1030
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1031
1031
|
manual_override_allowed: boolean;
|
|
1032
1032
|
cooling_set_point_celsius?: number | undefined;
|
|
1033
1033
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1045,7 +1045,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1045
1045
|
name?: string | undefined;
|
|
1046
1046
|
automatic_heating_enabled?: boolean | undefined;
|
|
1047
1047
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1048
|
-
hvac_mode_setting?: "
|
|
1048
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1049
1049
|
cooling_set_point_celsius?: number | undefined;
|
|
1050
1050
|
heating_set_point_celsius?: number | undefined;
|
|
1051
1051
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1077,7 +1077,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1077
1077
|
}, "strip", z.ZodTypeAny, {
|
|
1078
1078
|
automatic_heating_enabled: boolean;
|
|
1079
1079
|
automatic_cooling_enabled: boolean;
|
|
1080
|
-
hvac_mode_setting: "
|
|
1080
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1081
1081
|
manual_override_allowed: boolean;
|
|
1082
1082
|
cooling_set_point_celsius?: number | undefined;
|
|
1083
1083
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1086,7 +1086,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1086
1086
|
}, {
|
|
1087
1087
|
automatic_heating_enabled: boolean;
|
|
1088
1088
|
automatic_cooling_enabled: boolean;
|
|
1089
|
-
hvac_mode_setting: "
|
|
1089
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1090
1090
|
manual_override_allowed: boolean;
|
|
1091
1091
|
cooling_set_point_celsius?: number | undefined;
|
|
1092
1092
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1117,7 +1117,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1117
1117
|
}, "strip", z.ZodTypeAny, {
|
|
1118
1118
|
automatic_heating_enabled: boolean;
|
|
1119
1119
|
automatic_cooling_enabled: boolean;
|
|
1120
|
-
hvac_mode_setting: "
|
|
1120
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1121
1121
|
manual_override_allowed: boolean;
|
|
1122
1122
|
cooling_set_point_celsius?: number | undefined;
|
|
1123
1123
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1126,7 +1126,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1126
1126
|
}, {
|
|
1127
1127
|
automatic_heating_enabled: boolean;
|
|
1128
1128
|
automatic_cooling_enabled: boolean;
|
|
1129
|
-
hvac_mode_setting: "
|
|
1129
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1130
1130
|
manual_override_allowed: boolean;
|
|
1131
1131
|
cooling_set_point_celsius?: number | undefined;
|
|
1132
1132
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1160,7 +1160,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1160
1160
|
name?: string | undefined;
|
|
1161
1161
|
automatic_heating_enabled?: boolean | undefined;
|
|
1162
1162
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1163
|
-
hvac_mode_setting?: "
|
|
1163
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1164
1164
|
cooling_set_point_celsius?: number | undefined;
|
|
1165
1165
|
heating_set_point_celsius?: number | undefined;
|
|
1166
1166
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1176,7 +1176,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1176
1176
|
name?: string | undefined;
|
|
1177
1177
|
automatic_heating_enabled?: boolean | undefined;
|
|
1178
1178
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1179
|
-
hvac_mode_setting?: "
|
|
1179
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1180
1180
|
cooling_set_point_celsius?: number | undefined;
|
|
1181
1181
|
heating_set_point_celsius?: number | undefined;
|
|
1182
1182
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1192,7 +1192,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1192
1192
|
default_climate_setting?: {
|
|
1193
1193
|
automatic_heating_enabled: boolean;
|
|
1194
1194
|
automatic_cooling_enabled: boolean;
|
|
1195
|
-
hvac_mode_setting: "
|
|
1195
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1196
1196
|
manual_override_allowed: boolean;
|
|
1197
1197
|
cooling_set_point_celsius?: number | undefined;
|
|
1198
1198
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1204,7 +1204,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1204
1204
|
relative_humidity?: number | undefined;
|
|
1205
1205
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1206
1206
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1207
|
-
available_hvac_mode_settings?: ("
|
|
1207
|
+
available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
|
|
1208
1208
|
is_cooling_available?: false | undefined;
|
|
1209
1209
|
is_heating?: boolean | undefined;
|
|
1210
1210
|
is_cooling?: boolean | undefined;
|
|
@@ -1214,7 +1214,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1214
1214
|
current_climate_setting?: {
|
|
1215
1215
|
automatic_heating_enabled: boolean;
|
|
1216
1216
|
automatic_cooling_enabled: boolean;
|
|
1217
|
-
hvac_mode_setting: "
|
|
1217
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1218
1218
|
manual_override_allowed: boolean;
|
|
1219
1219
|
cooling_set_point_celsius?: number | undefined;
|
|
1220
1220
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1232,7 +1232,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1232
1232
|
name?: string | undefined;
|
|
1233
1233
|
automatic_heating_enabled?: boolean | undefined;
|
|
1234
1234
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1235
|
-
hvac_mode_setting?: "
|
|
1235
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1236
1236
|
cooling_set_point_celsius?: number | undefined;
|
|
1237
1237
|
heating_set_point_celsius?: number | undefined;
|
|
1238
1238
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1248,7 +1248,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1248
1248
|
default_climate_setting?: {
|
|
1249
1249
|
automatic_heating_enabled: boolean;
|
|
1250
1250
|
automatic_cooling_enabled: boolean;
|
|
1251
|
-
hvac_mode_setting: "
|
|
1251
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1252
1252
|
manual_override_allowed: boolean;
|
|
1253
1253
|
cooling_set_point_celsius?: number | undefined;
|
|
1254
1254
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1260,7 +1260,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1260
1260
|
relative_humidity?: number | undefined;
|
|
1261
1261
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1262
1262
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1263
|
-
available_hvac_mode_settings?: ("
|
|
1263
|
+
available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
|
|
1264
1264
|
is_cooling_available?: false | undefined;
|
|
1265
1265
|
is_heating?: boolean | undefined;
|
|
1266
1266
|
is_cooling?: boolean | undefined;
|
|
@@ -1270,7 +1270,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1270
1270
|
current_climate_setting?: {
|
|
1271
1271
|
automatic_heating_enabled: boolean;
|
|
1272
1272
|
automatic_cooling_enabled: boolean;
|
|
1273
|
-
hvac_mode_setting: "
|
|
1273
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1274
1274
|
manual_override_allowed: boolean;
|
|
1275
1275
|
cooling_set_point_celsius?: number | undefined;
|
|
1276
1276
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1288,7 +1288,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1288
1288
|
name?: string | undefined;
|
|
1289
1289
|
automatic_heating_enabled?: boolean | undefined;
|
|
1290
1290
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1291
|
-
hvac_mode_setting?: "
|
|
1291
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1292
1292
|
cooling_set_point_celsius?: number | undefined;
|
|
1293
1293
|
heating_set_point_celsius?: number | undefined;
|
|
1294
1294
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1313,7 +1313,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1313
1313
|
}, "strip", z.ZodTypeAny, {
|
|
1314
1314
|
automatic_heating_enabled: boolean;
|
|
1315
1315
|
automatic_cooling_enabled: boolean;
|
|
1316
|
-
hvac_mode_setting: "
|
|
1316
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1317
1317
|
manual_override_allowed: boolean;
|
|
1318
1318
|
cooling_set_point_celsius?: number | undefined;
|
|
1319
1319
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1322,7 +1322,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1322
1322
|
}, {
|
|
1323
1323
|
automatic_heating_enabled: boolean;
|
|
1324
1324
|
automatic_cooling_enabled: boolean;
|
|
1325
|
-
hvac_mode_setting: "
|
|
1325
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1326
1326
|
manual_override_allowed: boolean;
|
|
1327
1327
|
cooling_set_point_celsius?: number | undefined;
|
|
1328
1328
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1353,7 +1353,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1353
1353
|
}, "strip", z.ZodTypeAny, {
|
|
1354
1354
|
automatic_heating_enabled: boolean;
|
|
1355
1355
|
automatic_cooling_enabled: boolean;
|
|
1356
|
-
hvac_mode_setting: "
|
|
1356
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1357
1357
|
manual_override_allowed: boolean;
|
|
1358
1358
|
cooling_set_point_celsius?: number | undefined;
|
|
1359
1359
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1362,7 +1362,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1362
1362
|
}, {
|
|
1363
1363
|
automatic_heating_enabled: boolean;
|
|
1364
1364
|
automatic_cooling_enabled: boolean;
|
|
1365
|
-
hvac_mode_setting: "
|
|
1365
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1366
1366
|
manual_override_allowed: boolean;
|
|
1367
1367
|
cooling_set_point_celsius?: number | undefined;
|
|
1368
1368
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1396,7 +1396,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1396
1396
|
name?: string | undefined;
|
|
1397
1397
|
automatic_heating_enabled?: boolean | undefined;
|
|
1398
1398
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1399
|
-
hvac_mode_setting?: "
|
|
1399
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1400
1400
|
cooling_set_point_celsius?: number | undefined;
|
|
1401
1401
|
heating_set_point_celsius?: number | undefined;
|
|
1402
1402
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1412,7 +1412,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1412
1412
|
name?: string | undefined;
|
|
1413
1413
|
automatic_heating_enabled?: boolean | undefined;
|
|
1414
1414
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1415
|
-
hvac_mode_setting?: "
|
|
1415
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1416
1416
|
cooling_set_point_celsius?: number | undefined;
|
|
1417
1417
|
heating_set_point_celsius?: number | undefined;
|
|
1418
1418
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1428,7 +1428,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1428
1428
|
default_climate_setting?: {
|
|
1429
1429
|
automatic_heating_enabled: boolean;
|
|
1430
1430
|
automatic_cooling_enabled: boolean;
|
|
1431
|
-
hvac_mode_setting: "
|
|
1431
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1432
1432
|
manual_override_allowed: boolean;
|
|
1433
1433
|
cooling_set_point_celsius?: number | undefined;
|
|
1434
1434
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1440,7 +1440,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1440
1440
|
relative_humidity?: number | undefined;
|
|
1441
1441
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1442
1442
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1443
|
-
available_hvac_mode_settings?: ("
|
|
1443
|
+
available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
|
|
1444
1444
|
is_heating_available?: false | undefined;
|
|
1445
1445
|
is_heating?: boolean | undefined;
|
|
1446
1446
|
is_cooling?: boolean | undefined;
|
|
@@ -1450,7 +1450,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1450
1450
|
current_climate_setting?: {
|
|
1451
1451
|
automatic_heating_enabled: boolean;
|
|
1452
1452
|
automatic_cooling_enabled: boolean;
|
|
1453
|
-
hvac_mode_setting: "
|
|
1453
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1454
1454
|
manual_override_allowed: boolean;
|
|
1455
1455
|
cooling_set_point_celsius?: number | undefined;
|
|
1456
1456
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1468,7 +1468,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1468
1468
|
name?: string | undefined;
|
|
1469
1469
|
automatic_heating_enabled?: boolean | undefined;
|
|
1470
1470
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1471
|
-
hvac_mode_setting?: "
|
|
1471
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1472
1472
|
cooling_set_point_celsius?: number | undefined;
|
|
1473
1473
|
heating_set_point_celsius?: number | undefined;
|
|
1474
1474
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1484,7 +1484,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1484
1484
|
default_climate_setting?: {
|
|
1485
1485
|
automatic_heating_enabled: boolean;
|
|
1486
1486
|
automatic_cooling_enabled: boolean;
|
|
1487
|
-
hvac_mode_setting: "
|
|
1487
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1488
1488
|
manual_override_allowed: boolean;
|
|
1489
1489
|
cooling_set_point_celsius?: number | undefined;
|
|
1490
1490
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1496,7 +1496,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1496
1496
|
relative_humidity?: number | undefined;
|
|
1497
1497
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1498
1498
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1499
|
-
available_hvac_mode_settings?: ("
|
|
1499
|
+
available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
|
|
1500
1500
|
is_heating_available?: false | undefined;
|
|
1501
1501
|
is_heating?: boolean | undefined;
|
|
1502
1502
|
is_cooling?: boolean | undefined;
|
|
@@ -1506,7 +1506,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1506
1506
|
current_climate_setting?: {
|
|
1507
1507
|
automatic_heating_enabled: boolean;
|
|
1508
1508
|
automatic_cooling_enabled: boolean;
|
|
1509
|
-
hvac_mode_setting: "
|
|
1509
|
+
hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
|
|
1510
1510
|
manual_override_allowed: boolean;
|
|
1511
1511
|
cooling_set_point_celsius?: number | undefined;
|
|
1512
1512
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1524,7 +1524,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1524
1524
|
name?: string | undefined;
|
|
1525
1525
|
automatic_heating_enabled?: boolean | undefined;
|
|
1526
1526
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1527
|
-
hvac_mode_setting?: "
|
|
1527
|
+
hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
|
|
1528
1528
|
cooling_set_point_celsius?: number | undefined;
|
|
1529
1529
|
heating_set_point_celsius?: number | undefined;
|
|
1530
1530
|
cooling_set_point_fahrenheit?: number | undefined;
|