@seamapi/types 1.11.0 → 1.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +6046 -6076
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6715 -6768
- package/lib/seam/connect/openapi.d.ts +6715 -6768
- package/lib/seam/connect/openapi.js +5729 -5759
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/lib/seam/connect/unstable/models/acs/user.d.ts +6 -6
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +90 -90
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +186 -186
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +8 -8
- package/lib/seam/connect/unstable/models/managed-device.d.ts +204 -204
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5729 -5759
- package/src/lib/seam/connect/route-types.ts +1 -1
|
@@ -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: "off" | "
|
|
18
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
27
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
28
28
|
manual_override_allowed: boolean;
|
|
29
29
|
cooling_set_point_celsius?: number | undefined;
|
|
30
30
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -36,10 +36,10 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
36
36
|
name: z.ZodOptional<z.ZodString>;
|
|
37
37
|
created_at: z.ZodString;
|
|
38
38
|
device_id: z.ZodString;
|
|
39
|
-
schedule_starts_at: z.ZodString;
|
|
40
|
-
schedule_ends_at: z.ZodString;
|
|
41
39
|
climate_setting_schedule_id: z.ZodString;
|
|
42
40
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
41
|
+
schedule_starts_at: z.ZodString;
|
|
42
|
+
schedule_ends_at: z.ZodString;
|
|
43
43
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
44
44
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
45
45
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -51,14 +51,14 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
created_at: string;
|
|
53
53
|
device_id: string;
|
|
54
|
-
schedule_starts_at: string;
|
|
55
|
-
schedule_ends_at: string;
|
|
56
54
|
climate_setting_schedule_id: string;
|
|
57
55
|
schedule_type: "time_bound";
|
|
56
|
+
schedule_starts_at: string;
|
|
57
|
+
schedule_ends_at: string;
|
|
58
58
|
name?: string | undefined;
|
|
59
59
|
automatic_heating_enabled?: boolean | undefined;
|
|
60
60
|
automatic_cooling_enabled?: boolean | undefined;
|
|
61
|
-
hvac_mode_setting?: "off" | "
|
|
61
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -67,14 +67,14 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
67
67
|
}, {
|
|
68
68
|
created_at: string;
|
|
69
69
|
device_id: string;
|
|
70
|
-
schedule_starts_at: string;
|
|
71
|
-
schedule_ends_at: string;
|
|
72
70
|
climate_setting_schedule_id: string;
|
|
73
71
|
schedule_type: "time_bound";
|
|
72
|
+
schedule_starts_at: string;
|
|
73
|
+
schedule_ends_at: string;
|
|
74
74
|
name?: string | undefined;
|
|
75
75
|
automatic_heating_enabled?: boolean | undefined;
|
|
76
76
|
automatic_cooling_enabled?: boolean | undefined;
|
|
77
|
-
hvac_mode_setting?: "off" | "
|
|
77
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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: "off" | "
|
|
97
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
106
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
137
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
146
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
147
147
|
manual_override_allowed: boolean;
|
|
148
148
|
cooling_set_point_celsius?: number | undefined;
|
|
149
149
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -155,10 +155,10 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
155
155
|
name: z.ZodOptional<z.ZodString>;
|
|
156
156
|
created_at: z.ZodString;
|
|
157
157
|
device_id: z.ZodString;
|
|
158
|
-
schedule_starts_at: z.ZodString;
|
|
159
|
-
schedule_ends_at: z.ZodString;
|
|
160
158
|
climate_setting_schedule_id: z.ZodString;
|
|
161
159
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
160
|
+
schedule_starts_at: z.ZodString;
|
|
161
|
+
schedule_ends_at: z.ZodString;
|
|
162
162
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
163
163
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
164
164
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -170,14 +170,14 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
170
170
|
}, "strip", z.ZodTypeAny, {
|
|
171
171
|
created_at: string;
|
|
172
172
|
device_id: string;
|
|
173
|
-
schedule_starts_at: string;
|
|
174
|
-
schedule_ends_at: string;
|
|
175
173
|
climate_setting_schedule_id: string;
|
|
176
174
|
schedule_type: "time_bound";
|
|
175
|
+
schedule_starts_at: string;
|
|
176
|
+
schedule_ends_at: string;
|
|
177
177
|
name?: string | undefined;
|
|
178
178
|
automatic_heating_enabled?: boolean | undefined;
|
|
179
179
|
automatic_cooling_enabled?: boolean | undefined;
|
|
180
|
-
hvac_mode_setting?: "off" | "
|
|
180
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -186,14 +186,14 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
186
186
|
}, {
|
|
187
187
|
created_at: string;
|
|
188
188
|
device_id: string;
|
|
189
|
-
schedule_starts_at: string;
|
|
190
|
-
schedule_ends_at: string;
|
|
191
189
|
climate_setting_schedule_id: string;
|
|
192
190
|
schedule_type: "time_bound";
|
|
191
|
+
schedule_starts_at: string;
|
|
192
|
+
schedule_ends_at: string;
|
|
193
193
|
name?: string | undefined;
|
|
194
194
|
automatic_heating_enabled?: boolean | undefined;
|
|
195
195
|
automatic_cooling_enabled?: boolean | undefined;
|
|
196
|
-
hvac_mode_setting?: "off" | "
|
|
196
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -206,13 +206,13 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
206
206
|
max_cooling_set_point_fahrenheit: z.ZodNumber;
|
|
207
207
|
is_cooling_available: z.ZodLiteral<true>;
|
|
208
208
|
}, "strip", z.ZodTypeAny, {
|
|
209
|
-
|
|
209
|
+
max_cooling_set_point_celsius: number;
|
|
210
210
|
temperature_fahrenheit: number;
|
|
211
211
|
temperature_celsius: number;
|
|
212
212
|
relative_humidity: number;
|
|
213
213
|
can_enable_automatic_heating: boolean;
|
|
214
214
|
can_enable_automatic_cooling: boolean;
|
|
215
|
-
available_hvac_mode_settings: ("off" | "
|
|
215
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heat_cool")[];
|
|
216
216
|
is_heating_available: false;
|
|
217
217
|
is_cooling_available: true;
|
|
218
218
|
is_heating: boolean;
|
|
@@ -223,7 +223,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
223
223
|
current_climate_setting: {
|
|
224
224
|
automatic_heating_enabled: boolean;
|
|
225
225
|
automatic_cooling_enabled: boolean;
|
|
226
|
-
hvac_mode_setting: "off" | "
|
|
226
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
227
227
|
manual_override_allowed: boolean;
|
|
228
228
|
cooling_set_point_celsius?: number | undefined;
|
|
229
229
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -231,13 +231,13 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
231
231
|
heating_set_point_fahrenheit?: number | undefined;
|
|
232
232
|
};
|
|
233
233
|
is_climate_setting_schedule_active: boolean;
|
|
234
|
+
min_cooling_set_point_celsius: number;
|
|
234
235
|
min_cooling_set_point_fahrenheit: number;
|
|
235
|
-
max_cooling_set_point_celsius: number;
|
|
236
236
|
max_cooling_set_point_fahrenheit: number;
|
|
237
237
|
default_climate_setting?: {
|
|
238
238
|
automatic_heating_enabled: boolean;
|
|
239
239
|
automatic_cooling_enabled: boolean;
|
|
240
|
-
hvac_mode_setting: "off" | "
|
|
240
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
241
241
|
manual_override_allowed: boolean;
|
|
242
242
|
cooling_set_point_celsius?: number | undefined;
|
|
243
243
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -247,14 +247,14 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
247
247
|
active_climate_setting_schedule?: {
|
|
248
248
|
created_at: string;
|
|
249
249
|
device_id: string;
|
|
250
|
-
schedule_starts_at: string;
|
|
251
|
-
schedule_ends_at: string;
|
|
252
250
|
climate_setting_schedule_id: string;
|
|
253
251
|
schedule_type: "time_bound";
|
|
252
|
+
schedule_starts_at: string;
|
|
253
|
+
schedule_ends_at: string;
|
|
254
254
|
name?: string | undefined;
|
|
255
255
|
automatic_heating_enabled?: boolean | undefined;
|
|
256
256
|
automatic_cooling_enabled?: boolean | undefined;
|
|
257
|
-
hvac_mode_setting?: "off" | "
|
|
257
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -262,13 +262,13 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
262
262
|
manual_override_allowed?: boolean | undefined;
|
|
263
263
|
} | undefined;
|
|
264
264
|
}, {
|
|
265
|
-
|
|
265
|
+
max_cooling_set_point_celsius: number;
|
|
266
266
|
temperature_fahrenheit: number;
|
|
267
267
|
temperature_celsius: number;
|
|
268
268
|
relative_humidity: number;
|
|
269
269
|
can_enable_automatic_heating: boolean;
|
|
270
270
|
can_enable_automatic_cooling: boolean;
|
|
271
|
-
available_hvac_mode_settings: ("off" | "
|
|
271
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heat_cool")[];
|
|
272
272
|
is_heating_available: false;
|
|
273
273
|
is_cooling_available: true;
|
|
274
274
|
is_heating: boolean;
|
|
@@ -279,7 +279,7 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
279
279
|
current_climate_setting: {
|
|
280
280
|
automatic_heating_enabled: boolean;
|
|
281
281
|
automatic_cooling_enabled: boolean;
|
|
282
|
-
hvac_mode_setting: "off" | "
|
|
282
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
283
283
|
manual_override_allowed: boolean;
|
|
284
284
|
cooling_set_point_celsius?: number | undefined;
|
|
285
285
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -287,13 +287,13 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
287
287
|
heating_set_point_fahrenheit?: number | undefined;
|
|
288
288
|
};
|
|
289
289
|
is_climate_setting_schedule_active: boolean;
|
|
290
|
+
min_cooling_set_point_celsius: number;
|
|
290
291
|
min_cooling_set_point_fahrenheit: number;
|
|
291
|
-
max_cooling_set_point_celsius: number;
|
|
292
292
|
max_cooling_set_point_fahrenheit: number;
|
|
293
293
|
default_climate_setting?: {
|
|
294
294
|
automatic_heating_enabled: boolean;
|
|
295
295
|
automatic_cooling_enabled: boolean;
|
|
296
|
-
hvac_mode_setting: "off" | "
|
|
296
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
297
297
|
manual_override_allowed: boolean;
|
|
298
298
|
cooling_set_point_celsius?: number | undefined;
|
|
299
299
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -303,14 +303,14 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
303
303
|
active_climate_setting_schedule?: {
|
|
304
304
|
created_at: string;
|
|
305
305
|
device_id: string;
|
|
306
|
-
schedule_starts_at: string;
|
|
307
|
-
schedule_ends_at: string;
|
|
308
306
|
climate_setting_schedule_id: string;
|
|
309
307
|
schedule_type: "time_bound";
|
|
308
|
+
schedule_starts_at: string;
|
|
309
|
+
schedule_ends_at: string;
|
|
310
310
|
name?: string | undefined;
|
|
311
311
|
automatic_heating_enabled?: boolean | undefined;
|
|
312
312
|
automatic_cooling_enabled?: boolean | undefined;
|
|
313
|
-
hvac_mode_setting?: "off" | "
|
|
313
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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: "off" | "
|
|
334
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
343
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
374
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
383
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
384
384
|
manual_override_allowed: boolean;
|
|
385
385
|
cooling_set_point_celsius?: number | undefined;
|
|
386
386
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -392,10 +392,10 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
392
392
|
name: z.ZodOptional<z.ZodString>;
|
|
393
393
|
created_at: z.ZodString;
|
|
394
394
|
device_id: z.ZodString;
|
|
395
|
-
schedule_starts_at: z.ZodString;
|
|
396
|
-
schedule_ends_at: z.ZodString;
|
|
397
395
|
climate_setting_schedule_id: z.ZodString;
|
|
398
396
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
397
|
+
schedule_starts_at: z.ZodString;
|
|
398
|
+
schedule_ends_at: z.ZodString;
|
|
399
399
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
400
400
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
401
401
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -407,14 +407,14 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
407
407
|
}, "strip", z.ZodTypeAny, {
|
|
408
408
|
created_at: string;
|
|
409
409
|
device_id: string;
|
|
410
|
-
schedule_starts_at: string;
|
|
411
|
-
schedule_ends_at: string;
|
|
412
410
|
climate_setting_schedule_id: string;
|
|
413
411
|
schedule_type: "time_bound";
|
|
412
|
+
schedule_starts_at: string;
|
|
413
|
+
schedule_ends_at: string;
|
|
414
414
|
name?: string | undefined;
|
|
415
415
|
automatic_heating_enabled?: boolean | undefined;
|
|
416
416
|
automatic_cooling_enabled?: boolean | undefined;
|
|
417
|
-
hvac_mode_setting?: "off" | "
|
|
417
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -423,14 +423,14 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
423
423
|
}, {
|
|
424
424
|
created_at: string;
|
|
425
425
|
device_id: string;
|
|
426
|
-
schedule_starts_at: string;
|
|
427
|
-
schedule_ends_at: string;
|
|
428
426
|
climate_setting_schedule_id: string;
|
|
429
427
|
schedule_type: "time_bound";
|
|
428
|
+
schedule_starts_at: string;
|
|
429
|
+
schedule_ends_at: string;
|
|
430
430
|
name?: string | undefined;
|
|
431
431
|
automatic_heating_enabled?: boolean | undefined;
|
|
432
432
|
automatic_cooling_enabled?: boolean | undefined;
|
|
433
|
-
hvac_mode_setting?: "off" | "
|
|
433
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -443,13 +443,13 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
443
443
|
max_heating_set_point_fahrenheit: z.ZodNumber;
|
|
444
444
|
is_heating_available: z.ZodLiteral<true>;
|
|
445
445
|
}, "strip", z.ZodTypeAny, {
|
|
446
|
-
|
|
446
|
+
max_heating_set_point_celsius: number;
|
|
447
447
|
temperature_fahrenheit: number;
|
|
448
448
|
temperature_celsius: number;
|
|
449
449
|
relative_humidity: number;
|
|
450
450
|
can_enable_automatic_heating: boolean;
|
|
451
451
|
can_enable_automatic_cooling: boolean;
|
|
452
|
-
available_hvac_mode_settings: ("off" | "
|
|
452
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heat_cool")[];
|
|
453
453
|
is_heating_available: true;
|
|
454
454
|
is_cooling_available: false;
|
|
455
455
|
is_heating: boolean;
|
|
@@ -460,7 +460,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
460
460
|
current_climate_setting: {
|
|
461
461
|
automatic_heating_enabled: boolean;
|
|
462
462
|
automatic_cooling_enabled: boolean;
|
|
463
|
-
hvac_mode_setting: "off" | "
|
|
463
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
464
464
|
manual_override_allowed: boolean;
|
|
465
465
|
cooling_set_point_celsius?: number | undefined;
|
|
466
466
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -468,13 +468,13 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
468
468
|
heating_set_point_fahrenheit?: number | undefined;
|
|
469
469
|
};
|
|
470
470
|
is_climate_setting_schedule_active: boolean;
|
|
471
|
+
min_heating_set_point_celsius: number;
|
|
471
472
|
min_heating_set_point_fahrenheit: number;
|
|
472
|
-
max_heating_set_point_celsius: number;
|
|
473
473
|
max_heating_set_point_fahrenheit: number;
|
|
474
474
|
default_climate_setting?: {
|
|
475
475
|
automatic_heating_enabled: boolean;
|
|
476
476
|
automatic_cooling_enabled: boolean;
|
|
477
|
-
hvac_mode_setting: "off" | "
|
|
477
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
478
478
|
manual_override_allowed: boolean;
|
|
479
479
|
cooling_set_point_celsius?: number | undefined;
|
|
480
480
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -484,14 +484,14 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
484
484
|
active_climate_setting_schedule?: {
|
|
485
485
|
created_at: string;
|
|
486
486
|
device_id: string;
|
|
487
|
-
schedule_starts_at: string;
|
|
488
|
-
schedule_ends_at: string;
|
|
489
487
|
climate_setting_schedule_id: string;
|
|
490
488
|
schedule_type: "time_bound";
|
|
489
|
+
schedule_starts_at: string;
|
|
490
|
+
schedule_ends_at: string;
|
|
491
491
|
name?: string | undefined;
|
|
492
492
|
automatic_heating_enabled?: boolean | undefined;
|
|
493
493
|
automatic_cooling_enabled?: boolean | undefined;
|
|
494
|
-
hvac_mode_setting?: "off" | "
|
|
494
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -499,13 +499,13 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
499
499
|
manual_override_allowed?: boolean | undefined;
|
|
500
500
|
} | undefined;
|
|
501
501
|
}, {
|
|
502
|
-
|
|
502
|
+
max_heating_set_point_celsius: number;
|
|
503
503
|
temperature_fahrenheit: number;
|
|
504
504
|
temperature_celsius: number;
|
|
505
505
|
relative_humidity: number;
|
|
506
506
|
can_enable_automatic_heating: boolean;
|
|
507
507
|
can_enable_automatic_cooling: boolean;
|
|
508
|
-
available_hvac_mode_settings: ("off" | "
|
|
508
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heat_cool")[];
|
|
509
509
|
is_heating_available: true;
|
|
510
510
|
is_cooling_available: false;
|
|
511
511
|
is_heating: boolean;
|
|
@@ -516,7 +516,7 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
516
516
|
current_climate_setting: {
|
|
517
517
|
automatic_heating_enabled: boolean;
|
|
518
518
|
automatic_cooling_enabled: boolean;
|
|
519
|
-
hvac_mode_setting: "off" | "
|
|
519
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
520
520
|
manual_override_allowed: boolean;
|
|
521
521
|
cooling_set_point_celsius?: number | undefined;
|
|
522
522
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -524,13 +524,13 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
524
524
|
heating_set_point_fahrenheit?: number | undefined;
|
|
525
525
|
};
|
|
526
526
|
is_climate_setting_schedule_active: boolean;
|
|
527
|
+
min_heating_set_point_celsius: number;
|
|
527
528
|
min_heating_set_point_fahrenheit: number;
|
|
528
|
-
max_heating_set_point_celsius: number;
|
|
529
529
|
max_heating_set_point_fahrenheit: number;
|
|
530
530
|
default_climate_setting?: {
|
|
531
531
|
automatic_heating_enabled: boolean;
|
|
532
532
|
automatic_cooling_enabled: boolean;
|
|
533
|
-
hvac_mode_setting: "off" | "
|
|
533
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
534
534
|
manual_override_allowed: boolean;
|
|
535
535
|
cooling_set_point_celsius?: number | undefined;
|
|
536
536
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -540,14 +540,14 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
540
540
|
active_climate_setting_schedule?: {
|
|
541
541
|
created_at: string;
|
|
542
542
|
device_id: string;
|
|
543
|
-
schedule_starts_at: string;
|
|
544
|
-
schedule_ends_at: string;
|
|
545
543
|
climate_setting_schedule_id: string;
|
|
546
544
|
schedule_type: "time_bound";
|
|
545
|
+
schedule_starts_at: string;
|
|
546
|
+
schedule_ends_at: string;
|
|
547
547
|
name?: string | undefined;
|
|
548
548
|
automatic_heating_enabled?: boolean | undefined;
|
|
549
549
|
automatic_cooling_enabled?: boolean | undefined;
|
|
550
|
-
hvac_mode_setting?: "off" | "
|
|
550
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -556,6 +556,8 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
556
556
|
} | undefined;
|
|
557
557
|
}>;
|
|
558
558
|
export declare const heating_cooling_thermostat_capability_properties: z.ZodObject<{
|
|
559
|
+
max_cooling_set_point_celsius: z.ZodNumber;
|
|
560
|
+
max_heating_set_point_celsius: z.ZodNumber;
|
|
559
561
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
560
562
|
automatic_heating_enabled: z.ZodBoolean;
|
|
561
563
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
@@ -568,7 +570,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
568
570
|
}, "strip", z.ZodTypeAny, {
|
|
569
571
|
automatic_heating_enabled: boolean;
|
|
570
572
|
automatic_cooling_enabled: boolean;
|
|
571
|
-
hvac_mode_setting: "off" | "
|
|
573
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
572
574
|
manual_override_allowed: boolean;
|
|
573
575
|
cooling_set_point_celsius?: number | undefined;
|
|
574
576
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -577,15 +579,13 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
577
579
|
}, {
|
|
578
580
|
automatic_heating_enabled: boolean;
|
|
579
581
|
automatic_cooling_enabled: boolean;
|
|
580
|
-
hvac_mode_setting: "off" | "
|
|
582
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
581
583
|
manual_override_allowed: boolean;
|
|
582
584
|
cooling_set_point_celsius?: number | undefined;
|
|
583
585
|
heating_set_point_celsius?: number | undefined;
|
|
584
586
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
585
587
|
heating_set_point_fahrenheit?: number | undefined;
|
|
586
588
|
}>>;
|
|
587
|
-
min_cooling_set_point_celsius: z.ZodNumber;
|
|
588
|
-
min_heating_set_point_celsius: z.ZodNumber;
|
|
589
589
|
temperature_fahrenheit: z.ZodNumber;
|
|
590
590
|
temperature_celsius: z.ZodNumber;
|
|
591
591
|
relative_humidity: z.ZodNumber;
|
|
@@ -609,7 +609,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
610
|
automatic_heating_enabled: boolean;
|
|
611
611
|
automatic_cooling_enabled: boolean;
|
|
612
|
-
hvac_mode_setting: "off" | "
|
|
612
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
613
613
|
manual_override_allowed: boolean;
|
|
614
614
|
cooling_set_point_celsius?: number | undefined;
|
|
615
615
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -618,7 +618,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
618
618
|
}, {
|
|
619
619
|
automatic_heating_enabled: boolean;
|
|
620
620
|
automatic_cooling_enabled: boolean;
|
|
621
|
-
hvac_mode_setting: "off" | "
|
|
621
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
622
622
|
manual_override_allowed: boolean;
|
|
623
623
|
cooling_set_point_celsius?: number | undefined;
|
|
624
624
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -630,10 +630,10 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
630
630
|
name: z.ZodOptional<z.ZodString>;
|
|
631
631
|
created_at: z.ZodString;
|
|
632
632
|
device_id: z.ZodString;
|
|
633
|
-
schedule_starts_at: z.ZodString;
|
|
634
|
-
schedule_ends_at: z.ZodString;
|
|
635
633
|
climate_setting_schedule_id: z.ZodString;
|
|
636
634
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
635
|
+
schedule_starts_at: z.ZodString;
|
|
636
|
+
schedule_ends_at: z.ZodString;
|
|
637
637
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
638
638
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
639
639
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -645,14 +645,14 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
645
645
|
}, "strip", z.ZodTypeAny, {
|
|
646
646
|
created_at: string;
|
|
647
647
|
device_id: string;
|
|
648
|
-
schedule_starts_at: string;
|
|
649
|
-
schedule_ends_at: string;
|
|
650
648
|
climate_setting_schedule_id: string;
|
|
651
649
|
schedule_type: "time_bound";
|
|
650
|
+
schedule_starts_at: string;
|
|
651
|
+
schedule_ends_at: string;
|
|
652
652
|
name?: string | undefined;
|
|
653
653
|
automatic_heating_enabled?: boolean | undefined;
|
|
654
654
|
automatic_cooling_enabled?: boolean | undefined;
|
|
655
|
-
hvac_mode_setting?: "off" | "
|
|
655
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
656
656
|
cooling_set_point_celsius?: number | undefined;
|
|
657
657
|
heating_set_point_celsius?: number | undefined;
|
|
658
658
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -661,39 +661,39 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
661
661
|
}, {
|
|
662
662
|
created_at: string;
|
|
663
663
|
device_id: string;
|
|
664
|
-
schedule_starts_at: string;
|
|
665
|
-
schedule_ends_at: string;
|
|
666
664
|
climate_setting_schedule_id: string;
|
|
667
665
|
schedule_type: "time_bound";
|
|
666
|
+
schedule_starts_at: string;
|
|
667
|
+
schedule_ends_at: string;
|
|
668
668
|
name?: string | undefined;
|
|
669
669
|
automatic_heating_enabled?: boolean | undefined;
|
|
670
670
|
automatic_cooling_enabled?: boolean | undefined;
|
|
671
|
-
hvac_mode_setting?: "off" | "
|
|
671
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
672
672
|
cooling_set_point_celsius?: number | undefined;
|
|
673
673
|
heating_set_point_celsius?: number | undefined;
|
|
674
674
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
675
675
|
heating_set_point_fahrenheit?: number | undefined;
|
|
676
676
|
manual_override_allowed?: boolean | undefined;
|
|
677
677
|
}>>;
|
|
678
|
+
min_cooling_set_point_celsius: z.ZodNumber;
|
|
678
679
|
min_cooling_set_point_fahrenheit: z.ZodNumber;
|
|
679
|
-
max_cooling_set_point_celsius: z.ZodNumber;
|
|
680
680
|
max_cooling_set_point_fahrenheit: z.ZodNumber;
|
|
681
|
+
min_heating_set_point_celsius: z.ZodNumber;
|
|
681
682
|
min_heating_set_point_fahrenheit: z.ZodNumber;
|
|
682
|
-
max_heating_set_point_celsius: z.ZodNumber;
|
|
683
683
|
max_heating_set_point_fahrenheit: z.ZodNumber;
|
|
684
684
|
is_cooling_available: z.ZodLiteral<true>;
|
|
685
685
|
is_heating_available: z.ZodLiteral<true>;
|
|
686
686
|
min_heating_cooling_delta_celsius: z.ZodNumber;
|
|
687
687
|
min_heating_cooling_delta_fahrenheit: z.ZodNumber;
|
|
688
688
|
}, "strip", z.ZodTypeAny, {
|
|
689
|
-
|
|
690
|
-
|
|
689
|
+
max_cooling_set_point_celsius: number;
|
|
690
|
+
max_heating_set_point_celsius: number;
|
|
691
691
|
temperature_fahrenheit: number;
|
|
692
692
|
temperature_celsius: number;
|
|
693
693
|
relative_humidity: number;
|
|
694
694
|
can_enable_automatic_heating: boolean;
|
|
695
695
|
can_enable_automatic_cooling: boolean;
|
|
696
|
-
available_hvac_mode_settings: ("off" | "
|
|
696
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heat_cool")[];
|
|
697
697
|
is_heating_available: true;
|
|
698
698
|
is_cooling_available: true;
|
|
699
699
|
is_heating: boolean;
|
|
@@ -704,7 +704,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
704
704
|
current_climate_setting: {
|
|
705
705
|
automatic_heating_enabled: boolean;
|
|
706
706
|
automatic_cooling_enabled: boolean;
|
|
707
|
-
hvac_mode_setting: "off" | "
|
|
707
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
708
708
|
manual_override_allowed: boolean;
|
|
709
709
|
cooling_set_point_celsius?: number | undefined;
|
|
710
710
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -712,18 +712,18 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
712
712
|
heating_set_point_fahrenheit?: number | undefined;
|
|
713
713
|
};
|
|
714
714
|
is_climate_setting_schedule_active: boolean;
|
|
715
|
+
min_cooling_set_point_celsius: number;
|
|
715
716
|
min_cooling_set_point_fahrenheit: number;
|
|
716
|
-
max_cooling_set_point_celsius: number;
|
|
717
717
|
max_cooling_set_point_fahrenheit: number;
|
|
718
|
+
min_heating_set_point_celsius: number;
|
|
718
719
|
min_heating_set_point_fahrenheit: number;
|
|
719
|
-
max_heating_set_point_celsius: number;
|
|
720
720
|
max_heating_set_point_fahrenheit: number;
|
|
721
721
|
min_heating_cooling_delta_celsius: number;
|
|
722
722
|
min_heating_cooling_delta_fahrenheit: number;
|
|
723
723
|
default_climate_setting?: {
|
|
724
724
|
automatic_heating_enabled: boolean;
|
|
725
725
|
automatic_cooling_enabled: boolean;
|
|
726
|
-
hvac_mode_setting: "off" | "
|
|
726
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
727
727
|
manual_override_allowed: boolean;
|
|
728
728
|
cooling_set_point_celsius?: number | undefined;
|
|
729
729
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -733,14 +733,14 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
733
733
|
active_climate_setting_schedule?: {
|
|
734
734
|
created_at: string;
|
|
735
735
|
device_id: string;
|
|
736
|
-
schedule_starts_at: string;
|
|
737
|
-
schedule_ends_at: string;
|
|
738
736
|
climate_setting_schedule_id: string;
|
|
739
737
|
schedule_type: "time_bound";
|
|
738
|
+
schedule_starts_at: string;
|
|
739
|
+
schedule_ends_at: string;
|
|
740
740
|
name?: string | undefined;
|
|
741
741
|
automatic_heating_enabled?: boolean | undefined;
|
|
742
742
|
automatic_cooling_enabled?: boolean | undefined;
|
|
743
|
-
hvac_mode_setting?: "off" | "
|
|
743
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -748,14 +748,14 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
748
748
|
manual_override_allowed?: boolean | undefined;
|
|
749
749
|
} | undefined;
|
|
750
750
|
}, {
|
|
751
|
-
|
|
752
|
-
|
|
751
|
+
max_cooling_set_point_celsius: number;
|
|
752
|
+
max_heating_set_point_celsius: number;
|
|
753
753
|
temperature_fahrenheit: number;
|
|
754
754
|
temperature_celsius: number;
|
|
755
755
|
relative_humidity: number;
|
|
756
756
|
can_enable_automatic_heating: boolean;
|
|
757
757
|
can_enable_automatic_cooling: boolean;
|
|
758
|
-
available_hvac_mode_settings: ("off" | "
|
|
758
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heat_cool")[];
|
|
759
759
|
is_heating_available: true;
|
|
760
760
|
is_cooling_available: true;
|
|
761
761
|
is_heating: boolean;
|
|
@@ -766,7 +766,7 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
766
766
|
current_climate_setting: {
|
|
767
767
|
automatic_heating_enabled: boolean;
|
|
768
768
|
automatic_cooling_enabled: boolean;
|
|
769
|
-
hvac_mode_setting: "off" | "
|
|
769
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
770
770
|
manual_override_allowed: boolean;
|
|
771
771
|
cooling_set_point_celsius?: number | undefined;
|
|
772
772
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -774,18 +774,18 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
774
774
|
heating_set_point_fahrenheit?: number | undefined;
|
|
775
775
|
};
|
|
776
776
|
is_climate_setting_schedule_active: boolean;
|
|
777
|
+
min_cooling_set_point_celsius: number;
|
|
777
778
|
min_cooling_set_point_fahrenheit: number;
|
|
778
|
-
max_cooling_set_point_celsius: number;
|
|
779
779
|
max_cooling_set_point_fahrenheit: number;
|
|
780
|
+
min_heating_set_point_celsius: number;
|
|
780
781
|
min_heating_set_point_fahrenheit: number;
|
|
781
|
-
max_heating_set_point_celsius: number;
|
|
782
782
|
max_heating_set_point_fahrenheit: number;
|
|
783
783
|
min_heating_cooling_delta_celsius: number;
|
|
784
784
|
min_heating_cooling_delta_fahrenheit: number;
|
|
785
785
|
default_climate_setting?: {
|
|
786
786
|
automatic_heating_enabled: boolean;
|
|
787
787
|
automatic_cooling_enabled: boolean;
|
|
788
|
-
hvac_mode_setting: "off" | "
|
|
788
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
789
789
|
manual_override_allowed: boolean;
|
|
790
790
|
cooling_set_point_celsius?: number | undefined;
|
|
791
791
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -795,14 +795,14 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
795
795
|
active_climate_setting_schedule?: {
|
|
796
796
|
created_at: string;
|
|
797
797
|
device_id: string;
|
|
798
|
-
schedule_starts_at: string;
|
|
799
|
-
schedule_ends_at: string;
|
|
800
798
|
climate_setting_schedule_id: string;
|
|
801
799
|
schedule_type: "time_bound";
|
|
800
|
+
schedule_starts_at: string;
|
|
801
|
+
schedule_ends_at: string;
|
|
802
802
|
name?: string | undefined;
|
|
803
803
|
automatic_heating_enabled?: boolean | undefined;
|
|
804
804
|
automatic_cooling_enabled?: boolean | undefined;
|
|
805
|
-
hvac_mode_setting?: "off" | "
|
|
805
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -811,6 +811,8 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
811
811
|
} | undefined;
|
|
812
812
|
}>;
|
|
813
813
|
export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
814
|
+
max_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
815
|
+
max_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
814
816
|
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
815
817
|
automatic_heating_enabled: z.ZodBoolean;
|
|
816
818
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
@@ -823,7 +825,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
823
825
|
}, "strip", z.ZodTypeAny, {
|
|
824
826
|
automatic_heating_enabled: boolean;
|
|
825
827
|
automatic_cooling_enabled: boolean;
|
|
826
|
-
hvac_mode_setting: "off" | "
|
|
828
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
827
829
|
manual_override_allowed: boolean;
|
|
828
830
|
cooling_set_point_celsius?: number | undefined;
|
|
829
831
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -832,15 +834,13 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
832
834
|
}, {
|
|
833
835
|
automatic_heating_enabled: boolean;
|
|
834
836
|
automatic_cooling_enabled: boolean;
|
|
835
|
-
hvac_mode_setting: "off" | "
|
|
837
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
836
838
|
manual_override_allowed: boolean;
|
|
837
839
|
cooling_set_point_celsius?: number | undefined;
|
|
838
840
|
heating_set_point_celsius?: number | undefined;
|
|
839
841
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
840
842
|
heating_set_point_fahrenheit?: number | undefined;
|
|
841
843
|
}>>>;
|
|
842
|
-
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
843
|
-
min_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
844
844
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
845
845
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
846
846
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
@@ -864,7 +864,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
864
864
|
}, "strip", z.ZodTypeAny, {
|
|
865
865
|
automatic_heating_enabled: boolean;
|
|
866
866
|
automatic_cooling_enabled: boolean;
|
|
867
|
-
hvac_mode_setting: "off" | "
|
|
867
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
868
868
|
manual_override_allowed: boolean;
|
|
869
869
|
cooling_set_point_celsius?: number | undefined;
|
|
870
870
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -873,7 +873,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
873
873
|
}, {
|
|
874
874
|
automatic_heating_enabled: boolean;
|
|
875
875
|
automatic_cooling_enabled: boolean;
|
|
876
|
-
hvac_mode_setting: "off" | "
|
|
876
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
877
877
|
manual_override_allowed: boolean;
|
|
878
878
|
cooling_set_point_celsius?: number | undefined;
|
|
879
879
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -885,10 +885,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
885
885
|
name: z.ZodOptional<z.ZodString>;
|
|
886
886
|
created_at: z.ZodString;
|
|
887
887
|
device_id: z.ZodString;
|
|
888
|
-
schedule_starts_at: z.ZodString;
|
|
889
|
-
schedule_ends_at: z.ZodString;
|
|
890
888
|
climate_setting_schedule_id: z.ZodString;
|
|
891
889
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
890
|
+
schedule_starts_at: z.ZodString;
|
|
891
|
+
schedule_ends_at: z.ZodString;
|
|
892
892
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
893
893
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
894
894
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -900,14 +900,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
900
900
|
}, "strip", z.ZodTypeAny, {
|
|
901
901
|
created_at: string;
|
|
902
902
|
device_id: string;
|
|
903
|
-
schedule_starts_at: string;
|
|
904
|
-
schedule_ends_at: string;
|
|
905
903
|
climate_setting_schedule_id: string;
|
|
906
904
|
schedule_type: "time_bound";
|
|
905
|
+
schedule_starts_at: string;
|
|
906
|
+
schedule_ends_at: string;
|
|
907
907
|
name?: string | undefined;
|
|
908
908
|
automatic_heating_enabled?: boolean | undefined;
|
|
909
909
|
automatic_cooling_enabled?: boolean | undefined;
|
|
910
|
-
hvac_mode_setting?: "off" | "
|
|
910
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
911
911
|
cooling_set_point_celsius?: number | undefined;
|
|
912
912
|
heating_set_point_celsius?: number | undefined;
|
|
913
913
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -916,49 +916,49 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
916
916
|
}, {
|
|
917
917
|
created_at: string;
|
|
918
918
|
device_id: string;
|
|
919
|
-
schedule_starts_at: string;
|
|
920
|
-
schedule_ends_at: string;
|
|
921
919
|
climate_setting_schedule_id: string;
|
|
922
920
|
schedule_type: "time_bound";
|
|
921
|
+
schedule_starts_at: string;
|
|
922
|
+
schedule_ends_at: string;
|
|
923
923
|
name?: string | undefined;
|
|
924
924
|
automatic_heating_enabled?: boolean | undefined;
|
|
925
925
|
automatic_cooling_enabled?: boolean | undefined;
|
|
926
|
-
hvac_mode_setting?: "off" | "
|
|
926
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
927
927
|
cooling_set_point_celsius?: number | undefined;
|
|
928
928
|
heating_set_point_celsius?: number | undefined;
|
|
929
929
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
930
930
|
heating_set_point_fahrenheit?: number | undefined;
|
|
931
931
|
manual_override_allowed?: boolean | undefined;
|
|
932
932
|
}>>>;
|
|
933
|
+
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
933
934
|
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
934
|
-
max_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
935
935
|
max_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
936
|
+
min_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
936
937
|
min_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
937
|
-
max_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
938
938
|
max_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
939
939
|
is_cooling_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
940
940
|
is_heating_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
941
941
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
942
942
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
943
943
|
}, "strip", z.ZodTypeAny, {
|
|
944
|
+
max_cooling_set_point_celsius?: number | undefined;
|
|
945
|
+
max_heating_set_point_celsius?: number | undefined;
|
|
944
946
|
default_climate_setting?: {
|
|
945
947
|
automatic_heating_enabled: boolean;
|
|
946
948
|
automatic_cooling_enabled: boolean;
|
|
947
|
-
hvac_mode_setting: "off" | "
|
|
949
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
948
950
|
manual_override_allowed: boolean;
|
|
949
951
|
cooling_set_point_celsius?: number | undefined;
|
|
950
952
|
heating_set_point_celsius?: number | undefined;
|
|
951
953
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
952
954
|
heating_set_point_fahrenheit?: number | undefined;
|
|
953
955
|
} | undefined;
|
|
954
|
-
min_cooling_set_point_celsius?: number | undefined;
|
|
955
|
-
min_heating_set_point_celsius?: number | undefined;
|
|
956
956
|
temperature_fahrenheit?: number | undefined;
|
|
957
957
|
temperature_celsius?: number | undefined;
|
|
958
958
|
relative_humidity?: number | undefined;
|
|
959
959
|
can_enable_automatic_heating?: boolean | undefined;
|
|
960
960
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
961
|
-
available_hvac_mode_settings?: ("off" | "
|
|
961
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
962
962
|
is_heating?: boolean | undefined;
|
|
963
963
|
is_cooling?: boolean | undefined;
|
|
964
964
|
is_fan_running?: boolean | undefined;
|
|
@@ -967,7 +967,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
967
967
|
current_climate_setting?: {
|
|
968
968
|
automatic_heating_enabled: boolean;
|
|
969
969
|
automatic_cooling_enabled: boolean;
|
|
970
|
-
hvac_mode_setting: "off" | "
|
|
970
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
971
971
|
manual_override_allowed: boolean;
|
|
972
972
|
cooling_set_point_celsius?: number | undefined;
|
|
973
973
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -978,49 +978,49 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
978
978
|
active_climate_setting_schedule?: {
|
|
979
979
|
created_at: string;
|
|
980
980
|
device_id: string;
|
|
981
|
-
schedule_starts_at: string;
|
|
982
|
-
schedule_ends_at: string;
|
|
983
981
|
climate_setting_schedule_id: string;
|
|
984
982
|
schedule_type: "time_bound";
|
|
983
|
+
schedule_starts_at: string;
|
|
984
|
+
schedule_ends_at: string;
|
|
985
985
|
name?: string | undefined;
|
|
986
986
|
automatic_heating_enabled?: boolean | undefined;
|
|
987
987
|
automatic_cooling_enabled?: boolean | undefined;
|
|
988
|
-
hvac_mode_setting?: "off" | "
|
|
988
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
989
989
|
cooling_set_point_celsius?: number | undefined;
|
|
990
990
|
heating_set_point_celsius?: number | undefined;
|
|
991
991
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
992
992
|
heating_set_point_fahrenheit?: number | undefined;
|
|
993
993
|
manual_override_allowed?: boolean | undefined;
|
|
994
994
|
} | undefined;
|
|
995
|
+
min_cooling_set_point_celsius?: number | undefined;
|
|
995
996
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
996
|
-
max_cooling_set_point_celsius?: number | undefined;
|
|
997
997
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
998
|
+
min_heating_set_point_celsius?: number | undefined;
|
|
998
999
|
min_heating_set_point_fahrenheit?: number | undefined;
|
|
999
|
-
max_heating_set_point_celsius?: number | undefined;
|
|
1000
1000
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
1001
1001
|
is_cooling_available?: true | undefined;
|
|
1002
1002
|
is_heating_available?: true | undefined;
|
|
1003
1003
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1004
1004
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1005
1005
|
}, {
|
|
1006
|
+
max_cooling_set_point_celsius?: number | undefined;
|
|
1007
|
+
max_heating_set_point_celsius?: number | undefined;
|
|
1006
1008
|
default_climate_setting?: {
|
|
1007
1009
|
automatic_heating_enabled: boolean;
|
|
1008
1010
|
automatic_cooling_enabled: boolean;
|
|
1009
|
-
hvac_mode_setting: "off" | "
|
|
1011
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1010
1012
|
manual_override_allowed: boolean;
|
|
1011
1013
|
cooling_set_point_celsius?: number | undefined;
|
|
1012
1014
|
heating_set_point_celsius?: number | undefined;
|
|
1013
1015
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1014
1016
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1015
1017
|
} | undefined;
|
|
1016
|
-
min_cooling_set_point_celsius?: number | undefined;
|
|
1017
|
-
min_heating_set_point_celsius?: number | undefined;
|
|
1018
1018
|
temperature_fahrenheit?: number | undefined;
|
|
1019
1019
|
temperature_celsius?: number | undefined;
|
|
1020
1020
|
relative_humidity?: number | undefined;
|
|
1021
1021
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1022
1022
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1023
|
-
available_hvac_mode_settings?: ("off" | "
|
|
1023
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1024
1024
|
is_heating?: boolean | undefined;
|
|
1025
1025
|
is_cooling?: boolean | undefined;
|
|
1026
1026
|
is_fan_running?: boolean | undefined;
|
|
@@ -1029,7 +1029,7 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1029
1029
|
current_climate_setting?: {
|
|
1030
1030
|
automatic_heating_enabled: boolean;
|
|
1031
1031
|
automatic_cooling_enabled: boolean;
|
|
1032
|
-
hvac_mode_setting: "off" | "
|
|
1032
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1033
1033
|
manual_override_allowed: boolean;
|
|
1034
1034
|
cooling_set_point_celsius?: number | undefined;
|
|
1035
1035
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1040,25 +1040,25 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1040
1040
|
active_climate_setting_schedule?: {
|
|
1041
1041
|
created_at: string;
|
|
1042
1042
|
device_id: string;
|
|
1043
|
-
schedule_starts_at: string;
|
|
1044
|
-
schedule_ends_at: string;
|
|
1045
1043
|
climate_setting_schedule_id: string;
|
|
1046
1044
|
schedule_type: "time_bound";
|
|
1045
|
+
schedule_starts_at: string;
|
|
1046
|
+
schedule_ends_at: string;
|
|
1047
1047
|
name?: string | undefined;
|
|
1048
1048
|
automatic_heating_enabled?: boolean | undefined;
|
|
1049
1049
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1050
|
-
hvac_mode_setting?: "off" | "
|
|
1050
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1051
1051
|
cooling_set_point_celsius?: number | undefined;
|
|
1052
1052
|
heating_set_point_celsius?: number | undefined;
|
|
1053
1053
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1054
1054
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1055
1055
|
manual_override_allowed?: boolean | undefined;
|
|
1056
1056
|
} | undefined;
|
|
1057
|
+
min_cooling_set_point_celsius?: number | undefined;
|
|
1057
1058
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
1058
|
-
max_cooling_set_point_celsius?: number | undefined;
|
|
1059
1059
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
1060
|
+
min_heating_set_point_celsius?: number | undefined;
|
|
1060
1061
|
min_heating_set_point_fahrenheit?: number | undefined;
|
|
1061
|
-
max_heating_set_point_celsius?: number | undefined;
|
|
1062
1062
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
1063
1063
|
is_cooling_available?: true | undefined;
|
|
1064
1064
|
is_heating_available?: true | 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: "off" | "
|
|
1080
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
1089
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
1120
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
1129
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1130
1130
|
manual_override_allowed: boolean;
|
|
1131
1131
|
cooling_set_point_celsius?: number | undefined;
|
|
1132
1132
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1138,10 +1138,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1138
1138
|
name: z.ZodOptional<z.ZodString>;
|
|
1139
1139
|
created_at: z.ZodString;
|
|
1140
1140
|
device_id: z.ZodString;
|
|
1141
|
-
schedule_starts_at: z.ZodString;
|
|
1142
|
-
schedule_ends_at: z.ZodString;
|
|
1143
1141
|
climate_setting_schedule_id: z.ZodString;
|
|
1144
1142
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1143
|
+
schedule_starts_at: z.ZodString;
|
|
1144
|
+
schedule_ends_at: z.ZodString;
|
|
1145
1145
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1146
1146
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1147
1147
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -1153,14 +1153,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1153
1153
|
}, "strip", z.ZodTypeAny, {
|
|
1154
1154
|
created_at: string;
|
|
1155
1155
|
device_id: string;
|
|
1156
|
-
schedule_starts_at: string;
|
|
1157
|
-
schedule_ends_at: string;
|
|
1158
1156
|
climate_setting_schedule_id: string;
|
|
1159
1157
|
schedule_type: "time_bound";
|
|
1158
|
+
schedule_starts_at: string;
|
|
1159
|
+
schedule_ends_at: string;
|
|
1160
1160
|
name?: string | undefined;
|
|
1161
1161
|
automatic_heating_enabled?: boolean | undefined;
|
|
1162
1162
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1163
|
-
hvac_mode_setting?: "off" | "
|
|
1163
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -1169,14 +1169,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1169
1169
|
}, {
|
|
1170
1170
|
created_at: string;
|
|
1171
1171
|
device_id: string;
|
|
1172
|
-
schedule_starts_at: string;
|
|
1173
|
-
schedule_ends_at: string;
|
|
1174
1172
|
climate_setting_schedule_id: string;
|
|
1175
1173
|
schedule_type: "time_bound";
|
|
1174
|
+
schedule_starts_at: string;
|
|
1175
|
+
schedule_ends_at: string;
|
|
1176
1176
|
name?: string | undefined;
|
|
1177
1177
|
automatic_heating_enabled?: boolean | undefined;
|
|
1178
1178
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1179
|
-
hvac_mode_setting?: "off" | "
|
|
1179
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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: "off" | "
|
|
1195
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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?: ("off" | "
|
|
1207
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "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: "off" | "
|
|
1217
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1218
1218
|
manual_override_allowed: boolean;
|
|
1219
1219
|
cooling_set_point_celsius?: number | undefined;
|
|
1220
1220
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1225,14 +1225,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1225
1225
|
active_climate_setting_schedule?: {
|
|
1226
1226
|
created_at: string;
|
|
1227
1227
|
device_id: string;
|
|
1228
|
-
schedule_starts_at: string;
|
|
1229
|
-
schedule_ends_at: string;
|
|
1230
1228
|
climate_setting_schedule_id: string;
|
|
1231
1229
|
schedule_type: "time_bound";
|
|
1230
|
+
schedule_starts_at: string;
|
|
1231
|
+
schedule_ends_at: string;
|
|
1232
1232
|
name?: string | undefined;
|
|
1233
1233
|
automatic_heating_enabled?: boolean | undefined;
|
|
1234
1234
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1235
|
-
hvac_mode_setting?: "off" | "
|
|
1235
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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: "off" | "
|
|
1251
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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?: ("off" | "
|
|
1263
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "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: "off" | "
|
|
1273
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1274
1274
|
manual_override_allowed: boolean;
|
|
1275
1275
|
cooling_set_point_celsius?: number | undefined;
|
|
1276
1276
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1281,14 +1281,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1281
1281
|
active_climate_setting_schedule?: {
|
|
1282
1282
|
created_at: string;
|
|
1283
1283
|
device_id: string;
|
|
1284
|
-
schedule_starts_at: string;
|
|
1285
|
-
schedule_ends_at: string;
|
|
1286
1284
|
climate_setting_schedule_id: string;
|
|
1287
1285
|
schedule_type: "time_bound";
|
|
1286
|
+
schedule_starts_at: string;
|
|
1287
|
+
schedule_ends_at: string;
|
|
1288
1288
|
name?: string | undefined;
|
|
1289
1289
|
automatic_heating_enabled?: boolean | undefined;
|
|
1290
1290
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1291
|
-
hvac_mode_setting?: "off" | "
|
|
1291
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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: "off" | "
|
|
1316
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
1325
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
1356
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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: "off" | "
|
|
1365
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1366
1366
|
manual_override_allowed: boolean;
|
|
1367
1367
|
cooling_set_point_celsius?: number | undefined;
|
|
1368
1368
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1374,10 +1374,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1374
1374
|
name: z.ZodOptional<z.ZodString>;
|
|
1375
1375
|
created_at: z.ZodString;
|
|
1376
1376
|
device_id: z.ZodString;
|
|
1377
|
-
schedule_starts_at: z.ZodString;
|
|
1378
|
-
schedule_ends_at: z.ZodString;
|
|
1379
1377
|
climate_setting_schedule_id: z.ZodString;
|
|
1380
1378
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1379
|
+
schedule_starts_at: z.ZodString;
|
|
1380
|
+
schedule_ends_at: z.ZodString;
|
|
1381
1381
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1382
1382
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1383
1383
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -1389,14 +1389,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1389
1389
|
}, "strip", z.ZodTypeAny, {
|
|
1390
1390
|
created_at: string;
|
|
1391
1391
|
device_id: string;
|
|
1392
|
-
schedule_starts_at: string;
|
|
1393
|
-
schedule_ends_at: string;
|
|
1394
1392
|
climate_setting_schedule_id: string;
|
|
1395
1393
|
schedule_type: "time_bound";
|
|
1394
|
+
schedule_starts_at: string;
|
|
1395
|
+
schedule_ends_at: string;
|
|
1396
1396
|
name?: string | undefined;
|
|
1397
1397
|
automatic_heating_enabled?: boolean | undefined;
|
|
1398
1398
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1399
|
-
hvac_mode_setting?: "off" | "
|
|
1399
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|
|
@@ -1405,14 +1405,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1405
1405
|
}, {
|
|
1406
1406
|
created_at: string;
|
|
1407
1407
|
device_id: string;
|
|
1408
|
-
schedule_starts_at: string;
|
|
1409
|
-
schedule_ends_at: string;
|
|
1410
1408
|
climate_setting_schedule_id: string;
|
|
1411
1409
|
schedule_type: "time_bound";
|
|
1410
|
+
schedule_starts_at: string;
|
|
1411
|
+
schedule_ends_at: string;
|
|
1412
1412
|
name?: string | undefined;
|
|
1413
1413
|
automatic_heating_enabled?: boolean | undefined;
|
|
1414
1414
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1415
|
-
hvac_mode_setting?: "off" | "
|
|
1415
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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: "off" | "
|
|
1431
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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?: ("off" | "
|
|
1443
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "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: "off" | "
|
|
1453
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1454
1454
|
manual_override_allowed: boolean;
|
|
1455
1455
|
cooling_set_point_celsius?: number | undefined;
|
|
1456
1456
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1461,14 +1461,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1461
1461
|
active_climate_setting_schedule?: {
|
|
1462
1462
|
created_at: string;
|
|
1463
1463
|
device_id: string;
|
|
1464
|
-
schedule_starts_at: string;
|
|
1465
|
-
schedule_ends_at: string;
|
|
1466
1464
|
climate_setting_schedule_id: string;
|
|
1467
1465
|
schedule_type: "time_bound";
|
|
1466
|
+
schedule_starts_at: string;
|
|
1467
|
+
schedule_ends_at: string;
|
|
1468
1468
|
name?: string | undefined;
|
|
1469
1469
|
automatic_heating_enabled?: boolean | undefined;
|
|
1470
1470
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1471
|
-
hvac_mode_setting?: "off" | "
|
|
1471
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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: "off" | "
|
|
1487
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "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?: ("off" | "
|
|
1499
|
+
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "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: "off" | "
|
|
1509
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1510
1510
|
manual_override_allowed: boolean;
|
|
1511
1511
|
cooling_set_point_celsius?: number | undefined;
|
|
1512
1512
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1517,14 +1517,14 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1517
1517
|
active_climate_setting_schedule?: {
|
|
1518
1518
|
created_at: string;
|
|
1519
1519
|
device_id: string;
|
|
1520
|
-
schedule_starts_at: string;
|
|
1521
|
-
schedule_ends_at: string;
|
|
1522
1520
|
climate_setting_schedule_id: string;
|
|
1523
1521
|
schedule_type: "time_bound";
|
|
1522
|
+
schedule_starts_at: string;
|
|
1523
|
+
schedule_ends_at: string;
|
|
1524
1524
|
name?: string | undefined;
|
|
1525
1525
|
automatic_heating_enabled?: boolean | undefined;
|
|
1526
1526
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1527
|
-
hvac_mode_setting?: "off" | "
|
|
1527
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "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;
|