@seamapi/types 1.446.0 → 1.448.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 (28) hide show
  1. package/dist/connect.cjs +21 -15
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +148 -172
  4. package/dist/devicedb.d.cts +24 -24
  5. package/dist/index.cjs +21 -15
  6. package/dist/index.cjs.map +1 -1
  7. package/lib/seam/connect/models/batches/batch.d.ts +34 -34
  8. package/lib/seam/connect/models/batches/spaces.d.ts +34 -34
  9. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
  10. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
  11. package/lib/seam/connect/models/devices/device.d.ts +26 -26
  12. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -18
  13. package/lib/seam/connect/models/events/devices.d.ts +6 -6
  14. package/lib/seam/connect/models/events/seam-event.d.ts +3 -3
  15. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
  16. package/lib/seam/connect/models/thermostats/modes.d.ts +1 -1
  17. package/lib/seam/connect/models/thermostats/modes.js +7 -1
  18. package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
  19. package/lib/seam/connect/openapi.d.ts +2 -27
  20. package/lib/seam/connect/openapi.js +14 -14
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +62 -61
  23. package/lib/seam/devicedb/models/device-model.d.ts +12 -12
  24. package/lib/seam/devicedb/route-specs.d.ts +12 -12
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
  27. package/src/lib/seam/connect/openapi.ts +16 -14
  28. package/src/lib/seam/connect/route-types.ts +147 -61
@@ -11652,7 +11652,7 @@ declare const batch: z.ZodObject<{
11652
11652
  temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
11653
11653
  temperature_celsius: z.ZodOptional<z.ZodNumber>;
11654
11654
  relative_humidity: z.ZodOptional<z.ZodNumber>;
11655
- available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
11655
+ available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>, "many">>;
11656
11656
  available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
11657
11657
  available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
11658
11658
  is_heating: z.ZodOptional<z.ZodBoolean>;
@@ -11669,7 +11669,7 @@ declare const batch: z.ZodObject<{
11669
11669
  display_name: z.ZodOptional<z.ZodString>;
11670
11670
  climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
11671
11671
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
11672
- hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
11672
+ hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
11673
11673
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
11674
11674
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
11675
11675
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -11697,7 +11697,7 @@ declare const batch: z.ZodObject<{
11697
11697
  display_name?: string | undefined;
11698
11698
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
11699
11699
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
11700
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
11700
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
11701
11701
  cooling_set_point_celsius?: number | undefined;
11702
11702
  heating_set_point_celsius?: number | undefined;
11703
11703
  cooling_set_point_fahrenheit?: number | undefined;
@@ -11717,7 +11717,7 @@ declare const batch: z.ZodObject<{
11717
11717
  display_name?: string | undefined;
11718
11718
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
11719
11719
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
11720
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
11720
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
11721
11721
  cooling_set_point_celsius?: number | undefined;
11722
11722
  heating_set_point_celsius?: number | undefined;
11723
11723
  cooling_set_point_fahrenheit?: number | undefined;
@@ -11738,7 +11738,7 @@ declare const batch: z.ZodObject<{
11738
11738
  display_name: z.ZodOptional<z.ZodString>;
11739
11739
  climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
11740
11740
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
11741
- hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
11741
+ hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
11742
11742
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
11743
11743
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
11744
11744
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -11766,7 +11766,7 @@ declare const batch: z.ZodObject<{
11766
11766
  display_name?: string | undefined;
11767
11767
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
11768
11768
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
11769
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
11769
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
11770
11770
  cooling_set_point_celsius?: number | undefined;
11771
11771
  heating_set_point_celsius?: number | undefined;
11772
11772
  cooling_set_point_fahrenheit?: number | undefined;
@@ -11786,7 +11786,7 @@ declare const batch: z.ZodObject<{
11786
11786
  display_name?: string | undefined;
11787
11787
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
11788
11788
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
11789
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
11789
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
11790
11790
  cooling_set_point_celsius?: number | undefined;
11791
11791
  heating_set_point_celsius?: number | undefined;
11792
11792
  cooling_set_point_fahrenheit?: number | undefined;
@@ -11807,7 +11807,7 @@ declare const batch: z.ZodObject<{
11807
11807
  display_name: z.ZodString;
11808
11808
  climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
11809
11809
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
11810
- hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
11810
+ hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
11811
11811
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
11812
11812
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
11813
11813
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -11836,7 +11836,7 @@ declare const batch: z.ZodObject<{
11836
11836
  name?: string | null | undefined;
11837
11837
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
11838
11838
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
11839
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
11839
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
11840
11840
  cooling_set_point_celsius?: number | undefined;
11841
11841
  heating_set_point_celsius?: number | undefined;
11842
11842
  cooling_set_point_fahrenheit?: number | undefined;
@@ -11856,7 +11856,7 @@ declare const batch: z.ZodObject<{
11856
11856
  name?: string | null | undefined;
11857
11857
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
11858
11858
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
11859
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
11859
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
11860
11860
  cooling_set_point_celsius?: number | undefined;
11861
11861
  heating_set_point_celsius?: number | undefined;
11862
11862
  cooling_set_point_fahrenheit?: number | undefined;
@@ -12017,7 +12017,7 @@ declare const batch: z.ZodObject<{
12017
12017
  temperature_fahrenheit?: number | undefined;
12018
12018
  temperature_celsius?: number | undefined;
12019
12019
  relative_humidity?: number | undefined;
12020
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
12020
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
12021
12021
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
12022
12022
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
12023
12023
  is_heating?: boolean | undefined;
@@ -12033,7 +12033,7 @@ declare const batch: z.ZodObject<{
12033
12033
  display_name?: string | undefined;
12034
12034
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12035
12035
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12036
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12036
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
12037
12037
  cooling_set_point_celsius?: number | undefined;
12038
12038
  heating_set_point_celsius?: number | undefined;
12039
12039
  cooling_set_point_fahrenheit?: number | undefined;
@@ -12054,7 +12054,7 @@ declare const batch: z.ZodObject<{
12054
12054
  display_name?: string | undefined;
12055
12055
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12056
12056
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12057
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12057
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
12058
12058
  cooling_set_point_celsius?: number | undefined;
12059
12059
  heating_set_point_celsius?: number | undefined;
12060
12060
  cooling_set_point_fahrenheit?: number | undefined;
@@ -12076,7 +12076,7 @@ declare const batch: z.ZodObject<{
12076
12076
  name?: string | null | undefined;
12077
12077
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12078
12078
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12079
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12079
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
12080
12080
  cooling_set_point_celsius?: number | undefined;
12081
12081
  heating_set_point_celsius?: number | undefined;
12082
12082
  cooling_set_point_fahrenheit?: number | undefined;
@@ -12147,7 +12147,7 @@ declare const batch: z.ZodObject<{
12147
12147
  temperature_fahrenheit?: number | undefined;
12148
12148
  temperature_celsius?: number | undefined;
12149
12149
  relative_humidity?: number | undefined;
12150
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
12150
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
12151
12151
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
12152
12152
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
12153
12153
  is_heating?: boolean | undefined;
@@ -12163,7 +12163,7 @@ declare const batch: z.ZodObject<{
12163
12163
  display_name?: string | undefined;
12164
12164
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12165
12165
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12166
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12166
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
12167
12167
  cooling_set_point_celsius?: number | undefined;
12168
12168
  heating_set_point_celsius?: number | undefined;
12169
12169
  cooling_set_point_fahrenheit?: number | undefined;
@@ -12184,7 +12184,7 @@ declare const batch: z.ZodObject<{
12184
12184
  display_name?: string | undefined;
12185
12185
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12186
12186
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12187
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12187
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
12188
12188
  cooling_set_point_celsius?: number | undefined;
12189
12189
  heating_set_point_celsius?: number | undefined;
12190
12190
  cooling_set_point_fahrenheit?: number | undefined;
@@ -12206,7 +12206,7 @@ declare const batch: z.ZodObject<{
12206
12206
  name?: string | null | undefined;
12207
12207
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12208
12208
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12209
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12209
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
12210
12210
  cooling_set_point_celsius?: number | undefined;
12211
12211
  heating_set_point_celsius?: number | undefined;
12212
12212
  cooling_set_point_fahrenheit?: number | undefined;
@@ -13383,7 +13383,7 @@ declare const batch: z.ZodObject<{
13383
13383
  temperature_fahrenheit?: number | undefined;
13384
13384
  temperature_celsius?: number | undefined;
13385
13385
  relative_humidity?: number | undefined;
13386
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
13386
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
13387
13387
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
13388
13388
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
13389
13389
  is_heating?: boolean | undefined;
@@ -13399,7 +13399,7 @@ declare const batch: z.ZodObject<{
13399
13399
  display_name?: string | undefined;
13400
13400
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13401
13401
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13402
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13402
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
13403
13403
  cooling_set_point_celsius?: number | undefined;
13404
13404
  heating_set_point_celsius?: number | undefined;
13405
13405
  cooling_set_point_fahrenheit?: number | undefined;
@@ -13420,7 +13420,7 @@ declare const batch: z.ZodObject<{
13420
13420
  display_name?: string | undefined;
13421
13421
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13422
13422
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13423
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13423
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
13424
13424
  cooling_set_point_celsius?: number | undefined;
13425
13425
  heating_set_point_celsius?: number | undefined;
13426
13426
  cooling_set_point_fahrenheit?: number | undefined;
@@ -13442,7 +13442,7 @@ declare const batch: z.ZodObject<{
13442
13442
  name?: string | null | undefined;
13443
13443
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13444
13444
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13445
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13445
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
13446
13446
  cooling_set_point_celsius?: number | undefined;
13447
13447
  heating_set_point_celsius?: number | undefined;
13448
13448
  cooling_set_point_fahrenheit?: number | undefined;
@@ -14018,7 +14018,7 @@ declare const batch: z.ZodObject<{
14018
14018
  temperature_fahrenheit?: number | undefined;
14019
14019
  temperature_celsius?: number | undefined;
14020
14020
  relative_humidity?: number | undefined;
14021
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
14021
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
14022
14022
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
14023
14023
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
14024
14024
  is_heating?: boolean | undefined;
@@ -14034,7 +14034,7 @@ declare const batch: z.ZodObject<{
14034
14034
  display_name?: string | undefined;
14035
14035
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14036
14036
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14037
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14037
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
14038
14038
  cooling_set_point_celsius?: number | undefined;
14039
14039
  heating_set_point_celsius?: number | undefined;
14040
14040
  cooling_set_point_fahrenheit?: number | undefined;
@@ -14055,7 +14055,7 @@ declare const batch: z.ZodObject<{
14055
14055
  display_name?: string | undefined;
14056
14056
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14057
14057
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14058
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14058
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
14059
14059
  cooling_set_point_celsius?: number | undefined;
14060
14060
  heating_set_point_celsius?: number | undefined;
14061
14061
  cooling_set_point_fahrenheit?: number | undefined;
@@ -14077,7 +14077,7 @@ declare const batch: z.ZodObject<{
14077
14077
  name?: string | null | undefined;
14078
14078
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14079
14079
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14080
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14080
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
14081
14081
  cooling_set_point_celsius?: number | undefined;
14082
14082
  heating_set_point_celsius?: number | undefined;
14083
14083
  cooling_set_point_fahrenheit?: number | undefined;
@@ -14902,7 +14902,7 @@ declare const batch: z.ZodObject<{
14902
14902
  temperature_fahrenheit?: number | undefined;
14903
14903
  temperature_celsius?: number | undefined;
14904
14904
  relative_humidity?: number | undefined;
14905
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
14905
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
14906
14906
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
14907
14907
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
14908
14908
  is_heating?: boolean | undefined;
@@ -14918,7 +14918,7 @@ declare const batch: z.ZodObject<{
14918
14918
  display_name?: string | undefined;
14919
14919
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14920
14920
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14921
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14921
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
14922
14922
  cooling_set_point_celsius?: number | undefined;
14923
14923
  heating_set_point_celsius?: number | undefined;
14924
14924
  cooling_set_point_fahrenheit?: number | undefined;
@@ -14939,7 +14939,7 @@ declare const batch: z.ZodObject<{
14939
14939
  display_name?: string | undefined;
14940
14940
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14941
14941
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14942
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14942
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
14943
14943
  cooling_set_point_celsius?: number | undefined;
14944
14944
  heating_set_point_celsius?: number | undefined;
14945
14945
  cooling_set_point_fahrenheit?: number | undefined;
@@ -14961,7 +14961,7 @@ declare const batch: z.ZodObject<{
14961
14961
  name?: string | null | undefined;
14962
14962
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14963
14963
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14964
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14964
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
14965
14965
  cooling_set_point_celsius?: number | undefined;
14966
14966
  heating_set_point_celsius?: number | undefined;
14967
14967
  cooling_set_point_fahrenheit?: number | undefined;
@@ -15603,7 +15603,7 @@ declare const batch: z.ZodObject<{
15603
15603
  temperature_fahrenheit?: number | undefined;
15604
15604
  temperature_celsius?: number | undefined;
15605
15605
  relative_humidity?: number | undefined;
15606
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
15606
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
15607
15607
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
15608
15608
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
15609
15609
  is_heating?: boolean | undefined;
@@ -15619,7 +15619,7 @@ declare const batch: z.ZodObject<{
15619
15619
  display_name?: string | undefined;
15620
15620
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15621
15621
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15622
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15622
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
15623
15623
  cooling_set_point_celsius?: number | undefined;
15624
15624
  heating_set_point_celsius?: number | undefined;
15625
15625
  cooling_set_point_fahrenheit?: number | undefined;
@@ -15640,7 +15640,7 @@ declare const batch: z.ZodObject<{
15640
15640
  display_name?: string | undefined;
15641
15641
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15642
15642
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15643
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15643
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
15644
15644
  cooling_set_point_celsius?: number | undefined;
15645
15645
  heating_set_point_celsius?: number | undefined;
15646
15646
  cooling_set_point_fahrenheit?: number | undefined;
@@ -15662,7 +15662,7 @@ declare const batch: z.ZodObject<{
15662
15662
  name?: string | null | undefined;
15663
15663
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15664
15664
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15665
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15665
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
15666
15666
  cooling_set_point_celsius?: number | undefined;
15667
15667
  heating_set_point_celsius?: number | undefined;
15668
15668
  cooling_set_point_fahrenheit?: number | undefined;
@@ -18614,7 +18614,7 @@ declare const device: z.ZodObject<{
18614
18614
  temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
18615
18615
  temperature_celsius: z.ZodOptional<z.ZodNumber>;
18616
18616
  relative_humidity: z.ZodOptional<z.ZodNumber>;
18617
- available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
18617
+ available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>, "many">>;
18618
18618
  available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
18619
18619
  available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
18620
18620
  is_heating: z.ZodOptional<z.ZodBoolean>;
@@ -18631,7 +18631,7 @@ declare const device: z.ZodObject<{
18631
18631
  display_name: z.ZodOptional<z.ZodString>;
18632
18632
  climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
18633
18633
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
18634
- hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
18634
+ hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
18635
18635
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
18636
18636
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
18637
18637
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -18659,7 +18659,7 @@ declare const device: z.ZodObject<{
18659
18659
  display_name?: string | undefined;
18660
18660
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
18661
18661
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
18662
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
18662
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
18663
18663
  cooling_set_point_celsius?: number | undefined;
18664
18664
  heating_set_point_celsius?: number | undefined;
18665
18665
  cooling_set_point_fahrenheit?: number | undefined;
@@ -18679,7 +18679,7 @@ declare const device: z.ZodObject<{
18679
18679
  display_name?: string | undefined;
18680
18680
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
18681
18681
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
18682
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
18682
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
18683
18683
  cooling_set_point_celsius?: number | undefined;
18684
18684
  heating_set_point_celsius?: number | undefined;
18685
18685
  cooling_set_point_fahrenheit?: number | undefined;
@@ -18700,7 +18700,7 @@ declare const device: z.ZodObject<{
18700
18700
  display_name: z.ZodOptional<z.ZodString>;
18701
18701
  climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
18702
18702
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
18703
- hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
18703
+ hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
18704
18704
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
18705
18705
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
18706
18706
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -18728,7 +18728,7 @@ declare const device: z.ZodObject<{
18728
18728
  display_name?: string | undefined;
18729
18729
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
18730
18730
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
18731
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
18731
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
18732
18732
  cooling_set_point_celsius?: number | undefined;
18733
18733
  heating_set_point_celsius?: number | undefined;
18734
18734
  cooling_set_point_fahrenheit?: number | undefined;
@@ -18748,7 +18748,7 @@ declare const device: z.ZodObject<{
18748
18748
  display_name?: string | undefined;
18749
18749
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
18750
18750
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
18751
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
18751
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
18752
18752
  cooling_set_point_celsius?: number | undefined;
18753
18753
  heating_set_point_celsius?: number | undefined;
18754
18754
  cooling_set_point_fahrenheit?: number | undefined;
@@ -18769,7 +18769,7 @@ declare const device: z.ZodObject<{
18769
18769
  display_name: z.ZodString;
18770
18770
  climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
18771
18771
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
18772
- hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
18772
+ hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
18773
18773
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
18774
18774
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
18775
18775
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -18798,7 +18798,7 @@ declare const device: z.ZodObject<{
18798
18798
  name?: string | null | undefined;
18799
18799
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
18800
18800
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
18801
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
18801
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
18802
18802
  cooling_set_point_celsius?: number | undefined;
18803
18803
  heating_set_point_celsius?: number | undefined;
18804
18804
  cooling_set_point_fahrenheit?: number | undefined;
@@ -18818,7 +18818,7 @@ declare const device: z.ZodObject<{
18818
18818
  name?: string | null | undefined;
18819
18819
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
18820
18820
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
18821
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
18821
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
18822
18822
  cooling_set_point_celsius?: number | undefined;
18823
18823
  heating_set_point_celsius?: number | undefined;
18824
18824
  cooling_set_point_fahrenheit?: number | undefined;
@@ -18979,7 +18979,7 @@ declare const device: z.ZodObject<{
18979
18979
  temperature_fahrenheit?: number | undefined;
18980
18980
  temperature_celsius?: number | undefined;
18981
18981
  relative_humidity?: number | undefined;
18982
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
18982
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
18983
18983
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
18984
18984
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
18985
18985
  is_heating?: boolean | undefined;
@@ -18995,7 +18995,7 @@ declare const device: z.ZodObject<{
18995
18995
  display_name?: string | undefined;
18996
18996
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
18997
18997
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
18998
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
18998
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
18999
18999
  cooling_set_point_celsius?: number | undefined;
19000
19000
  heating_set_point_celsius?: number | undefined;
19001
19001
  cooling_set_point_fahrenheit?: number | undefined;
@@ -19016,7 +19016,7 @@ declare const device: z.ZodObject<{
19016
19016
  display_name?: string | undefined;
19017
19017
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
19018
19018
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
19019
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
19019
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
19020
19020
  cooling_set_point_celsius?: number | undefined;
19021
19021
  heating_set_point_celsius?: number | undefined;
19022
19022
  cooling_set_point_fahrenheit?: number | undefined;
@@ -19038,7 +19038,7 @@ declare const device: z.ZodObject<{
19038
19038
  name?: string | null | undefined;
19039
19039
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
19040
19040
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
19041
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
19041
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
19042
19042
  cooling_set_point_celsius?: number | undefined;
19043
19043
  heating_set_point_celsius?: number | undefined;
19044
19044
  cooling_set_point_fahrenheit?: number | undefined;
@@ -19109,7 +19109,7 @@ declare const device: z.ZodObject<{
19109
19109
  temperature_fahrenheit?: number | undefined;
19110
19110
  temperature_celsius?: number | undefined;
19111
19111
  relative_humidity?: number | undefined;
19112
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
19112
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
19113
19113
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
19114
19114
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
19115
19115
  is_heating?: boolean | undefined;
@@ -19125,7 +19125,7 @@ declare const device: z.ZodObject<{
19125
19125
  display_name?: string | undefined;
19126
19126
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
19127
19127
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
19128
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
19128
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
19129
19129
  cooling_set_point_celsius?: number | undefined;
19130
19130
  heating_set_point_celsius?: number | undefined;
19131
19131
  cooling_set_point_fahrenheit?: number | undefined;
@@ -19146,7 +19146,7 @@ declare const device: z.ZodObject<{
19146
19146
  display_name?: string | undefined;
19147
19147
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
19148
19148
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
19149
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
19149
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
19150
19150
  cooling_set_point_celsius?: number | undefined;
19151
19151
  heating_set_point_celsius?: number | undefined;
19152
19152
  cooling_set_point_fahrenheit?: number | undefined;
@@ -19168,7 +19168,7 @@ declare const device: z.ZodObject<{
19168
19168
  name?: string | null | undefined;
19169
19169
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
19170
19170
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
19171
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
19171
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
19172
19172
  cooling_set_point_celsius?: number | undefined;
19173
19173
  heating_set_point_celsius?: number | undefined;
19174
19174
  cooling_set_point_fahrenheit?: number | undefined;
@@ -20345,7 +20345,7 @@ declare const device: z.ZodObject<{
20345
20345
  temperature_fahrenheit?: number | undefined;
20346
20346
  temperature_celsius?: number | undefined;
20347
20347
  relative_humidity?: number | undefined;
20348
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
20348
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
20349
20349
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
20350
20350
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
20351
20351
  is_heating?: boolean | undefined;
@@ -20361,7 +20361,7 @@ declare const device: z.ZodObject<{
20361
20361
  display_name?: string | undefined;
20362
20362
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
20363
20363
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
20364
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
20364
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
20365
20365
  cooling_set_point_celsius?: number | undefined;
20366
20366
  heating_set_point_celsius?: number | undefined;
20367
20367
  cooling_set_point_fahrenheit?: number | undefined;
@@ -20382,7 +20382,7 @@ declare const device: z.ZodObject<{
20382
20382
  display_name?: string | undefined;
20383
20383
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
20384
20384
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
20385
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
20385
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
20386
20386
  cooling_set_point_celsius?: number | undefined;
20387
20387
  heating_set_point_celsius?: number | undefined;
20388
20388
  cooling_set_point_fahrenheit?: number | undefined;
@@ -20404,7 +20404,7 @@ declare const device: z.ZodObject<{
20404
20404
  name?: string | null | undefined;
20405
20405
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
20406
20406
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
20407
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
20407
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
20408
20408
  cooling_set_point_celsius?: number | undefined;
20409
20409
  heating_set_point_celsius?: number | undefined;
20410
20410
  cooling_set_point_fahrenheit?: number | undefined;
@@ -20980,7 +20980,7 @@ declare const device: z.ZodObject<{
20980
20980
  temperature_fahrenheit?: number | undefined;
20981
20981
  temperature_celsius?: number | undefined;
20982
20982
  relative_humidity?: number | undefined;
20983
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
20983
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
20984
20984
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
20985
20985
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
20986
20986
  is_heating?: boolean | undefined;
@@ -20996,7 +20996,7 @@ declare const device: z.ZodObject<{
20996
20996
  display_name?: string | undefined;
20997
20997
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
20998
20998
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
20999
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
20999
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
21000
21000
  cooling_set_point_celsius?: number | undefined;
21001
21001
  heating_set_point_celsius?: number | undefined;
21002
21002
  cooling_set_point_fahrenheit?: number | undefined;
@@ -21017,7 +21017,7 @@ declare const device: z.ZodObject<{
21017
21017
  display_name?: string | undefined;
21018
21018
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
21019
21019
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
21020
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
21020
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
21021
21021
  cooling_set_point_celsius?: number | undefined;
21022
21022
  heating_set_point_celsius?: number | undefined;
21023
21023
  cooling_set_point_fahrenheit?: number | undefined;
@@ -21039,7 +21039,7 @@ declare const device: z.ZodObject<{
21039
21039
  name?: string | null | undefined;
21040
21040
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
21041
21041
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
21042
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
21042
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
21043
21043
  cooling_set_point_celsius?: number | undefined;
21044
21044
  heating_set_point_celsius?: number | undefined;
21045
21045
  cooling_set_point_fahrenheit?: number | undefined;
@@ -22733,7 +22733,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22733
22733
  temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
22734
22734
  temperature_celsius: z.ZodOptional<z.ZodNumber>;
22735
22735
  relative_humidity: z.ZodOptional<z.ZodNumber>;
22736
- available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
22736
+ available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>, "many">>;
22737
22737
  available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
22738
22738
  available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
22739
22739
  is_heating: z.ZodOptional<z.ZodBoolean>;
@@ -22750,7 +22750,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22750
22750
  display_name: z.ZodOptional<z.ZodString>;
22751
22751
  climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
22752
22752
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
22753
- hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
22753
+ hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
22754
22754
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
22755
22755
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
22756
22756
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -22778,7 +22778,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22778
22778
  display_name?: string | undefined;
22779
22779
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
22780
22780
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
22781
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
22781
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
22782
22782
  cooling_set_point_celsius?: number | undefined;
22783
22783
  heating_set_point_celsius?: number | undefined;
22784
22784
  cooling_set_point_fahrenheit?: number | undefined;
@@ -22798,7 +22798,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22798
22798
  display_name?: string | undefined;
22799
22799
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
22800
22800
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
22801
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
22801
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
22802
22802
  cooling_set_point_celsius?: number | undefined;
22803
22803
  heating_set_point_celsius?: number | undefined;
22804
22804
  cooling_set_point_fahrenheit?: number | undefined;
@@ -22819,7 +22819,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22819
22819
  display_name: z.ZodOptional<z.ZodString>;
22820
22820
  climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
22821
22821
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
22822
- hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
22822
+ hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
22823
22823
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
22824
22824
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
22825
22825
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -22847,7 +22847,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22847
22847
  display_name?: string | undefined;
22848
22848
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
22849
22849
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
22850
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
22850
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
22851
22851
  cooling_set_point_celsius?: number | undefined;
22852
22852
  heating_set_point_celsius?: number | undefined;
22853
22853
  cooling_set_point_fahrenheit?: number | undefined;
@@ -22867,7 +22867,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22867
22867
  display_name?: string | undefined;
22868
22868
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
22869
22869
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
22870
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
22870
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
22871
22871
  cooling_set_point_celsius?: number | undefined;
22872
22872
  heating_set_point_celsius?: number | undefined;
22873
22873
  cooling_set_point_fahrenheit?: number | undefined;
@@ -22888,7 +22888,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22888
22888
  display_name: z.ZodString;
22889
22889
  climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
22890
22890
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
22891
- hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
22891
+ hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
22892
22892
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
22893
22893
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
22894
22894
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -22917,7 +22917,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22917
22917
  name?: string | null | undefined;
22918
22918
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
22919
22919
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
22920
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
22920
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
22921
22921
  cooling_set_point_celsius?: number | undefined;
22922
22922
  heating_set_point_celsius?: number | undefined;
22923
22923
  cooling_set_point_fahrenheit?: number | undefined;
@@ -22937,7 +22937,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22937
22937
  name?: string | null | undefined;
22938
22938
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
22939
22939
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
22940
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
22940
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
22941
22941
  cooling_set_point_celsius?: number | undefined;
22942
22942
  heating_set_point_celsius?: number | undefined;
22943
22943
  cooling_set_point_fahrenheit?: number | undefined;
@@ -23098,7 +23098,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23098
23098
  temperature_fahrenheit?: number | undefined;
23099
23099
  temperature_celsius?: number | undefined;
23100
23100
  relative_humidity?: number | undefined;
23101
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
23101
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
23102
23102
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
23103
23103
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
23104
23104
  is_heating?: boolean | undefined;
@@ -23114,7 +23114,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23114
23114
  display_name?: string | undefined;
23115
23115
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
23116
23116
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
23117
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
23117
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
23118
23118
  cooling_set_point_celsius?: number | undefined;
23119
23119
  heating_set_point_celsius?: number | undefined;
23120
23120
  cooling_set_point_fahrenheit?: number | undefined;
@@ -23135,7 +23135,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23135
23135
  display_name?: string | undefined;
23136
23136
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
23137
23137
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
23138
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
23138
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
23139
23139
  cooling_set_point_celsius?: number | undefined;
23140
23140
  heating_set_point_celsius?: number | undefined;
23141
23141
  cooling_set_point_fahrenheit?: number | undefined;
@@ -23157,7 +23157,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23157
23157
  name?: string | null | undefined;
23158
23158
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
23159
23159
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
23160
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
23160
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
23161
23161
  cooling_set_point_celsius?: number | undefined;
23162
23162
  heating_set_point_celsius?: number | undefined;
23163
23163
  cooling_set_point_fahrenheit?: number | undefined;
@@ -23228,7 +23228,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23228
23228
  temperature_fahrenheit?: number | undefined;
23229
23229
  temperature_celsius?: number | undefined;
23230
23230
  relative_humidity?: number | undefined;
23231
- available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
23231
+ available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool" | "eco")[] | undefined;
23232
23232
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
23233
23233
  available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
23234
23234
  is_heating?: boolean | undefined;
@@ -23244,7 +23244,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23244
23244
  display_name?: string | undefined;
23245
23245
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
23246
23246
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
23247
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
23247
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
23248
23248
  cooling_set_point_celsius?: number | undefined;
23249
23249
  heating_set_point_celsius?: number | undefined;
23250
23250
  cooling_set_point_fahrenheit?: number | undefined;
@@ -23265,7 +23265,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23265
23265
  display_name?: string | undefined;
23266
23266
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
23267
23267
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
23268
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
23268
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
23269
23269
  cooling_set_point_celsius?: number | undefined;
23270
23270
  heating_set_point_celsius?: number | undefined;
23271
23271
  cooling_set_point_fahrenheit?: number | undefined;
@@ -23287,7 +23287,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23287
23287
  name?: string | null | undefined;
23288
23288
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
23289
23289
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
23290
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
23290
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
23291
23291
  cooling_set_point_celsius?: number | undefined;
23292
23292
  heating_set_point_celsius?: number | undefined;
23293
23293
  cooling_set_point_fahrenheit?: number | undefined;
@@ -27170,7 +27170,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
27170
27170
  display_name: z.ZodOptional<z.ZodString>;
27171
27171
  climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
27172
27172
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
27173
- hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
27173
+ hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>>;
27174
27174
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
27175
27175
  heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
27176
27176
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -27199,7 +27199,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
27199
27199
  occurred_at: string;
27200
27200
  event_type: "thermostat.manually_adjusted";
27201
27201
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
27202
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
27202
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
27203
27203
  cooling_set_point_celsius?: number | undefined;
27204
27204
  heating_set_point_celsius?: number | undefined;
27205
27205
  cooling_set_point_fahrenheit?: number | undefined;
@@ -27216,7 +27216,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
27216
27216
  occurred_at: string;
27217
27217
  event_type: "thermostat.manually_adjusted";
27218
27218
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
27219
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
27219
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
27220
27220
  cooling_set_point_celsius?: number | undefined;
27221
27221
  heating_set_point_celsius?: number | undefined;
27222
27222
  cooling_set_point_fahrenheit?: number | undefined;
@@ -27627,7 +27627,7 @@ declare const climate_preset: z.ZodObject<{
27627
27627
  display_name: z.ZodString;
27628
27628
  climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
27629
27629
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
27630
- hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
27630
+ hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool", "eco"]>>;
27631
27631
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
27632
27632
  heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
27633
27633
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
@@ -27656,7 +27656,7 @@ declare const climate_preset: z.ZodObject<{
27656
27656
  name?: string | null | undefined;
27657
27657
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
27658
27658
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
27659
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
27659
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
27660
27660
  cooling_set_point_celsius?: number | undefined;
27661
27661
  heating_set_point_celsius?: number | undefined;
27662
27662
  cooling_set_point_fahrenheit?: number | undefined;
@@ -27676,7 +27676,7 @@ declare const climate_preset: z.ZodObject<{
27676
27676
  name?: string | null | undefined;
27677
27677
  climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
27678
27678
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
27679
- hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
27679
+ hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
27680
27680
  cooling_set_point_celsius?: number | undefined;
27681
27681
  heating_set_point_celsius?: number | undefined;
27682
27682
  cooling_set_point_fahrenheit?: number | undefined;
@@ -55077,7 +55077,6 @@ declare const _default: {
55077
55077
  description: string;
55078
55078
  type: string;
55079
55079
  additionalProperties?: never;
55080
- items?: never;
55081
55080
  minLength?: never;
55082
55081
  default?: never;
55083
55082
  exclusiveMinimum?: never;
@@ -55095,24 +55094,6 @@ declare const _default: {
55095
55094
  };
55096
55095
  description: string;
55097
55096
  type: string;
55098
- items?: never;
55099
- minLength?: never;
55100
- default?: never;
55101
- exclusiveMinimum?: never;
55102
- minimum?: never;
55103
- nullable?: never;
55104
- };
55105
- } | {
55106
- in: string;
55107
- name: string;
55108
- schema: {
55109
- items: {
55110
- format: string;
55111
- type: string;
55112
- };
55113
- type: string;
55114
- description?: never;
55115
- additionalProperties?: never;
55116
55097
  minLength?: never;
55117
55098
  default?: never;
55118
55099
  exclusiveMinimum?: never;
@@ -55127,7 +55108,6 @@ declare const _default: {
55127
55108
  minLength: number;
55128
55109
  type: string;
55129
55110
  additionalProperties?: never;
55130
- items?: never;
55131
55111
  default?: never;
55132
55112
  exclusiveMinimum?: never;
55133
55113
  minimum?: never;
@@ -55143,7 +55123,6 @@ declare const _default: {
55143
55123
  minimum: number;
55144
55124
  type: string;
55145
55125
  additionalProperties?: never;
55146
- items?: never;
55147
55126
  minLength?: never;
55148
55127
  nullable?: never;
55149
55128
  };
@@ -55155,7 +55134,6 @@ declare const _default: {
55155
55134
  nullable: boolean;
55156
55135
  type: string;
55157
55136
  additionalProperties?: never;
55158
- items?: never;
55159
55137
  minLength?: never;
55160
55138
  default?: never;
55161
55139
  exclusiveMinimum?: never;
@@ -55241,11 +55219,8 @@ declare const _default: {
55241
55219
  description: string;
55242
55220
  type: string;
55243
55221
  };
55244
- customer_ids: {
55245
- items: {
55246
- format: string;
55247
- type: string;
55248
- };
55222
+ customer_key: {
55223
+ description: string;
55249
55224
  type: string;
55250
55225
  };
55251
55226
  limit: {
@@ -98648,7 +98623,8 @@ interface Routes {
98648
98623
  user_identifier_key?: string | undefined;
98649
98624
  /** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
98650
98625
  custom_metadata_has?: Record<string, string | boolean> | undefined;
98651
- customer_ids?: string[] | undefined;
98626
+ /** Customer key by which you want to filter connected accounts. */
98627
+ customer_key?: string | undefined;
98652
98628
  /** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
98653
98629
  search?: string | undefined;
98654
98630
  /** Maximum number of records to return per page. */
@@ -100087,7 +100063,7 @@ interface Routes {
100087
100063
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
100088
100064
  relative_humidity?: number | undefined;
100089
100065
  /** HVAC mode settings that the thermostat supports. */
100090
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
100066
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
100091
100067
  /** Fan mode settings that the thermostat supports. */
100092
100068
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
100093
100069
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -100124,7 +100100,7 @@ interface Routes {
100124
100100
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
100125
100101
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
100126
100102
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
100127
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
100103
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
100128
100104
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
100129
100105
  cooling_set_point_celsius?: (number | undefined) | undefined;
100130
100106
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -100170,7 +100146,7 @@ interface Routes {
100170
100146
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
100171
100147
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
100172
100148
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
100173
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
100149
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
100174
100150
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
100175
100151
  cooling_set_point_celsius?: (number | undefined) | undefined;
100176
100152
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -100215,7 +100191,7 @@ interface Routes {
100215
100191
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
100216
100192
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
100217
100193
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
100218
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
100194
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
100219
100195
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
100220
100196
  cooling_set_point_celsius?: number | undefined;
100221
100197
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -101296,7 +101272,7 @@ interface Routes {
101296
101272
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
101297
101273
  relative_humidity?: number | undefined;
101298
101274
  /** HVAC mode settings that the thermostat supports. */
101299
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
101275
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
101300
101276
  /** Fan mode settings that the thermostat supports. */
101301
101277
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
101302
101278
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -101333,7 +101309,7 @@ interface Routes {
101333
101309
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
101334
101310
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
101335
101311
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
101336
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
101312
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
101337
101313
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
101338
101314
  cooling_set_point_celsius?: (number | undefined) | undefined;
101339
101315
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -101379,7 +101355,7 @@ interface Routes {
101379
101355
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
101380
101356
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
101381
101357
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
101382
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
101358
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
101383
101359
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
101384
101360
  cooling_set_point_celsius?: (number | undefined) | undefined;
101385
101361
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -101424,7 +101400,7 @@ interface Routes {
101424
101400
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
101425
101401
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
101426
101402
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
101427
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
101403
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
101428
101404
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
101429
101405
  cooling_set_point_celsius?: number | undefined;
101430
101406
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -104313,7 +104289,7 @@ interface Routes {
104313
104289
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
104314
104290
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
104315
104291
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
104316
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
104292
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
104317
104293
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
104318
104294
  cooling_set_point_celsius?: (number | undefined) | undefined;
104319
104295
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -105965,7 +105941,7 @@ interface Routes {
105965
105941
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
105966
105942
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
105967
105943
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
105968
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
105944
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
105969
105945
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
105970
105946
  cooling_set_point_celsius?: (number | undefined) | undefined;
105971
105947
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -106729,7 +106705,7 @@ interface Routes {
106729
106705
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
106730
106706
  relative_humidity?: number | undefined;
106731
106707
  /** HVAC mode settings that the thermostat supports. */
106732
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
106708
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
106733
106709
  /** Fan mode settings that the thermostat supports. */
106734
106710
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
106735
106711
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -106766,7 +106742,7 @@ interface Routes {
106766
106742
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
106767
106743
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
106768
106744
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
106769
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
106745
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
106770
106746
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
106771
106747
  cooling_set_point_celsius?: (number | undefined) | undefined;
106772
106748
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -106812,7 +106788,7 @@ interface Routes {
106812
106788
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
106813
106789
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
106814
106790
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
106815
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
106791
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
106816
106792
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
106817
106793
  cooling_set_point_celsius?: (number | undefined) | undefined;
106818
106794
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -106857,7 +106833,7 @@ interface Routes {
106857
106833
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
106858
106834
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
106859
106835
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
106860
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
106836
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
106861
106837
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
106862
106838
  cooling_set_point_celsius?: number | undefined;
106863
106839
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -107890,7 +107866,7 @@ interface Routes {
107890
107866
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
107891
107867
  relative_humidity?: number | undefined;
107892
107868
  /** HVAC mode settings that the thermostat supports. */
107893
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
107869
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
107894
107870
  /** Fan mode settings that the thermostat supports. */
107895
107871
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
107896
107872
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -107927,7 +107903,7 @@ interface Routes {
107927
107903
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
107928
107904
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
107929
107905
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
107930
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
107906
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
107931
107907
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
107932
107908
  cooling_set_point_celsius?: (number | undefined) | undefined;
107933
107909
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -107973,7 +107949,7 @@ interface Routes {
107973
107949
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
107974
107950
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
107975
107951
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
107976
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
107952
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
107977
107953
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
107978
107954
  cooling_set_point_celsius?: (number | undefined) | undefined;
107979
107955
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -108018,7 +107994,7 @@ interface Routes {
108018
107994
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
108019
107995
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
108020
107996
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
108021
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
107997
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
108022
107998
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
108023
107999
  cooling_set_point_celsius?: number | undefined;
108024
108000
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -109099,7 +109075,7 @@ interface Routes {
109099
109075
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
109100
109076
  relative_humidity?: number | undefined;
109101
109077
  /** HVAC mode settings that the thermostat supports. */
109102
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
109078
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
109103
109079
  /** Fan mode settings that the thermostat supports. */
109104
109080
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
109105
109081
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -109136,7 +109112,7 @@ interface Routes {
109136
109112
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
109137
109113
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
109138
109114
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
109139
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
109115
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
109140
109116
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
109141
109117
  cooling_set_point_celsius?: (number | undefined) | undefined;
109142
109118
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -109182,7 +109158,7 @@ interface Routes {
109182
109158
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
109183
109159
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
109184
109160
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
109185
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
109161
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
109186
109162
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
109187
109163
  cooling_set_point_celsius?: (number | undefined) | undefined;
109188
109164
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -109227,7 +109203,7 @@ interface Routes {
109227
109203
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
109228
109204
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
109229
109205
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
109230
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
109206
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
109231
109207
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
109232
109208
  cooling_set_point_celsius?: number | undefined;
109233
109209
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -110259,7 +110235,7 @@ interface Routes {
110259
110235
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
110260
110236
  relative_humidity?: number | undefined;
110261
110237
  /** HVAC mode settings that the thermostat supports. */
110262
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
110238
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
110263
110239
  /** Fan mode settings that the thermostat supports. */
110264
110240
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
110265
110241
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -110296,7 +110272,7 @@ interface Routes {
110296
110272
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
110297
110273
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
110298
110274
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
110299
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
110275
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
110300
110276
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
110301
110277
  cooling_set_point_celsius?: (number | undefined) | undefined;
110302
110278
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -110342,7 +110318,7 @@ interface Routes {
110342
110318
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
110343
110319
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
110344
110320
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
110345
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
110321
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
110346
110322
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
110347
110323
  cooling_set_point_celsius?: (number | undefined) | undefined;
110348
110324
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -110387,7 +110363,7 @@ interface Routes {
110387
110363
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
110388
110364
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
110389
110365
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
110390
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
110366
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
110391
110367
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
110392
110368
  cooling_set_point_celsius?: number | undefined;
110393
110369
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -116541,7 +116517,7 @@ interface Routes {
116541
116517
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
116542
116518
  relative_humidity?: number | undefined;
116543
116519
  /** HVAC mode settings that the thermostat supports. */
116544
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
116520
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
116545
116521
  /** Fan mode settings that the thermostat supports. */
116546
116522
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
116547
116523
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -116578,7 +116554,7 @@ interface Routes {
116578
116554
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
116579
116555
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
116580
116556
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
116581
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
116557
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
116582
116558
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
116583
116559
  cooling_set_point_celsius?: (number | undefined) | undefined;
116584
116560
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -116624,7 +116600,7 @@ interface Routes {
116624
116600
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
116625
116601
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
116626
116602
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
116627
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
116603
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
116628
116604
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
116629
116605
  cooling_set_point_celsius?: (number | undefined) | undefined;
116630
116606
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -116669,7 +116645,7 @@ interface Routes {
116669
116645
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
116670
116646
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
116671
116647
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
116672
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
116648
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
116673
116649
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
116674
116650
  cooling_set_point_celsius?: number | undefined;
116675
116651
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -117701,7 +117677,7 @@ interface Routes {
117701
117677
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
117702
117678
  relative_humidity?: number | undefined;
117703
117679
  /** HVAC mode settings that the thermostat supports. */
117704
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
117680
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
117705
117681
  /** Fan mode settings that the thermostat supports. */
117706
117682
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
117707
117683
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -117738,7 +117714,7 @@ interface Routes {
117738
117714
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
117739
117715
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
117740
117716
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
117741
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
117717
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
117742
117718
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
117743
117719
  cooling_set_point_celsius?: (number | undefined) | undefined;
117744
117720
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -117784,7 +117760,7 @@ interface Routes {
117784
117760
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
117785
117761
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
117786
117762
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
117787
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
117763
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
117788
117764
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
117789
117765
  cooling_set_point_celsius?: (number | undefined) | undefined;
117790
117766
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -117829,7 +117805,7 @@ interface Routes {
117829
117805
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
117830
117806
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
117831
117807
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
117832
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
117808
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
117833
117809
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
117834
117810
  cooling_set_point_celsius?: number | undefined;
117835
117811
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -124099,7 +124075,7 @@ interface Routes {
124099
124075
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
124100
124076
  relative_humidity?: number | undefined;
124101
124077
  /** HVAC mode settings that the thermostat supports. */
124102
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
124078
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
124103
124079
  /** Fan mode settings that the thermostat supports. */
124104
124080
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
124105
124081
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -124136,7 +124112,7 @@ interface Routes {
124136
124112
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
124137
124113
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
124138
124114
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
124139
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
124115
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
124140
124116
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
124141
124117
  cooling_set_point_celsius?: (number | undefined) | undefined;
124142
124118
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -124182,7 +124158,7 @@ interface Routes {
124182
124158
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
124183
124159
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
124184
124160
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
124185
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
124161
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
124186
124162
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
124187
124163
  cooling_set_point_celsius?: (number | undefined) | undefined;
124188
124164
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -124227,7 +124203,7 @@ interface Routes {
124227
124203
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
124228
124204
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
124229
124205
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
124230
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
124206
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
124231
124207
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
124232
124208
  cooling_set_point_celsius?: number | undefined;
124233
124209
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -127414,7 +127390,7 @@ interface Routes {
127414
127390
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
127415
127391
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
127416
127392
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
127417
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
127393
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
127418
127394
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
127419
127395
  cooling_set_point_celsius?: number | undefined;
127420
127396
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -129372,7 +129348,7 @@ interface Routes {
129372
129348
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
129373
129349
  relative_humidity?: number | undefined;
129374
129350
  /** HVAC mode settings that the thermostat supports. */
129375
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
129351
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
129376
129352
  /** Fan mode settings that the thermostat supports. */
129377
129353
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
129378
129354
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -129409,7 +129385,7 @@ interface Routes {
129409
129385
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
129410
129386
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
129411
129387
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
129412
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
129388
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
129413
129389
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
129414
129390
  cooling_set_point_celsius?: (number | undefined) | undefined;
129415
129391
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -129455,7 +129431,7 @@ interface Routes {
129455
129431
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
129456
129432
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
129457
129433
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
129458
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
129434
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
129459
129435
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
129460
129436
  cooling_set_point_celsius?: (number | undefined) | undefined;
129461
129437
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -129500,7 +129476,7 @@ interface Routes {
129500
129476
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
129501
129477
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
129502
129478
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
129503
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
129479
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
129504
129480
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
129505
129481
  cooling_set_point_celsius?: number | undefined;
129506
129482
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -133113,7 +133089,7 @@ interface Routes {
133113
133089
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
133114
133090
  relative_humidity?: number | undefined;
133115
133091
  /** HVAC mode settings that the thermostat supports. */
133116
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
133092
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
133117
133093
  /** Fan mode settings that the thermostat supports. */
133118
133094
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
133119
133095
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -133150,7 +133126,7 @@ interface Routes {
133150
133126
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
133151
133127
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
133152
133128
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
133153
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
133129
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
133154
133130
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
133155
133131
  cooling_set_point_celsius?: (number | undefined) | undefined;
133156
133132
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -133196,7 +133172,7 @@ interface Routes {
133196
133172
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
133197
133173
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
133198
133174
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
133199
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
133175
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
133200
133176
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
133201
133177
  cooling_set_point_celsius?: (number | undefined) | undefined;
133202
133178
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -133241,7 +133217,7 @@ interface Routes {
133241
133217
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
133242
133218
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
133243
133219
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
133244
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
133220
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
133245
133221
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
133246
133222
  cooling_set_point_celsius?: number | undefined;
133247
133223
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -134273,7 +134249,7 @@ interface Routes {
134273
134249
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
134274
134250
  relative_humidity?: number | undefined;
134275
134251
  /** HVAC mode settings that the thermostat supports. */
134276
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
134252
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
134277
134253
  /** Fan mode settings that the thermostat supports. */
134278
134254
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
134279
134255
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -134310,7 +134286,7 @@ interface Routes {
134310
134286
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
134311
134287
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
134312
134288
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
134313
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
134289
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
134314
134290
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
134315
134291
  cooling_set_point_celsius?: (number | undefined) | undefined;
134316
134292
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -134356,7 +134332,7 @@ interface Routes {
134356
134332
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
134357
134333
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
134358
134334
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
134359
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
134335
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
134360
134336
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
134361
134337
  cooling_set_point_celsius?: (number | undefined) | undefined;
134362
134338
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -134401,7 +134377,7 @@ interface Routes {
134401
134377
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
134402
134378
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
134403
134379
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
134404
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
134380
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
134405
134381
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
134406
134382
  cooling_set_point_celsius?: number | undefined;
134407
134383
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -138954,7 +138930,7 @@ interface Routes {
138954
138930
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
138955
138931
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
138956
138932
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
138957
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
138933
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
138958
138934
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
138959
138935
  cooling_set_point_celsius?: number | undefined;
138960
138936
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -141869,7 +141845,7 @@ interface Routes {
141869
141845
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
141870
141846
  relative_humidity?: number | undefined;
141871
141847
  /** HVAC mode settings that the thermostat supports. */
141872
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
141848
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
141873
141849
  /** Fan mode settings that the thermostat supports. */
141874
141850
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
141875
141851
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -141906,7 +141882,7 @@ interface Routes {
141906
141882
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
141907
141883
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
141908
141884
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
141909
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
141885
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
141910
141886
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
141911
141887
  cooling_set_point_celsius?: (number | undefined) | undefined;
141912
141888
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -141952,7 +141928,7 @@ interface Routes {
141952
141928
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
141953
141929
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
141954
141930
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
141955
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
141931
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
141956
141932
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
141957
141933
  cooling_set_point_celsius?: (number | undefined) | undefined;
141958
141934
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -141997,7 +141973,7 @@ interface Routes {
141997
141973
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
141998
141974
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
141999
141975
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
142000
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
141976
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
142001
141977
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
142002
141978
  cooling_set_point_celsius?: number | undefined;
142003
141979
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -143031,7 +143007,7 @@ interface Routes {
143031
143007
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
143032
143008
  relative_humidity?: number | undefined;
143033
143009
  /** HVAC mode settings that the thermostat supports. */
143034
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
143010
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
143035
143011
  /** Fan mode settings that the thermostat supports. */
143036
143012
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
143037
143013
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -143068,7 +143044,7 @@ interface Routes {
143068
143044
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
143069
143045
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
143070
143046
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
143071
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
143047
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
143072
143048
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
143073
143049
  cooling_set_point_celsius?: (number | undefined) | undefined;
143074
143050
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -143114,7 +143090,7 @@ interface Routes {
143114
143090
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
143115
143091
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
143116
143092
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
143117
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
143093
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
143118
143094
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
143119
143095
  cooling_set_point_celsius?: (number | undefined) | undefined;
143120
143096
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
@@ -143159,7 +143135,7 @@ interface Routes {
143159
143135
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
143160
143136
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
143161
143137
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
143162
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
143138
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
143163
143139
  /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
143164
143140
  cooling_set_point_celsius?: number | undefined;
143165
143141
  /** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */