@seamapi/types 1.226.0 → 1.228.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 +50 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -224
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +0 -30
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +0 -30
- package/lib/seam/connect/models/devices/device.d.ts +0 -42
- package/lib/seam/connect/models/devices/phone.d.ts +0 -30
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -30
- package/lib/seam/connect/models/thermostats/climate-setting-schedule.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.js +0 -2
- package/lib/seam/connect/models/thermostats/climate-setting.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +69 -60
- package/lib/seam/connect/openapi.js +50 -24
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -86
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-setting.ts +0 -2
- package/src/lib/seam/connect/openapi.ts +50 -24
- package/src/lib/seam/connect/route-types.ts +47 -86
|
@@ -85,8 +85,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
85
85
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
86
86
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
87
87
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
88
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
89
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
90
88
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
91
89
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
92
90
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -94,8 +92,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
94
92
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
95
93
|
manual_override_allowed: z.ZodBoolean;
|
|
96
94
|
}, "strip", z.ZodTypeAny, {
|
|
97
|
-
automatic_heating_enabled: boolean;
|
|
98
|
-
automatic_cooling_enabled: boolean;
|
|
99
95
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
100
96
|
manual_override_allowed: boolean;
|
|
101
97
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -103,8 +99,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
103
99
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
104
100
|
heating_set_point_fahrenheit?: number | undefined;
|
|
105
101
|
}, {
|
|
106
|
-
automatic_heating_enabled: boolean;
|
|
107
|
-
automatic_cooling_enabled: boolean;
|
|
108
102
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
109
103
|
manual_override_allowed: boolean;
|
|
110
104
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -113,8 +107,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
113
107
|
heating_set_point_fahrenheit?: number | undefined;
|
|
114
108
|
}>>;
|
|
115
109
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
116
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
117
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
118
110
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
119
111
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
120
112
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -122,8 +114,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
122
114
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
123
115
|
manual_override_allowed: z.ZodBoolean;
|
|
124
116
|
}, "strip", z.ZodTypeAny, {
|
|
125
|
-
automatic_heating_enabled: boolean;
|
|
126
|
-
automatic_cooling_enabled: boolean;
|
|
127
117
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
128
118
|
manual_override_allowed: boolean;
|
|
129
119
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -131,8 +121,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
131
121
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
132
122
|
heating_set_point_fahrenheit?: number | undefined;
|
|
133
123
|
}, {
|
|
134
|
-
automatic_heating_enabled: boolean;
|
|
135
|
-
automatic_cooling_enabled: boolean;
|
|
136
124
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
137
125
|
manual_override_allowed: boolean;
|
|
138
126
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -151,8 +139,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
151
139
|
created_at: z.ZodString;
|
|
152
140
|
errors: z.ZodAny;
|
|
153
141
|
}, {
|
|
154
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
155
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
156
142
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
157
143
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
158
144
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -168,8 +154,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
168
154
|
schedule_ends_at: string;
|
|
169
155
|
name?: string | undefined;
|
|
170
156
|
errors?: any;
|
|
171
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
172
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
173
157
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
174
158
|
cooling_set_point_celsius?: number | undefined;
|
|
175
159
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -185,8 +169,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
185
169
|
schedule_ends_at: string;
|
|
186
170
|
name?: string | undefined;
|
|
187
171
|
errors?: any;
|
|
188
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
189
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
190
172
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
191
173
|
cooling_set_point_celsius?: number | undefined;
|
|
192
174
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -215,8 +197,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
215
197
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
216
198
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
217
199
|
current_climate_setting?: {
|
|
218
|
-
automatic_heating_enabled: boolean;
|
|
219
|
-
automatic_cooling_enabled: boolean;
|
|
220
200
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
221
201
|
manual_override_allowed: boolean;
|
|
222
202
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -225,8 +205,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
225
205
|
heating_set_point_fahrenheit?: number | undefined;
|
|
226
206
|
} | undefined;
|
|
227
207
|
default_climate_setting?: {
|
|
228
|
-
automatic_heating_enabled: boolean;
|
|
229
|
-
automatic_cooling_enabled: boolean;
|
|
230
208
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
231
209
|
manual_override_allowed: boolean;
|
|
232
210
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -244,8 +222,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
244
222
|
schedule_ends_at: string;
|
|
245
223
|
name?: string | undefined;
|
|
246
224
|
errors?: any;
|
|
247
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
248
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
249
225
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
250
226
|
cooling_set_point_celsius?: number | undefined;
|
|
251
227
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -274,8 +250,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
274
250
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
275
251
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
276
252
|
current_climate_setting?: {
|
|
277
|
-
automatic_heating_enabled: boolean;
|
|
278
|
-
automatic_cooling_enabled: boolean;
|
|
279
253
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
280
254
|
manual_override_allowed: boolean;
|
|
281
255
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -284,8 +258,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
284
258
|
heating_set_point_fahrenheit?: number | undefined;
|
|
285
259
|
} | undefined;
|
|
286
260
|
default_climate_setting?: {
|
|
287
|
-
automatic_heating_enabled: boolean;
|
|
288
|
-
automatic_cooling_enabled: boolean;
|
|
289
261
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
290
262
|
manual_override_allowed: boolean;
|
|
291
263
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -303,8 +275,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
303
275
|
schedule_ends_at: string;
|
|
304
276
|
name?: string | undefined;
|
|
305
277
|
errors?: any;
|
|
306
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
307
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
308
278
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
309
279
|
cooling_set_point_celsius?: number | undefined;
|
|
310
280
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -10,8 +10,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
10
10
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
11
11
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
12
12
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
13
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
14
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
15
13
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
16
14
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
17
15
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19,8 +17,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
19
17
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
20
18
|
manual_override_allowed: z.ZodBoolean;
|
|
21
19
|
}, "strip", z.ZodTypeAny, {
|
|
22
|
-
automatic_heating_enabled: boolean;
|
|
23
|
-
automatic_cooling_enabled: boolean;
|
|
24
20
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
25
21
|
manual_override_allowed: boolean;
|
|
26
22
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -28,8 +24,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
28
24
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
29
25
|
heating_set_point_fahrenheit?: number | undefined;
|
|
30
26
|
}, {
|
|
31
|
-
automatic_heating_enabled: boolean;
|
|
32
|
-
automatic_cooling_enabled: boolean;
|
|
33
27
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
34
28
|
manual_override_allowed: boolean;
|
|
35
29
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -38,8 +32,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
38
32
|
heating_set_point_fahrenheit?: number | undefined;
|
|
39
33
|
}>>;
|
|
40
34
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
41
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
42
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
43
35
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
44
36
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
45
37
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -47,8 +39,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
47
39
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
48
40
|
manual_override_allowed: z.ZodBoolean;
|
|
49
41
|
}, "strip", z.ZodTypeAny, {
|
|
50
|
-
automatic_heating_enabled: boolean;
|
|
51
|
-
automatic_cooling_enabled: boolean;
|
|
52
42
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
53
43
|
manual_override_allowed: boolean;
|
|
54
44
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -56,8 +46,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
56
46
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
57
47
|
heating_set_point_fahrenheit?: number | undefined;
|
|
58
48
|
}, {
|
|
59
|
-
automatic_heating_enabled: boolean;
|
|
60
|
-
automatic_cooling_enabled: boolean;
|
|
61
49
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
62
50
|
manual_override_allowed: boolean;
|
|
63
51
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -76,8 +64,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
76
64
|
created_at: z.ZodString;
|
|
77
65
|
errors: z.ZodAny;
|
|
78
66
|
}, {
|
|
79
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
80
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
81
67
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
82
68
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
83
69
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -93,8 +79,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
93
79
|
schedule_ends_at: string;
|
|
94
80
|
name?: string | undefined;
|
|
95
81
|
errors?: any;
|
|
96
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
97
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
98
82
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
99
83
|
cooling_set_point_celsius?: number | undefined;
|
|
100
84
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -110,8 +94,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
110
94
|
schedule_ends_at: string;
|
|
111
95
|
name?: string | undefined;
|
|
112
96
|
errors?: any;
|
|
113
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
114
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
115
97
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
116
98
|
cooling_set_point_celsius?: number | undefined;
|
|
117
99
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -140,8 +122,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
140
122
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
141
123
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
142
124
|
current_climate_setting?: {
|
|
143
|
-
automatic_heating_enabled: boolean;
|
|
144
|
-
automatic_cooling_enabled: boolean;
|
|
145
125
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
146
126
|
manual_override_allowed: boolean;
|
|
147
127
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -150,8 +130,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
150
130
|
heating_set_point_fahrenheit?: number | undefined;
|
|
151
131
|
} | undefined;
|
|
152
132
|
default_climate_setting?: {
|
|
153
|
-
automatic_heating_enabled: boolean;
|
|
154
|
-
automatic_cooling_enabled: boolean;
|
|
155
133
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
156
134
|
manual_override_allowed: boolean;
|
|
157
135
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -169,8 +147,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
169
147
|
schedule_ends_at: string;
|
|
170
148
|
name?: string | undefined;
|
|
171
149
|
errors?: any;
|
|
172
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
173
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
174
150
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
175
151
|
cooling_set_point_celsius?: number | undefined;
|
|
176
152
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -199,8 +175,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
199
175
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
200
176
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
201
177
|
current_climate_setting?: {
|
|
202
|
-
automatic_heating_enabled: boolean;
|
|
203
|
-
automatic_cooling_enabled: boolean;
|
|
204
178
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
205
179
|
manual_override_allowed: boolean;
|
|
206
180
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -209,8 +183,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
209
183
|
heating_set_point_fahrenheit?: number | undefined;
|
|
210
184
|
} | undefined;
|
|
211
185
|
default_climate_setting?: {
|
|
212
|
-
automatic_heating_enabled: boolean;
|
|
213
|
-
automatic_cooling_enabled: boolean;
|
|
214
186
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
215
187
|
manual_override_allowed: boolean;
|
|
216
188
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -228,8 +200,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
228
200
|
schedule_ends_at: string;
|
|
229
201
|
name?: string | undefined;
|
|
230
202
|
errors?: any;
|
|
231
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
232
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
233
203
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
234
204
|
cooling_set_point_celsius?: number | undefined;
|
|
235
205
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1489,8 +1489,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1489
1489
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1490
1490
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1491
1491
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1492
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1493
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1494
1492
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1495
1493
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1496
1494
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1498,8 +1496,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1498
1496
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1499
1497
|
manual_override_allowed: z.ZodBoolean;
|
|
1500
1498
|
}, "strip", z.ZodTypeAny, {
|
|
1501
|
-
automatic_heating_enabled: boolean;
|
|
1502
|
-
automatic_cooling_enabled: boolean;
|
|
1503
1499
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1504
1500
|
manual_override_allowed: boolean;
|
|
1505
1501
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1507,8 +1503,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1507
1503
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1508
1504
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1509
1505
|
}, {
|
|
1510
|
-
automatic_heating_enabled: boolean;
|
|
1511
|
-
automatic_cooling_enabled: boolean;
|
|
1512
1506
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1513
1507
|
manual_override_allowed: boolean;
|
|
1514
1508
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1517,8 +1511,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1517
1511
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1518
1512
|
}>>;
|
|
1519
1513
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1520
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1521
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1522
1514
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1523
1515
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1524
1516
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1526,8 +1518,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1526
1518
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1527
1519
|
manual_override_allowed: z.ZodBoolean;
|
|
1528
1520
|
}, "strip", z.ZodTypeAny, {
|
|
1529
|
-
automatic_heating_enabled: boolean;
|
|
1530
|
-
automatic_cooling_enabled: boolean;
|
|
1531
1521
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1532
1522
|
manual_override_allowed: boolean;
|
|
1533
1523
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1535,8 +1525,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1535
1525
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1536
1526
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1537
1527
|
}, {
|
|
1538
|
-
automatic_heating_enabled: boolean;
|
|
1539
|
-
automatic_cooling_enabled: boolean;
|
|
1540
1528
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1541
1529
|
manual_override_allowed: boolean;
|
|
1542
1530
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1555,8 +1543,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1555
1543
|
created_at: z.ZodString;
|
|
1556
1544
|
errors: z.ZodAny;
|
|
1557
1545
|
}, {
|
|
1558
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1559
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1560
1546
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1561
1547
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1562
1548
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1572,8 +1558,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1572
1558
|
schedule_ends_at: string;
|
|
1573
1559
|
name?: string | undefined;
|
|
1574
1560
|
errors?: any;
|
|
1575
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1576
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1577
1561
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1578
1562
|
cooling_set_point_celsius?: number | undefined;
|
|
1579
1563
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1589,8 +1573,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1589
1573
|
schedule_ends_at: string;
|
|
1590
1574
|
name?: string | undefined;
|
|
1591
1575
|
errors?: any;
|
|
1592
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1593
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1594
1576
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1595
1577
|
cooling_set_point_celsius?: number | undefined;
|
|
1596
1578
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1619,8 +1601,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1619
1601
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1620
1602
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
1621
1603
|
current_climate_setting?: {
|
|
1622
|
-
automatic_heating_enabled: boolean;
|
|
1623
|
-
automatic_cooling_enabled: boolean;
|
|
1624
1604
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1625
1605
|
manual_override_allowed: boolean;
|
|
1626
1606
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1629,8 +1609,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1629
1609
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1630
1610
|
} | undefined;
|
|
1631
1611
|
default_climate_setting?: {
|
|
1632
|
-
automatic_heating_enabled: boolean;
|
|
1633
|
-
automatic_cooling_enabled: boolean;
|
|
1634
1612
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1635
1613
|
manual_override_allowed: boolean;
|
|
1636
1614
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1648,8 +1626,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1648
1626
|
schedule_ends_at: string;
|
|
1649
1627
|
name?: string | undefined;
|
|
1650
1628
|
errors?: any;
|
|
1651
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1652
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1653
1629
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1654
1630
|
cooling_set_point_celsius?: number | undefined;
|
|
1655
1631
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1678,8 +1654,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1678
1654
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1679
1655
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
1680
1656
|
current_climate_setting?: {
|
|
1681
|
-
automatic_heating_enabled: boolean;
|
|
1682
|
-
automatic_cooling_enabled: boolean;
|
|
1683
1657
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1684
1658
|
manual_override_allowed: boolean;
|
|
1685
1659
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1688,8 +1662,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1688
1662
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1689
1663
|
} | undefined;
|
|
1690
1664
|
default_climate_setting?: {
|
|
1691
|
-
automatic_heating_enabled: boolean;
|
|
1692
|
-
automatic_cooling_enabled: boolean;
|
|
1693
1665
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1694
1666
|
manual_override_allowed: boolean;
|
|
1695
1667
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1707,8 +1679,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1707
1679
|
schedule_ends_at: string;
|
|
1708
1680
|
name?: string | undefined;
|
|
1709
1681
|
errors?: any;
|
|
1710
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1711
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1712
1682
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1713
1683
|
cooling_set_point_celsius?: number | undefined;
|
|
1714
1684
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2082,8 +2052,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2082
2052
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2083
2053
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
2084
2054
|
current_climate_setting?: {
|
|
2085
|
-
automatic_heating_enabled: boolean;
|
|
2086
|
-
automatic_cooling_enabled: boolean;
|
|
2087
2055
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
2088
2056
|
manual_override_allowed: boolean;
|
|
2089
2057
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -2092,8 +2060,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2092
2060
|
heating_set_point_fahrenheit?: number | undefined;
|
|
2093
2061
|
} | undefined;
|
|
2094
2062
|
default_climate_setting?: {
|
|
2095
|
-
automatic_heating_enabled: boolean;
|
|
2096
|
-
automatic_cooling_enabled: boolean;
|
|
2097
2063
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
2098
2064
|
manual_override_allowed: boolean;
|
|
2099
2065
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -2111,8 +2077,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2111
2077
|
schedule_ends_at: string;
|
|
2112
2078
|
name?: string | undefined;
|
|
2113
2079
|
errors?: any;
|
|
2114
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
2115
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
2116
2080
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2117
2081
|
cooling_set_point_celsius?: number | undefined;
|
|
2118
2082
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2434,8 +2398,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2434
2398
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
2435
2399
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
2436
2400
|
current_climate_setting?: {
|
|
2437
|
-
automatic_heating_enabled: boolean;
|
|
2438
|
-
automatic_cooling_enabled: boolean;
|
|
2439
2401
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
2440
2402
|
manual_override_allowed: boolean;
|
|
2441
2403
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -2444,8 +2406,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2444
2406
|
heating_set_point_fahrenheit?: number | undefined;
|
|
2445
2407
|
} | undefined;
|
|
2446
2408
|
default_climate_setting?: {
|
|
2447
|
-
automatic_heating_enabled: boolean;
|
|
2448
|
-
automatic_cooling_enabled: boolean;
|
|
2449
2409
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
2450
2410
|
manual_override_allowed: boolean;
|
|
2451
2411
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -2463,8 +2423,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2463
2423
|
schedule_ends_at: string;
|
|
2464
2424
|
name?: string | undefined;
|
|
2465
2425
|
errors?: any;
|
|
2466
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
2467
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
2468
2426
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
2469
2427
|
cooling_set_point_celsius?: number | undefined;
|
|
2470
2428
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1271,8 +1271,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1271
1271
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1272
1272
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1273
1273
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1274
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1275
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1276
1274
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1277
1275
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1278
1276
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1280,8 +1278,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1280
1278
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1281
1279
|
manual_override_allowed: z.ZodBoolean;
|
|
1282
1280
|
}, "strip", z.ZodTypeAny, {
|
|
1283
|
-
automatic_heating_enabled: boolean;
|
|
1284
|
-
automatic_cooling_enabled: boolean;
|
|
1285
1281
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1286
1282
|
manual_override_allowed: boolean;
|
|
1287
1283
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1289,8 +1285,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1289
1285
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1290
1286
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1291
1287
|
}, {
|
|
1292
|
-
automatic_heating_enabled: boolean;
|
|
1293
|
-
automatic_cooling_enabled: boolean;
|
|
1294
1288
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1295
1289
|
manual_override_allowed: boolean;
|
|
1296
1290
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1299,8 +1293,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1299
1293
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1300
1294
|
}>>;
|
|
1301
1295
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1302
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1303
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1304
1296
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1305
1297
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1306
1298
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1308,8 +1300,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1308
1300
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1309
1301
|
manual_override_allowed: z.ZodBoolean;
|
|
1310
1302
|
}, "strip", z.ZodTypeAny, {
|
|
1311
|
-
automatic_heating_enabled: boolean;
|
|
1312
|
-
automatic_cooling_enabled: boolean;
|
|
1313
1303
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1314
1304
|
manual_override_allowed: boolean;
|
|
1315
1305
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1317,8 +1307,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1317
1307
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1318
1308
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1319
1309
|
}, {
|
|
1320
|
-
automatic_heating_enabled: boolean;
|
|
1321
|
-
automatic_cooling_enabled: boolean;
|
|
1322
1310
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1323
1311
|
manual_override_allowed: boolean;
|
|
1324
1312
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1337,8 +1325,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1337
1325
|
created_at: z.ZodString;
|
|
1338
1326
|
errors: z.ZodAny;
|
|
1339
1327
|
}, {
|
|
1340
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1341
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1342
1328
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1343
1329
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1344
1330
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1354,8 +1340,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1354
1340
|
schedule_ends_at: string;
|
|
1355
1341
|
name?: string | undefined;
|
|
1356
1342
|
errors?: any;
|
|
1357
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1358
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1359
1343
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1360
1344
|
cooling_set_point_celsius?: number | undefined;
|
|
1361
1345
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1371,8 +1355,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1371
1355
|
schedule_ends_at: string;
|
|
1372
1356
|
name?: string | undefined;
|
|
1373
1357
|
errors?: any;
|
|
1374
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1375
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1376
1358
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1377
1359
|
cooling_set_point_celsius?: number | undefined;
|
|
1378
1360
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1401,8 +1383,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1401
1383
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1402
1384
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
1403
1385
|
current_climate_setting?: {
|
|
1404
|
-
automatic_heating_enabled: boolean;
|
|
1405
|
-
automatic_cooling_enabled: boolean;
|
|
1406
1386
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1407
1387
|
manual_override_allowed: boolean;
|
|
1408
1388
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1411,8 +1391,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1411
1391
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1412
1392
|
} | undefined;
|
|
1413
1393
|
default_climate_setting?: {
|
|
1414
|
-
automatic_heating_enabled: boolean;
|
|
1415
|
-
automatic_cooling_enabled: boolean;
|
|
1416
1394
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1417
1395
|
manual_override_allowed: boolean;
|
|
1418
1396
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1430,8 +1408,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1430
1408
|
schedule_ends_at: string;
|
|
1431
1409
|
name?: string | undefined;
|
|
1432
1410
|
errors?: any;
|
|
1433
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1434
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1435
1411
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1436
1412
|
cooling_set_point_celsius?: number | undefined;
|
|
1437
1413
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1460,8 +1436,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1460
1436
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1461
1437
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
1462
1438
|
current_climate_setting?: {
|
|
1463
|
-
automatic_heating_enabled: boolean;
|
|
1464
|
-
automatic_cooling_enabled: boolean;
|
|
1465
1439
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1466
1440
|
manual_override_allowed: boolean;
|
|
1467
1441
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1470,8 +1444,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1470
1444
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1471
1445
|
} | undefined;
|
|
1472
1446
|
default_climate_setting?: {
|
|
1473
|
-
automatic_heating_enabled: boolean;
|
|
1474
|
-
automatic_cooling_enabled: boolean;
|
|
1475
1447
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1476
1448
|
manual_override_allowed: boolean;
|
|
1477
1449
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1489,8 +1461,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1489
1461
|
schedule_ends_at: string;
|
|
1490
1462
|
name?: string | undefined;
|
|
1491
1463
|
errors?: any;
|
|
1492
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1493
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1494
1464
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1495
1465
|
cooling_set_point_celsius?: number | undefined;
|
|
1496
1466
|
heating_set_point_celsius?: number | undefined;
|