@seamapi/types 1.6.0 → 1.7.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.
Files changed (32) hide show
  1. package/lib/seam/connect/route-types.d.ts +76 -11
  2. package/lib/seam/connect/unstable/model-types.d.ts +1 -1
  3. package/lib/seam/connect/unstable/models/acs/access_group.d.ts +29 -0
  4. package/lib/seam/connect/unstable/models/acs/access_group.js +12 -0
  5. package/lib/seam/connect/unstable/models/acs/access_group.js.map +1 -0
  6. package/lib/seam/connect/unstable/models/acs/index.d.ts +3 -0
  7. package/lib/seam/connect/unstable/models/acs/index.js +4 -0
  8. package/lib/seam/connect/unstable/models/acs/index.js.map +1 -0
  9. package/lib/seam/connect/unstable/models/acs/system.d.ts +23 -0
  10. package/lib/seam/connect/unstable/models/acs/system.js +10 -0
  11. package/lib/seam/connect/unstable/models/acs/system.js.map +1 -0
  12. package/lib/seam/connect/unstable/models/acs/user.d.ts +30 -0
  13. package/lib/seam/connect/unstable/models/acs/user.js +25 -0
  14. package/lib/seam/connect/unstable/models/acs/user.js.map +1 -0
  15. package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +42 -42
  16. package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +88 -88
  17. package/lib/seam/connect/unstable/models/index.d.ts +1 -0
  18. package/lib/seam/connect/unstable/models/index.js +1 -0
  19. package/lib/seam/connect/unstable/models/index.js.map +1 -1
  20. package/lib/seam/connect/unstable/models/managed-device.d.ts +90 -90
  21. package/lib/seam/connect/unstable/schemas.d.ts +1 -1
  22. package/lib/seam/connect/unstable/schemas.js +1 -1
  23. package/lib/seam/connect/unstable/schemas.js.map +1 -1
  24. package/package.json +8 -8
  25. package/src/lib/seam/connect/route-types.ts +76 -11
  26. package/src/lib/seam/connect/unstable/model-types.ts +5 -0
  27. package/src/lib/seam/connect/unstable/models/acs/access_group.ts +17 -0
  28. package/src/lib/seam/connect/unstable/models/acs/index.ts +3 -0
  29. package/src/lib/seam/connect/unstable/models/acs/system.ts +15 -0
  30. package/src/lib/seam/connect/unstable/models/acs/user.ts +31 -0
  31. package/src/lib/seam/connect/unstable/models/index.ts +1 -0
  32. package/src/lib/seam/connect/unstable/schemas.ts +5 -0
@@ -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" | "heat_cool" | "off";
86
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
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" | "heat_cool" | "off";
95
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
96
96
  manual_override_allowed: boolean;
97
97
  cooling_set_point_celsius?: number | undefined;
98
98
  heating_set_point_celsius?: number | undefined;
@@ -122,7 +122,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
122
122
  }, "strip", z.ZodTypeAny, {
123
123
  automatic_heating_enabled: boolean;
124
124
  automatic_cooling_enabled: boolean;
125
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
125
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
126
126
  manual_override_allowed: boolean;
127
127
  cooling_set_point_celsius?: number | undefined;
128
128
  heating_set_point_celsius?: number | undefined;
@@ -131,7 +131,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
131
131
  }, {
132
132
  automatic_heating_enabled: boolean;
133
133
  automatic_cooling_enabled: boolean;
134
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
134
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
135
135
  manual_override_allowed: boolean;
136
136
  cooling_set_point_celsius?: number | undefined;
137
137
  heating_set_point_celsius?: number | undefined;
@@ -165,7 +165,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
165
165
  name?: string | undefined;
166
166
  automatic_heating_enabled?: boolean | undefined;
167
167
  automatic_cooling_enabled?: boolean | undefined;
168
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
168
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
169
169
  cooling_set_point_celsius?: number | undefined;
170
170
  heating_set_point_celsius?: number | undefined;
171
171
  cooling_set_point_fahrenheit?: number | undefined;
@@ -181,7 +181,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
181
181
  name?: string | undefined;
182
182
  automatic_heating_enabled?: boolean | undefined;
183
183
  automatic_cooling_enabled?: boolean | undefined;
184
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
184
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
185
185
  cooling_set_point_celsius?: number | undefined;
186
186
  heating_set_point_celsius?: number | undefined;
187
187
  cooling_set_point_fahrenheit?: number | undefined;
@@ -204,7 +204,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
204
204
  default_climate_setting?: {
205
205
  automatic_heating_enabled: boolean;
206
206
  automatic_cooling_enabled: boolean;
207
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
207
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
208
208
  manual_override_allowed: boolean;
209
209
  cooling_set_point_celsius?: number | undefined;
210
210
  heating_set_point_celsius?: number | undefined;
@@ -216,7 +216,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
216
216
  relative_humidity?: number | undefined;
217
217
  can_enable_automatic_heating?: boolean | undefined;
218
218
  can_enable_automatic_cooling?: boolean | undefined;
219
- available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
219
+ available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
220
220
  is_heating?: boolean | undefined;
221
221
  is_cooling?: boolean | undefined;
222
222
  is_fan_running?: boolean | undefined;
@@ -225,7 +225,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
225
225
  current_climate_setting?: {
226
226
  automatic_heating_enabled: boolean;
227
227
  automatic_cooling_enabled: boolean;
228
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
228
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
229
229
  manual_override_allowed: boolean;
230
230
  cooling_set_point_celsius?: number | undefined;
231
231
  heating_set_point_celsius?: number | undefined;
@@ -243,7 +243,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
243
243
  name?: string | undefined;
244
244
  automatic_heating_enabled?: boolean | undefined;
245
245
  automatic_cooling_enabled?: boolean | undefined;
246
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
246
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
247
247
  cooling_set_point_celsius?: number | undefined;
248
248
  heating_set_point_celsius?: number | undefined;
249
249
  cooling_set_point_fahrenheit?: number | undefined;
@@ -266,7 +266,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
266
266
  default_climate_setting?: {
267
267
  automatic_heating_enabled: boolean;
268
268
  automatic_cooling_enabled: boolean;
269
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
269
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
270
270
  manual_override_allowed: boolean;
271
271
  cooling_set_point_celsius?: number | undefined;
272
272
  heating_set_point_celsius?: number | undefined;
@@ -278,7 +278,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
278
278
  relative_humidity?: number | undefined;
279
279
  can_enable_automatic_heating?: boolean | undefined;
280
280
  can_enable_automatic_cooling?: boolean | undefined;
281
- available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
281
+ available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
282
282
  is_heating?: boolean | undefined;
283
283
  is_cooling?: boolean | undefined;
284
284
  is_fan_running?: boolean | undefined;
@@ -287,7 +287,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
287
287
  current_climate_setting?: {
288
288
  automatic_heating_enabled: boolean;
289
289
  automatic_cooling_enabled: boolean;
290
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
290
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
291
291
  manual_override_allowed: boolean;
292
292
  cooling_set_point_celsius?: number | undefined;
293
293
  heating_set_point_celsius?: number | undefined;
@@ -305,7 +305,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
305
305
  name?: string | undefined;
306
306
  automatic_heating_enabled?: boolean | undefined;
307
307
  automatic_cooling_enabled?: boolean | undefined;
308
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
308
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
309
309
  cooling_set_point_celsius?: number | undefined;
310
310
  heating_set_point_celsius?: number | undefined;
311
311
  cooling_set_point_fahrenheit?: number | undefined;
@@ -337,7 +337,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
337
337
  }, "strip", z.ZodTypeAny, {
338
338
  automatic_heating_enabled: boolean;
339
339
  automatic_cooling_enabled: boolean;
340
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
340
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
341
341
  manual_override_allowed: boolean;
342
342
  cooling_set_point_celsius?: number | undefined;
343
343
  heating_set_point_celsius?: number | undefined;
@@ -346,7 +346,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
346
346
  }, {
347
347
  automatic_heating_enabled: boolean;
348
348
  automatic_cooling_enabled: boolean;
349
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
349
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
350
350
  manual_override_allowed: boolean;
351
351
  cooling_set_point_celsius?: number | undefined;
352
352
  heating_set_point_celsius?: number | undefined;
@@ -377,7 +377,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
377
377
  }, "strip", z.ZodTypeAny, {
378
378
  automatic_heating_enabled: boolean;
379
379
  automatic_cooling_enabled: boolean;
380
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
380
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
381
381
  manual_override_allowed: boolean;
382
382
  cooling_set_point_celsius?: number | undefined;
383
383
  heating_set_point_celsius?: number | undefined;
@@ -386,7 +386,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
386
386
  }, {
387
387
  automatic_heating_enabled: boolean;
388
388
  automatic_cooling_enabled: boolean;
389
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
389
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
390
390
  manual_override_allowed: boolean;
391
391
  cooling_set_point_celsius?: number | undefined;
392
392
  heating_set_point_celsius?: number | undefined;
@@ -420,7 +420,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
420
420
  name?: string | undefined;
421
421
  automatic_heating_enabled?: boolean | undefined;
422
422
  automatic_cooling_enabled?: boolean | undefined;
423
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
423
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
424
424
  cooling_set_point_celsius?: number | undefined;
425
425
  heating_set_point_celsius?: number | undefined;
426
426
  cooling_set_point_fahrenheit?: number | undefined;
@@ -436,7 +436,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
436
436
  name?: string | undefined;
437
437
  automatic_heating_enabled?: boolean | undefined;
438
438
  automatic_cooling_enabled?: boolean | undefined;
439
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
439
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
440
440
  cooling_set_point_celsius?: number | undefined;
441
441
  heating_set_point_celsius?: number | undefined;
442
442
  cooling_set_point_fahrenheit?: number | undefined;
@@ -452,7 +452,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
452
452
  default_climate_setting?: {
453
453
  automatic_heating_enabled: boolean;
454
454
  automatic_cooling_enabled: boolean;
455
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
455
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
456
456
  manual_override_allowed: boolean;
457
457
  cooling_set_point_celsius?: number | undefined;
458
458
  heating_set_point_celsius?: number | undefined;
@@ -464,7 +464,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
464
464
  relative_humidity?: number | undefined;
465
465
  can_enable_automatic_heating?: boolean | undefined;
466
466
  can_enable_automatic_cooling?: boolean | undefined;
467
- available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
467
+ available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
468
468
  is_cooling_available?: false | undefined;
469
469
  is_heating?: boolean | undefined;
470
470
  is_cooling?: boolean | undefined;
@@ -474,7 +474,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
474
474
  current_climate_setting?: {
475
475
  automatic_heating_enabled: boolean;
476
476
  automatic_cooling_enabled: boolean;
477
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
477
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
478
478
  manual_override_allowed: boolean;
479
479
  cooling_set_point_celsius?: number | undefined;
480
480
  heating_set_point_celsius?: number | undefined;
@@ -492,7 +492,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
492
492
  name?: string | undefined;
493
493
  automatic_heating_enabled?: boolean | undefined;
494
494
  automatic_cooling_enabled?: boolean | undefined;
495
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
495
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
496
496
  cooling_set_point_celsius?: number | undefined;
497
497
  heating_set_point_celsius?: number | undefined;
498
498
  cooling_set_point_fahrenheit?: number | undefined;
@@ -508,7 +508,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
508
508
  default_climate_setting?: {
509
509
  automatic_heating_enabled: boolean;
510
510
  automatic_cooling_enabled: boolean;
511
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
511
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
512
512
  manual_override_allowed: boolean;
513
513
  cooling_set_point_celsius?: number | undefined;
514
514
  heating_set_point_celsius?: number | undefined;
@@ -520,7 +520,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
520
520
  relative_humidity?: number | undefined;
521
521
  can_enable_automatic_heating?: boolean | undefined;
522
522
  can_enable_automatic_cooling?: boolean | undefined;
523
- available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
523
+ available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
524
524
  is_cooling_available?: false | undefined;
525
525
  is_heating?: boolean | undefined;
526
526
  is_cooling?: boolean | undefined;
@@ -530,7 +530,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
530
530
  current_climate_setting?: {
531
531
  automatic_heating_enabled: boolean;
532
532
  automatic_cooling_enabled: boolean;
533
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
533
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
534
534
  manual_override_allowed: boolean;
535
535
  cooling_set_point_celsius?: number | undefined;
536
536
  heating_set_point_celsius?: number | undefined;
@@ -548,7 +548,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
548
548
  name?: string | undefined;
549
549
  automatic_heating_enabled?: boolean | undefined;
550
550
  automatic_cooling_enabled?: boolean | undefined;
551
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
551
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
552
552
  cooling_set_point_celsius?: number | undefined;
553
553
  heating_set_point_celsius?: number | undefined;
554
554
  cooling_set_point_fahrenheit?: number | undefined;
@@ -573,7 +573,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
573
573
  }, "strip", z.ZodTypeAny, {
574
574
  automatic_heating_enabled: boolean;
575
575
  automatic_cooling_enabled: boolean;
576
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
576
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
577
577
  manual_override_allowed: boolean;
578
578
  cooling_set_point_celsius?: number | undefined;
579
579
  heating_set_point_celsius?: number | undefined;
@@ -582,7 +582,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
582
582
  }, {
583
583
  automatic_heating_enabled: boolean;
584
584
  automatic_cooling_enabled: boolean;
585
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
585
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
586
586
  manual_override_allowed: boolean;
587
587
  cooling_set_point_celsius?: number | undefined;
588
588
  heating_set_point_celsius?: number | undefined;
@@ -613,7 +613,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
613
613
  }, "strip", z.ZodTypeAny, {
614
614
  automatic_heating_enabled: boolean;
615
615
  automatic_cooling_enabled: boolean;
616
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
616
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
617
617
  manual_override_allowed: boolean;
618
618
  cooling_set_point_celsius?: number | undefined;
619
619
  heating_set_point_celsius?: number | undefined;
@@ -622,7 +622,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
622
622
  }, {
623
623
  automatic_heating_enabled: boolean;
624
624
  automatic_cooling_enabled: boolean;
625
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
625
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
626
626
  manual_override_allowed: boolean;
627
627
  cooling_set_point_celsius?: number | undefined;
628
628
  heating_set_point_celsius?: number | undefined;
@@ -656,7 +656,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
656
656
  name?: string | undefined;
657
657
  automatic_heating_enabled?: boolean | undefined;
658
658
  automatic_cooling_enabled?: boolean | undefined;
659
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
659
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
660
660
  cooling_set_point_celsius?: number | undefined;
661
661
  heating_set_point_celsius?: number | undefined;
662
662
  cooling_set_point_fahrenheit?: number | undefined;
@@ -672,7 +672,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
672
672
  name?: string | undefined;
673
673
  automatic_heating_enabled?: boolean | undefined;
674
674
  automatic_cooling_enabled?: boolean | undefined;
675
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
675
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
676
676
  cooling_set_point_celsius?: number | undefined;
677
677
  heating_set_point_celsius?: number | undefined;
678
678
  cooling_set_point_fahrenheit?: number | undefined;
@@ -688,7 +688,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
688
688
  default_climate_setting?: {
689
689
  automatic_heating_enabled: boolean;
690
690
  automatic_cooling_enabled: boolean;
691
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
691
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
692
692
  manual_override_allowed: boolean;
693
693
  cooling_set_point_celsius?: number | undefined;
694
694
  heating_set_point_celsius?: number | undefined;
@@ -700,7 +700,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
700
700
  relative_humidity?: number | undefined;
701
701
  can_enable_automatic_heating?: boolean | undefined;
702
702
  can_enable_automatic_cooling?: boolean | undefined;
703
- available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
703
+ available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
704
704
  is_heating_available?: false | undefined;
705
705
  is_heating?: boolean | undefined;
706
706
  is_cooling?: boolean | undefined;
@@ -710,7 +710,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
710
710
  current_climate_setting?: {
711
711
  automatic_heating_enabled: boolean;
712
712
  automatic_cooling_enabled: boolean;
713
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
713
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
714
714
  manual_override_allowed: boolean;
715
715
  cooling_set_point_celsius?: number | undefined;
716
716
  heating_set_point_celsius?: number | undefined;
@@ -728,7 +728,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
728
728
  name?: string | undefined;
729
729
  automatic_heating_enabled?: boolean | undefined;
730
730
  automatic_cooling_enabled?: boolean | undefined;
731
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
731
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
732
732
  cooling_set_point_celsius?: number | undefined;
733
733
  heating_set_point_celsius?: number | undefined;
734
734
  cooling_set_point_fahrenheit?: number | undefined;
@@ -744,7 +744,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
744
744
  default_climate_setting?: {
745
745
  automatic_heating_enabled: boolean;
746
746
  automatic_cooling_enabled: boolean;
747
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
747
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
748
748
  manual_override_allowed: boolean;
749
749
  cooling_set_point_celsius?: number | undefined;
750
750
  heating_set_point_celsius?: number | undefined;
@@ -756,7 +756,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
756
756
  relative_humidity?: number | undefined;
757
757
  can_enable_automatic_heating?: boolean | undefined;
758
758
  can_enable_automatic_cooling?: boolean | undefined;
759
- available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
759
+ available_hvac_mode_settings?: ("off" | "cool" | "heat" | "heat_cool")[] | undefined;
760
760
  is_heating_available?: false | undefined;
761
761
  is_heating?: boolean | undefined;
762
762
  is_cooling?: boolean | undefined;
@@ -766,7 +766,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
766
766
  current_climate_setting?: {
767
767
  automatic_heating_enabled: boolean;
768
768
  automatic_cooling_enabled: boolean;
769
- hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
769
+ hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool";
770
770
  manual_override_allowed: boolean;
771
771
  cooling_set_point_celsius?: number | undefined;
772
772
  heating_set_point_celsius?: number | undefined;
@@ -784,7 +784,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
784
784
  name?: string | undefined;
785
785
  automatic_heating_enabled?: boolean | undefined;
786
786
  automatic_cooling_enabled?: boolean | undefined;
787
- hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
787
+ hvac_mode_setting?: "off" | "cool" | "heat" | "heat_cool" | undefined;
788
788
  cooling_set_point_celsius?: number | undefined;
789
789
  heating_set_point_celsius?: number | undefined;
790
790
  cooling_set_point_fahrenheit?: number | undefined;