@seamapi/types 1.386.0 → 1.386.2
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 +2788 -791
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7673 -1304
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +9 -3
- package/lib/seam/connect/models/access-grants/access-method.js +9 -1
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-system.d.ts +36 -0
- package/lib/seam/connect/models/acs/acs-system.js +6 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +0 -12
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +4 -22
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +43 -18
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +189 -6
- package/lib/seam/connect/models/action-attempts/action-attempt.js +2 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +186 -0
- package/lib/seam/connect/models/action-attempts/encode-access-method.js +42 -0
- package/lib/seam/connect/models/action-attempts/encode-access-method.js.map +1 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +6 -6
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +135 -13
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +135 -13
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -1
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +247 -19
- package/lib/seam/connect/models/devices/device.js +11 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +156 -13
- package/lib/seam/connect/models/events/access-grants.d.ts +1 -24
- package/lib/seam/connect/models/events/access-grants.js +6 -7
- package/lib/seam/connect/models/events/access-grants.js.map +1 -1
- package/lib/seam/connect/models/events/access-methods.d.ts +1 -1
- package/lib/seam/connect/models/events/access-methods.js +4 -4
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/devices.d.ts +6 -4
- package/lib/seam/connect/models/events/seam-event.d.ts +194 -3
- package/lib/seam/connect/models/events/seam-event.js +4 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +3 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/index.d.ts +1 -0
- package/lib/seam/connect/models/thermostats/index.js +1 -0
- package/lib/seam/connect/models/thermostats/index.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-program.d.ts +79 -0
- package/lib/seam/connect/models/thermostats/thermostat-program.js +74 -0
- package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +7 -7
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +3 -7
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +3396 -1577
- package/lib/seam/connect/openapi.js +2620 -820
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3816 -61
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +11 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +6 -22
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +62 -27
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +2 -0
- package/src/lib/seam/connect/models/action-attempts/encode-access-method.ts +69 -0
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +9 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +14 -0
- package/src/lib/seam/connect/models/events/access-grants.ts +6 -7
- package/src/lib/seam/connect/models/events/access-methods.ts +4 -4
- package/src/lib/seam/connect/models/events/seam-event.ts +4 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +5 -0
- package/src/lib/seam/connect/models/thermostats/index.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +90 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +3 -7
- package/src/lib/seam/connect/openapi.ts +3600 -1667
- package/src/lib/seam/connect/route-types.ts +4279 -87
- package/src/lib/seam/connect/schemas.ts +2 -0
|
@@ -89,6 +89,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
89
89
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
90
90
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
91
91
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
92
|
+
can_program: z.ZodOptional<z.ZodBoolean>;
|
|
92
93
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
93
94
|
display_name: z.ZodOptional<z.ZodString>;
|
|
94
95
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
@@ -103,6 +104,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
103
104
|
climate_preset_key?: string | undefined;
|
|
104
105
|
can_edit?: boolean | undefined;
|
|
105
106
|
can_delete?: boolean | undefined;
|
|
107
|
+
can_program?: boolean | undefined;
|
|
106
108
|
display_name?: string | undefined;
|
|
107
109
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
108
110
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -116,6 +118,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
116
118
|
climate_preset_key?: string | undefined;
|
|
117
119
|
can_edit?: boolean | undefined;
|
|
118
120
|
can_delete?: boolean | undefined;
|
|
121
|
+
can_program?: boolean | undefined;
|
|
119
122
|
display_name?: string | undefined;
|
|
120
123
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
121
124
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -129,6 +132,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
129
132
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
130
133
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
131
134
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
135
|
+
can_program: z.ZodOptional<z.ZodBoolean>;
|
|
132
136
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
133
137
|
display_name: z.ZodOptional<z.ZodString>;
|
|
134
138
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
@@ -143,6 +147,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
143
147
|
climate_preset_key?: string | undefined;
|
|
144
148
|
can_edit?: boolean | undefined;
|
|
145
149
|
can_delete?: boolean | undefined;
|
|
150
|
+
can_program?: boolean | undefined;
|
|
146
151
|
display_name?: string | undefined;
|
|
147
152
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
148
153
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -156,6 +161,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
156
161
|
climate_preset_key?: string | undefined;
|
|
157
162
|
can_edit?: boolean | undefined;
|
|
158
163
|
can_delete?: boolean | undefined;
|
|
164
|
+
can_program?: boolean | undefined;
|
|
159
165
|
display_name?: string | undefined;
|
|
160
166
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
161
167
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -169,6 +175,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
169
175
|
climate_preset_key: z.ZodString;
|
|
170
176
|
can_edit: z.ZodBoolean;
|
|
171
177
|
can_delete: z.ZodBoolean;
|
|
178
|
+
can_program: z.ZodBoolean;
|
|
172
179
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
173
180
|
display_name: z.ZodString;
|
|
174
181
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
@@ -182,6 +189,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
182
189
|
climate_preset_key: string;
|
|
183
190
|
can_edit: boolean;
|
|
184
191
|
can_delete: boolean;
|
|
192
|
+
can_program: boolean;
|
|
185
193
|
display_name: string;
|
|
186
194
|
manual_override_allowed: boolean;
|
|
187
195
|
name?: string | null | undefined;
|
|
@@ -195,6 +203,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
195
203
|
climate_preset_key: string;
|
|
196
204
|
can_edit: boolean;
|
|
197
205
|
can_delete: boolean;
|
|
206
|
+
can_program: boolean;
|
|
198
207
|
display_name: string;
|
|
199
208
|
manual_override_allowed: boolean;
|
|
200
209
|
name?: string | null | undefined;
|
|
@@ -213,7 +222,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
213
222
|
climate_preset_key: z.ZodString;
|
|
214
223
|
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
215
224
|
starts_at: z.ZodString;
|
|
216
|
-
|
|
225
|
+
is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
217
226
|
ends_at: z.ZodString;
|
|
218
227
|
created_at: z.ZodString;
|
|
219
228
|
errors: z.ZodArray<z.ZodObject<{
|
|
@@ -228,32 +237,97 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
228
237
|
}>, "many">;
|
|
229
238
|
}, "strip", z.ZodTypeAny, {
|
|
230
239
|
climate_preset_key: string;
|
|
231
|
-
thermostat_schedule_id: string;
|
|
232
240
|
device_id: string;
|
|
241
|
+
created_at: string;
|
|
242
|
+
thermostat_schedule_id: string;
|
|
233
243
|
starts_at: string;
|
|
234
244
|
ends_at: string;
|
|
235
|
-
created_at: string;
|
|
236
245
|
errors: {
|
|
237
246
|
message: string;
|
|
238
247
|
error_code: string;
|
|
239
248
|
}[];
|
|
240
249
|
name?: string | undefined;
|
|
241
250
|
max_override_period_minutes?: number | null | undefined;
|
|
242
|
-
|
|
251
|
+
is_override_allowed?: boolean | undefined;
|
|
243
252
|
}, {
|
|
244
253
|
climate_preset_key: string;
|
|
245
|
-
thermostat_schedule_id: string;
|
|
246
254
|
device_id: string;
|
|
255
|
+
created_at: string;
|
|
256
|
+
thermostat_schedule_id: string;
|
|
247
257
|
starts_at: string;
|
|
248
258
|
ends_at: string;
|
|
249
|
-
created_at: string;
|
|
250
259
|
errors: {
|
|
251
260
|
message: string;
|
|
252
261
|
error_code: string;
|
|
253
262
|
}[];
|
|
254
263
|
name?: string | undefined;
|
|
255
264
|
max_override_period_minutes?: number | null | undefined;
|
|
256
|
-
|
|
265
|
+
is_override_allowed?: boolean | undefined;
|
|
266
|
+
}>>>>;
|
|
267
|
+
thermostat_daily_programs: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
268
|
+
thermostat_daily_program_id: z.ZodString;
|
|
269
|
+
device_id: z.ZodString;
|
|
270
|
+
name: z.ZodOptional<z.ZodString>;
|
|
271
|
+
periods: z.ZodArray<z.ZodObject<{
|
|
272
|
+
starts_at_time: z.ZodString;
|
|
273
|
+
climate_preset_key: z.ZodString;
|
|
274
|
+
}, "strip", z.ZodTypeAny, {
|
|
275
|
+
climate_preset_key: string;
|
|
276
|
+
starts_at_time: string;
|
|
277
|
+
}, {
|
|
278
|
+
climate_preset_key: string;
|
|
279
|
+
starts_at_time: string;
|
|
280
|
+
}>, "many">;
|
|
281
|
+
created_at: z.ZodString;
|
|
282
|
+
}, "strip", z.ZodTypeAny, {
|
|
283
|
+
thermostat_daily_program_id: string;
|
|
284
|
+
device_id: string;
|
|
285
|
+
periods: {
|
|
286
|
+
climate_preset_key: string;
|
|
287
|
+
starts_at_time: string;
|
|
288
|
+
}[];
|
|
289
|
+
created_at: string;
|
|
290
|
+
name?: string | undefined;
|
|
291
|
+
}, {
|
|
292
|
+
thermostat_daily_program_id: string;
|
|
293
|
+
device_id: string;
|
|
294
|
+
periods: {
|
|
295
|
+
climate_preset_key: string;
|
|
296
|
+
starts_at_time: string;
|
|
297
|
+
}[];
|
|
298
|
+
created_at: string;
|
|
299
|
+
name?: string | undefined;
|
|
300
|
+
}>, "many">>>>;
|
|
301
|
+
thermostat_weekly_program: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
302
|
+
device_id: z.ZodString;
|
|
303
|
+
monday_program_id: z.ZodNullable<z.ZodString>;
|
|
304
|
+
tuesday_program_id: z.ZodNullable<z.ZodString>;
|
|
305
|
+
wednesday_program_id: z.ZodNullable<z.ZodString>;
|
|
306
|
+
thursday_program_id: z.ZodNullable<z.ZodString>;
|
|
307
|
+
friday_program_id: z.ZodNullable<z.ZodString>;
|
|
308
|
+
saturday_program_id: z.ZodNullable<z.ZodString>;
|
|
309
|
+
sunday_program_id: z.ZodNullable<z.ZodString>;
|
|
310
|
+
created_at: z.ZodString;
|
|
311
|
+
}, "strip", z.ZodTypeAny, {
|
|
312
|
+
device_id: string;
|
|
313
|
+
created_at: string;
|
|
314
|
+
monday_program_id: string | null;
|
|
315
|
+
tuesday_program_id: string | null;
|
|
316
|
+
wednesday_program_id: string | null;
|
|
317
|
+
thursday_program_id: string | null;
|
|
318
|
+
friday_program_id: string | null;
|
|
319
|
+
saturday_program_id: string | null;
|
|
320
|
+
sunday_program_id: string | null;
|
|
321
|
+
}, {
|
|
322
|
+
device_id: string;
|
|
323
|
+
created_at: string;
|
|
324
|
+
monday_program_id: string | null;
|
|
325
|
+
tuesday_program_id: string | null;
|
|
326
|
+
wednesday_program_id: string | null;
|
|
327
|
+
thursday_program_id: string | null;
|
|
328
|
+
friday_program_id: string | null;
|
|
329
|
+
saturday_program_id: string | null;
|
|
330
|
+
sunday_program_id: string | null;
|
|
257
331
|
}>>>>;
|
|
258
332
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
259
333
|
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -297,6 +371,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
297
371
|
climate_preset_key?: string | undefined;
|
|
298
372
|
can_edit?: boolean | undefined;
|
|
299
373
|
can_delete?: boolean | undefined;
|
|
374
|
+
can_program?: boolean | undefined;
|
|
300
375
|
display_name?: string | undefined;
|
|
301
376
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
302
377
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -311,6 +386,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
311
386
|
climate_preset_key?: string | undefined;
|
|
312
387
|
can_edit?: boolean | undefined;
|
|
313
388
|
can_delete?: boolean | undefined;
|
|
389
|
+
can_program?: boolean | undefined;
|
|
314
390
|
display_name?: string | undefined;
|
|
315
391
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
316
392
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -324,6 +400,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
324
400
|
climate_preset_key: string;
|
|
325
401
|
can_edit: boolean;
|
|
326
402
|
can_delete: boolean;
|
|
403
|
+
can_program: boolean;
|
|
327
404
|
display_name: string;
|
|
328
405
|
manual_override_allowed: boolean;
|
|
329
406
|
name?: string | null | undefined;
|
|
@@ -337,18 +414,39 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
337
414
|
fallback_climate_preset_key?: string | null | undefined;
|
|
338
415
|
active_thermostat_schedule?: {
|
|
339
416
|
climate_preset_key: string;
|
|
340
|
-
thermostat_schedule_id: string;
|
|
341
417
|
device_id: string;
|
|
418
|
+
created_at: string;
|
|
419
|
+
thermostat_schedule_id: string;
|
|
342
420
|
starts_at: string;
|
|
343
421
|
ends_at: string;
|
|
344
|
-
created_at: string;
|
|
345
422
|
errors: {
|
|
346
423
|
message: string;
|
|
347
424
|
error_code: string;
|
|
348
425
|
}[];
|
|
349
426
|
name?: string | undefined;
|
|
350
427
|
max_override_period_minutes?: number | null | undefined;
|
|
351
|
-
|
|
428
|
+
is_override_allowed?: boolean | undefined;
|
|
429
|
+
} | null | undefined;
|
|
430
|
+
thermostat_daily_programs?: {
|
|
431
|
+
thermostat_daily_program_id: string;
|
|
432
|
+
device_id: string;
|
|
433
|
+
periods: {
|
|
434
|
+
climate_preset_key: string;
|
|
435
|
+
starts_at_time: string;
|
|
436
|
+
}[];
|
|
437
|
+
created_at: string;
|
|
438
|
+
name?: string | undefined;
|
|
439
|
+
}[] | null | undefined;
|
|
440
|
+
thermostat_weekly_program?: {
|
|
441
|
+
device_id: string;
|
|
442
|
+
created_at: string;
|
|
443
|
+
monday_program_id: string | null;
|
|
444
|
+
tuesday_program_id: string | null;
|
|
445
|
+
wednesday_program_id: string | null;
|
|
446
|
+
thursday_program_id: string | null;
|
|
447
|
+
friday_program_id: string | null;
|
|
448
|
+
saturday_program_id: string | null;
|
|
449
|
+
sunday_program_id: string | null;
|
|
352
450
|
} | null | undefined;
|
|
353
451
|
min_cooling_set_point_celsius?: number | undefined;
|
|
354
452
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -382,6 +480,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
382
480
|
climate_preset_key?: string | undefined;
|
|
383
481
|
can_edit?: boolean | undefined;
|
|
384
482
|
can_delete?: boolean | undefined;
|
|
483
|
+
can_program?: boolean | undefined;
|
|
385
484
|
display_name?: string | undefined;
|
|
386
485
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
387
486
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -396,6 +495,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
396
495
|
climate_preset_key?: string | undefined;
|
|
397
496
|
can_edit?: boolean | undefined;
|
|
398
497
|
can_delete?: boolean | undefined;
|
|
498
|
+
can_program?: boolean | undefined;
|
|
399
499
|
display_name?: string | undefined;
|
|
400
500
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
401
501
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -409,6 +509,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
409
509
|
climate_preset_key: string;
|
|
410
510
|
can_edit: boolean;
|
|
411
511
|
can_delete: boolean;
|
|
512
|
+
can_program: boolean;
|
|
412
513
|
display_name: string;
|
|
413
514
|
manual_override_allowed: boolean;
|
|
414
515
|
name?: string | null | undefined;
|
|
@@ -422,18 +523,39 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
422
523
|
fallback_climate_preset_key?: string | null | undefined;
|
|
423
524
|
active_thermostat_schedule?: {
|
|
424
525
|
climate_preset_key: string;
|
|
425
|
-
thermostat_schedule_id: string;
|
|
426
526
|
device_id: string;
|
|
527
|
+
created_at: string;
|
|
528
|
+
thermostat_schedule_id: string;
|
|
427
529
|
starts_at: string;
|
|
428
530
|
ends_at: string;
|
|
429
|
-
created_at: string;
|
|
430
531
|
errors: {
|
|
431
532
|
message: string;
|
|
432
533
|
error_code: string;
|
|
433
534
|
}[];
|
|
434
535
|
name?: string | undefined;
|
|
435
536
|
max_override_period_minutes?: number | null | undefined;
|
|
436
|
-
|
|
537
|
+
is_override_allowed?: boolean | undefined;
|
|
538
|
+
} | null | undefined;
|
|
539
|
+
thermostat_daily_programs?: {
|
|
540
|
+
thermostat_daily_program_id: string;
|
|
541
|
+
device_id: string;
|
|
542
|
+
periods: {
|
|
543
|
+
climate_preset_key: string;
|
|
544
|
+
starts_at_time: string;
|
|
545
|
+
}[];
|
|
546
|
+
created_at: string;
|
|
547
|
+
name?: string | undefined;
|
|
548
|
+
}[] | null | undefined;
|
|
549
|
+
thermostat_weekly_program?: {
|
|
550
|
+
device_id: string;
|
|
551
|
+
created_at: string;
|
|
552
|
+
monday_program_id: string | null;
|
|
553
|
+
tuesday_program_id: string | null;
|
|
554
|
+
wednesday_program_id: string | null;
|
|
555
|
+
thursday_program_id: string | null;
|
|
556
|
+
friday_program_id: string | null;
|
|
557
|
+
saturday_program_id: string | null;
|
|
558
|
+
sunday_program_id: string | null;
|
|
437
559
|
} | null | undefined;
|
|
438
560
|
min_cooling_set_point_celsius?: number | undefined;
|
|
439
561
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14,6 +14,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
14
14
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
15
15
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
16
16
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
17
|
+
can_program: z.ZodOptional<z.ZodBoolean>;
|
|
17
18
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
18
19
|
display_name: z.ZodOptional<z.ZodString>;
|
|
19
20
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
@@ -28,6 +29,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
28
29
|
climate_preset_key?: string | undefined;
|
|
29
30
|
can_edit?: boolean | undefined;
|
|
30
31
|
can_delete?: boolean | undefined;
|
|
32
|
+
can_program?: boolean | undefined;
|
|
31
33
|
display_name?: string | undefined;
|
|
32
34
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
33
35
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -41,6 +43,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
41
43
|
climate_preset_key?: string | undefined;
|
|
42
44
|
can_edit?: boolean | undefined;
|
|
43
45
|
can_delete?: boolean | undefined;
|
|
46
|
+
can_program?: boolean | undefined;
|
|
44
47
|
display_name?: string | undefined;
|
|
45
48
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
46
49
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -54,6 +57,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
54
57
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
55
58
|
can_edit: z.ZodOptional<z.ZodBoolean>;
|
|
56
59
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
60
|
+
can_program: z.ZodOptional<z.ZodBoolean>;
|
|
57
61
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
58
62
|
display_name: z.ZodOptional<z.ZodString>;
|
|
59
63
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
@@ -68,6 +72,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
68
72
|
climate_preset_key?: string | undefined;
|
|
69
73
|
can_edit?: boolean | undefined;
|
|
70
74
|
can_delete?: boolean | undefined;
|
|
75
|
+
can_program?: boolean | undefined;
|
|
71
76
|
display_name?: string | undefined;
|
|
72
77
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
73
78
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -81,6 +86,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
81
86
|
climate_preset_key?: string | undefined;
|
|
82
87
|
can_edit?: boolean | undefined;
|
|
83
88
|
can_delete?: boolean | undefined;
|
|
89
|
+
can_program?: boolean | undefined;
|
|
84
90
|
display_name?: string | undefined;
|
|
85
91
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
86
92
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -94,6 +100,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
94
100
|
climate_preset_key: z.ZodString;
|
|
95
101
|
can_edit: z.ZodBoolean;
|
|
96
102
|
can_delete: z.ZodBoolean;
|
|
103
|
+
can_program: z.ZodBoolean;
|
|
97
104
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
98
105
|
display_name: z.ZodString;
|
|
99
106
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
@@ -107,6 +114,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
107
114
|
climate_preset_key: string;
|
|
108
115
|
can_edit: boolean;
|
|
109
116
|
can_delete: boolean;
|
|
117
|
+
can_program: boolean;
|
|
110
118
|
display_name: string;
|
|
111
119
|
manual_override_allowed: boolean;
|
|
112
120
|
name?: string | null | undefined;
|
|
@@ -120,6 +128,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
120
128
|
climate_preset_key: string;
|
|
121
129
|
can_edit: boolean;
|
|
122
130
|
can_delete: boolean;
|
|
131
|
+
can_program: boolean;
|
|
123
132
|
display_name: string;
|
|
124
133
|
manual_override_allowed: boolean;
|
|
125
134
|
name?: string | null | undefined;
|
|
@@ -138,7 +147,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
138
147
|
climate_preset_key: z.ZodString;
|
|
139
148
|
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
140
149
|
starts_at: z.ZodString;
|
|
141
|
-
|
|
150
|
+
is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
142
151
|
ends_at: z.ZodString;
|
|
143
152
|
created_at: z.ZodString;
|
|
144
153
|
errors: z.ZodArray<z.ZodObject<{
|
|
@@ -153,32 +162,97 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
153
162
|
}>, "many">;
|
|
154
163
|
}, "strip", z.ZodTypeAny, {
|
|
155
164
|
climate_preset_key: string;
|
|
156
|
-
thermostat_schedule_id: string;
|
|
157
165
|
device_id: string;
|
|
166
|
+
created_at: string;
|
|
167
|
+
thermostat_schedule_id: string;
|
|
158
168
|
starts_at: string;
|
|
159
169
|
ends_at: string;
|
|
160
|
-
created_at: string;
|
|
161
170
|
errors: {
|
|
162
171
|
message: string;
|
|
163
172
|
error_code: string;
|
|
164
173
|
}[];
|
|
165
174
|
name?: string | undefined;
|
|
166
175
|
max_override_period_minutes?: number | null | undefined;
|
|
167
|
-
|
|
176
|
+
is_override_allowed?: boolean | undefined;
|
|
168
177
|
}, {
|
|
169
178
|
climate_preset_key: string;
|
|
170
|
-
thermostat_schedule_id: string;
|
|
171
179
|
device_id: string;
|
|
180
|
+
created_at: string;
|
|
181
|
+
thermostat_schedule_id: string;
|
|
172
182
|
starts_at: string;
|
|
173
183
|
ends_at: string;
|
|
174
|
-
created_at: string;
|
|
175
184
|
errors: {
|
|
176
185
|
message: string;
|
|
177
186
|
error_code: string;
|
|
178
187
|
}[];
|
|
179
188
|
name?: string | undefined;
|
|
180
189
|
max_override_period_minutes?: number | null | undefined;
|
|
181
|
-
|
|
190
|
+
is_override_allowed?: boolean | undefined;
|
|
191
|
+
}>>>>;
|
|
192
|
+
thermostat_daily_programs: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
193
|
+
thermostat_daily_program_id: z.ZodString;
|
|
194
|
+
device_id: z.ZodString;
|
|
195
|
+
name: z.ZodOptional<z.ZodString>;
|
|
196
|
+
periods: z.ZodArray<z.ZodObject<{
|
|
197
|
+
starts_at_time: z.ZodString;
|
|
198
|
+
climate_preset_key: z.ZodString;
|
|
199
|
+
}, "strip", z.ZodTypeAny, {
|
|
200
|
+
climate_preset_key: string;
|
|
201
|
+
starts_at_time: string;
|
|
202
|
+
}, {
|
|
203
|
+
climate_preset_key: string;
|
|
204
|
+
starts_at_time: string;
|
|
205
|
+
}>, "many">;
|
|
206
|
+
created_at: z.ZodString;
|
|
207
|
+
}, "strip", z.ZodTypeAny, {
|
|
208
|
+
thermostat_daily_program_id: string;
|
|
209
|
+
device_id: string;
|
|
210
|
+
periods: {
|
|
211
|
+
climate_preset_key: string;
|
|
212
|
+
starts_at_time: string;
|
|
213
|
+
}[];
|
|
214
|
+
created_at: string;
|
|
215
|
+
name?: string | undefined;
|
|
216
|
+
}, {
|
|
217
|
+
thermostat_daily_program_id: string;
|
|
218
|
+
device_id: string;
|
|
219
|
+
periods: {
|
|
220
|
+
climate_preset_key: string;
|
|
221
|
+
starts_at_time: string;
|
|
222
|
+
}[];
|
|
223
|
+
created_at: string;
|
|
224
|
+
name?: string | undefined;
|
|
225
|
+
}>, "many">>>>;
|
|
226
|
+
thermostat_weekly_program: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
227
|
+
device_id: z.ZodString;
|
|
228
|
+
monday_program_id: z.ZodNullable<z.ZodString>;
|
|
229
|
+
tuesday_program_id: z.ZodNullable<z.ZodString>;
|
|
230
|
+
wednesday_program_id: z.ZodNullable<z.ZodString>;
|
|
231
|
+
thursday_program_id: z.ZodNullable<z.ZodString>;
|
|
232
|
+
friday_program_id: z.ZodNullable<z.ZodString>;
|
|
233
|
+
saturday_program_id: z.ZodNullable<z.ZodString>;
|
|
234
|
+
sunday_program_id: z.ZodNullable<z.ZodString>;
|
|
235
|
+
created_at: z.ZodString;
|
|
236
|
+
}, "strip", z.ZodTypeAny, {
|
|
237
|
+
device_id: string;
|
|
238
|
+
created_at: string;
|
|
239
|
+
monday_program_id: string | null;
|
|
240
|
+
tuesday_program_id: string | null;
|
|
241
|
+
wednesday_program_id: string | null;
|
|
242
|
+
thursday_program_id: string | null;
|
|
243
|
+
friday_program_id: string | null;
|
|
244
|
+
saturday_program_id: string | null;
|
|
245
|
+
sunday_program_id: string | null;
|
|
246
|
+
}, {
|
|
247
|
+
device_id: string;
|
|
248
|
+
created_at: string;
|
|
249
|
+
monday_program_id: string | null;
|
|
250
|
+
tuesday_program_id: string | null;
|
|
251
|
+
wednesday_program_id: string | null;
|
|
252
|
+
thursday_program_id: string | null;
|
|
253
|
+
friday_program_id: string | null;
|
|
254
|
+
saturday_program_id: string | null;
|
|
255
|
+
sunday_program_id: string | null;
|
|
182
256
|
}>>>>;
|
|
183
257
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
184
258
|
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -222,6 +296,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
222
296
|
climate_preset_key?: string | undefined;
|
|
223
297
|
can_edit?: boolean | undefined;
|
|
224
298
|
can_delete?: boolean | undefined;
|
|
299
|
+
can_program?: boolean | undefined;
|
|
225
300
|
display_name?: string | undefined;
|
|
226
301
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
227
302
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -236,6 +311,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
236
311
|
climate_preset_key?: string | undefined;
|
|
237
312
|
can_edit?: boolean | undefined;
|
|
238
313
|
can_delete?: boolean | undefined;
|
|
314
|
+
can_program?: boolean | undefined;
|
|
239
315
|
display_name?: string | undefined;
|
|
240
316
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
241
317
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -249,6 +325,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
249
325
|
climate_preset_key: string;
|
|
250
326
|
can_edit: boolean;
|
|
251
327
|
can_delete: boolean;
|
|
328
|
+
can_program: boolean;
|
|
252
329
|
display_name: string;
|
|
253
330
|
manual_override_allowed: boolean;
|
|
254
331
|
name?: string | null | undefined;
|
|
@@ -262,18 +339,39 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
262
339
|
fallback_climate_preset_key?: string | null | undefined;
|
|
263
340
|
active_thermostat_schedule?: {
|
|
264
341
|
climate_preset_key: string;
|
|
265
|
-
thermostat_schedule_id: string;
|
|
266
342
|
device_id: string;
|
|
343
|
+
created_at: string;
|
|
344
|
+
thermostat_schedule_id: string;
|
|
267
345
|
starts_at: string;
|
|
268
346
|
ends_at: string;
|
|
269
|
-
created_at: string;
|
|
270
347
|
errors: {
|
|
271
348
|
message: string;
|
|
272
349
|
error_code: string;
|
|
273
350
|
}[];
|
|
274
351
|
name?: string | undefined;
|
|
275
352
|
max_override_period_minutes?: number | null | undefined;
|
|
276
|
-
|
|
353
|
+
is_override_allowed?: boolean | undefined;
|
|
354
|
+
} | null | undefined;
|
|
355
|
+
thermostat_daily_programs?: {
|
|
356
|
+
thermostat_daily_program_id: string;
|
|
357
|
+
device_id: string;
|
|
358
|
+
periods: {
|
|
359
|
+
climate_preset_key: string;
|
|
360
|
+
starts_at_time: string;
|
|
361
|
+
}[];
|
|
362
|
+
created_at: string;
|
|
363
|
+
name?: string | undefined;
|
|
364
|
+
}[] | null | undefined;
|
|
365
|
+
thermostat_weekly_program?: {
|
|
366
|
+
device_id: string;
|
|
367
|
+
created_at: string;
|
|
368
|
+
monday_program_id: string | null;
|
|
369
|
+
tuesday_program_id: string | null;
|
|
370
|
+
wednesday_program_id: string | null;
|
|
371
|
+
thursday_program_id: string | null;
|
|
372
|
+
friday_program_id: string | null;
|
|
373
|
+
saturday_program_id: string | null;
|
|
374
|
+
sunday_program_id: string | null;
|
|
277
375
|
} | null | undefined;
|
|
278
376
|
min_cooling_set_point_celsius?: number | undefined;
|
|
279
377
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -307,6 +405,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
307
405
|
climate_preset_key?: string | undefined;
|
|
308
406
|
can_edit?: boolean | undefined;
|
|
309
407
|
can_delete?: boolean | undefined;
|
|
408
|
+
can_program?: boolean | undefined;
|
|
310
409
|
display_name?: string | undefined;
|
|
311
410
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
312
411
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -321,6 +420,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
321
420
|
climate_preset_key?: string | undefined;
|
|
322
421
|
can_edit?: boolean | undefined;
|
|
323
422
|
can_delete?: boolean | undefined;
|
|
423
|
+
can_program?: boolean | undefined;
|
|
324
424
|
display_name?: string | undefined;
|
|
325
425
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
326
426
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -334,6 +434,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
334
434
|
climate_preset_key: string;
|
|
335
435
|
can_edit: boolean;
|
|
336
436
|
can_delete: boolean;
|
|
437
|
+
can_program: boolean;
|
|
337
438
|
display_name: string;
|
|
338
439
|
manual_override_allowed: boolean;
|
|
339
440
|
name?: string | null | undefined;
|
|
@@ -347,18 +448,39 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
347
448
|
fallback_climate_preset_key?: string | null | undefined;
|
|
348
449
|
active_thermostat_schedule?: {
|
|
349
450
|
climate_preset_key: string;
|
|
350
|
-
thermostat_schedule_id: string;
|
|
351
451
|
device_id: string;
|
|
452
|
+
created_at: string;
|
|
453
|
+
thermostat_schedule_id: string;
|
|
352
454
|
starts_at: string;
|
|
353
455
|
ends_at: string;
|
|
354
|
-
created_at: string;
|
|
355
456
|
errors: {
|
|
356
457
|
message: string;
|
|
357
458
|
error_code: string;
|
|
358
459
|
}[];
|
|
359
460
|
name?: string | undefined;
|
|
360
461
|
max_override_period_minutes?: number | null | undefined;
|
|
361
|
-
|
|
462
|
+
is_override_allowed?: boolean | undefined;
|
|
463
|
+
} | null | undefined;
|
|
464
|
+
thermostat_daily_programs?: {
|
|
465
|
+
thermostat_daily_program_id: string;
|
|
466
|
+
device_id: string;
|
|
467
|
+
periods: {
|
|
468
|
+
climate_preset_key: string;
|
|
469
|
+
starts_at_time: string;
|
|
470
|
+
}[];
|
|
471
|
+
created_at: string;
|
|
472
|
+
name?: string | undefined;
|
|
473
|
+
}[] | null | undefined;
|
|
474
|
+
thermostat_weekly_program?: {
|
|
475
|
+
device_id: string;
|
|
476
|
+
created_at: string;
|
|
477
|
+
monday_program_id: string | null;
|
|
478
|
+
tuesday_program_id: string | null;
|
|
479
|
+
wednesday_program_id: string | null;
|
|
480
|
+
thursday_program_id: string | null;
|
|
481
|
+
friday_program_id: string | null;
|
|
482
|
+
saturday_program_id: string | null;
|
|
483
|
+
sunday_program_id: string | null;
|
|
362
484
|
} | null | undefined;
|
|
363
485
|
min_cooling_set_point_celsius?: number | undefined;
|
|
364
486
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { climate_preset, climate_setting, fan_mode_setting, hvac_mode_setting, thermostat_schedule, } from '../../thermostats/index.js';
|
|
2
|
+
import { climate_preset, climate_setting, fan_mode_setting, hvac_mode_setting, thermostat_daily_program, thermostat_schedule, thermostat_weekly_program, } from '../../thermostats/index.js';
|
|
3
3
|
export const thermostat_capability_properties = z
|
|
4
4
|
.object({
|
|
5
5
|
temperature_fahrenheit: z.number(),
|
|
@@ -31,6 +31,13 @@ export const thermostat_capability_properties = z
|
|
|
31
31
|
available_climate_presets: z.array(climate_preset),
|
|
32
32
|
fallback_climate_preset_key: z.string().min(1).nullable().default(null),
|
|
33
33
|
active_thermostat_schedule: thermostat_schedule.nullable().default(null),
|
|
34
|
+
thermostat_daily_programs: z
|
|
35
|
+
.array(thermostat_daily_program)
|
|
36
|
+
.nullable()
|
|
37
|
+
.default(null),
|
|
38
|
+
thermostat_weekly_program: thermostat_weekly_program
|
|
39
|
+
.nullable()
|
|
40
|
+
.default(null),
|
|
34
41
|
min_cooling_set_point_celsius: z.number(),
|
|
35
42
|
min_cooling_set_point_fahrenheit: z.number(),
|
|
36
43
|
max_cooling_set_point_celsius: z.number(),
|
|
@@ -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,
|
|
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,wBAAwB,EACxB,mBAAmB,EACnB,yBAAyB,GAC1B,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,yBAAyB,EAAE,CAAC;SACzB,KAAK,CAAC,wBAAwB,CAAC;SAC/B,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;IAChB,yBAAyB,EAAE,yBAAyB;SACjD,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;IAChB,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;IAChD,qBAAqB,EAAE,CAAC;SACrB,MAAM,CAAC;QACN,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC1C,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC7C,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC1C,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC9C,CAAC;SACD,QAAQ,EAAE;CACd,CAAC;KACD,OAAO,EAAE,CAAA"}
|
|
@@ -56,7 +56,7 @@ export type ProviderCategory = keyof typeof PROVIDER_CATEGORY_MAP;
|
|
|
56
56
|
export declare const PROVIDER_CATEGORY_MAP: {
|
|
57
57
|
readonly stable: readonly ["august", "avigilon_alta", "brivo", "schlage", "smartthings", "yale", "nuki", "salto", "controlbyweb", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "four_suites", "lockly", "wyze", "nest", "tedee", "seam_bridge", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "latch", "akiles"];
|
|
58
58
|
readonly consumer_smartlocks: readonly ["akiles", "august", "schlage", "yale", "smartthings", "nuki", "ttlock", "kwikset", "igloohome", "wyze", "lockly", "tedee"];
|
|
59
|
-
readonly thermostats: readonly ["ecobee", "nest"];
|
|
59
|
+
readonly thermostats: readonly ["ecobee", "nest", "sensi", "honeywell_resideo"];
|
|
60
60
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
61
61
|
readonly access_control_systems: readonly ["pti", "visionline", "assa_abloy_credential_service", "latch", "salto_ks", "assa_abloy_vostio", "salto_space", "assa_abloy_vostio"];
|
|
62
62
|
readonly internal_beta: [DeviceProviderName, ...DeviceProviderName[]];
|