@seamapi/types 1.446.0 → 1.447.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +15 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +144 -144
- package/dist/devicedb.d.cts +24 -24
- package/dist/index.cjs +15 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batches/batch.d.ts +34 -34
- package/lib/seam/connect/models/batches/spaces.d.ts +34 -34
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
- package/lib/seam/connect/models/devices/device.d.ts +26 -26
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -18
- package/lib/seam/connect/models/events/devices.d.ts +6 -6
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +1 -1
- package/lib/seam/connect/models/thermostats/modes.js +7 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.js +8 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +60 -60
- package/lib/seam/devicedb/models/device-model.d.ts +12 -12
- package/lib/seam/devicedb/route-specs.d.ts +12 -12
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +8 -8
- package/src/lib/seam/connect/route-types.ts +145 -60
package/dist/connect.d.cts
CHANGED
|
@@ -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;
|
|
@@ -100087,7 +100087,7 @@ interface Routes {
|
|
|
100087
100087
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
100088
100088
|
relative_humidity?: number | undefined;
|
|
100089
100089
|
/** HVAC mode settings that the thermostat supports. */
|
|
100090
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
100090
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
100091
100091
|
/** Fan mode settings that the thermostat supports. */
|
|
100092
100092
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
100093
100093
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -100124,7 +100124,7 @@ interface Routes {
|
|
|
100124
100124
|
/** 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
100125
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
100126
100126
|
/** 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;
|
|
100127
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
100128
100128
|
/** 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
100129
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
100130
100130
|
/** 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 +100170,7 @@ interface Routes {
|
|
|
100170
100170
|
/** 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
100171
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
100172
100172
|
/** 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;
|
|
100173
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
100174
100174
|
/** 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
100175
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
100176
100176
|
/** 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 +100215,7 @@ interface Routes {
|
|
|
100215
100215
|
/** 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
100216
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
100217
100217
|
/** 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;
|
|
100218
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
100219
100219
|
/** 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
100220
|
cooling_set_point_celsius?: number | undefined;
|
|
100221
100221
|
/** 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 +101296,7 @@ interface Routes {
|
|
|
101296
101296
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
101297
101297
|
relative_humidity?: number | undefined;
|
|
101298
101298
|
/** HVAC mode settings that the thermostat supports. */
|
|
101299
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
101299
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
101300
101300
|
/** Fan mode settings that the thermostat supports. */
|
|
101301
101301
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
101302
101302
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -101333,7 +101333,7 @@ interface Routes {
|
|
|
101333
101333
|
/** 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
101334
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
101335
101335
|
/** 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;
|
|
101336
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
101337
101337
|
/** 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
101338
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
101339
101339
|
/** 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 +101379,7 @@ interface Routes {
|
|
|
101379
101379
|
/** 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
101380
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
101381
101381
|
/** 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;
|
|
101382
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
101383
101383
|
/** 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
101384
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
101385
101385
|
/** 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 +101424,7 @@ interface Routes {
|
|
|
101424
101424
|
/** 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
101425
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
101426
101426
|
/** 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;
|
|
101427
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
101428
101428
|
/** 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
101429
|
cooling_set_point_celsius?: number | undefined;
|
|
101430
101430
|
/** 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 +104313,7 @@ interface Routes {
|
|
|
104313
104313
|
/** 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
104314
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
104315
104315
|
/** 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;
|
|
104316
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
104317
104317
|
/** 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
104318
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
104319
104319
|
/** 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 +105965,7 @@ interface Routes {
|
|
|
105965
105965
|
/** 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
105966
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
105967
105967
|
/** 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;
|
|
105968
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
105969
105969
|
/** 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
105970
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
105971
105971
|
/** 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 +106729,7 @@ interface Routes {
|
|
|
106729
106729
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
106730
106730
|
relative_humidity?: number | undefined;
|
|
106731
106731
|
/** HVAC mode settings that the thermostat supports. */
|
|
106732
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
106732
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
106733
106733
|
/** Fan mode settings that the thermostat supports. */
|
|
106734
106734
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
106735
106735
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -106766,7 +106766,7 @@ interface Routes {
|
|
|
106766
106766
|
/** 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
106767
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
106768
106768
|
/** 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;
|
|
106769
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
106770
106770
|
/** 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
106771
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
106772
106772
|
/** 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 +106812,7 @@ interface Routes {
|
|
|
106812
106812
|
/** 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
106813
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
106814
106814
|
/** 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;
|
|
106815
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
106816
106816
|
/** 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
106817
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
106818
106818
|
/** 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 +106857,7 @@ interface Routes {
|
|
|
106857
106857
|
/** 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
106858
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
106859
106859
|
/** 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;
|
|
106860
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
106861
106861
|
/** 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
106862
|
cooling_set_point_celsius?: number | undefined;
|
|
106863
106863
|
/** 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 +107890,7 @@ interface Routes {
|
|
|
107890
107890
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
107891
107891
|
relative_humidity?: number | undefined;
|
|
107892
107892
|
/** HVAC mode settings that the thermostat supports. */
|
|
107893
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
107893
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
107894
107894
|
/** Fan mode settings that the thermostat supports. */
|
|
107895
107895
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
107896
107896
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -107927,7 +107927,7 @@ interface Routes {
|
|
|
107927
107927
|
/** 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
107928
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
107929
107929
|
/** 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;
|
|
107930
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
107931
107931
|
/** 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
107932
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
107933
107933
|
/** 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 +107973,7 @@ interface Routes {
|
|
|
107973
107973
|
/** 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
107974
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
107975
107975
|
/** 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;
|
|
107976
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
107977
107977
|
/** 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
107978
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
107979
107979
|
/** 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 +108018,7 @@ interface Routes {
|
|
|
108018
108018
|
/** 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
108019
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
108020
108020
|
/** 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;
|
|
108021
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
108022
108022
|
/** 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
108023
|
cooling_set_point_celsius?: number | undefined;
|
|
108024
108024
|
/** 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 +109099,7 @@ interface Routes {
|
|
|
109099
109099
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
109100
109100
|
relative_humidity?: number | undefined;
|
|
109101
109101
|
/** HVAC mode settings that the thermostat supports. */
|
|
109102
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
109102
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
109103
109103
|
/** Fan mode settings that the thermostat supports. */
|
|
109104
109104
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
109105
109105
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -109136,7 +109136,7 @@ interface Routes {
|
|
|
109136
109136
|
/** 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
109137
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
109138
109138
|
/** 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;
|
|
109139
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
109140
109140
|
/** 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
109141
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
109142
109142
|
/** 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 +109182,7 @@ interface Routes {
|
|
|
109182
109182
|
/** 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
109183
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
109184
109184
|
/** 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;
|
|
109185
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
109186
109186
|
/** 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
109187
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
109188
109188
|
/** 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 +109227,7 @@ interface Routes {
|
|
|
109227
109227
|
/** 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
109228
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
109229
109229
|
/** 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;
|
|
109230
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
109231
109231
|
/** 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
109232
|
cooling_set_point_celsius?: number | undefined;
|
|
109233
109233
|
/** 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 +110259,7 @@ interface Routes {
|
|
|
110259
110259
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
110260
110260
|
relative_humidity?: number | undefined;
|
|
110261
110261
|
/** HVAC mode settings that the thermostat supports. */
|
|
110262
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
110262
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
110263
110263
|
/** Fan mode settings that the thermostat supports. */
|
|
110264
110264
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
110265
110265
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -110296,7 +110296,7 @@ interface Routes {
|
|
|
110296
110296
|
/** 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
110297
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
110298
110298
|
/** 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;
|
|
110299
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
110300
110300
|
/** 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
110301
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
110302
110302
|
/** 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 +110342,7 @@ interface Routes {
|
|
|
110342
110342
|
/** 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
110343
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
110344
110344
|
/** 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;
|
|
110345
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
110346
110346
|
/** 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
110347
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
110348
110348
|
/** 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 +110387,7 @@ interface Routes {
|
|
|
110387
110387
|
/** 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
110388
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
110389
110389
|
/** 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;
|
|
110390
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
110391
110391
|
/** 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
110392
|
cooling_set_point_celsius?: number | undefined;
|
|
110393
110393
|
/** 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 +116541,7 @@ interface Routes {
|
|
|
116541
116541
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
116542
116542
|
relative_humidity?: number | undefined;
|
|
116543
116543
|
/** HVAC mode settings that the thermostat supports. */
|
|
116544
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
116544
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
116545
116545
|
/** Fan mode settings that the thermostat supports. */
|
|
116546
116546
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
116547
116547
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -116578,7 +116578,7 @@ interface Routes {
|
|
|
116578
116578
|
/** 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
116579
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
116580
116580
|
/** 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;
|
|
116581
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
116582
116582
|
/** 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
116583
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
116584
116584
|
/** 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 +116624,7 @@ interface Routes {
|
|
|
116624
116624
|
/** 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
116625
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
116626
116626
|
/** 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;
|
|
116627
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
116628
116628
|
/** 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
116629
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
116630
116630
|
/** 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 +116669,7 @@ interface Routes {
|
|
|
116669
116669
|
/** 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
116670
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
116671
116671
|
/** 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;
|
|
116672
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
116673
116673
|
/** 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
116674
|
cooling_set_point_celsius?: number | undefined;
|
|
116675
116675
|
/** 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 +117701,7 @@ interface Routes {
|
|
|
117701
117701
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
117702
117702
|
relative_humidity?: number | undefined;
|
|
117703
117703
|
/** HVAC mode settings that the thermostat supports. */
|
|
117704
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
117704
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
117705
117705
|
/** Fan mode settings that the thermostat supports. */
|
|
117706
117706
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
117707
117707
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -117738,7 +117738,7 @@ interface Routes {
|
|
|
117738
117738
|
/** 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
117739
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
117740
117740
|
/** 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;
|
|
117741
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
117742
117742
|
/** 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
117743
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
117744
117744
|
/** 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 +117784,7 @@ interface Routes {
|
|
|
117784
117784
|
/** 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
117785
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
117786
117786
|
/** 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;
|
|
117787
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
117788
117788
|
/** 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
117789
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
117790
117790
|
/** 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 +117829,7 @@ interface Routes {
|
|
|
117829
117829
|
/** 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
117830
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
117831
117831
|
/** 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;
|
|
117832
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
117833
117833
|
/** 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
117834
|
cooling_set_point_celsius?: number | undefined;
|
|
117835
117835
|
/** 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 +124099,7 @@ interface Routes {
|
|
|
124099
124099
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
124100
124100
|
relative_humidity?: number | undefined;
|
|
124101
124101
|
/** HVAC mode settings that the thermostat supports. */
|
|
124102
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
124102
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
124103
124103
|
/** Fan mode settings that the thermostat supports. */
|
|
124104
124104
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
124105
124105
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -124136,7 +124136,7 @@ interface Routes {
|
|
|
124136
124136
|
/** 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
124137
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
124138
124138
|
/** 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;
|
|
124139
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
124140
124140
|
/** 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
124141
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
124142
124142
|
/** 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 +124182,7 @@ interface Routes {
|
|
|
124182
124182
|
/** 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
124183
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
124184
124184
|
/** 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;
|
|
124185
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
124186
124186
|
/** 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
124187
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
124188
124188
|
/** 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 +124227,7 @@ interface Routes {
|
|
|
124227
124227
|
/** 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
124228
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
124229
124229
|
/** 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;
|
|
124230
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
124231
124231
|
/** 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
124232
|
cooling_set_point_celsius?: number | undefined;
|
|
124233
124233
|
/** 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 +127414,7 @@ interface Routes {
|
|
|
127414
127414
|
/** 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
127415
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
127416
127416
|
/** 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;
|
|
127417
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
127418
127418
|
/** 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
127419
|
cooling_set_point_celsius?: number | undefined;
|
|
127420
127420
|
/** 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 +129372,7 @@ interface Routes {
|
|
|
129372
129372
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
129373
129373
|
relative_humidity?: number | undefined;
|
|
129374
129374
|
/** HVAC mode settings that the thermostat supports. */
|
|
129375
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
129375
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
129376
129376
|
/** Fan mode settings that the thermostat supports. */
|
|
129377
129377
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
129378
129378
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -129409,7 +129409,7 @@ interface Routes {
|
|
|
129409
129409
|
/** 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
129410
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
129411
129411
|
/** 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;
|
|
129412
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
129413
129413
|
/** 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
129414
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
129415
129415
|
/** 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 +129455,7 @@ interface Routes {
|
|
|
129455
129455
|
/** 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
129456
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
129457
129457
|
/** 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;
|
|
129458
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
129459
129459
|
/** 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
129460
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
129461
129461
|
/** 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 +129500,7 @@ interface Routes {
|
|
|
129500
129500
|
/** 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
129501
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
129502
129502
|
/** 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;
|
|
129503
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
129504
129504
|
/** 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
129505
|
cooling_set_point_celsius?: number | undefined;
|
|
129506
129506
|
/** 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 +133113,7 @@ interface Routes {
|
|
|
133113
133113
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
133114
133114
|
relative_humidity?: number | undefined;
|
|
133115
133115
|
/** HVAC mode settings that the thermostat supports. */
|
|
133116
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
133116
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
133117
133117
|
/** Fan mode settings that the thermostat supports. */
|
|
133118
133118
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
133119
133119
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -133150,7 +133150,7 @@ interface Routes {
|
|
|
133150
133150
|
/** 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
133151
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
133152
133152
|
/** 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;
|
|
133153
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
133154
133154
|
/** 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
133155
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
133156
133156
|
/** 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 +133196,7 @@ interface Routes {
|
|
|
133196
133196
|
/** 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
133197
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
133198
133198
|
/** 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;
|
|
133199
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
133200
133200
|
/** 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
133201
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
133202
133202
|
/** 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 +133241,7 @@ interface Routes {
|
|
|
133241
133241
|
/** 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
133242
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
133243
133243
|
/** 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;
|
|
133244
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
133245
133245
|
/** 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
133246
|
cooling_set_point_celsius?: number | undefined;
|
|
133247
133247
|
/** 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 +134273,7 @@ interface Routes {
|
|
|
134273
134273
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
134274
134274
|
relative_humidity?: number | undefined;
|
|
134275
134275
|
/** HVAC mode settings that the thermostat supports. */
|
|
134276
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
134276
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
134277
134277
|
/** Fan mode settings that the thermostat supports. */
|
|
134278
134278
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
134279
134279
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -134310,7 +134310,7 @@ interface Routes {
|
|
|
134310
134310
|
/** 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
134311
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
134312
134312
|
/** 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;
|
|
134313
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
134314
134314
|
/** 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
134315
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
134316
134316
|
/** 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 +134356,7 @@ interface Routes {
|
|
|
134356
134356
|
/** 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
134357
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
134358
134358
|
/** 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;
|
|
134359
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
134360
134360
|
/** 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
134361
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
134362
134362
|
/** 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 +134401,7 @@ interface Routes {
|
|
|
134401
134401
|
/** 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
134402
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
134403
134403
|
/** 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;
|
|
134404
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
134405
134405
|
/** 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
134406
|
cooling_set_point_celsius?: number | undefined;
|
|
134407
134407
|
/** 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 +138954,7 @@ interface Routes {
|
|
|
138954
138954
|
/** 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
138955
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
138956
138956
|
/** 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;
|
|
138957
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
138958
138958
|
/** 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
138959
|
cooling_set_point_celsius?: number | undefined;
|
|
138960
138960
|
/** 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 +141869,7 @@ interface Routes {
|
|
|
141869
141869
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
141870
141870
|
relative_humidity?: number | undefined;
|
|
141871
141871
|
/** HVAC mode settings that the thermostat supports. */
|
|
141872
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
141872
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
141873
141873
|
/** Fan mode settings that the thermostat supports. */
|
|
141874
141874
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
141875
141875
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -141906,7 +141906,7 @@ interface Routes {
|
|
|
141906
141906
|
/** 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
141907
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
141908
141908
|
/** 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;
|
|
141909
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
141910
141910
|
/** 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
141911
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
141912
141912
|
/** 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 +141952,7 @@ interface Routes {
|
|
|
141952
141952
|
/** 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
141953
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
141954
141954
|
/** 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;
|
|
141955
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
141956
141956
|
/** 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
141957
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
141958
141958
|
/** 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 +141997,7 @@ interface Routes {
|
|
|
141997
141997
|
/** 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
141998
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
141999
141999
|
/** 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;
|
|
142000
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
142001
142001
|
/** 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
142002
|
cooling_set_point_celsius?: number | undefined;
|
|
142003
142003
|
/** 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 +143031,7 @@ interface Routes {
|
|
|
143031
143031
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
143032
143032
|
relative_humidity?: number | undefined;
|
|
143033
143033
|
/** HVAC mode settings that the thermostat supports. */
|
|
143034
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
143034
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
143035
143035
|
/** Fan mode settings that the thermostat supports. */
|
|
143036
143036
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
143037
143037
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -143068,7 +143068,7 @@ interface Routes {
|
|
|
143068
143068
|
/** 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
143069
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
143070
143070
|
/** 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;
|
|
143071
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
143072
143072
|
/** 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
143073
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
143074
143074
|
/** 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 +143114,7 @@ interface Routes {
|
|
|
143114
143114
|
/** 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
143115
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
143116
143116
|
/** 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;
|
|
143117
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
143118
143118
|
/** 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
143119
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
143120
143120
|
/** 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 +143159,7 @@ interface Routes {
|
|
|
143159
143159
|
/** 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
143160
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
143161
143161
|
/** 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;
|
|
143162
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
143163
143163
|
/** 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
143164
|
cooling_set_point_celsius?: number | undefined;
|
|
143165
143165
|
/** 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). */
|