@seamapi/types 0.31.0 → 1.1.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.
@@ -74,7 +74,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
74
74
  default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
75
75
  automatic_heating_enabled: z.ZodBoolean;
76
76
  automatic_cooling_enabled: z.ZodBoolean;
77
- hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
77
+ hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
78
78
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
79
79
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
80
80
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -83,7 +83,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
83
83
  }, "strip", z.ZodTypeAny, {
84
84
  automatic_heating_enabled: boolean;
85
85
  automatic_cooling_enabled: boolean;
86
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
86
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
87
87
  manual_override_allowed: boolean;
88
88
  cooling_set_point_celsius?: number | undefined;
89
89
  heating_set_point_celsius?: number | undefined;
@@ -92,7 +92,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
92
92
  }, {
93
93
  automatic_heating_enabled: boolean;
94
94
  automatic_cooling_enabled: boolean;
95
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
95
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
96
96
  manual_override_allowed: boolean;
97
97
  cooling_set_point_celsius?: number | undefined;
98
98
  heating_set_point_celsius?: number | undefined;
@@ -104,7 +104,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
104
104
  relative_humidity: z.ZodOptional<z.ZodNumber>;
105
105
  can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
106
106
  can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
107
- available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
107
+ available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
108
108
  is_heating: z.ZodOptional<z.ZodBoolean>;
109
109
  is_cooling: z.ZodOptional<z.ZodBoolean>;
110
110
  is_fan_running: z.ZodOptional<z.ZodBoolean>;
@@ -112,7 +112,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
112
112
  current_climate_setting: z.ZodOptional<z.ZodObject<{
113
113
  automatic_heating_enabled: z.ZodBoolean;
114
114
  automatic_cooling_enabled: z.ZodBoolean;
115
- hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
115
+ hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
116
116
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
117
117
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
118
118
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -121,7 +121,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
121
121
  }, "strip", z.ZodTypeAny, {
122
122
  automatic_heating_enabled: boolean;
123
123
  automatic_cooling_enabled: boolean;
124
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
124
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
125
125
  manual_override_allowed: boolean;
126
126
  cooling_set_point_celsius?: number | undefined;
127
127
  heating_set_point_celsius?: number | undefined;
@@ -130,7 +130,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
130
130
  }, {
131
131
  automatic_heating_enabled: boolean;
132
132
  automatic_cooling_enabled: boolean;
133
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
133
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
134
134
  manual_override_allowed: boolean;
135
135
  cooling_set_point_celsius?: number | undefined;
136
136
  heating_set_point_celsius?: number | undefined;
@@ -148,7 +148,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
148
148
  schedule_type: z.ZodLiteral<"time_bound">;
149
149
  automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
150
150
  automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
151
- hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
151
+ hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
152
152
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
153
153
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
154
154
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -164,7 +164,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
164
164
  name?: string | undefined;
165
165
  automatic_heating_enabled?: boolean | undefined;
166
166
  automatic_cooling_enabled?: boolean | undefined;
167
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
167
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
168
168
  cooling_set_point_celsius?: number | undefined;
169
169
  heating_set_point_celsius?: number | undefined;
170
170
  cooling_set_point_fahrenheit?: number | undefined;
@@ -180,7 +180,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
180
180
  name?: string | undefined;
181
181
  automatic_heating_enabled?: boolean | undefined;
182
182
  automatic_cooling_enabled?: boolean | undefined;
183
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
183
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
184
184
  cooling_set_point_celsius?: number | undefined;
185
185
  heating_set_point_celsius?: number | undefined;
186
186
  cooling_set_point_fahrenheit?: number | undefined;
@@ -203,7 +203,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
203
203
  default_climate_setting?: {
204
204
  automatic_heating_enabled: boolean;
205
205
  automatic_cooling_enabled: boolean;
206
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
206
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
207
207
  manual_override_allowed: boolean;
208
208
  cooling_set_point_celsius?: number | undefined;
209
209
  heating_set_point_celsius?: number | undefined;
@@ -215,7 +215,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
215
215
  relative_humidity?: number | undefined;
216
216
  can_enable_automatic_heating?: boolean | undefined;
217
217
  can_enable_automatic_cooling?: boolean | undefined;
218
- available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
218
+ available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
219
219
  is_heating?: boolean | undefined;
220
220
  is_cooling?: boolean | undefined;
221
221
  is_fan_running?: boolean | undefined;
@@ -223,7 +223,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
223
223
  current_climate_setting?: {
224
224
  automatic_heating_enabled: boolean;
225
225
  automatic_cooling_enabled: boolean;
226
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
226
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
227
227
  manual_override_allowed: boolean;
228
228
  cooling_set_point_celsius?: number | undefined;
229
229
  heating_set_point_celsius?: number | undefined;
@@ -241,7 +241,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
241
241
  name?: string | undefined;
242
242
  automatic_heating_enabled?: boolean | undefined;
243
243
  automatic_cooling_enabled?: boolean | undefined;
244
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
244
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
245
245
  cooling_set_point_celsius?: number | undefined;
246
246
  heating_set_point_celsius?: number | undefined;
247
247
  cooling_set_point_fahrenheit?: number | undefined;
@@ -264,7 +264,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
264
264
  default_climate_setting?: {
265
265
  automatic_heating_enabled: boolean;
266
266
  automatic_cooling_enabled: boolean;
267
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
267
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
268
268
  manual_override_allowed: boolean;
269
269
  cooling_set_point_celsius?: number | undefined;
270
270
  heating_set_point_celsius?: number | undefined;
@@ -276,7 +276,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
276
276
  relative_humidity?: number | undefined;
277
277
  can_enable_automatic_heating?: boolean | undefined;
278
278
  can_enable_automatic_cooling?: boolean | undefined;
279
- available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
279
+ available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
280
280
  is_heating?: boolean | undefined;
281
281
  is_cooling?: boolean | undefined;
282
282
  is_fan_running?: boolean | undefined;
@@ -284,7 +284,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
284
284
  current_climate_setting?: {
285
285
  automatic_heating_enabled: boolean;
286
286
  automatic_cooling_enabled: boolean;
287
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
287
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
288
288
  manual_override_allowed: boolean;
289
289
  cooling_set_point_celsius?: number | undefined;
290
290
  heating_set_point_celsius?: number | undefined;
@@ -302,7 +302,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
302
302
  name?: string | undefined;
303
303
  automatic_heating_enabled?: boolean | undefined;
304
304
  automatic_cooling_enabled?: boolean | undefined;
305
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
305
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
306
306
  cooling_set_point_celsius?: number | undefined;
307
307
  heating_set_point_celsius?: number | undefined;
308
308
  cooling_set_point_fahrenheit?: number | undefined;
@@ -325,7 +325,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
325
325
  default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
326
326
  automatic_heating_enabled: z.ZodBoolean;
327
327
  automatic_cooling_enabled: z.ZodBoolean;
328
- hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
328
+ hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
329
329
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
330
330
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
331
331
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -334,7 +334,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
334
334
  }, "strip", z.ZodTypeAny, {
335
335
  automatic_heating_enabled: boolean;
336
336
  automatic_cooling_enabled: boolean;
337
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
337
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
338
338
  manual_override_allowed: boolean;
339
339
  cooling_set_point_celsius?: number | undefined;
340
340
  heating_set_point_celsius?: number | undefined;
@@ -343,7 +343,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
343
343
  }, {
344
344
  automatic_heating_enabled: boolean;
345
345
  automatic_cooling_enabled: boolean;
346
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
346
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
347
347
  manual_override_allowed: boolean;
348
348
  cooling_set_point_celsius?: number | undefined;
349
349
  heating_set_point_celsius?: number | undefined;
@@ -355,7 +355,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
355
355
  relative_humidity: z.ZodOptional<z.ZodNumber>;
356
356
  can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
357
357
  can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
358
- available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
358
+ available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
359
359
  is_cooling_available: z.ZodOptional<z.ZodLiteral<false>>;
360
360
  is_heating: z.ZodOptional<z.ZodBoolean>;
361
361
  is_cooling: z.ZodOptional<z.ZodBoolean>;
@@ -364,7 +364,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
364
364
  current_climate_setting: z.ZodOptional<z.ZodObject<{
365
365
  automatic_heating_enabled: z.ZodBoolean;
366
366
  automatic_cooling_enabled: z.ZodBoolean;
367
- hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
367
+ hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
368
368
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
369
369
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
370
370
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -373,7 +373,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
373
373
  }, "strip", z.ZodTypeAny, {
374
374
  automatic_heating_enabled: boolean;
375
375
  automatic_cooling_enabled: boolean;
376
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
376
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
377
377
  manual_override_allowed: boolean;
378
378
  cooling_set_point_celsius?: number | undefined;
379
379
  heating_set_point_celsius?: number | undefined;
@@ -382,7 +382,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
382
382
  }, {
383
383
  automatic_heating_enabled: boolean;
384
384
  automatic_cooling_enabled: boolean;
385
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
385
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
386
386
  manual_override_allowed: boolean;
387
387
  cooling_set_point_celsius?: number | undefined;
388
388
  heating_set_point_celsius?: number | undefined;
@@ -400,7 +400,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
400
400
  schedule_type: z.ZodLiteral<"time_bound">;
401
401
  automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
402
402
  automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
403
- hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
403
+ hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
404
404
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
405
405
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
406
406
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -416,7 +416,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
416
416
  name?: string | undefined;
417
417
  automatic_heating_enabled?: boolean | undefined;
418
418
  automatic_cooling_enabled?: boolean | undefined;
419
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
419
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
420
420
  cooling_set_point_celsius?: number | undefined;
421
421
  heating_set_point_celsius?: number | undefined;
422
422
  cooling_set_point_fahrenheit?: number | undefined;
@@ -432,7 +432,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
432
432
  name?: string | undefined;
433
433
  automatic_heating_enabled?: boolean | undefined;
434
434
  automatic_cooling_enabled?: boolean | undefined;
435
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
435
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
436
436
  cooling_set_point_celsius?: number | undefined;
437
437
  heating_set_point_celsius?: number | undefined;
438
438
  cooling_set_point_fahrenheit?: number | undefined;
@@ -448,7 +448,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
448
448
  default_climate_setting?: {
449
449
  automatic_heating_enabled: boolean;
450
450
  automatic_cooling_enabled: boolean;
451
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
451
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
452
452
  manual_override_allowed: boolean;
453
453
  cooling_set_point_celsius?: number | undefined;
454
454
  heating_set_point_celsius?: number | undefined;
@@ -460,7 +460,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
460
460
  relative_humidity?: number | undefined;
461
461
  can_enable_automatic_heating?: boolean | undefined;
462
462
  can_enable_automatic_cooling?: boolean | undefined;
463
- available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
463
+ available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
464
464
  is_cooling_available?: false | undefined;
465
465
  is_heating?: boolean | undefined;
466
466
  is_cooling?: boolean | undefined;
@@ -469,7 +469,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
469
469
  current_climate_setting?: {
470
470
  automatic_heating_enabled: boolean;
471
471
  automatic_cooling_enabled: boolean;
472
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
472
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
473
473
  manual_override_allowed: boolean;
474
474
  cooling_set_point_celsius?: number | undefined;
475
475
  heating_set_point_celsius?: number | undefined;
@@ -487,7 +487,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
487
487
  name?: string | undefined;
488
488
  automatic_heating_enabled?: boolean | undefined;
489
489
  automatic_cooling_enabled?: boolean | undefined;
490
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
490
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
491
491
  cooling_set_point_celsius?: number | undefined;
492
492
  heating_set_point_celsius?: number | undefined;
493
493
  cooling_set_point_fahrenheit?: number | undefined;
@@ -503,7 +503,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
503
503
  default_climate_setting?: {
504
504
  automatic_heating_enabled: boolean;
505
505
  automatic_cooling_enabled: boolean;
506
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
506
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
507
507
  manual_override_allowed: boolean;
508
508
  cooling_set_point_celsius?: number | undefined;
509
509
  heating_set_point_celsius?: number | undefined;
@@ -515,7 +515,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
515
515
  relative_humidity?: number | undefined;
516
516
  can_enable_automatic_heating?: boolean | undefined;
517
517
  can_enable_automatic_cooling?: boolean | undefined;
518
- available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
518
+ available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
519
519
  is_cooling_available?: false | undefined;
520
520
  is_heating?: boolean | undefined;
521
521
  is_cooling?: boolean | undefined;
@@ -524,7 +524,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
524
524
  current_climate_setting?: {
525
525
  automatic_heating_enabled: boolean;
526
526
  automatic_cooling_enabled: boolean;
527
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
527
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
528
528
  manual_override_allowed: boolean;
529
529
  cooling_set_point_celsius?: number | undefined;
530
530
  heating_set_point_celsius?: number | undefined;
@@ -542,7 +542,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
542
542
  name?: string | undefined;
543
543
  automatic_heating_enabled?: boolean | undefined;
544
544
  automatic_cooling_enabled?: boolean | undefined;
545
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
545
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
546
546
  cooling_set_point_celsius?: number | undefined;
547
547
  heating_set_point_celsius?: number | undefined;
548
548
  cooling_set_point_fahrenheit?: number | undefined;
@@ -558,7 +558,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
558
558
  default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
559
559
  automatic_heating_enabled: z.ZodBoolean;
560
560
  automatic_cooling_enabled: z.ZodBoolean;
561
- hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
561
+ hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
562
562
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
563
563
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
564
564
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -567,7 +567,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
567
567
  }, "strip", z.ZodTypeAny, {
568
568
  automatic_heating_enabled: boolean;
569
569
  automatic_cooling_enabled: boolean;
570
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
570
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
571
571
  manual_override_allowed: boolean;
572
572
  cooling_set_point_celsius?: number | undefined;
573
573
  heating_set_point_celsius?: number | undefined;
@@ -576,7 +576,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
576
576
  }, {
577
577
  automatic_heating_enabled: boolean;
578
578
  automatic_cooling_enabled: boolean;
579
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
579
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
580
580
  manual_override_allowed: boolean;
581
581
  cooling_set_point_celsius?: number | undefined;
582
582
  heating_set_point_celsius?: number | undefined;
@@ -588,7 +588,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
588
588
  relative_humidity: z.ZodOptional<z.ZodNumber>;
589
589
  can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
590
590
  can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
591
- available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heatcool"]>, "many">>;
591
+ available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
592
592
  is_heating_available: z.ZodOptional<z.ZodLiteral<false>>;
593
593
  is_heating: z.ZodOptional<z.ZodBoolean>;
594
594
  is_cooling: z.ZodOptional<z.ZodBoolean>;
@@ -597,7 +597,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
597
597
  current_climate_setting: z.ZodOptional<z.ZodObject<{
598
598
  automatic_heating_enabled: z.ZodBoolean;
599
599
  automatic_cooling_enabled: z.ZodBoolean;
600
- hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
600
+ hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
601
601
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
602
602
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
603
603
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -606,7 +606,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
606
606
  }, "strip", z.ZodTypeAny, {
607
607
  automatic_heating_enabled: boolean;
608
608
  automatic_cooling_enabled: boolean;
609
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
609
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
610
610
  manual_override_allowed: boolean;
611
611
  cooling_set_point_celsius?: number | undefined;
612
612
  heating_set_point_celsius?: number | undefined;
@@ -615,7 +615,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
615
615
  }, {
616
616
  automatic_heating_enabled: boolean;
617
617
  automatic_cooling_enabled: boolean;
618
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
618
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
619
619
  manual_override_allowed: boolean;
620
620
  cooling_set_point_celsius?: number | undefined;
621
621
  heating_set_point_celsius?: number | undefined;
@@ -633,7 +633,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
633
633
  schedule_type: z.ZodLiteral<"time_bound">;
634
634
  automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
635
635
  automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
636
- hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
636
+ hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
637
637
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
638
638
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
639
639
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -649,7 +649,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
649
649
  name?: string | undefined;
650
650
  automatic_heating_enabled?: boolean | undefined;
651
651
  automatic_cooling_enabled?: boolean | undefined;
652
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
652
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
653
653
  cooling_set_point_celsius?: number | undefined;
654
654
  heating_set_point_celsius?: number | undefined;
655
655
  cooling_set_point_fahrenheit?: number | undefined;
@@ -665,7 +665,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
665
665
  name?: string | undefined;
666
666
  automatic_heating_enabled?: boolean | undefined;
667
667
  automatic_cooling_enabled?: boolean | undefined;
668
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
668
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
669
669
  cooling_set_point_celsius?: number | undefined;
670
670
  heating_set_point_celsius?: number | undefined;
671
671
  cooling_set_point_fahrenheit?: number | undefined;
@@ -681,7 +681,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
681
681
  default_climate_setting?: {
682
682
  automatic_heating_enabled: boolean;
683
683
  automatic_cooling_enabled: boolean;
684
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
684
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
685
685
  manual_override_allowed: boolean;
686
686
  cooling_set_point_celsius?: number | undefined;
687
687
  heating_set_point_celsius?: number | undefined;
@@ -693,7 +693,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
693
693
  relative_humidity?: number | undefined;
694
694
  can_enable_automatic_heating?: boolean | undefined;
695
695
  can_enable_automatic_cooling?: boolean | undefined;
696
- available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
696
+ available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
697
697
  is_heating_available?: false | undefined;
698
698
  is_heating?: boolean | undefined;
699
699
  is_cooling?: boolean | undefined;
@@ -702,7 +702,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
702
702
  current_climate_setting?: {
703
703
  automatic_heating_enabled: boolean;
704
704
  automatic_cooling_enabled: boolean;
705
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
705
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
706
706
  manual_override_allowed: boolean;
707
707
  cooling_set_point_celsius?: number | undefined;
708
708
  heating_set_point_celsius?: number | undefined;
@@ -720,7 +720,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
720
720
  name?: string | undefined;
721
721
  automatic_heating_enabled?: boolean | undefined;
722
722
  automatic_cooling_enabled?: boolean | undefined;
723
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
723
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
724
724
  cooling_set_point_celsius?: number | undefined;
725
725
  heating_set_point_celsius?: number | undefined;
726
726
  cooling_set_point_fahrenheit?: number | undefined;
@@ -736,7 +736,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
736
736
  default_climate_setting?: {
737
737
  automatic_heating_enabled: boolean;
738
738
  automatic_cooling_enabled: boolean;
739
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
739
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
740
740
  manual_override_allowed: boolean;
741
741
  cooling_set_point_celsius?: number | undefined;
742
742
  heating_set_point_celsius?: number | undefined;
@@ -748,7 +748,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
748
748
  relative_humidity?: number | undefined;
749
749
  can_enable_automatic_heating?: boolean | undefined;
750
750
  can_enable_automatic_cooling?: boolean | undefined;
751
- available_hvac_mode_settings?: ("cool" | "heat" | "off" | "heatcool")[] | undefined;
751
+ available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
752
752
  is_heating_available?: false | undefined;
753
753
  is_heating?: boolean | undefined;
754
754
  is_cooling?: boolean | undefined;
@@ -757,7 +757,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
757
757
  current_climate_setting?: {
758
758
  automatic_heating_enabled: boolean;
759
759
  automatic_cooling_enabled: boolean;
760
- hvac_mode_setting: "cool" | "heat" | "off" | "heatcool";
760
+ hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
761
761
  manual_override_allowed: boolean;
762
762
  cooling_set_point_celsius?: number | undefined;
763
763
  heating_set_point_celsius?: number | undefined;
@@ -775,7 +775,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
775
775
  name?: string | undefined;
776
776
  automatic_heating_enabled?: boolean | undefined;
777
777
  automatic_cooling_enabled?: boolean | undefined;
778
- hvac_mode_setting?: "cool" | "heat" | "off" | "heatcool" | undefined;
778
+ hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
779
779
  cooling_set_point_celsius?: number | undefined;
780
780
  heating_set_point_celsius?: number | undefined;
781
781
  cooling_set_point_fahrenheit?: number | undefined;