@seamapi/types 1.248.0 → 1.251.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +64 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +162 -108
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +1 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +31 -26
- package/lib/seam/connect/models/devices/phone.d.ts +21 -18
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -18
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -3
- package/lib/seam/connect/models/events/acs/common.js +2 -1
- package/lib/seam/connect/models/events/acs/common.js.map +1 -1
- package/lib/seam/connect/models/events/acs/credentials.d.ts +6 -6
- package/lib/seam/connect/models/events/acs/index.d.ts +35 -9
- package/lib/seam/connect/models/events/acs/systems.d.ts +60 -6
- package/lib/seam/connect/models/events/acs/systems.js +9 -1
- package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
- package/lib/seam/connect/models/events/acs/users.d.ts +6 -6
- package/lib/seam/connect/models/events/devices.d.ts +86 -0
- package/lib/seam/connect/models/events/devices.js +21 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +35 -9
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +3 -1
- package/lib/seam/connect/models/thermostats/modes.js +2 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +34 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +67 -55
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +1 -0
- package/src/lib/seam/connect/models/events/acs/common.ts +2 -1
- package/src/lib/seam/connect/models/events/acs/systems.ts +12 -1
- package/src/lib/seam/connect/models/events/devices.ts +33 -0
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +34 -10
- package/src/lib/seam/connect/route-types.ts +139 -53
|
@@ -79,10 +79,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
79
79
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
80
80
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
81
81
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
82
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
82
83
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
83
84
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
84
85
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
85
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
86
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
86
87
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
87
88
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
88
89
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -90,7 +91,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
90
91
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
91
92
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
92
93
|
display_name: z.ZodOptional<z.ZodString>;
|
|
93
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
94
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
94
95
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
95
96
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
96
97
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -103,7 +104,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
103
104
|
can_edit?: boolean | undefined;
|
|
104
105
|
can_delete?: boolean | undefined;
|
|
105
106
|
display_name?: string | undefined;
|
|
106
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
107
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
107
108
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
108
109
|
cooling_set_point_celsius?: number | undefined;
|
|
109
110
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -116,7 +117,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
116
117
|
can_edit?: boolean | undefined;
|
|
117
118
|
can_delete?: boolean | undefined;
|
|
118
119
|
display_name?: string | undefined;
|
|
119
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
120
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
120
121
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
121
122
|
cooling_set_point_celsius?: number | undefined;
|
|
122
123
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -130,7 +131,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
130
131
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
131
132
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
132
133
|
display_name: z.ZodOptional<z.ZodString>;
|
|
133
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
134
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
134
135
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
135
136
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
136
137
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -143,7 +144,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
143
144
|
can_edit?: boolean | undefined;
|
|
144
145
|
can_delete?: boolean | undefined;
|
|
145
146
|
display_name?: string | undefined;
|
|
146
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
147
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
147
148
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
148
149
|
cooling_set_point_celsius?: number | undefined;
|
|
149
150
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -156,7 +157,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
156
157
|
can_edit?: boolean | undefined;
|
|
157
158
|
can_delete?: boolean | undefined;
|
|
158
159
|
display_name?: string | undefined;
|
|
159
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
160
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
160
161
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
161
162
|
cooling_set_point_celsius?: number | undefined;
|
|
162
163
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -170,7 +171,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
170
171
|
can_delete: z.ZodBoolean;
|
|
171
172
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
172
173
|
display_name: z.ZodString;
|
|
173
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
174
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
174
175
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
175
176
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
176
177
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -184,7 +185,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
184
185
|
can_delete: boolean;
|
|
185
186
|
display_name: string;
|
|
186
187
|
manual_override_allowed: boolean;
|
|
187
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
188
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
188
189
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
189
190
|
cooling_set_point_celsius?: number | undefined;
|
|
190
191
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -197,7 +198,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
197
198
|
display_name: string;
|
|
198
199
|
manual_override_allowed: boolean;
|
|
199
200
|
name?: string | null | undefined;
|
|
200
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
201
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
201
202
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
202
203
|
cooling_set_point_celsius?: number | undefined;
|
|
203
204
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -247,11 +248,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
247
248
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
248
249
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
249
250
|
}, "strip", z.ZodTypeAny, {
|
|
250
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
251
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
251
252
|
temperature_fahrenheit?: number | undefined;
|
|
252
253
|
temperature_celsius?: number | undefined;
|
|
253
254
|
relative_humidity?: number | undefined;
|
|
254
255
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
256
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
255
257
|
is_heating?: boolean | undefined;
|
|
256
258
|
is_cooling?: boolean | undefined;
|
|
257
259
|
is_fan_running?: boolean | undefined;
|
|
@@ -262,7 +264,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
262
264
|
can_edit?: boolean | undefined;
|
|
263
265
|
can_delete?: boolean | undefined;
|
|
264
266
|
display_name?: string | undefined;
|
|
265
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
267
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
266
268
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
267
269
|
cooling_set_point_celsius?: number | undefined;
|
|
268
270
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -276,7 +278,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
276
278
|
can_edit?: boolean | undefined;
|
|
277
279
|
can_delete?: boolean | undefined;
|
|
278
280
|
display_name?: string | undefined;
|
|
279
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
281
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
280
282
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
281
283
|
cooling_set_point_celsius?: number | undefined;
|
|
282
284
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -291,7 +293,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
291
293
|
can_delete: boolean;
|
|
292
294
|
display_name: string;
|
|
293
295
|
manual_override_allowed: boolean;
|
|
294
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
296
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
295
297
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
296
298
|
cooling_set_point_celsius?: number | undefined;
|
|
297
299
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -321,11 +323,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
321
323
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
322
324
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
323
325
|
}, {
|
|
324
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
326
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
325
327
|
temperature_fahrenheit?: number | undefined;
|
|
326
328
|
temperature_celsius?: number | undefined;
|
|
327
329
|
relative_humidity?: number | undefined;
|
|
328
330
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
331
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
329
332
|
is_heating?: boolean | undefined;
|
|
330
333
|
is_cooling?: boolean | undefined;
|
|
331
334
|
is_fan_running?: boolean | undefined;
|
|
@@ -336,7 +339,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
336
339
|
can_edit?: boolean | undefined;
|
|
337
340
|
can_delete?: boolean | undefined;
|
|
338
341
|
display_name?: string | undefined;
|
|
339
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
342
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
340
343
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
341
344
|
cooling_set_point_celsius?: number | undefined;
|
|
342
345
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -350,7 +353,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
350
353
|
can_edit?: boolean | undefined;
|
|
351
354
|
can_delete?: boolean | undefined;
|
|
352
355
|
display_name?: string | undefined;
|
|
353
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
356
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
354
357
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
355
358
|
cooling_set_point_celsius?: number | undefined;
|
|
356
359
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -365,7 +368,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
365
368
|
display_name: string;
|
|
366
369
|
manual_override_allowed: boolean;
|
|
367
370
|
name?: string | null | undefined;
|
|
368
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
371
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
369
372
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
370
373
|
cooling_set_point_celsius?: number | undefined;
|
|
371
374
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -4,10 +4,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
4
4
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
5
5
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
6
6
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
7
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
7
8
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
8
9
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
9
10
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
10
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
11
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
11
12
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
12
13
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
13
14
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -15,7 +16,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
15
16
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
16
17
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
17
18
|
display_name: z.ZodOptional<z.ZodString>;
|
|
18
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
19
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
19
20
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
20
21
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
21
22
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -28,7 +29,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
28
29
|
can_edit?: boolean | undefined;
|
|
29
30
|
can_delete?: boolean | undefined;
|
|
30
31
|
display_name?: string | undefined;
|
|
31
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
32
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
32
33
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
33
34
|
cooling_set_point_celsius?: number | undefined;
|
|
34
35
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -41,7 +42,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
41
42
|
can_edit?: boolean | undefined;
|
|
42
43
|
can_delete?: boolean | undefined;
|
|
43
44
|
display_name?: string | undefined;
|
|
44
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
45
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
45
46
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
46
47
|
cooling_set_point_celsius?: number | undefined;
|
|
47
48
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -55,7 +56,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
55
56
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
56
57
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
57
58
|
display_name: z.ZodOptional<z.ZodString>;
|
|
58
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
59
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
59
60
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
60
61
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
61
62
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -68,7 +69,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
68
69
|
can_edit?: boolean | undefined;
|
|
69
70
|
can_delete?: boolean | undefined;
|
|
70
71
|
display_name?: string | undefined;
|
|
71
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
72
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
72
73
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
73
74
|
cooling_set_point_celsius?: number | undefined;
|
|
74
75
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -81,7 +82,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
81
82
|
can_edit?: boolean | undefined;
|
|
82
83
|
can_delete?: boolean | undefined;
|
|
83
84
|
display_name?: string | undefined;
|
|
84
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
85
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
85
86
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
86
87
|
cooling_set_point_celsius?: number | undefined;
|
|
87
88
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -95,7 +96,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
95
96
|
can_delete: z.ZodBoolean;
|
|
96
97
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
97
98
|
display_name: z.ZodString;
|
|
98
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
99
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
99
100
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
100
101
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
101
102
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -109,7 +110,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
109
110
|
can_delete: boolean;
|
|
110
111
|
display_name: string;
|
|
111
112
|
manual_override_allowed: boolean;
|
|
112
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
113
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
113
114
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
114
115
|
cooling_set_point_celsius?: number | undefined;
|
|
115
116
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -122,7 +123,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
122
123
|
display_name: string;
|
|
123
124
|
manual_override_allowed: boolean;
|
|
124
125
|
name?: string | null | undefined;
|
|
125
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
126
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
126
127
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
127
128
|
cooling_set_point_celsius?: number | undefined;
|
|
128
129
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -172,11 +173,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
172
173
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
173
174
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
174
175
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
176
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
176
177
|
temperature_fahrenheit?: number | undefined;
|
|
177
178
|
temperature_celsius?: number | undefined;
|
|
178
179
|
relative_humidity?: number | undefined;
|
|
179
180
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
181
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
180
182
|
is_heating?: boolean | undefined;
|
|
181
183
|
is_cooling?: boolean | undefined;
|
|
182
184
|
is_fan_running?: boolean | undefined;
|
|
@@ -187,7 +189,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
187
189
|
can_edit?: boolean | undefined;
|
|
188
190
|
can_delete?: boolean | undefined;
|
|
189
191
|
display_name?: string | undefined;
|
|
190
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
192
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
191
193
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
192
194
|
cooling_set_point_celsius?: number | undefined;
|
|
193
195
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -201,7 +203,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
201
203
|
can_edit?: boolean | undefined;
|
|
202
204
|
can_delete?: boolean | undefined;
|
|
203
205
|
display_name?: string | undefined;
|
|
204
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
206
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
205
207
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
206
208
|
cooling_set_point_celsius?: number | undefined;
|
|
207
209
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -216,7 +218,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
216
218
|
can_delete: boolean;
|
|
217
219
|
display_name: string;
|
|
218
220
|
manual_override_allowed: boolean;
|
|
219
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
221
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
220
222
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
221
223
|
cooling_set_point_celsius?: number | undefined;
|
|
222
224
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -246,11 +248,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
246
248
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
247
249
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
248
250
|
}, {
|
|
249
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
251
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
250
252
|
temperature_fahrenheit?: number | undefined;
|
|
251
253
|
temperature_celsius?: number | undefined;
|
|
252
254
|
relative_humidity?: number | undefined;
|
|
253
255
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
256
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
254
257
|
is_heating?: boolean | undefined;
|
|
255
258
|
is_cooling?: boolean | undefined;
|
|
256
259
|
is_fan_running?: boolean | undefined;
|
|
@@ -261,7 +264,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
261
264
|
can_edit?: boolean | undefined;
|
|
262
265
|
can_delete?: boolean | undefined;
|
|
263
266
|
display_name?: string | undefined;
|
|
264
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
267
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
265
268
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
266
269
|
cooling_set_point_celsius?: number | undefined;
|
|
267
270
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -275,7 +278,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
275
278
|
can_edit?: boolean | undefined;
|
|
276
279
|
can_delete?: boolean | undefined;
|
|
277
280
|
display_name?: string | undefined;
|
|
278
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
281
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
279
282
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
280
283
|
cooling_set_point_celsius?: number | undefined;
|
|
281
284
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -290,7 +293,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
290
293
|
display_name: string;
|
|
291
294
|
manual_override_allowed: boolean;
|
|
292
295
|
name?: string | null | undefined;
|
|
293
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
296
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
294
297
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
295
298
|
cooling_set_point_celsius?: number | undefined;
|
|
296
299
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6,6 +6,7 @@ export const thermostat_capability_properties = z
|
|
|
6
6
|
temperature_celsius: z.number(),
|
|
7
7
|
relative_humidity: z.number().min(0).max(1),
|
|
8
8
|
available_hvac_mode_settings: z.array(hvac_mode_setting),
|
|
9
|
+
available_fan_mode_settings: z.array(fan_mode_setting),
|
|
9
10
|
is_heating: z.boolean(),
|
|
10
11
|
is_cooling: z.boolean(),
|
|
11
12
|
is_fan_running: z.boolean(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,mBAAmB,GACpB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;IAClC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3C,4BAA4B,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;IACxD,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IAEF;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE;IAEhD;;OAEG;IACH,uBAAuB,EAAE,eAAe;IACxC,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;KAIjD,CAAC;IACF,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC;IAClD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACvE,0BAA0B,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACxE,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,iCAAiC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7C,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;CACjD,CAAC;KACD,OAAO,EAAE,CAAA"}
|
|
1
|
+
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,mBAAmB,GACpB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;IAClC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3C,4BAA4B,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;IACxD,2BAA2B,EAAE,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC;IACtD,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IAEF;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE;IAEhD;;OAEG;IACH,uBAAuB,EAAE,eAAe;IACxC,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;KAIjD,CAAC;IACF,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC;IAClD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACvE,0BAA0B,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACxE,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,iCAAiC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7C,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;CACjD,CAAC;KACD,OAAO,EAAE,CAAA"}
|
|
@@ -1561,10 +1561,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1561
1561
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1562
1562
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1563
1563
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1564
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
1564
1565
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1565
1566
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1566
1567
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1567
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1568
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1568
1569
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1569
1570
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1570
1571
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1572,7 +1573,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1572
1573
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1573
1574
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1574
1575
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1575
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1576
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1576
1577
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1577
1578
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1578
1579
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1585,7 +1586,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1585
1586
|
can_edit?: boolean | undefined;
|
|
1586
1587
|
can_delete?: boolean | undefined;
|
|
1587
1588
|
display_name?: string | undefined;
|
|
1588
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1589
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1589
1590
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1590
1591
|
cooling_set_point_celsius?: number | undefined;
|
|
1591
1592
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1598,7 +1599,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1598
1599
|
can_edit?: boolean | undefined;
|
|
1599
1600
|
can_delete?: boolean | undefined;
|
|
1600
1601
|
display_name?: string | undefined;
|
|
1601
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1602
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1602
1603
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1603
1604
|
cooling_set_point_celsius?: number | undefined;
|
|
1604
1605
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1612,7 +1613,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1612
1613
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1613
1614
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1614
1615
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1615
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1616
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1616
1617
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1617
1618
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1618
1619
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1625,7 +1626,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1625
1626
|
can_edit?: boolean | undefined;
|
|
1626
1627
|
can_delete?: boolean | undefined;
|
|
1627
1628
|
display_name?: string | undefined;
|
|
1628
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1629
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1629
1630
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1630
1631
|
cooling_set_point_celsius?: number | undefined;
|
|
1631
1632
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1638,7 +1639,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1638
1639
|
can_edit?: boolean | undefined;
|
|
1639
1640
|
can_delete?: boolean | undefined;
|
|
1640
1641
|
display_name?: string | undefined;
|
|
1641
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1642
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1642
1643
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1643
1644
|
cooling_set_point_celsius?: number | undefined;
|
|
1644
1645
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1652,7 +1653,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1652
1653
|
can_delete: z.ZodBoolean;
|
|
1653
1654
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1654
1655
|
display_name: z.ZodString;
|
|
1655
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1656
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1656
1657
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1657
1658
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1658
1659
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1666,7 +1667,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1666
1667
|
can_delete: boolean;
|
|
1667
1668
|
display_name: string;
|
|
1668
1669
|
manual_override_allowed: boolean;
|
|
1669
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1670
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1670
1671
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1671
1672
|
cooling_set_point_celsius?: number | undefined;
|
|
1672
1673
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1679,7 +1680,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1679
1680
|
display_name: string;
|
|
1680
1681
|
manual_override_allowed: boolean;
|
|
1681
1682
|
name?: string | null | undefined;
|
|
1682
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1683
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1683
1684
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1684
1685
|
cooling_set_point_celsius?: number | undefined;
|
|
1685
1686
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1729,11 +1730,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1729
1730
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1730
1731
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1731
1732
|
}, "strip", z.ZodTypeAny, {
|
|
1732
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1733
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1733
1734
|
temperature_fahrenheit?: number | undefined;
|
|
1734
1735
|
temperature_celsius?: number | undefined;
|
|
1735
1736
|
relative_humidity?: number | undefined;
|
|
1736
1737
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1738
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1737
1739
|
is_heating?: boolean | undefined;
|
|
1738
1740
|
is_cooling?: boolean | undefined;
|
|
1739
1741
|
is_fan_running?: boolean | undefined;
|
|
@@ -1744,7 +1746,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1744
1746
|
can_edit?: boolean | undefined;
|
|
1745
1747
|
can_delete?: boolean | undefined;
|
|
1746
1748
|
display_name?: string | undefined;
|
|
1747
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1749
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1748
1750
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1749
1751
|
cooling_set_point_celsius?: number | undefined;
|
|
1750
1752
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1758,7 +1760,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1758
1760
|
can_edit?: boolean | undefined;
|
|
1759
1761
|
can_delete?: boolean | undefined;
|
|
1760
1762
|
display_name?: string | undefined;
|
|
1761
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1763
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1762
1764
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1763
1765
|
cooling_set_point_celsius?: number | undefined;
|
|
1764
1766
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1773,7 +1775,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1773
1775
|
can_delete: boolean;
|
|
1774
1776
|
display_name: string;
|
|
1775
1777
|
manual_override_allowed: boolean;
|
|
1776
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1778
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1777
1779
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1778
1780
|
cooling_set_point_celsius?: number | undefined;
|
|
1779
1781
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1803,11 +1805,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1803
1805
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1804
1806
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1805
1807
|
}, {
|
|
1806
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1808
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1807
1809
|
temperature_fahrenheit?: number | undefined;
|
|
1808
1810
|
temperature_celsius?: number | undefined;
|
|
1809
1811
|
relative_humidity?: number | undefined;
|
|
1810
1812
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1813
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1811
1814
|
is_heating?: boolean | undefined;
|
|
1812
1815
|
is_cooling?: boolean | undefined;
|
|
1813
1816
|
is_fan_running?: boolean | undefined;
|
|
@@ -1818,7 +1821,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1818
1821
|
can_edit?: boolean | undefined;
|
|
1819
1822
|
can_delete?: boolean | undefined;
|
|
1820
1823
|
display_name?: string | undefined;
|
|
1821
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1824
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1822
1825
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1823
1826
|
cooling_set_point_celsius?: number | undefined;
|
|
1824
1827
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1832,7 +1835,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1832
1835
|
can_edit?: boolean | undefined;
|
|
1833
1836
|
can_delete?: boolean | undefined;
|
|
1834
1837
|
display_name?: string | undefined;
|
|
1835
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1838
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1836
1839
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1837
1840
|
cooling_set_point_celsius?: number | undefined;
|
|
1838
1841
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1847,7 +1850,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1847
1850
|
display_name: string;
|
|
1848
1851
|
manual_override_allowed: boolean;
|
|
1849
1852
|
name?: string | null | undefined;
|
|
1850
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1853
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1851
1854
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1852
1855
|
cooling_set_point_celsius?: number | undefined;
|
|
1853
1856
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2234,11 +2237,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2234
2237
|
} | undefined;
|
|
2235
2238
|
door_open?: boolean | undefined;
|
|
2236
2239
|
} & {
|
|
2237
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2240
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2238
2241
|
temperature_fahrenheit?: number | undefined;
|
|
2239
2242
|
temperature_celsius?: number | undefined;
|
|
2240
2243
|
relative_humidity?: number | undefined;
|
|
2241
2244
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
2245
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
2242
2246
|
is_heating?: boolean | undefined;
|
|
2243
2247
|
is_cooling?: boolean | undefined;
|
|
2244
2248
|
is_fan_running?: boolean | undefined;
|
|
@@ -2249,7 +2253,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2249
2253
|
can_edit?: boolean | undefined;
|
|
2250
2254
|
can_delete?: boolean | undefined;
|
|
2251
2255
|
display_name?: string | undefined;
|
|
2252
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2256
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2253
2257
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2254
2258
|
cooling_set_point_celsius?: number | undefined;
|
|
2255
2259
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2263,7 +2267,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2263
2267
|
can_edit?: boolean | undefined;
|
|
2264
2268
|
can_delete?: boolean | undefined;
|
|
2265
2269
|
display_name?: string | undefined;
|
|
2266
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2270
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2267
2271
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2268
2272
|
cooling_set_point_celsius?: number | undefined;
|
|
2269
2273
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2278,7 +2282,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2278
2282
|
can_delete: boolean;
|
|
2279
2283
|
display_name: string;
|
|
2280
2284
|
manual_override_allowed: boolean;
|
|
2281
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2285
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2282
2286
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2283
2287
|
cooling_set_point_celsius?: number | undefined;
|
|
2284
2288
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2613,11 +2617,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2613
2617
|
} | undefined;
|
|
2614
2618
|
door_open?: boolean | undefined;
|
|
2615
2619
|
} & {
|
|
2616
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2620
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2617
2621
|
temperature_fahrenheit?: number | undefined;
|
|
2618
2622
|
temperature_celsius?: number | undefined;
|
|
2619
2623
|
relative_humidity?: number | undefined;
|
|
2620
2624
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
2625
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
2621
2626
|
is_heating?: boolean | undefined;
|
|
2622
2627
|
is_cooling?: boolean | undefined;
|
|
2623
2628
|
is_fan_running?: boolean | undefined;
|
|
@@ -2628,7 +2633,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2628
2633
|
can_edit?: boolean | undefined;
|
|
2629
2634
|
can_delete?: boolean | undefined;
|
|
2630
2635
|
display_name?: string | undefined;
|
|
2631
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2636
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2632
2637
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2633
2638
|
cooling_set_point_celsius?: number | undefined;
|
|
2634
2639
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2642,7 +2647,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2642
2647
|
can_edit?: boolean | undefined;
|
|
2643
2648
|
can_delete?: boolean | undefined;
|
|
2644
2649
|
display_name?: string | undefined;
|
|
2645
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2650
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2646
2651
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2647
2652
|
cooling_set_point_celsius?: number | undefined;
|
|
2648
2653
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2657,7 +2662,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2657
2662
|
display_name: string;
|
|
2658
2663
|
manual_override_allowed: boolean;
|
|
2659
2664
|
name?: string | null | undefined;
|
|
2660
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2665
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2661
2666
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2662
2667
|
cooling_set_point_celsius?: number | undefined;
|
|
2663
2668
|
heating_set_point_celsius?: number | undefined;
|