@seamapi/types 0.31.0 → 1.1.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 +62 -59
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +54 -54
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +116 -116
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +2 -2
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/managed-device.d.ts +102 -102
- package/package.json +1 -1
- package/src/lib/seam/connect/route-types.ts +64 -55
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -5
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
3
|
+
export type HvacModeSetting = z.infer<typeof hvac_mode_setting>;
|
|
2
4
|
export declare const climate_setting: z.ZodObject<{
|
|
3
5
|
automatic_heating_enabled: z.ZodBoolean;
|
|
4
6
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
5
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
7
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
6
8
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
7
9
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
8
10
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11,7 +13,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
11
13
|
}, "strip", z.ZodTypeAny, {
|
|
12
14
|
automatic_heating_enabled: boolean;
|
|
13
15
|
automatic_cooling_enabled: boolean;
|
|
14
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
16
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
15
17
|
manual_override_allowed: boolean;
|
|
16
18
|
cooling_set_point_celsius?: number | undefined;
|
|
17
19
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -20,7 +22,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
20
22
|
}, {
|
|
21
23
|
automatic_heating_enabled: boolean;
|
|
22
24
|
automatic_cooling_enabled: boolean;
|
|
23
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
25
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
24
26
|
manual_override_allowed: boolean;
|
|
25
27
|
cooling_set_point_celsius?: number | undefined;
|
|
26
28
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38,7 +40,7 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
38
40
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
39
41
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
40
42
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
41
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
43
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
42
44
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
43
45
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
44
46
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -54,7 +56,7 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
54
56
|
name?: string | undefined;
|
|
55
57
|
automatic_heating_enabled?: boolean | undefined;
|
|
56
58
|
automatic_cooling_enabled?: boolean | undefined;
|
|
57
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
59
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
58
60
|
cooling_set_point_celsius?: number | undefined;
|
|
59
61
|
heating_set_point_celsius?: number | undefined;
|
|
60
62
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -70,20 +72,18 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
70
72
|
name?: string | undefined;
|
|
71
73
|
automatic_heating_enabled?: boolean | undefined;
|
|
72
74
|
automatic_cooling_enabled?: boolean | undefined;
|
|
73
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
75
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
74
76
|
cooling_set_point_celsius?: number | undefined;
|
|
75
77
|
heating_set_point_celsius?: number | undefined;
|
|
76
78
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
77
79
|
heating_set_point_fahrenheit?: number | undefined;
|
|
78
80
|
manual_override_allowed?: boolean | undefined;
|
|
79
81
|
}>;
|
|
80
|
-
export declare const hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
81
|
-
export type HvacModeSetting = z.infer<typeof hvac_mode_setting>;
|
|
82
82
|
export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
83
83
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
84
84
|
automatic_heating_enabled: z.ZodBoolean;
|
|
85
85
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
86
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
86
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
87
87
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
88
88
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
89
89
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -92,7 +92,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
92
92
|
}, "strip", z.ZodTypeAny, {
|
|
93
93
|
automatic_heating_enabled: boolean;
|
|
94
94
|
automatic_cooling_enabled: boolean;
|
|
95
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
95
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
96
96
|
manual_override_allowed: boolean;
|
|
97
97
|
cooling_set_point_celsius?: number | undefined;
|
|
98
98
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -101,7 +101,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
101
101
|
}, {
|
|
102
102
|
automatic_heating_enabled: boolean;
|
|
103
103
|
automatic_cooling_enabled: boolean;
|
|
104
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
104
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
105
105
|
manual_override_allowed: boolean;
|
|
106
106
|
cooling_set_point_celsius?: number | undefined;
|
|
107
107
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -113,7 +113,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
113
113
|
relative_humidity: z.ZodNumber;
|
|
114
114
|
can_enable_automatic_heating: z.ZodBoolean;
|
|
115
115
|
can_enable_automatic_cooling: z.ZodBoolean;
|
|
116
|
-
available_hvac_mode_settings: z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
116
|
+
available_hvac_mode_settings: z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">;
|
|
117
117
|
is_heating_available: z.ZodLiteral<false>;
|
|
118
118
|
is_heating: z.ZodBoolean;
|
|
119
119
|
is_cooling: z.ZodBoolean;
|
|
@@ -122,7 +122,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
122
122
|
current_climate_setting: z.ZodObject<{
|
|
123
123
|
automatic_heating_enabled: z.ZodBoolean;
|
|
124
124
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
125
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
125
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
126
126
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
127
127
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
128
128
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -131,7 +131,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
|
132
132
|
automatic_heating_enabled: boolean;
|
|
133
133
|
automatic_cooling_enabled: boolean;
|
|
134
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
134
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
135
135
|
manual_override_allowed: boolean;
|
|
136
136
|
cooling_set_point_celsius?: number | undefined;
|
|
137
137
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -140,7 +140,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
140
140
|
}, {
|
|
141
141
|
automatic_heating_enabled: boolean;
|
|
142
142
|
automatic_cooling_enabled: boolean;
|
|
143
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
143
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
144
144
|
manual_override_allowed: boolean;
|
|
145
145
|
cooling_set_point_celsius?: number | undefined;
|
|
146
146
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -158,7 +158,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
158
158
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
159
159
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
160
160
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
161
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
161
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
162
162
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
163
163
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
164
164
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -174,7 +174,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
174
174
|
name?: string | undefined;
|
|
175
175
|
automatic_heating_enabled?: boolean | undefined;
|
|
176
176
|
automatic_cooling_enabled?: boolean | undefined;
|
|
177
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
177
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
178
178
|
cooling_set_point_celsius?: number | undefined;
|
|
179
179
|
heating_set_point_celsius?: number | undefined;
|
|
180
180
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -190,7 +190,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
190
190
|
name?: string | undefined;
|
|
191
191
|
automatic_heating_enabled?: boolean | undefined;
|
|
192
192
|
automatic_cooling_enabled?: boolean | undefined;
|
|
193
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
193
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
194
194
|
cooling_set_point_celsius?: number | undefined;
|
|
195
195
|
heating_set_point_celsius?: number | undefined;
|
|
196
196
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -208,7 +208,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
208
208
|
relative_humidity: number;
|
|
209
209
|
can_enable_automatic_heating: boolean;
|
|
210
210
|
can_enable_automatic_cooling: boolean;
|
|
211
|
-
available_hvac_mode_settings: ("cool" | "heat" | "
|
|
211
|
+
available_hvac_mode_settings: ("cool" | "heat" | "heat_cool" | "off")[];
|
|
212
212
|
is_heating_available: false;
|
|
213
213
|
is_cooling_available: true;
|
|
214
214
|
is_heating: boolean;
|
|
@@ -218,7 +218,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
218
218
|
current_climate_setting: {
|
|
219
219
|
automatic_heating_enabled: boolean;
|
|
220
220
|
automatic_cooling_enabled: boolean;
|
|
221
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
221
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
222
222
|
manual_override_allowed: boolean;
|
|
223
223
|
cooling_set_point_celsius?: number | undefined;
|
|
224
224
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -233,7 +233,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
233
233
|
default_climate_setting?: {
|
|
234
234
|
automatic_heating_enabled: boolean;
|
|
235
235
|
automatic_cooling_enabled: boolean;
|
|
236
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
236
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
237
237
|
manual_override_allowed: boolean;
|
|
238
238
|
cooling_set_point_celsius?: number | undefined;
|
|
239
239
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -250,7 +250,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
250
250
|
name?: string | undefined;
|
|
251
251
|
automatic_heating_enabled?: boolean | undefined;
|
|
252
252
|
automatic_cooling_enabled?: boolean | undefined;
|
|
253
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
253
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
254
254
|
cooling_set_point_celsius?: number | undefined;
|
|
255
255
|
heating_set_point_celsius?: number | undefined;
|
|
256
256
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -263,7 +263,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
263
263
|
relative_humidity: number;
|
|
264
264
|
can_enable_automatic_heating: boolean;
|
|
265
265
|
can_enable_automatic_cooling: boolean;
|
|
266
|
-
available_hvac_mode_settings: ("cool" | "heat" | "
|
|
266
|
+
available_hvac_mode_settings: ("cool" | "heat" | "heat_cool" | "off")[];
|
|
267
267
|
is_heating_available: false;
|
|
268
268
|
is_cooling_available: true;
|
|
269
269
|
is_heating: boolean;
|
|
@@ -273,7 +273,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
273
273
|
current_climate_setting: {
|
|
274
274
|
automatic_heating_enabled: boolean;
|
|
275
275
|
automatic_cooling_enabled: boolean;
|
|
276
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
276
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
277
277
|
manual_override_allowed: boolean;
|
|
278
278
|
cooling_set_point_celsius?: number | undefined;
|
|
279
279
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -288,7 +288,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
288
288
|
default_climate_setting?: {
|
|
289
289
|
automatic_heating_enabled: boolean;
|
|
290
290
|
automatic_cooling_enabled: boolean;
|
|
291
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
291
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
292
292
|
manual_override_allowed: boolean;
|
|
293
293
|
cooling_set_point_celsius?: number | undefined;
|
|
294
294
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -305,7 +305,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
305
305
|
name?: string | undefined;
|
|
306
306
|
automatic_heating_enabled?: boolean | undefined;
|
|
307
307
|
automatic_cooling_enabled?: boolean | undefined;
|
|
308
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
308
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
309
309
|
cooling_set_point_celsius?: number | undefined;
|
|
310
310
|
heating_set_point_celsius?: number | undefined;
|
|
311
311
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -317,7 +317,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
317
317
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
318
318
|
automatic_heating_enabled: z.ZodBoolean;
|
|
319
319
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
320
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
320
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
321
321
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
322
322
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
323
323
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -326,7 +326,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
326
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
327
|
automatic_heating_enabled: boolean;
|
|
328
328
|
automatic_cooling_enabled: boolean;
|
|
329
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
329
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
330
330
|
manual_override_allowed: boolean;
|
|
331
331
|
cooling_set_point_celsius?: number | undefined;
|
|
332
332
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -335,7 +335,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
335
335
|
}, {
|
|
336
336
|
automatic_heating_enabled: boolean;
|
|
337
337
|
automatic_cooling_enabled: boolean;
|
|
338
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
338
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
339
339
|
manual_override_allowed: boolean;
|
|
340
340
|
cooling_set_point_celsius?: number | undefined;
|
|
341
341
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -347,7 +347,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
347
347
|
relative_humidity: z.ZodNumber;
|
|
348
348
|
can_enable_automatic_heating: z.ZodBoolean;
|
|
349
349
|
can_enable_automatic_cooling: z.ZodBoolean;
|
|
350
|
-
available_hvac_mode_settings: z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
350
|
+
available_hvac_mode_settings: z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">;
|
|
351
351
|
is_cooling_available: z.ZodLiteral<false>;
|
|
352
352
|
is_heating: z.ZodBoolean;
|
|
353
353
|
is_cooling: z.ZodBoolean;
|
|
@@ -356,7 +356,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
356
356
|
current_climate_setting: z.ZodObject<{
|
|
357
357
|
automatic_heating_enabled: z.ZodBoolean;
|
|
358
358
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
359
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
359
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
360
360
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
361
361
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
362
362
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -365,7 +365,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
365
365
|
}, "strip", z.ZodTypeAny, {
|
|
366
366
|
automatic_heating_enabled: boolean;
|
|
367
367
|
automatic_cooling_enabled: boolean;
|
|
368
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
368
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
369
369
|
manual_override_allowed: boolean;
|
|
370
370
|
cooling_set_point_celsius?: number | undefined;
|
|
371
371
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -374,7 +374,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
374
374
|
}, {
|
|
375
375
|
automatic_heating_enabled: boolean;
|
|
376
376
|
automatic_cooling_enabled: boolean;
|
|
377
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
377
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
378
378
|
manual_override_allowed: boolean;
|
|
379
379
|
cooling_set_point_celsius?: number | undefined;
|
|
380
380
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -392,7 +392,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
392
392
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
393
393
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
394
394
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
395
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
395
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
396
396
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
397
397
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
398
398
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -408,7 +408,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
408
408
|
name?: string | undefined;
|
|
409
409
|
automatic_heating_enabled?: boolean | undefined;
|
|
410
410
|
automatic_cooling_enabled?: boolean | undefined;
|
|
411
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
411
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
412
412
|
cooling_set_point_celsius?: number | undefined;
|
|
413
413
|
heating_set_point_celsius?: number | undefined;
|
|
414
414
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -424,7 +424,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
424
424
|
name?: string | undefined;
|
|
425
425
|
automatic_heating_enabled?: boolean | undefined;
|
|
426
426
|
automatic_cooling_enabled?: boolean | undefined;
|
|
427
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
427
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
428
428
|
cooling_set_point_celsius?: number | undefined;
|
|
429
429
|
heating_set_point_celsius?: number | undefined;
|
|
430
430
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -442,7 +442,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
442
442
|
relative_humidity: number;
|
|
443
443
|
can_enable_automatic_heating: boolean;
|
|
444
444
|
can_enable_automatic_cooling: boolean;
|
|
445
|
-
available_hvac_mode_settings: ("cool" | "heat" | "
|
|
445
|
+
available_hvac_mode_settings: ("cool" | "heat" | "heat_cool" | "off")[];
|
|
446
446
|
is_heating_available: true;
|
|
447
447
|
is_cooling_available: false;
|
|
448
448
|
is_heating: boolean;
|
|
@@ -452,7 +452,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
452
452
|
current_climate_setting: {
|
|
453
453
|
automatic_heating_enabled: boolean;
|
|
454
454
|
automatic_cooling_enabled: boolean;
|
|
455
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
455
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
456
456
|
manual_override_allowed: boolean;
|
|
457
457
|
cooling_set_point_celsius?: number | undefined;
|
|
458
458
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -467,7 +467,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
467
467
|
default_climate_setting?: {
|
|
468
468
|
automatic_heating_enabled: boolean;
|
|
469
469
|
automatic_cooling_enabled: boolean;
|
|
470
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
470
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
471
471
|
manual_override_allowed: boolean;
|
|
472
472
|
cooling_set_point_celsius?: number | undefined;
|
|
473
473
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -484,7 +484,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
484
484
|
name?: string | undefined;
|
|
485
485
|
automatic_heating_enabled?: boolean | undefined;
|
|
486
486
|
automatic_cooling_enabled?: boolean | undefined;
|
|
487
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
487
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
488
488
|
cooling_set_point_celsius?: number | undefined;
|
|
489
489
|
heating_set_point_celsius?: number | undefined;
|
|
490
490
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -497,7 +497,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
497
497
|
relative_humidity: number;
|
|
498
498
|
can_enable_automatic_heating: boolean;
|
|
499
499
|
can_enable_automatic_cooling: boolean;
|
|
500
|
-
available_hvac_mode_settings: ("cool" | "heat" | "
|
|
500
|
+
available_hvac_mode_settings: ("cool" | "heat" | "heat_cool" | "off")[];
|
|
501
501
|
is_heating_available: true;
|
|
502
502
|
is_cooling_available: false;
|
|
503
503
|
is_heating: boolean;
|
|
@@ -507,7 +507,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
507
507
|
current_climate_setting: {
|
|
508
508
|
automatic_heating_enabled: boolean;
|
|
509
509
|
automatic_cooling_enabled: boolean;
|
|
510
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
510
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
511
511
|
manual_override_allowed: boolean;
|
|
512
512
|
cooling_set_point_celsius?: number | undefined;
|
|
513
513
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -522,7 +522,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
522
522
|
default_climate_setting?: {
|
|
523
523
|
automatic_heating_enabled: boolean;
|
|
524
524
|
automatic_cooling_enabled: boolean;
|
|
525
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
525
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
526
526
|
manual_override_allowed: boolean;
|
|
527
527
|
cooling_set_point_celsius?: number | undefined;
|
|
528
528
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -539,7 +539,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
539
539
|
name?: string | undefined;
|
|
540
540
|
automatic_heating_enabled?: boolean | undefined;
|
|
541
541
|
automatic_cooling_enabled?: boolean | undefined;
|
|
542
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
542
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
543
543
|
cooling_set_point_celsius?: number | undefined;
|
|
544
544
|
heating_set_point_celsius?: number | undefined;
|
|
545
545
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -551,7 +551,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
551
551
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
552
552
|
automatic_heating_enabled: z.ZodBoolean;
|
|
553
553
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
554
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
554
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
555
555
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
556
556
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
557
557
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -560,7 +560,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
560
560
|
}, "strip", z.ZodTypeAny, {
|
|
561
561
|
automatic_heating_enabled: boolean;
|
|
562
562
|
automatic_cooling_enabled: boolean;
|
|
563
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
563
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
564
564
|
manual_override_allowed: boolean;
|
|
565
565
|
cooling_set_point_celsius?: number | undefined;
|
|
566
566
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -569,7 +569,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
569
569
|
}, {
|
|
570
570
|
automatic_heating_enabled: boolean;
|
|
571
571
|
automatic_cooling_enabled: boolean;
|
|
572
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
572
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
573
573
|
manual_override_allowed: boolean;
|
|
574
574
|
cooling_set_point_celsius?: number | undefined;
|
|
575
575
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -581,7 +581,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
581
581
|
relative_humidity: z.ZodNumber;
|
|
582
582
|
can_enable_automatic_heating: z.ZodBoolean;
|
|
583
583
|
can_enable_automatic_cooling: z.ZodBoolean;
|
|
584
|
-
available_hvac_mode_settings: z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
584
|
+
available_hvac_mode_settings: z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">;
|
|
585
585
|
is_heating: z.ZodBoolean;
|
|
586
586
|
is_cooling: z.ZodBoolean;
|
|
587
587
|
is_fan_running: z.ZodBoolean;
|
|
@@ -589,7 +589,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
589
589
|
current_climate_setting: z.ZodObject<{
|
|
590
590
|
automatic_heating_enabled: z.ZodBoolean;
|
|
591
591
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
592
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
592
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
593
593
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
594
594
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
595
595
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -598,7 +598,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
598
598
|
}, "strip", z.ZodTypeAny, {
|
|
599
599
|
automatic_heating_enabled: boolean;
|
|
600
600
|
automatic_cooling_enabled: boolean;
|
|
601
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
601
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
602
602
|
manual_override_allowed: boolean;
|
|
603
603
|
cooling_set_point_celsius?: number | undefined;
|
|
604
604
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -607,7 +607,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
607
607
|
}, {
|
|
608
608
|
automatic_heating_enabled: boolean;
|
|
609
609
|
automatic_cooling_enabled: boolean;
|
|
610
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
610
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
611
611
|
manual_override_allowed: boolean;
|
|
612
612
|
cooling_set_point_celsius?: number | undefined;
|
|
613
613
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -625,7 +625,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
625
625
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
626
626
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
627
627
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
628
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
628
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
629
629
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
630
630
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
631
631
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -641,7 +641,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
641
641
|
name?: string | undefined;
|
|
642
642
|
automatic_heating_enabled?: boolean | undefined;
|
|
643
643
|
automatic_cooling_enabled?: boolean | undefined;
|
|
644
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
644
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
645
645
|
cooling_set_point_celsius?: number | undefined;
|
|
646
646
|
heating_set_point_celsius?: number | undefined;
|
|
647
647
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -657,7 +657,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
657
657
|
name?: string | undefined;
|
|
658
658
|
automatic_heating_enabled?: boolean | undefined;
|
|
659
659
|
automatic_cooling_enabled?: boolean | undefined;
|
|
660
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
660
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
661
661
|
cooling_set_point_celsius?: number | undefined;
|
|
662
662
|
heating_set_point_celsius?: number | undefined;
|
|
663
663
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -682,7 +682,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
682
682
|
relative_humidity: number;
|
|
683
683
|
can_enable_automatic_heating: boolean;
|
|
684
684
|
can_enable_automatic_cooling: boolean;
|
|
685
|
-
available_hvac_mode_settings: ("cool" | "heat" | "
|
|
685
|
+
available_hvac_mode_settings: ("cool" | "heat" | "heat_cool" | "off")[];
|
|
686
686
|
is_heating_available: true;
|
|
687
687
|
is_cooling_available: true;
|
|
688
688
|
is_heating: boolean;
|
|
@@ -692,7 +692,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
692
692
|
current_climate_setting: {
|
|
693
693
|
automatic_heating_enabled: boolean;
|
|
694
694
|
automatic_cooling_enabled: boolean;
|
|
695
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
695
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
696
696
|
manual_override_allowed: boolean;
|
|
697
697
|
cooling_set_point_celsius?: number | undefined;
|
|
698
698
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -713,7 +713,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
713
713
|
default_climate_setting?: {
|
|
714
714
|
automatic_heating_enabled: boolean;
|
|
715
715
|
automatic_cooling_enabled: boolean;
|
|
716
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
716
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
717
717
|
manual_override_allowed: boolean;
|
|
718
718
|
cooling_set_point_celsius?: number | undefined;
|
|
719
719
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -730,7 +730,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
730
730
|
name?: string | undefined;
|
|
731
731
|
automatic_heating_enabled?: boolean | undefined;
|
|
732
732
|
automatic_cooling_enabled?: boolean | undefined;
|
|
733
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
733
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
734
734
|
cooling_set_point_celsius?: number | undefined;
|
|
735
735
|
heating_set_point_celsius?: number | undefined;
|
|
736
736
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -743,7 +743,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
743
743
|
relative_humidity: number;
|
|
744
744
|
can_enable_automatic_heating: boolean;
|
|
745
745
|
can_enable_automatic_cooling: boolean;
|
|
746
|
-
available_hvac_mode_settings: ("cool" | "heat" | "
|
|
746
|
+
available_hvac_mode_settings: ("cool" | "heat" | "heat_cool" | "off")[];
|
|
747
747
|
is_heating_available: true;
|
|
748
748
|
is_cooling_available: true;
|
|
749
749
|
is_heating: boolean;
|
|
@@ -753,7 +753,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
753
753
|
current_climate_setting: {
|
|
754
754
|
automatic_heating_enabled: boolean;
|
|
755
755
|
automatic_cooling_enabled: boolean;
|
|
756
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
756
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
757
757
|
manual_override_allowed: boolean;
|
|
758
758
|
cooling_set_point_celsius?: number | undefined;
|
|
759
759
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -774,7 +774,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
774
774
|
default_climate_setting?: {
|
|
775
775
|
automatic_heating_enabled: boolean;
|
|
776
776
|
automatic_cooling_enabled: boolean;
|
|
777
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
777
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
778
778
|
manual_override_allowed: boolean;
|
|
779
779
|
cooling_set_point_celsius?: number | undefined;
|
|
780
780
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -791,7 +791,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
791
791
|
name?: string | undefined;
|
|
792
792
|
automatic_heating_enabled?: boolean | undefined;
|
|
793
793
|
automatic_cooling_enabled?: boolean | undefined;
|
|
794
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
794
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
795
795
|
cooling_set_point_celsius?: number | undefined;
|
|
796
796
|
heating_set_point_celsius?: number | undefined;
|
|
797
797
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -803,7 +803,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
803
803
|
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
804
804
|
automatic_heating_enabled: z.ZodBoolean;
|
|
805
805
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
806
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
806
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
807
807
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
808
808
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
809
809
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -812,7 +812,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
812
812
|
}, "strip", z.ZodTypeAny, {
|
|
813
813
|
automatic_heating_enabled: boolean;
|
|
814
814
|
automatic_cooling_enabled: boolean;
|
|
815
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
815
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
816
816
|
manual_override_allowed: boolean;
|
|
817
817
|
cooling_set_point_celsius?: number | undefined;
|
|
818
818
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -821,7 +821,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
821
821
|
}, {
|
|
822
822
|
automatic_heating_enabled: boolean;
|
|
823
823
|
automatic_cooling_enabled: boolean;
|
|
824
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
824
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
825
825
|
manual_override_allowed: boolean;
|
|
826
826
|
cooling_set_point_celsius?: number | undefined;
|
|
827
827
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -833,7 +833,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
833
833
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
834
834
|
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
835
835
|
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
836
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
836
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
837
837
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
838
838
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
839
839
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -841,7 +841,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
841
841
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
842
842
|
automatic_heating_enabled: z.ZodBoolean;
|
|
843
843
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
844
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
844
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
845
845
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
846
846
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
847
847
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -850,7 +850,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
|
851
851
|
automatic_heating_enabled: boolean;
|
|
852
852
|
automatic_cooling_enabled: boolean;
|
|
853
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
853
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
854
854
|
manual_override_allowed: boolean;
|
|
855
855
|
cooling_set_point_celsius?: number | undefined;
|
|
856
856
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -859,7 +859,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
859
859
|
}, {
|
|
860
860
|
automatic_heating_enabled: boolean;
|
|
861
861
|
automatic_cooling_enabled: boolean;
|
|
862
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
862
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
863
863
|
manual_override_allowed: boolean;
|
|
864
864
|
cooling_set_point_celsius?: number | undefined;
|
|
865
865
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -877,7 +877,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
877
877
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
878
878
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
879
879
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
880
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
880
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
881
881
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
882
882
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
883
883
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -893,7 +893,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
893
893
|
name?: string | undefined;
|
|
894
894
|
automatic_heating_enabled?: boolean | undefined;
|
|
895
895
|
automatic_cooling_enabled?: boolean | undefined;
|
|
896
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
896
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
897
897
|
cooling_set_point_celsius?: number | undefined;
|
|
898
898
|
heating_set_point_celsius?: number | undefined;
|
|
899
899
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -909,7 +909,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
909
909
|
name?: string | undefined;
|
|
910
910
|
automatic_heating_enabled?: boolean | undefined;
|
|
911
911
|
automatic_cooling_enabled?: boolean | undefined;
|
|
912
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
912
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
913
913
|
cooling_set_point_celsius?: number | undefined;
|
|
914
914
|
heating_set_point_celsius?: number | undefined;
|
|
915
915
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -932,7 +932,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
932
932
|
default_climate_setting?: {
|
|
933
933
|
automatic_heating_enabled: boolean;
|
|
934
934
|
automatic_cooling_enabled: boolean;
|
|
935
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
935
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
936
936
|
manual_override_allowed: boolean;
|
|
937
937
|
cooling_set_point_celsius?: number | undefined;
|
|
938
938
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -944,7 +944,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
944
944
|
relative_humidity?: number | undefined;
|
|
945
945
|
can_enable_automatic_heating?: boolean | undefined;
|
|
946
946
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
947
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
947
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
948
948
|
is_heating?: boolean | undefined;
|
|
949
949
|
is_cooling?: boolean | undefined;
|
|
950
950
|
is_fan_running?: boolean | undefined;
|
|
@@ -952,7 +952,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
952
952
|
current_climate_setting?: {
|
|
953
953
|
automatic_heating_enabled: boolean;
|
|
954
954
|
automatic_cooling_enabled: boolean;
|
|
955
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
955
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
956
956
|
manual_override_allowed: boolean;
|
|
957
957
|
cooling_set_point_celsius?: number | undefined;
|
|
958
958
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -970,7 +970,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
970
970
|
name?: string | undefined;
|
|
971
971
|
automatic_heating_enabled?: boolean | undefined;
|
|
972
972
|
automatic_cooling_enabled?: boolean | undefined;
|
|
973
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
973
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
974
974
|
cooling_set_point_celsius?: number | undefined;
|
|
975
975
|
heating_set_point_celsius?: number | undefined;
|
|
976
976
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -993,7 +993,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
993
993
|
default_climate_setting?: {
|
|
994
994
|
automatic_heating_enabled: boolean;
|
|
995
995
|
automatic_cooling_enabled: boolean;
|
|
996
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
996
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
997
997
|
manual_override_allowed: boolean;
|
|
998
998
|
cooling_set_point_celsius?: number | undefined;
|
|
999
999
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1005,7 +1005,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1005
1005
|
relative_humidity?: number | undefined;
|
|
1006
1006
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1007
1007
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1008
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1008
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1009
1009
|
is_heating?: boolean | undefined;
|
|
1010
1010
|
is_cooling?: boolean | undefined;
|
|
1011
1011
|
is_fan_running?: boolean | undefined;
|
|
@@ -1013,7 +1013,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1013
1013
|
current_climate_setting?: {
|
|
1014
1014
|
automatic_heating_enabled: boolean;
|
|
1015
1015
|
automatic_cooling_enabled: boolean;
|
|
1016
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1016
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1017
1017
|
manual_override_allowed: boolean;
|
|
1018
1018
|
cooling_set_point_celsius?: number | undefined;
|
|
1019
1019
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1031,7 +1031,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1031
1031
|
name?: string | undefined;
|
|
1032
1032
|
automatic_heating_enabled?: boolean | undefined;
|
|
1033
1033
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1034
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1034
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1035
1035
|
cooling_set_point_celsius?: number | undefined;
|
|
1036
1036
|
heating_set_point_celsius?: number | undefined;
|
|
1037
1037
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1054,7 +1054,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1054
1054
|
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1055
1055
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1056
1056
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1057
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1057
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1058
1058
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1059
1059
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1060
1060
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1063,7 +1063,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1063
1063
|
}, "strip", z.ZodTypeAny, {
|
|
1064
1064
|
automatic_heating_enabled: boolean;
|
|
1065
1065
|
automatic_cooling_enabled: boolean;
|
|
1066
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1066
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1067
1067
|
manual_override_allowed: boolean;
|
|
1068
1068
|
cooling_set_point_celsius?: number | undefined;
|
|
1069
1069
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1072,7 +1072,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1072
1072
|
}, {
|
|
1073
1073
|
automatic_heating_enabled: boolean;
|
|
1074
1074
|
automatic_cooling_enabled: boolean;
|
|
1075
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1075
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1076
1076
|
manual_override_allowed: boolean;
|
|
1077
1077
|
cooling_set_point_celsius?: number | undefined;
|
|
1078
1078
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1084,7 +1084,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1084
1084
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1085
1085
|
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1086
1086
|
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1087
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
1087
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1088
1088
|
is_cooling_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
1089
1089
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1090
1090
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1093,7 +1093,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1093
1093
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1094
1094
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1095
1095
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1096
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1096
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1097
1097
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1098
1098
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1099
1099
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1102,7 +1102,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1102
1102
|
}, "strip", z.ZodTypeAny, {
|
|
1103
1103
|
automatic_heating_enabled: boolean;
|
|
1104
1104
|
automatic_cooling_enabled: boolean;
|
|
1105
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1105
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1106
1106
|
manual_override_allowed: boolean;
|
|
1107
1107
|
cooling_set_point_celsius?: number | undefined;
|
|
1108
1108
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1111,7 +1111,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1111
1111
|
}, {
|
|
1112
1112
|
automatic_heating_enabled: boolean;
|
|
1113
1113
|
automatic_cooling_enabled: boolean;
|
|
1114
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1114
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1115
1115
|
manual_override_allowed: boolean;
|
|
1116
1116
|
cooling_set_point_celsius?: number | undefined;
|
|
1117
1117
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1129,7 +1129,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1129
1129
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1130
1130
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1131
1131
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1132
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
1132
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1133
1133
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1134
1134
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1135
1135
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1145,7 +1145,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1145
1145
|
name?: string | undefined;
|
|
1146
1146
|
automatic_heating_enabled?: boolean | undefined;
|
|
1147
1147
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1148
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1148
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1149
1149
|
cooling_set_point_celsius?: number | undefined;
|
|
1150
1150
|
heating_set_point_celsius?: number | undefined;
|
|
1151
1151
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1161,7 +1161,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1161
1161
|
name?: string | undefined;
|
|
1162
1162
|
automatic_heating_enabled?: boolean | undefined;
|
|
1163
1163
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1164
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1164
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1165
1165
|
cooling_set_point_celsius?: number | undefined;
|
|
1166
1166
|
heating_set_point_celsius?: number | undefined;
|
|
1167
1167
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1177,7 +1177,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1177
1177
|
default_climate_setting?: {
|
|
1178
1178
|
automatic_heating_enabled: boolean;
|
|
1179
1179
|
automatic_cooling_enabled: boolean;
|
|
1180
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1180
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1181
1181
|
manual_override_allowed: boolean;
|
|
1182
1182
|
cooling_set_point_celsius?: number | undefined;
|
|
1183
1183
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1189,7 +1189,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1189
1189
|
relative_humidity?: number | undefined;
|
|
1190
1190
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1191
1191
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1192
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1192
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1193
1193
|
is_cooling_available?: false | undefined;
|
|
1194
1194
|
is_heating?: boolean | undefined;
|
|
1195
1195
|
is_cooling?: boolean | undefined;
|
|
@@ -1198,7 +1198,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1198
1198
|
current_climate_setting?: {
|
|
1199
1199
|
automatic_heating_enabled: boolean;
|
|
1200
1200
|
automatic_cooling_enabled: boolean;
|
|
1201
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1201
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1202
1202
|
manual_override_allowed: boolean;
|
|
1203
1203
|
cooling_set_point_celsius?: number | undefined;
|
|
1204
1204
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1216,7 +1216,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1216
1216
|
name?: string | undefined;
|
|
1217
1217
|
automatic_heating_enabled?: boolean | undefined;
|
|
1218
1218
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1219
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1219
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1220
1220
|
cooling_set_point_celsius?: number | undefined;
|
|
1221
1221
|
heating_set_point_celsius?: number | undefined;
|
|
1222
1222
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1232,7 +1232,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1232
1232
|
default_climate_setting?: {
|
|
1233
1233
|
automatic_heating_enabled: boolean;
|
|
1234
1234
|
automatic_cooling_enabled: boolean;
|
|
1235
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1235
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1236
1236
|
manual_override_allowed: boolean;
|
|
1237
1237
|
cooling_set_point_celsius?: number | undefined;
|
|
1238
1238
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1244,7 +1244,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1244
1244
|
relative_humidity?: number | undefined;
|
|
1245
1245
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1246
1246
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1247
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1247
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1248
1248
|
is_cooling_available?: false | undefined;
|
|
1249
1249
|
is_heating?: boolean | undefined;
|
|
1250
1250
|
is_cooling?: boolean | undefined;
|
|
@@ -1253,7 +1253,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1253
1253
|
current_climate_setting?: {
|
|
1254
1254
|
automatic_heating_enabled: boolean;
|
|
1255
1255
|
automatic_cooling_enabled: boolean;
|
|
1256
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1256
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1257
1257
|
manual_override_allowed: boolean;
|
|
1258
1258
|
cooling_set_point_celsius?: number | undefined;
|
|
1259
1259
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1271,7 +1271,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1271
1271
|
name?: string | undefined;
|
|
1272
1272
|
automatic_heating_enabled?: boolean | undefined;
|
|
1273
1273
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1274
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1274
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1275
1275
|
cooling_set_point_celsius?: number | undefined;
|
|
1276
1276
|
heating_set_point_celsius?: number | undefined;
|
|
1277
1277
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1287,7 +1287,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1287
1287
|
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1288
1288
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1289
1289
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1290
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1290
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1291
1291
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1292
1292
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1293
1293
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1296,7 +1296,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1296
1296
|
}, "strip", z.ZodTypeAny, {
|
|
1297
1297
|
automatic_heating_enabled: boolean;
|
|
1298
1298
|
automatic_cooling_enabled: boolean;
|
|
1299
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1299
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1300
1300
|
manual_override_allowed: boolean;
|
|
1301
1301
|
cooling_set_point_celsius?: number | undefined;
|
|
1302
1302
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1305,7 +1305,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1305
1305
|
}, {
|
|
1306
1306
|
automatic_heating_enabled: boolean;
|
|
1307
1307
|
automatic_cooling_enabled: boolean;
|
|
1308
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1308
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1309
1309
|
manual_override_allowed: boolean;
|
|
1310
1310
|
cooling_set_point_celsius?: number | undefined;
|
|
1311
1311
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1317,7 +1317,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1317
1317
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1318
1318
|
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1319
1319
|
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1320
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
1320
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1321
1321
|
is_heating_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
1322
1322
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1323
1323
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1326,7 +1326,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1326
1326
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1327
1327
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1328
1328
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1329
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1329
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1330
1330
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1331
1331
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1332
1332
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1335,7 +1335,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1335
1335
|
}, "strip", z.ZodTypeAny, {
|
|
1336
1336
|
automatic_heating_enabled: boolean;
|
|
1337
1337
|
automatic_cooling_enabled: boolean;
|
|
1338
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1338
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1339
1339
|
manual_override_allowed: boolean;
|
|
1340
1340
|
cooling_set_point_celsius?: number | undefined;
|
|
1341
1341
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1344,7 +1344,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1344
1344
|
}, {
|
|
1345
1345
|
automatic_heating_enabled: boolean;
|
|
1346
1346
|
automatic_cooling_enabled: boolean;
|
|
1347
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1347
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1348
1348
|
manual_override_allowed: boolean;
|
|
1349
1349
|
cooling_set_point_celsius?: number | undefined;
|
|
1350
1350
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1362,7 +1362,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1362
1362
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1363
1363
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1364
1364
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1365
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
1365
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1366
1366
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1367
1367
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1368
1368
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1378,7 +1378,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1378
1378
|
name?: string | undefined;
|
|
1379
1379
|
automatic_heating_enabled?: boolean | undefined;
|
|
1380
1380
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1381
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1381
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1382
1382
|
cooling_set_point_celsius?: number | undefined;
|
|
1383
1383
|
heating_set_point_celsius?: number | undefined;
|
|
1384
1384
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1394,7 +1394,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1394
1394
|
name?: string | undefined;
|
|
1395
1395
|
automatic_heating_enabled?: boolean | undefined;
|
|
1396
1396
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1397
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1397
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1398
1398
|
cooling_set_point_celsius?: number | undefined;
|
|
1399
1399
|
heating_set_point_celsius?: number | undefined;
|
|
1400
1400
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1410,7 +1410,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1410
1410
|
default_climate_setting?: {
|
|
1411
1411
|
automatic_heating_enabled: boolean;
|
|
1412
1412
|
automatic_cooling_enabled: boolean;
|
|
1413
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1413
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1414
1414
|
manual_override_allowed: boolean;
|
|
1415
1415
|
cooling_set_point_celsius?: number | undefined;
|
|
1416
1416
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1422,7 +1422,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1422
1422
|
relative_humidity?: number | undefined;
|
|
1423
1423
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1424
1424
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1425
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1425
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1426
1426
|
is_heating_available?: false | undefined;
|
|
1427
1427
|
is_heating?: boolean | undefined;
|
|
1428
1428
|
is_cooling?: boolean | undefined;
|
|
@@ -1431,7 +1431,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1431
1431
|
current_climate_setting?: {
|
|
1432
1432
|
automatic_heating_enabled: boolean;
|
|
1433
1433
|
automatic_cooling_enabled: boolean;
|
|
1434
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1434
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1435
1435
|
manual_override_allowed: boolean;
|
|
1436
1436
|
cooling_set_point_celsius?: number | undefined;
|
|
1437
1437
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1449,7 +1449,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1449
1449
|
name?: string | undefined;
|
|
1450
1450
|
automatic_heating_enabled?: boolean | undefined;
|
|
1451
1451
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1452
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1452
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1453
1453
|
cooling_set_point_celsius?: number | undefined;
|
|
1454
1454
|
heating_set_point_celsius?: number | undefined;
|
|
1455
1455
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1465,7 +1465,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1465
1465
|
default_climate_setting?: {
|
|
1466
1466
|
automatic_heating_enabled: boolean;
|
|
1467
1467
|
automatic_cooling_enabled: boolean;
|
|
1468
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1468
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1469
1469
|
manual_override_allowed: boolean;
|
|
1470
1470
|
cooling_set_point_celsius?: number | undefined;
|
|
1471
1471
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1477,7 +1477,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1477
1477
|
relative_humidity?: number | undefined;
|
|
1478
1478
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1479
1479
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1480
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1480
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1481
1481
|
is_heating_available?: false | undefined;
|
|
1482
1482
|
is_heating?: boolean | undefined;
|
|
1483
1483
|
is_cooling?: boolean | undefined;
|
|
@@ -1486,7 +1486,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1486
1486
|
current_climate_setting?: {
|
|
1487
1487
|
automatic_heating_enabled: boolean;
|
|
1488
1488
|
automatic_cooling_enabled: boolean;
|
|
1489
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1489
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1490
1490
|
manual_override_allowed: boolean;
|
|
1491
1491
|
cooling_set_point_celsius?: number | undefined;
|
|
1492
1492
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1504,7 +1504,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1504
1504
|
name?: string | undefined;
|
|
1505
1505
|
automatic_heating_enabled?: boolean | undefined;
|
|
1506
1506
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1507
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1507
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1508
1508
|
cooling_set_point_celsius?: number | undefined;
|
|
1509
1509
|
heating_set_point_celsius?: number | undefined;
|
|
1510
1510
|
cooling_set_point_fahrenheit?: number | undefined;
|