@seamapi/types 1.433.0 → 1.435.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 +188 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +882 -28
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +99 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +99 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/models/devices/device.d.ts +145 -16
- package/lib/seam/connect/models/devices/device.js +14 -8
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +107 -8
- package/lib/seam/connect/models/events/devices.d.ts +26 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +13 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +46 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +15 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +49 -4
- package/lib/seam/connect/models/user-identities/user-identity.js +12 -1
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +120 -0
- package/lib/seam/connect/openapi.js +149 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +472 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device.ts +20 -18
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +17 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +19 -1
- package/src/lib/seam/connect/openapi.ts +177 -0
- package/src/lib/seam/connect/route-types.ts +665 -24
|
@@ -101,6 +101,19 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
101
101
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
102
102
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
103
103
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
104
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
105
|
+
climate_ref: z.ZodString;
|
|
106
|
+
is_optimized: z.ZodBoolean;
|
|
107
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
climate_ref: string;
|
|
110
|
+
is_optimized: boolean;
|
|
111
|
+
owner: "user" | "system";
|
|
112
|
+
}, {
|
|
113
|
+
climate_ref: string;
|
|
114
|
+
is_optimized: boolean;
|
|
115
|
+
owner: "user" | "system";
|
|
116
|
+
}>>>;
|
|
104
117
|
}, "strip", z.ZodTypeAny, {
|
|
105
118
|
name?: string | null | undefined;
|
|
106
119
|
climate_preset_key?: string | undefined;
|
|
@@ -116,6 +129,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
116
129
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
117
130
|
heating_set_point_fahrenheit?: number | undefined;
|
|
118
131
|
manual_override_allowed?: boolean | undefined;
|
|
132
|
+
ecobee_metadata?: {
|
|
133
|
+
climate_ref: string;
|
|
134
|
+
is_optimized: boolean;
|
|
135
|
+
owner: "user" | "system";
|
|
136
|
+
} | undefined;
|
|
119
137
|
}, {
|
|
120
138
|
name?: string | null | undefined;
|
|
121
139
|
climate_preset_key?: string | undefined;
|
|
@@ -131,6 +149,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
131
149
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
132
150
|
heating_set_point_fahrenheit?: number | undefined;
|
|
133
151
|
manual_override_allowed?: boolean | undefined;
|
|
152
|
+
ecobee_metadata?: {
|
|
153
|
+
climate_ref: string;
|
|
154
|
+
is_optimized: boolean;
|
|
155
|
+
owner: "user" | "system";
|
|
156
|
+
} | undefined;
|
|
134
157
|
}>>;
|
|
135
158
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
136
159
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -147,6 +170,19 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
147
170
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
148
171
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
149
172
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
173
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
174
|
+
climate_ref: z.ZodString;
|
|
175
|
+
is_optimized: z.ZodBoolean;
|
|
176
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
177
|
+
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
climate_ref: string;
|
|
179
|
+
is_optimized: boolean;
|
|
180
|
+
owner: "user" | "system";
|
|
181
|
+
}, {
|
|
182
|
+
climate_ref: string;
|
|
183
|
+
is_optimized: boolean;
|
|
184
|
+
owner: "user" | "system";
|
|
185
|
+
}>>>;
|
|
150
186
|
}, "strip", z.ZodTypeAny, {
|
|
151
187
|
name?: string | null | undefined;
|
|
152
188
|
climate_preset_key?: string | undefined;
|
|
@@ -162,6 +198,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
162
198
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
163
199
|
heating_set_point_fahrenheit?: number | undefined;
|
|
164
200
|
manual_override_allowed?: boolean | undefined;
|
|
201
|
+
ecobee_metadata?: {
|
|
202
|
+
climate_ref: string;
|
|
203
|
+
is_optimized: boolean;
|
|
204
|
+
owner: "user" | "system";
|
|
205
|
+
} | undefined;
|
|
165
206
|
}, {
|
|
166
207
|
name?: string | null | undefined;
|
|
167
208
|
climate_preset_key?: string | undefined;
|
|
@@ -177,6 +218,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
177
218
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
178
219
|
heating_set_point_fahrenheit?: number | undefined;
|
|
179
220
|
manual_override_allowed?: boolean | undefined;
|
|
221
|
+
ecobee_metadata?: {
|
|
222
|
+
climate_ref: string;
|
|
223
|
+
is_optimized: boolean;
|
|
224
|
+
owner: "user" | "system";
|
|
225
|
+
} | undefined;
|
|
180
226
|
}>>;
|
|
181
227
|
available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
182
228
|
climate_preset_key: z.ZodString;
|
|
@@ -193,6 +239,19 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
193
239
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
194
240
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
195
241
|
manual_override_allowed: z.ZodBoolean;
|
|
242
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
243
|
+
climate_ref: z.ZodString;
|
|
244
|
+
is_optimized: z.ZodBoolean;
|
|
245
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
246
|
+
}, "strip", z.ZodTypeAny, {
|
|
247
|
+
climate_ref: string;
|
|
248
|
+
is_optimized: boolean;
|
|
249
|
+
owner: "user" | "system";
|
|
250
|
+
}, {
|
|
251
|
+
climate_ref: string;
|
|
252
|
+
is_optimized: boolean;
|
|
253
|
+
owner: "user" | "system";
|
|
254
|
+
}>>;
|
|
196
255
|
}, "strip", z.ZodTypeAny, {
|
|
197
256
|
climate_preset_key: string;
|
|
198
257
|
can_edit: boolean;
|
|
@@ -208,6 +267,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
208
267
|
heating_set_point_celsius?: number | undefined;
|
|
209
268
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
210
269
|
heating_set_point_fahrenheit?: number | undefined;
|
|
270
|
+
ecobee_metadata?: {
|
|
271
|
+
climate_ref: string;
|
|
272
|
+
is_optimized: boolean;
|
|
273
|
+
owner: "user" | "system";
|
|
274
|
+
} | undefined;
|
|
211
275
|
}, {
|
|
212
276
|
climate_preset_key: string;
|
|
213
277
|
can_edit: boolean;
|
|
@@ -223,6 +287,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
223
287
|
heating_set_point_celsius?: number | undefined;
|
|
224
288
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
225
289
|
heating_set_point_fahrenheit?: number | undefined;
|
|
290
|
+
ecobee_metadata?: {
|
|
291
|
+
climate_ref: string;
|
|
292
|
+
is_optimized: boolean;
|
|
293
|
+
owner: "user" | "system";
|
|
294
|
+
} | undefined;
|
|
226
295
|
}>, "many">>;
|
|
227
296
|
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
228
297
|
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -396,6 +465,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
396
465
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
397
466
|
heating_set_point_fahrenheit?: number | undefined;
|
|
398
467
|
manual_override_allowed?: boolean | undefined;
|
|
468
|
+
ecobee_metadata?: {
|
|
469
|
+
climate_ref: string;
|
|
470
|
+
is_optimized: boolean;
|
|
471
|
+
owner: "user" | "system";
|
|
472
|
+
} | undefined;
|
|
399
473
|
} | undefined;
|
|
400
474
|
default_climate_setting?: {
|
|
401
475
|
name?: string | null | undefined;
|
|
@@ -412,6 +486,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
412
486
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
413
487
|
heating_set_point_fahrenheit?: number | undefined;
|
|
414
488
|
manual_override_allowed?: boolean | undefined;
|
|
489
|
+
ecobee_metadata?: {
|
|
490
|
+
climate_ref: string;
|
|
491
|
+
is_optimized: boolean;
|
|
492
|
+
owner: "user" | "system";
|
|
493
|
+
} | undefined;
|
|
415
494
|
} | undefined;
|
|
416
495
|
available_climate_presets?: {
|
|
417
496
|
climate_preset_key: string;
|
|
@@ -428,6 +507,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
428
507
|
heating_set_point_celsius?: number | undefined;
|
|
429
508
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
430
509
|
heating_set_point_fahrenheit?: number | undefined;
|
|
510
|
+
ecobee_metadata?: {
|
|
511
|
+
climate_ref: string;
|
|
512
|
+
is_optimized: boolean;
|
|
513
|
+
owner: "user" | "system";
|
|
514
|
+
} | undefined;
|
|
431
515
|
}[] | undefined;
|
|
432
516
|
fallback_climate_preset_key?: string | null | undefined;
|
|
433
517
|
active_thermostat_schedule?: {
|
|
@@ -511,6 +595,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
511
595
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
512
596
|
heating_set_point_fahrenheit?: number | undefined;
|
|
513
597
|
manual_override_allowed?: boolean | undefined;
|
|
598
|
+
ecobee_metadata?: {
|
|
599
|
+
climate_ref: string;
|
|
600
|
+
is_optimized: boolean;
|
|
601
|
+
owner: "user" | "system";
|
|
602
|
+
} | undefined;
|
|
514
603
|
} | undefined;
|
|
515
604
|
default_climate_setting?: {
|
|
516
605
|
name?: string | null | undefined;
|
|
@@ -527,6 +616,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
527
616
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
528
617
|
heating_set_point_fahrenheit?: number | undefined;
|
|
529
618
|
manual_override_allowed?: boolean | undefined;
|
|
619
|
+
ecobee_metadata?: {
|
|
620
|
+
climate_ref: string;
|
|
621
|
+
is_optimized: boolean;
|
|
622
|
+
owner: "user" | "system";
|
|
623
|
+
} | undefined;
|
|
530
624
|
} | undefined;
|
|
531
625
|
available_climate_presets?: {
|
|
532
626
|
climate_preset_key: string;
|
|
@@ -543,6 +637,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
543
637
|
heating_set_point_celsius?: number | undefined;
|
|
544
638
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
545
639
|
heating_set_point_fahrenheit?: number | undefined;
|
|
640
|
+
ecobee_metadata?: {
|
|
641
|
+
climate_ref: string;
|
|
642
|
+
is_optimized: boolean;
|
|
643
|
+
owner: "user" | "system";
|
|
644
|
+
} | undefined;
|
|
546
645
|
}[] | undefined;
|
|
547
646
|
fallback_climate_preset_key?: string | null | undefined;
|
|
548
647
|
active_thermostat_schedule?: {
|
|
@@ -26,6 +26,19 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
26
26
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
27
27
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
28
28
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
29
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
30
|
+
climate_ref: z.ZodString;
|
|
31
|
+
is_optimized: z.ZodBoolean;
|
|
32
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
33
|
+
}, "strip", z.ZodTypeAny, {
|
|
34
|
+
climate_ref: string;
|
|
35
|
+
is_optimized: boolean;
|
|
36
|
+
owner: "user" | "system";
|
|
37
|
+
}, {
|
|
38
|
+
climate_ref: string;
|
|
39
|
+
is_optimized: boolean;
|
|
40
|
+
owner: "user" | "system";
|
|
41
|
+
}>>>;
|
|
29
42
|
}, "strip", z.ZodTypeAny, {
|
|
30
43
|
name?: string | null | undefined;
|
|
31
44
|
climate_preset_key?: string | undefined;
|
|
@@ -41,6 +54,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
41
54
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
42
55
|
heating_set_point_fahrenheit?: number | undefined;
|
|
43
56
|
manual_override_allowed?: boolean | undefined;
|
|
57
|
+
ecobee_metadata?: {
|
|
58
|
+
climate_ref: string;
|
|
59
|
+
is_optimized: boolean;
|
|
60
|
+
owner: "user" | "system";
|
|
61
|
+
} | undefined;
|
|
44
62
|
}, {
|
|
45
63
|
name?: string | null | undefined;
|
|
46
64
|
climate_preset_key?: string | undefined;
|
|
@@ -56,6 +74,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
56
74
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
57
75
|
heating_set_point_fahrenheit?: number | undefined;
|
|
58
76
|
manual_override_allowed?: boolean | undefined;
|
|
77
|
+
ecobee_metadata?: {
|
|
78
|
+
climate_ref: string;
|
|
79
|
+
is_optimized: boolean;
|
|
80
|
+
owner: "user" | "system";
|
|
81
|
+
} | undefined;
|
|
59
82
|
}>>;
|
|
60
83
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
61
84
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -72,6 +95,19 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
72
95
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
73
96
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
74
97
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
98
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
99
|
+
climate_ref: z.ZodString;
|
|
100
|
+
is_optimized: z.ZodBoolean;
|
|
101
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
102
|
+
}, "strip", z.ZodTypeAny, {
|
|
103
|
+
climate_ref: string;
|
|
104
|
+
is_optimized: boolean;
|
|
105
|
+
owner: "user" | "system";
|
|
106
|
+
}, {
|
|
107
|
+
climate_ref: string;
|
|
108
|
+
is_optimized: boolean;
|
|
109
|
+
owner: "user" | "system";
|
|
110
|
+
}>>>;
|
|
75
111
|
}, "strip", z.ZodTypeAny, {
|
|
76
112
|
name?: string | null | undefined;
|
|
77
113
|
climate_preset_key?: string | undefined;
|
|
@@ -87,6 +123,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
87
123
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
88
124
|
heating_set_point_fahrenheit?: number | undefined;
|
|
89
125
|
manual_override_allowed?: boolean | undefined;
|
|
126
|
+
ecobee_metadata?: {
|
|
127
|
+
climate_ref: string;
|
|
128
|
+
is_optimized: boolean;
|
|
129
|
+
owner: "user" | "system";
|
|
130
|
+
} | undefined;
|
|
90
131
|
}, {
|
|
91
132
|
name?: string | null | undefined;
|
|
92
133
|
climate_preset_key?: string | undefined;
|
|
@@ -102,6 +143,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
102
143
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
103
144
|
heating_set_point_fahrenheit?: number | undefined;
|
|
104
145
|
manual_override_allowed?: boolean | undefined;
|
|
146
|
+
ecobee_metadata?: {
|
|
147
|
+
climate_ref: string;
|
|
148
|
+
is_optimized: boolean;
|
|
149
|
+
owner: "user" | "system";
|
|
150
|
+
} | undefined;
|
|
105
151
|
}>>;
|
|
106
152
|
available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
107
153
|
climate_preset_key: z.ZodString;
|
|
@@ -118,6 +164,19 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
118
164
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
119
165
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
120
166
|
manual_override_allowed: z.ZodBoolean;
|
|
167
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
168
|
+
climate_ref: z.ZodString;
|
|
169
|
+
is_optimized: z.ZodBoolean;
|
|
170
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
171
|
+
}, "strip", z.ZodTypeAny, {
|
|
172
|
+
climate_ref: string;
|
|
173
|
+
is_optimized: boolean;
|
|
174
|
+
owner: "user" | "system";
|
|
175
|
+
}, {
|
|
176
|
+
climate_ref: string;
|
|
177
|
+
is_optimized: boolean;
|
|
178
|
+
owner: "user" | "system";
|
|
179
|
+
}>>;
|
|
121
180
|
}, "strip", z.ZodTypeAny, {
|
|
122
181
|
climate_preset_key: string;
|
|
123
182
|
can_edit: boolean;
|
|
@@ -133,6 +192,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
133
192
|
heating_set_point_celsius?: number | undefined;
|
|
134
193
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
135
194
|
heating_set_point_fahrenheit?: number | undefined;
|
|
195
|
+
ecobee_metadata?: {
|
|
196
|
+
climate_ref: string;
|
|
197
|
+
is_optimized: boolean;
|
|
198
|
+
owner: "user" | "system";
|
|
199
|
+
} | undefined;
|
|
136
200
|
}, {
|
|
137
201
|
climate_preset_key: string;
|
|
138
202
|
can_edit: boolean;
|
|
@@ -148,6 +212,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
148
212
|
heating_set_point_celsius?: number | undefined;
|
|
149
213
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
150
214
|
heating_set_point_fahrenheit?: number | undefined;
|
|
215
|
+
ecobee_metadata?: {
|
|
216
|
+
climate_ref: string;
|
|
217
|
+
is_optimized: boolean;
|
|
218
|
+
owner: "user" | "system";
|
|
219
|
+
} | undefined;
|
|
151
220
|
}>, "many">>;
|
|
152
221
|
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
153
222
|
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -321,6 +390,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
321
390
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
322
391
|
heating_set_point_fahrenheit?: number | undefined;
|
|
323
392
|
manual_override_allowed?: boolean | undefined;
|
|
393
|
+
ecobee_metadata?: {
|
|
394
|
+
climate_ref: string;
|
|
395
|
+
is_optimized: boolean;
|
|
396
|
+
owner: "user" | "system";
|
|
397
|
+
} | undefined;
|
|
324
398
|
} | undefined;
|
|
325
399
|
default_climate_setting?: {
|
|
326
400
|
name?: string | null | undefined;
|
|
@@ -337,6 +411,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
337
411
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
338
412
|
heating_set_point_fahrenheit?: number | undefined;
|
|
339
413
|
manual_override_allowed?: boolean | undefined;
|
|
414
|
+
ecobee_metadata?: {
|
|
415
|
+
climate_ref: string;
|
|
416
|
+
is_optimized: boolean;
|
|
417
|
+
owner: "user" | "system";
|
|
418
|
+
} | undefined;
|
|
340
419
|
} | undefined;
|
|
341
420
|
available_climate_presets?: {
|
|
342
421
|
climate_preset_key: string;
|
|
@@ -353,6 +432,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
353
432
|
heating_set_point_celsius?: number | undefined;
|
|
354
433
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
355
434
|
heating_set_point_fahrenheit?: number | undefined;
|
|
435
|
+
ecobee_metadata?: {
|
|
436
|
+
climate_ref: string;
|
|
437
|
+
is_optimized: boolean;
|
|
438
|
+
owner: "user" | "system";
|
|
439
|
+
} | undefined;
|
|
356
440
|
}[] | undefined;
|
|
357
441
|
fallback_climate_preset_key?: string | null | undefined;
|
|
358
442
|
active_thermostat_schedule?: {
|
|
@@ -436,6 +520,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
436
520
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
437
521
|
heating_set_point_fahrenheit?: number | undefined;
|
|
438
522
|
manual_override_allowed?: boolean | undefined;
|
|
523
|
+
ecobee_metadata?: {
|
|
524
|
+
climate_ref: string;
|
|
525
|
+
is_optimized: boolean;
|
|
526
|
+
owner: "user" | "system";
|
|
527
|
+
} | undefined;
|
|
439
528
|
} | undefined;
|
|
440
529
|
default_climate_setting?: {
|
|
441
530
|
name?: string | null | undefined;
|
|
@@ -452,6 +541,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
452
541
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
453
542
|
heating_set_point_fahrenheit?: number | undefined;
|
|
454
543
|
manual_override_allowed?: boolean | undefined;
|
|
544
|
+
ecobee_metadata?: {
|
|
545
|
+
climate_ref: string;
|
|
546
|
+
is_optimized: boolean;
|
|
547
|
+
owner: "user" | "system";
|
|
548
|
+
} | undefined;
|
|
455
549
|
} | undefined;
|
|
456
550
|
available_climate_presets?: {
|
|
457
551
|
climate_preset_key: string;
|
|
@@ -468,6 +562,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
468
562
|
heating_set_point_celsius?: number | undefined;
|
|
469
563
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
470
564
|
heating_set_point_fahrenheit?: number | undefined;
|
|
565
|
+
ecobee_metadata?: {
|
|
566
|
+
climate_ref: string;
|
|
567
|
+
is_optimized: boolean;
|
|
568
|
+
owner: "user" | "system";
|
|
569
|
+
} | undefined;
|
|
471
570
|
}[] | undefined;
|
|
472
571
|
fallback_climate_preset_key?: string | null | undefined;
|
|
473
572
|
active_thermostat_schedule?: {
|
|
@@ -781,6 +781,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
781
781
|
product_type: string;
|
|
782
782
|
}>>;
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
|
+
ecobee_metadata?: {
|
|
785
|
+
device_name: string;
|
|
786
|
+
ecobee_device_id: string;
|
|
787
|
+
} | undefined;
|
|
784
788
|
salto_ks_metadata?: {
|
|
785
789
|
lock_type: string;
|
|
786
790
|
lock_id: string;
|
|
@@ -938,10 +942,6 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
938
942
|
device_custom_name: string;
|
|
939
943
|
display_name?: string | undefined;
|
|
940
944
|
} | undefined;
|
|
941
|
-
ecobee_metadata?: {
|
|
942
|
-
device_name: string;
|
|
943
|
-
ecobee_device_id: string;
|
|
944
|
-
} | undefined;
|
|
945
945
|
honeywell_resideo_metadata?: {
|
|
946
946
|
device_name: string;
|
|
947
947
|
honeywell_resideo_device_id: string;
|
|
@@ -1013,6 +1013,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1013
1013
|
product_type: string;
|
|
1014
1014
|
} | undefined;
|
|
1015
1015
|
}, {
|
|
1016
|
+
ecobee_metadata?: {
|
|
1017
|
+
device_name: string;
|
|
1018
|
+
ecobee_device_id: string;
|
|
1019
|
+
} | undefined;
|
|
1016
1020
|
salto_ks_metadata?: {
|
|
1017
1021
|
lock_type: string;
|
|
1018
1022
|
lock_id: string;
|
|
@@ -1170,10 +1174,6 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1170
1174
|
device_custom_name: string;
|
|
1171
1175
|
display_name?: string | undefined;
|
|
1172
1176
|
} | undefined;
|
|
1173
|
-
ecobee_metadata?: {
|
|
1174
|
-
device_name: string;
|
|
1175
|
-
ecobee_device_id: string;
|
|
1176
|
-
} | undefined;
|
|
1177
1177
|
honeywell_resideo_metadata?: {
|
|
1178
1178
|
device_name: string;
|
|
1179
1179
|
honeywell_resideo_device_id: string;
|