@seamapi/types 0.25.0 → 0.26.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 +5772 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7844 -1
- package/lib/seam/connect/openapi.d.ts +7844 -1
- package/lib/seam/connect/openapi.js +5772 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +170 -170
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +296 -296
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +4 -4
- package/lib/seam/connect/unstable/models/managed-device.d.ts +367 -367
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +7 -7
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5772 -1
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -71,17 +71,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
71
71
|
} | undefined;
|
|
72
72
|
door_open?: boolean | undefined;
|
|
73
73
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
74
|
-
|
|
75
|
-
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
76
|
-
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
77
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
78
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
79
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
|
|
80
|
-
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
81
|
-
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
82
|
-
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
83
|
-
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
84
|
-
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
74
|
+
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
85
75
|
automatic_heating_enabled: z.ZodBoolean;
|
|
86
76
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
87
77
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
@@ -93,7 +83,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
93
83
|
}, "strip", z.ZodTypeAny, {
|
|
94
84
|
automatic_heating_enabled: boolean;
|
|
95
85
|
automatic_cooling_enabled: boolean;
|
|
96
|
-
hvac_mode_setting: "
|
|
86
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
97
87
|
manual_override_allowed: boolean;
|
|
98
88
|
cooling_set_point_celsius?: number | undefined;
|
|
99
89
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -102,14 +92,24 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
102
92
|
}, {
|
|
103
93
|
automatic_heating_enabled: boolean;
|
|
104
94
|
automatic_cooling_enabled: boolean;
|
|
105
|
-
hvac_mode_setting: "
|
|
95
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
106
96
|
manual_override_allowed: boolean;
|
|
107
97
|
cooling_set_point_celsius?: number | undefined;
|
|
108
98
|
heating_set_point_celsius?: number | undefined;
|
|
109
99
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
110
100
|
heating_set_point_fahrenheit?: number | undefined;
|
|
111
|
-
}
|
|
112
|
-
|
|
101
|
+
}>>>;
|
|
102
|
+
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
103
|
+
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
104
|
+
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
105
|
+
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
106
|
+
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
107
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
|
|
108
|
+
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
109
|
+
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
110
|
+
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
111
|
+
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
112
|
+
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
113
113
|
automatic_heating_enabled: z.ZodBoolean;
|
|
114
114
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
115
115
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
@@ -121,7 +121,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
121
121
|
}, "strip", z.ZodTypeAny, {
|
|
122
122
|
automatic_heating_enabled: boolean;
|
|
123
123
|
automatic_cooling_enabled: boolean;
|
|
124
|
-
hvac_mode_setting: "
|
|
124
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
125
125
|
manual_override_allowed: boolean;
|
|
126
126
|
cooling_set_point_celsius?: number | undefined;
|
|
127
127
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -130,22 +130,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
130
130
|
}, {
|
|
131
131
|
automatic_heating_enabled: boolean;
|
|
132
132
|
automatic_cooling_enabled: boolean;
|
|
133
|
-
hvac_mode_setting: "
|
|
133
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
134
134
|
manual_override_allowed: boolean;
|
|
135
135
|
cooling_set_point_celsius?: number | undefined;
|
|
136
136
|
heating_set_point_celsius?: number | undefined;
|
|
137
137
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
138
138
|
heating_set_point_fahrenheit?: number | undefined;
|
|
139
|
-
}
|
|
139
|
+
}>>;
|
|
140
140
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
141
141
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
142
142
|
name: z.ZodOptional<z.ZodString>;
|
|
143
143
|
created_at: z.ZodString;
|
|
144
|
-
climate_setting_schedule_id: z.ZodString;
|
|
145
|
-
schedule_type: z.ZodLiteral<"time_bound">;
|
|
146
144
|
device_id: z.ZodString;
|
|
147
145
|
schedule_starts_at: z.ZodString;
|
|
148
146
|
schedule_ends_at: z.ZodString;
|
|
147
|
+
climate_setting_schedule_id: z.ZodString;
|
|
148
|
+
schedule_type: z.ZodLiteral<"time_bound">;
|
|
149
149
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
150
150
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
151
151
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
|
|
@@ -156,15 +156,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
156
156
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
157
157
|
}, "strip", z.ZodTypeAny, {
|
|
158
158
|
created_at: string;
|
|
159
|
-
climate_setting_schedule_id: string;
|
|
160
|
-
schedule_type: "time_bound";
|
|
161
159
|
device_id: string;
|
|
162
160
|
schedule_starts_at: string;
|
|
163
161
|
schedule_ends_at: string;
|
|
162
|
+
climate_setting_schedule_id: string;
|
|
163
|
+
schedule_type: "time_bound";
|
|
164
164
|
name?: string | undefined;
|
|
165
165
|
automatic_heating_enabled?: boolean | undefined;
|
|
166
166
|
automatic_cooling_enabled?: boolean | undefined;
|
|
167
|
-
hvac_mode_setting?: "
|
|
167
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
168
168
|
cooling_set_point_celsius?: number | undefined;
|
|
169
169
|
heating_set_point_celsius?: number | undefined;
|
|
170
170
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -172,15 +172,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
172
172
|
manual_override_allowed?: boolean | undefined;
|
|
173
173
|
}, {
|
|
174
174
|
created_at: string;
|
|
175
|
-
climate_setting_schedule_id: string;
|
|
176
|
-
schedule_type: "time_bound";
|
|
177
175
|
device_id: string;
|
|
178
176
|
schedule_starts_at: string;
|
|
179
177
|
schedule_ends_at: string;
|
|
178
|
+
climate_setting_schedule_id: string;
|
|
179
|
+
schedule_type: "time_bound";
|
|
180
180
|
name?: string | undefined;
|
|
181
181
|
automatic_heating_enabled?: boolean | undefined;
|
|
182
182
|
automatic_cooling_enabled?: boolean | undefined;
|
|
183
|
-
hvac_mode_setting?: "
|
|
183
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
184
184
|
cooling_set_point_celsius?: number | undefined;
|
|
185
185
|
heating_set_point_celsius?: number | undefined;
|
|
186
186
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -200,12 +200,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
200
200
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
201
201
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
202
202
|
}, "strip", z.ZodTypeAny, {
|
|
203
|
+
default_climate_setting?: {
|
|
204
|
+
automatic_heating_enabled: boolean;
|
|
205
|
+
automatic_cooling_enabled: boolean;
|
|
206
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
207
|
+
manual_override_allowed: boolean;
|
|
208
|
+
cooling_set_point_celsius?: number | undefined;
|
|
209
|
+
heating_set_point_celsius?: number | undefined;
|
|
210
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
211
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
212
|
+
} | undefined;
|
|
203
213
|
temperature_fahrenheit?: number | undefined;
|
|
204
214
|
temperature_celsius?: number | undefined;
|
|
205
215
|
relative_humidity?: number | undefined;
|
|
206
216
|
can_enable_automatic_heating?: boolean | undefined;
|
|
207
217
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
208
|
-
available_hvac_mode_settings?: ("
|
|
218
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
|
|
209
219
|
is_heating?: boolean | undefined;
|
|
210
220
|
is_cooling?: boolean | undefined;
|
|
211
221
|
is_fan_running?: boolean | undefined;
|
|
@@ -213,17 +223,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
213
223
|
current_climate_setting?: {
|
|
214
224
|
automatic_heating_enabled: boolean;
|
|
215
225
|
automatic_cooling_enabled: boolean;
|
|
216
|
-
hvac_mode_setting: "
|
|
217
|
-
manual_override_allowed: boolean;
|
|
218
|
-
cooling_set_point_celsius?: number | undefined;
|
|
219
|
-
heating_set_point_celsius?: number | undefined;
|
|
220
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
221
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
222
|
-
} | undefined;
|
|
223
|
-
default_climate_setting?: {
|
|
224
|
-
automatic_heating_enabled: boolean;
|
|
225
|
-
automatic_cooling_enabled: boolean;
|
|
226
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
226
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
227
227
|
manual_override_allowed: boolean;
|
|
228
228
|
cooling_set_point_celsius?: number | undefined;
|
|
229
229
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -233,15 +233,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
233
233
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
234
234
|
active_climate_setting_schedule?: {
|
|
235
235
|
created_at: string;
|
|
236
|
-
climate_setting_schedule_id: string;
|
|
237
|
-
schedule_type: "time_bound";
|
|
238
236
|
device_id: string;
|
|
239
237
|
schedule_starts_at: string;
|
|
240
238
|
schedule_ends_at: string;
|
|
239
|
+
climate_setting_schedule_id: string;
|
|
240
|
+
schedule_type: "time_bound";
|
|
241
241
|
name?: string | undefined;
|
|
242
242
|
automatic_heating_enabled?: boolean | undefined;
|
|
243
243
|
automatic_cooling_enabled?: boolean | undefined;
|
|
244
|
-
hvac_mode_setting?: "
|
|
244
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
245
245
|
cooling_set_point_celsius?: number | undefined;
|
|
246
246
|
heating_set_point_celsius?: number | undefined;
|
|
247
247
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -261,12 +261,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
261
261
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
262
262
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
263
263
|
}, {
|
|
264
|
+
default_climate_setting?: {
|
|
265
|
+
automatic_heating_enabled: boolean;
|
|
266
|
+
automatic_cooling_enabled: boolean;
|
|
267
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
268
|
+
manual_override_allowed: boolean;
|
|
269
|
+
cooling_set_point_celsius?: number | undefined;
|
|
270
|
+
heating_set_point_celsius?: number | undefined;
|
|
271
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
272
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
273
|
+
} | undefined;
|
|
264
274
|
temperature_fahrenheit?: number | undefined;
|
|
265
275
|
temperature_celsius?: number | undefined;
|
|
266
276
|
relative_humidity?: number | undefined;
|
|
267
277
|
can_enable_automatic_heating?: boolean | undefined;
|
|
268
278
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
269
|
-
available_hvac_mode_settings?: ("
|
|
279
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
|
|
270
280
|
is_heating?: boolean | undefined;
|
|
271
281
|
is_cooling?: boolean | undefined;
|
|
272
282
|
is_fan_running?: boolean | undefined;
|
|
@@ -274,17 +284,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
274
284
|
current_climate_setting?: {
|
|
275
285
|
automatic_heating_enabled: boolean;
|
|
276
286
|
automatic_cooling_enabled: boolean;
|
|
277
|
-
hvac_mode_setting: "
|
|
278
|
-
manual_override_allowed: boolean;
|
|
279
|
-
cooling_set_point_celsius?: number | undefined;
|
|
280
|
-
heating_set_point_celsius?: number | undefined;
|
|
281
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
282
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
283
|
-
} | undefined;
|
|
284
|
-
default_climate_setting?: {
|
|
285
|
-
automatic_heating_enabled: boolean;
|
|
286
|
-
automatic_cooling_enabled: boolean;
|
|
287
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
287
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
288
288
|
manual_override_allowed: boolean;
|
|
289
289
|
cooling_set_point_celsius?: number | undefined;
|
|
290
290
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -294,15 +294,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
294
294
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
295
295
|
active_climate_setting_schedule?: {
|
|
296
296
|
created_at: string;
|
|
297
|
-
climate_setting_schedule_id: string;
|
|
298
|
-
schedule_type: "time_bound";
|
|
299
297
|
device_id: string;
|
|
300
298
|
schedule_starts_at: string;
|
|
301
299
|
schedule_ends_at: string;
|
|
300
|
+
climate_setting_schedule_id: string;
|
|
301
|
+
schedule_type: "time_bound";
|
|
302
302
|
name?: string | undefined;
|
|
303
303
|
automatic_heating_enabled?: boolean | undefined;
|
|
304
304
|
automatic_cooling_enabled?: boolean | undefined;
|
|
305
|
-
hvac_mode_setting?: "
|
|
305
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
306
306
|
cooling_set_point_celsius?: number | undefined;
|
|
307
307
|
heating_set_point_celsius?: number | undefined;
|
|
308
308
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -322,18 +322,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
322
322
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
323
323
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
324
324
|
}>, z.ZodObject<{
|
|
325
|
-
|
|
326
|
-
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
327
|
-
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
328
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
329
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
330
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
|
|
331
|
-
is_cooling_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
332
|
-
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
333
|
-
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
334
|
-
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
335
|
-
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
336
|
-
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
325
|
+
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
337
326
|
automatic_heating_enabled: z.ZodBoolean;
|
|
338
327
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
339
328
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
@@ -345,7 +334,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
345
334
|
}, "strip", z.ZodTypeAny, {
|
|
346
335
|
automatic_heating_enabled: boolean;
|
|
347
336
|
automatic_cooling_enabled: boolean;
|
|
348
|
-
hvac_mode_setting: "
|
|
337
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
349
338
|
manual_override_allowed: boolean;
|
|
350
339
|
cooling_set_point_celsius?: number | undefined;
|
|
351
340
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -354,14 +343,25 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
354
343
|
}, {
|
|
355
344
|
automatic_heating_enabled: boolean;
|
|
356
345
|
automatic_cooling_enabled: boolean;
|
|
357
|
-
hvac_mode_setting: "
|
|
346
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
358
347
|
manual_override_allowed: boolean;
|
|
359
348
|
cooling_set_point_celsius?: number | undefined;
|
|
360
349
|
heating_set_point_celsius?: number | undefined;
|
|
361
350
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
362
351
|
heating_set_point_fahrenheit?: number | undefined;
|
|
363
|
-
}
|
|
364
|
-
|
|
352
|
+
}>>>;
|
|
353
|
+
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
354
|
+
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
355
|
+
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
356
|
+
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
357
|
+
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
358
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
|
|
359
|
+
is_cooling_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
360
|
+
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
361
|
+
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
362
|
+
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
363
|
+
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
364
|
+
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
365
365
|
automatic_heating_enabled: z.ZodBoolean;
|
|
366
366
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
367
367
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
@@ -373,7 +373,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
373
373
|
}, "strip", z.ZodTypeAny, {
|
|
374
374
|
automatic_heating_enabled: boolean;
|
|
375
375
|
automatic_cooling_enabled: boolean;
|
|
376
|
-
hvac_mode_setting: "
|
|
376
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
377
377
|
manual_override_allowed: boolean;
|
|
378
378
|
cooling_set_point_celsius?: number | undefined;
|
|
379
379
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -382,22 +382,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
382
382
|
}, {
|
|
383
383
|
automatic_heating_enabled: boolean;
|
|
384
384
|
automatic_cooling_enabled: boolean;
|
|
385
|
-
hvac_mode_setting: "
|
|
385
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
386
386
|
manual_override_allowed: boolean;
|
|
387
387
|
cooling_set_point_celsius?: number | undefined;
|
|
388
388
|
heating_set_point_celsius?: number | undefined;
|
|
389
389
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
390
390
|
heating_set_point_fahrenheit?: number | undefined;
|
|
391
|
-
}
|
|
391
|
+
}>>;
|
|
392
392
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
393
393
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
394
394
|
name: z.ZodOptional<z.ZodString>;
|
|
395
395
|
created_at: z.ZodString;
|
|
396
|
-
climate_setting_schedule_id: z.ZodString;
|
|
397
|
-
schedule_type: z.ZodLiteral<"time_bound">;
|
|
398
396
|
device_id: z.ZodString;
|
|
399
397
|
schedule_starts_at: z.ZodString;
|
|
400
398
|
schedule_ends_at: z.ZodString;
|
|
399
|
+
climate_setting_schedule_id: z.ZodString;
|
|
400
|
+
schedule_type: z.ZodLiteral<"time_bound">;
|
|
401
401
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
402
402
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
403
403
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
|
|
@@ -408,15 +408,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
408
408
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
409
409
|
}, "strip", z.ZodTypeAny, {
|
|
410
410
|
created_at: string;
|
|
411
|
-
climate_setting_schedule_id: string;
|
|
412
|
-
schedule_type: "time_bound";
|
|
413
411
|
device_id: string;
|
|
414
412
|
schedule_starts_at: string;
|
|
415
413
|
schedule_ends_at: string;
|
|
414
|
+
climate_setting_schedule_id: string;
|
|
415
|
+
schedule_type: "time_bound";
|
|
416
416
|
name?: string | undefined;
|
|
417
417
|
automatic_heating_enabled?: boolean | undefined;
|
|
418
418
|
automatic_cooling_enabled?: boolean | undefined;
|
|
419
|
-
hvac_mode_setting?: "
|
|
419
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
420
420
|
cooling_set_point_celsius?: number | undefined;
|
|
421
421
|
heating_set_point_celsius?: number | undefined;
|
|
422
422
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -424,15 +424,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
424
424
|
manual_override_allowed?: boolean | undefined;
|
|
425
425
|
}, {
|
|
426
426
|
created_at: string;
|
|
427
|
-
climate_setting_schedule_id: string;
|
|
428
|
-
schedule_type: "time_bound";
|
|
429
427
|
device_id: string;
|
|
430
428
|
schedule_starts_at: string;
|
|
431
429
|
schedule_ends_at: string;
|
|
430
|
+
climate_setting_schedule_id: string;
|
|
431
|
+
schedule_type: "time_bound";
|
|
432
432
|
name?: string | undefined;
|
|
433
433
|
automatic_heating_enabled?: boolean | undefined;
|
|
434
434
|
automatic_cooling_enabled?: boolean | undefined;
|
|
435
|
-
hvac_mode_setting?: "
|
|
435
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
436
436
|
cooling_set_point_celsius?: number | undefined;
|
|
437
437
|
heating_set_point_celsius?: number | undefined;
|
|
438
438
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -445,12 +445,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
445
445
|
max_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
446
446
|
is_heating_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
447
447
|
}, "strip", z.ZodTypeAny, {
|
|
448
|
+
default_climate_setting?: {
|
|
449
|
+
automatic_heating_enabled: boolean;
|
|
450
|
+
automatic_cooling_enabled: boolean;
|
|
451
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
452
|
+
manual_override_allowed: boolean;
|
|
453
|
+
cooling_set_point_celsius?: number | undefined;
|
|
454
|
+
heating_set_point_celsius?: number | undefined;
|
|
455
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
456
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
457
|
+
} | undefined;
|
|
448
458
|
temperature_fahrenheit?: number | undefined;
|
|
449
459
|
temperature_celsius?: number | undefined;
|
|
450
460
|
relative_humidity?: number | undefined;
|
|
451
461
|
can_enable_automatic_heating?: boolean | undefined;
|
|
452
462
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
453
|
-
available_hvac_mode_settings?: ("
|
|
463
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
|
|
454
464
|
is_cooling_available?: false | undefined;
|
|
455
465
|
is_heating?: boolean | undefined;
|
|
456
466
|
is_cooling?: boolean | undefined;
|
|
@@ -459,17 +469,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
459
469
|
current_climate_setting?: {
|
|
460
470
|
automatic_heating_enabled: boolean;
|
|
461
471
|
automatic_cooling_enabled: boolean;
|
|
462
|
-
hvac_mode_setting: "
|
|
463
|
-
manual_override_allowed: boolean;
|
|
464
|
-
cooling_set_point_celsius?: number | undefined;
|
|
465
|
-
heating_set_point_celsius?: number | undefined;
|
|
466
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
467
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
468
|
-
} | undefined;
|
|
469
|
-
default_climate_setting?: {
|
|
470
|
-
automatic_heating_enabled: boolean;
|
|
471
|
-
automatic_cooling_enabled: boolean;
|
|
472
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
472
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
473
473
|
manual_override_allowed: boolean;
|
|
474
474
|
cooling_set_point_celsius?: number | undefined;
|
|
475
475
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -479,15 +479,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
479
479
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
480
480
|
active_climate_setting_schedule?: {
|
|
481
481
|
created_at: string;
|
|
482
|
-
climate_setting_schedule_id: string;
|
|
483
|
-
schedule_type: "time_bound";
|
|
484
482
|
device_id: string;
|
|
485
483
|
schedule_starts_at: string;
|
|
486
484
|
schedule_ends_at: string;
|
|
485
|
+
climate_setting_schedule_id: string;
|
|
486
|
+
schedule_type: "time_bound";
|
|
487
487
|
name?: string | undefined;
|
|
488
488
|
automatic_heating_enabled?: boolean | undefined;
|
|
489
489
|
automatic_cooling_enabled?: boolean | undefined;
|
|
490
|
-
hvac_mode_setting?: "
|
|
490
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
491
491
|
cooling_set_point_celsius?: number | undefined;
|
|
492
492
|
heating_set_point_celsius?: number | undefined;
|
|
493
493
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -500,12 +500,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
500
500
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
501
501
|
is_heating_available?: true | undefined;
|
|
502
502
|
}, {
|
|
503
|
+
default_climate_setting?: {
|
|
504
|
+
automatic_heating_enabled: boolean;
|
|
505
|
+
automatic_cooling_enabled: boolean;
|
|
506
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
507
|
+
manual_override_allowed: boolean;
|
|
508
|
+
cooling_set_point_celsius?: number | undefined;
|
|
509
|
+
heating_set_point_celsius?: number | undefined;
|
|
510
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
511
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
512
|
+
} | undefined;
|
|
503
513
|
temperature_fahrenheit?: number | undefined;
|
|
504
514
|
temperature_celsius?: number | undefined;
|
|
505
515
|
relative_humidity?: number | undefined;
|
|
506
516
|
can_enable_automatic_heating?: boolean | undefined;
|
|
507
517
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
508
|
-
available_hvac_mode_settings?: ("
|
|
518
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
|
|
509
519
|
is_cooling_available?: false | undefined;
|
|
510
520
|
is_heating?: boolean | undefined;
|
|
511
521
|
is_cooling?: boolean | undefined;
|
|
@@ -514,17 +524,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
514
524
|
current_climate_setting?: {
|
|
515
525
|
automatic_heating_enabled: boolean;
|
|
516
526
|
automatic_cooling_enabled: boolean;
|
|
517
|
-
hvac_mode_setting: "
|
|
518
|
-
manual_override_allowed: boolean;
|
|
519
|
-
cooling_set_point_celsius?: number | undefined;
|
|
520
|
-
heating_set_point_celsius?: number | undefined;
|
|
521
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
522
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
523
|
-
} | undefined;
|
|
524
|
-
default_climate_setting?: {
|
|
525
|
-
automatic_heating_enabled: boolean;
|
|
526
|
-
automatic_cooling_enabled: boolean;
|
|
527
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
527
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
528
528
|
manual_override_allowed: boolean;
|
|
529
529
|
cooling_set_point_celsius?: number | undefined;
|
|
530
530
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -534,15 +534,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
534
534
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
535
535
|
active_climate_setting_schedule?: {
|
|
536
536
|
created_at: string;
|
|
537
|
-
climate_setting_schedule_id: string;
|
|
538
|
-
schedule_type: "time_bound";
|
|
539
537
|
device_id: string;
|
|
540
538
|
schedule_starts_at: string;
|
|
541
539
|
schedule_ends_at: string;
|
|
540
|
+
climate_setting_schedule_id: string;
|
|
541
|
+
schedule_type: "time_bound";
|
|
542
542
|
name?: string | undefined;
|
|
543
543
|
automatic_heating_enabled?: boolean | undefined;
|
|
544
544
|
automatic_cooling_enabled?: boolean | undefined;
|
|
545
|
-
hvac_mode_setting?: "
|
|
545
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
546
546
|
cooling_set_point_celsius?: number | undefined;
|
|
547
547
|
heating_set_point_celsius?: number | undefined;
|
|
548
548
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -555,18 +555,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
555
555
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
556
556
|
is_heating_available?: true | undefined;
|
|
557
557
|
}>, z.ZodObject<{
|
|
558
|
-
|
|
559
|
-
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
560
|
-
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
561
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
562
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
563
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
|
|
564
|
-
is_heating_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
565
|
-
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
566
|
-
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
567
|
-
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
568
|
-
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
569
|
-
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
558
|
+
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
570
559
|
automatic_heating_enabled: z.ZodBoolean;
|
|
571
560
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
572
561
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
@@ -578,7 +567,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
578
567
|
}, "strip", z.ZodTypeAny, {
|
|
579
568
|
automatic_heating_enabled: boolean;
|
|
580
569
|
automatic_cooling_enabled: boolean;
|
|
581
|
-
hvac_mode_setting: "
|
|
570
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
582
571
|
manual_override_allowed: boolean;
|
|
583
572
|
cooling_set_point_celsius?: number | undefined;
|
|
584
573
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -587,14 +576,25 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
587
576
|
}, {
|
|
588
577
|
automatic_heating_enabled: boolean;
|
|
589
578
|
automatic_cooling_enabled: boolean;
|
|
590
|
-
hvac_mode_setting: "
|
|
579
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
591
580
|
manual_override_allowed: boolean;
|
|
592
581
|
cooling_set_point_celsius?: number | undefined;
|
|
593
582
|
heating_set_point_celsius?: number | undefined;
|
|
594
583
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
595
584
|
heating_set_point_fahrenheit?: number | undefined;
|
|
596
|
-
}
|
|
597
|
-
|
|
585
|
+
}>>>;
|
|
586
|
+
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
587
|
+
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
588
|
+
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
589
|
+
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
590
|
+
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
591
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
|
|
592
|
+
is_heating_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
593
|
+
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
594
|
+
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
595
|
+
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
596
|
+
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
597
|
+
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
598
598
|
automatic_heating_enabled: z.ZodBoolean;
|
|
599
599
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
600
600
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
@@ -606,7 +606,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
606
606
|
}, "strip", z.ZodTypeAny, {
|
|
607
607
|
automatic_heating_enabled: boolean;
|
|
608
608
|
automatic_cooling_enabled: boolean;
|
|
609
|
-
hvac_mode_setting: "
|
|
609
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
610
610
|
manual_override_allowed: boolean;
|
|
611
611
|
cooling_set_point_celsius?: number | undefined;
|
|
612
612
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -615,22 +615,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
615
615
|
}, {
|
|
616
616
|
automatic_heating_enabled: boolean;
|
|
617
617
|
automatic_cooling_enabled: boolean;
|
|
618
|
-
hvac_mode_setting: "
|
|
618
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
619
619
|
manual_override_allowed: boolean;
|
|
620
620
|
cooling_set_point_celsius?: number | undefined;
|
|
621
621
|
heating_set_point_celsius?: number | undefined;
|
|
622
622
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
623
623
|
heating_set_point_fahrenheit?: number | undefined;
|
|
624
|
-
}
|
|
624
|
+
}>>;
|
|
625
625
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
626
626
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
627
627
|
name: z.ZodOptional<z.ZodString>;
|
|
628
628
|
created_at: z.ZodString;
|
|
629
|
-
climate_setting_schedule_id: z.ZodString;
|
|
630
|
-
schedule_type: z.ZodLiteral<"time_bound">;
|
|
631
629
|
device_id: z.ZodString;
|
|
632
630
|
schedule_starts_at: z.ZodString;
|
|
633
631
|
schedule_ends_at: z.ZodString;
|
|
632
|
+
climate_setting_schedule_id: z.ZodString;
|
|
633
|
+
schedule_type: z.ZodLiteral<"time_bound">;
|
|
634
634
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
635
635
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
636
636
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
|
|
@@ -641,15 +641,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
641
641
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
642
642
|
}, "strip", z.ZodTypeAny, {
|
|
643
643
|
created_at: string;
|
|
644
|
-
climate_setting_schedule_id: string;
|
|
645
|
-
schedule_type: "time_bound";
|
|
646
644
|
device_id: string;
|
|
647
645
|
schedule_starts_at: string;
|
|
648
646
|
schedule_ends_at: string;
|
|
647
|
+
climate_setting_schedule_id: string;
|
|
648
|
+
schedule_type: "time_bound";
|
|
649
649
|
name?: string | undefined;
|
|
650
650
|
automatic_heating_enabled?: boolean | undefined;
|
|
651
651
|
automatic_cooling_enabled?: boolean | undefined;
|
|
652
|
-
hvac_mode_setting?: "
|
|
652
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
653
653
|
cooling_set_point_celsius?: number | undefined;
|
|
654
654
|
heating_set_point_celsius?: number | undefined;
|
|
655
655
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -657,15 +657,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
657
657
|
manual_override_allowed?: boolean | undefined;
|
|
658
658
|
}, {
|
|
659
659
|
created_at: string;
|
|
660
|
-
climate_setting_schedule_id: string;
|
|
661
|
-
schedule_type: "time_bound";
|
|
662
660
|
device_id: string;
|
|
663
661
|
schedule_starts_at: string;
|
|
664
662
|
schedule_ends_at: string;
|
|
663
|
+
climate_setting_schedule_id: string;
|
|
664
|
+
schedule_type: "time_bound";
|
|
665
665
|
name?: string | undefined;
|
|
666
666
|
automatic_heating_enabled?: boolean | undefined;
|
|
667
667
|
automatic_cooling_enabled?: boolean | undefined;
|
|
668
|
-
hvac_mode_setting?: "
|
|
668
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
669
669
|
cooling_set_point_celsius?: number | undefined;
|
|
670
670
|
heating_set_point_celsius?: number | undefined;
|
|
671
671
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -678,12 +678,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
678
678
|
max_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
679
679
|
is_cooling_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
680
680
|
}, "strip", z.ZodTypeAny, {
|
|
681
|
+
default_climate_setting?: {
|
|
682
|
+
automatic_heating_enabled: boolean;
|
|
683
|
+
automatic_cooling_enabled: boolean;
|
|
684
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
685
|
+
manual_override_allowed: boolean;
|
|
686
|
+
cooling_set_point_celsius?: number | undefined;
|
|
687
|
+
heating_set_point_celsius?: number | undefined;
|
|
688
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
689
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
690
|
+
} | undefined;
|
|
681
691
|
temperature_fahrenheit?: number | undefined;
|
|
682
692
|
temperature_celsius?: number | undefined;
|
|
683
693
|
relative_humidity?: number | undefined;
|
|
684
694
|
can_enable_automatic_heating?: boolean | undefined;
|
|
685
695
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
686
|
-
available_hvac_mode_settings?: ("
|
|
696
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
|
|
687
697
|
is_heating_available?: false | undefined;
|
|
688
698
|
is_heating?: boolean | undefined;
|
|
689
699
|
is_cooling?: boolean | undefined;
|
|
@@ -692,17 +702,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
692
702
|
current_climate_setting?: {
|
|
693
703
|
automatic_heating_enabled: boolean;
|
|
694
704
|
automatic_cooling_enabled: boolean;
|
|
695
|
-
hvac_mode_setting: "
|
|
696
|
-
manual_override_allowed: boolean;
|
|
697
|
-
cooling_set_point_celsius?: number | undefined;
|
|
698
|
-
heating_set_point_celsius?: number | undefined;
|
|
699
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
700
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
701
|
-
} | undefined;
|
|
702
|
-
default_climate_setting?: {
|
|
703
|
-
automatic_heating_enabled: boolean;
|
|
704
|
-
automatic_cooling_enabled: boolean;
|
|
705
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
705
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
706
706
|
manual_override_allowed: boolean;
|
|
707
707
|
cooling_set_point_celsius?: number | undefined;
|
|
708
708
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -712,15 +712,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
712
712
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
713
713
|
active_climate_setting_schedule?: {
|
|
714
714
|
created_at: string;
|
|
715
|
-
climate_setting_schedule_id: string;
|
|
716
|
-
schedule_type: "time_bound";
|
|
717
715
|
device_id: string;
|
|
718
716
|
schedule_starts_at: string;
|
|
719
717
|
schedule_ends_at: string;
|
|
718
|
+
climate_setting_schedule_id: string;
|
|
719
|
+
schedule_type: "time_bound";
|
|
720
720
|
name?: string | undefined;
|
|
721
721
|
automatic_heating_enabled?: boolean | undefined;
|
|
722
722
|
automatic_cooling_enabled?: boolean | undefined;
|
|
723
|
-
hvac_mode_setting?: "
|
|
723
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
724
724
|
cooling_set_point_celsius?: number | undefined;
|
|
725
725
|
heating_set_point_celsius?: number | undefined;
|
|
726
726
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -733,12 +733,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
733
733
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
734
734
|
is_cooling_available?: true | undefined;
|
|
735
735
|
}, {
|
|
736
|
+
default_climate_setting?: {
|
|
737
|
+
automatic_heating_enabled: boolean;
|
|
738
|
+
automatic_cooling_enabled: boolean;
|
|
739
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
740
|
+
manual_override_allowed: boolean;
|
|
741
|
+
cooling_set_point_celsius?: number | undefined;
|
|
742
|
+
heating_set_point_celsius?: number | undefined;
|
|
743
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
744
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
745
|
+
} | undefined;
|
|
736
746
|
temperature_fahrenheit?: number | undefined;
|
|
737
747
|
temperature_celsius?: number | undefined;
|
|
738
748
|
relative_humidity?: number | undefined;
|
|
739
749
|
can_enable_automatic_heating?: boolean | undefined;
|
|
740
750
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
741
|
-
available_hvac_mode_settings?: ("
|
|
751
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
|
|
742
752
|
is_heating_available?: false | undefined;
|
|
743
753
|
is_heating?: boolean | undefined;
|
|
744
754
|
is_cooling?: boolean | undefined;
|
|
@@ -747,17 +757,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
747
757
|
current_climate_setting?: {
|
|
748
758
|
automatic_heating_enabled: boolean;
|
|
749
759
|
automatic_cooling_enabled: boolean;
|
|
750
|
-
hvac_mode_setting: "
|
|
751
|
-
manual_override_allowed: boolean;
|
|
752
|
-
cooling_set_point_celsius?: number | undefined;
|
|
753
|
-
heating_set_point_celsius?: number | undefined;
|
|
754
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
755
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
756
|
-
} | undefined;
|
|
757
|
-
default_climate_setting?: {
|
|
758
|
-
automatic_heating_enabled: boolean;
|
|
759
|
-
automatic_cooling_enabled: boolean;
|
|
760
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
760
|
+
hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
|
|
761
761
|
manual_override_allowed: boolean;
|
|
762
762
|
cooling_set_point_celsius?: number | undefined;
|
|
763
763
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -767,15 +767,15 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
767
767
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
768
768
|
active_climate_setting_schedule?: {
|
|
769
769
|
created_at: string;
|
|
770
|
-
climate_setting_schedule_id: string;
|
|
771
|
-
schedule_type: "time_bound";
|
|
772
770
|
device_id: string;
|
|
773
771
|
schedule_starts_at: string;
|
|
774
772
|
schedule_ends_at: string;
|
|
773
|
+
climate_setting_schedule_id: string;
|
|
774
|
+
schedule_type: "time_bound";
|
|
775
775
|
name?: string | undefined;
|
|
776
776
|
automatic_heating_enabled?: boolean | undefined;
|
|
777
777
|
automatic_cooling_enabled?: boolean | undefined;
|
|
778
|
-
hvac_mode_setting?: "
|
|
778
|
+
hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
|
|
779
779
|
cooling_set_point_celsius?: number | undefined;
|
|
780
780
|
heating_set_point_celsius?: number | undefined;
|
|
781
781
|
cooling_set_point_fahrenheit?: number | undefined;
|