@seamapi/types 1.446.0 → 1.448.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/connect.cjs +21 -15
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +148 -172
  4. package/dist/devicedb.d.cts +24 -24
  5. package/dist/index.cjs +21 -15
  6. package/dist/index.cjs.map +1 -1
  7. package/lib/seam/connect/models/batches/batch.d.ts +34 -34
  8. package/lib/seam/connect/models/batches/spaces.d.ts +34 -34
  9. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
  10. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
  11. package/lib/seam/connect/models/devices/device.d.ts +26 -26
  12. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -18
  13. package/lib/seam/connect/models/events/devices.d.ts +6 -6
  14. package/lib/seam/connect/models/events/seam-event.d.ts +3 -3
  15. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
  16. package/lib/seam/connect/models/thermostats/modes.d.ts +1 -1
  17. package/lib/seam/connect/models/thermostats/modes.js +7 -1
  18. package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
  19. package/lib/seam/connect/openapi.d.ts +2 -27
  20. package/lib/seam/connect/openapi.js +14 -14
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +62 -61
  23. package/lib/seam/devicedb/models/device-model.d.ts +12 -12
  24. package/lib/seam/devicedb/route-specs.d.ts +12 -12
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
  27. package/src/lib/seam/connect/openapi.ts +16 -14
  28. package/src/lib/seam/connect/route-types.ts +147 -61
@@ -21832,7 +21832,8 @@ export interface Routes {
21832
21832
  user_identifier_key?: string | undefined;
21833
21833
  /** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
21834
21834
  custom_metadata_has?: Record<string, string | boolean> | undefined;
21835
- customer_ids?: string[] | undefined;
21835
+ /** Customer key by which you want to filter connected accounts. */
21836
+ customer_key?: string | undefined;
21836
21837
  /** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
21837
21838
  search?: string | undefined;
21838
21839
  /** Maximum number of records to return per page. */
@@ -23271,7 +23272,7 @@ export interface Routes {
23271
23272
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
23272
23273
  relative_humidity?: number | undefined;
23273
23274
  /** HVAC mode settings that the thermostat supports. */
23274
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
23275
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
23275
23276
  /** Fan mode settings that the thermostat supports. */
23276
23277
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
23277
23278
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -23308,7 +23309,7 @@ export interface Routes {
23308
23309
  /** 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`. */
23309
23310
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
23310
23311
  /** 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`. */
23311
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
23312
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
23312
23313
  /** 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). */
23313
23314
  cooling_set_point_celsius?: (number | undefined) | undefined;
23314
23315
  /** 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). */
@@ -23354,7 +23355,7 @@ export interface Routes {
23354
23355
  /** 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`. */
23355
23356
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
23356
23357
  /** 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`. */
23357
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
23358
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
23358
23359
  /** 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). */
23359
23360
  cooling_set_point_celsius?: (number | undefined) | undefined;
23360
23361
  /** 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). */
@@ -23399,7 +23400,7 @@ export interface Routes {
23399
23400
  /** 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`. */
23400
23401
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
23401
23402
  /** 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`. */
23402
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
23403
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
23403
23404
  /** 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). */
23404
23405
  cooling_set_point_celsius?: number | undefined;
23405
23406
  /** 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). */
@@ -24480,7 +24481,7 @@ export interface Routes {
24480
24481
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
24481
24482
  relative_humidity?: number | undefined;
24482
24483
  /** HVAC mode settings that the thermostat supports. */
24483
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
24484
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
24484
24485
  /** Fan mode settings that the thermostat supports. */
24485
24486
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
24486
24487
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -24517,7 +24518,7 @@ export interface Routes {
24517
24518
  /** 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`. */
24518
24519
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
24519
24520
  /** 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`. */
24520
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
24521
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
24521
24522
  /** 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). */
24522
24523
  cooling_set_point_celsius?: (number | undefined) | undefined;
24523
24524
  /** 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). */
@@ -24563,7 +24564,7 @@ export interface Routes {
24563
24564
  /** 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`. */
24564
24565
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
24565
24566
  /** 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`. */
24566
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
24567
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
24567
24568
  /** 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). */
24568
24569
  cooling_set_point_celsius?: (number | undefined) | undefined;
24569
24570
  /** 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). */
@@ -24608,7 +24609,7 @@ export interface Routes {
24608
24609
  /** 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`. */
24609
24610
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
24610
24611
  /** 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`. */
24611
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
24612
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
24612
24613
  /** 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). */
24613
24614
  cooling_set_point_celsius?: number | undefined;
24614
24615
  /** 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). */
@@ -27497,7 +27498,7 @@ export interface Routes {
27497
27498
  /** 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`. */
27498
27499
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
27499
27500
  /** 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`. */
27500
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
27501
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
27501
27502
  /** 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). */
27502
27503
  cooling_set_point_celsius?: (number | undefined) | undefined;
27503
27504
  /** 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). */
@@ -29149,7 +29150,7 @@ export interface Routes {
29149
29150
  /** 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`. */
29150
29151
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
29151
29152
  /** 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`. */
29152
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
29153
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
29153
29154
  /** 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). */
29154
29155
  cooling_set_point_celsius?: (number | undefined) | undefined;
29155
29156
  /** 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). */
@@ -29913,7 +29914,7 @@ export interface Routes {
29913
29914
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
29914
29915
  relative_humidity?: number | undefined;
29915
29916
  /** HVAC mode settings that the thermostat supports. */
29916
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
29917
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
29917
29918
  /** Fan mode settings that the thermostat supports. */
29918
29919
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
29919
29920
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -29950,7 +29951,7 @@ export interface Routes {
29950
29951
  /** 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`. */
29951
29952
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
29952
29953
  /** 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`. */
29953
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
29954
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
29954
29955
  /** 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). */
29955
29956
  cooling_set_point_celsius?: (number | undefined) | undefined;
29956
29957
  /** 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). */
@@ -29996,7 +29997,7 @@ export interface Routes {
29996
29997
  /** 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`. */
29997
29998
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
29998
29999
  /** 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`. */
29999
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
30000
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
30000
30001
  /** 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). */
30001
30002
  cooling_set_point_celsius?: (number | undefined) | undefined;
30002
30003
  /** 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). */
@@ -30041,7 +30042,7 @@ export interface Routes {
30041
30042
  /** 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`. */
30042
30043
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
30043
30044
  /** 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`. */
30044
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
30045
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
30045
30046
  /** 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). */
30046
30047
  cooling_set_point_celsius?: number | undefined;
30047
30048
  /** 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). */
@@ -31074,7 +31075,7 @@ export interface Routes {
31074
31075
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
31075
31076
  relative_humidity?: number | undefined;
31076
31077
  /** HVAC mode settings that the thermostat supports. */
31077
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
31078
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
31078
31079
  /** Fan mode settings that the thermostat supports. */
31079
31080
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
31080
31081
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -31111,7 +31112,7 @@ export interface Routes {
31111
31112
  /** 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`. */
31112
31113
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
31113
31114
  /** 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`. */
31114
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
31115
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
31115
31116
  /** 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). */
31116
31117
  cooling_set_point_celsius?: (number | undefined) | undefined;
31117
31118
  /** 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). */
@@ -31157,7 +31158,7 @@ export interface Routes {
31157
31158
  /** 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`. */
31158
31159
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
31159
31160
  /** 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`. */
31160
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
31161
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
31161
31162
  /** 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). */
31162
31163
  cooling_set_point_celsius?: (number | undefined) | undefined;
31163
31164
  /** 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). */
@@ -31202,7 +31203,7 @@ export interface Routes {
31202
31203
  /** 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`. */
31203
31204
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
31204
31205
  /** 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`. */
31205
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
31206
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
31206
31207
  /** 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). */
31207
31208
  cooling_set_point_celsius?: number | undefined;
31208
31209
  /** 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). */
@@ -32283,7 +32284,7 @@ export interface Routes {
32283
32284
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
32284
32285
  relative_humidity?: number | undefined;
32285
32286
  /** HVAC mode settings that the thermostat supports. */
32286
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
32287
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
32287
32288
  /** Fan mode settings that the thermostat supports. */
32288
32289
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
32289
32290
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -32320,7 +32321,7 @@ export interface Routes {
32320
32321
  /** 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`. */
32321
32322
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
32322
32323
  /** 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`. */
32323
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
32324
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
32324
32325
  /** 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). */
32325
32326
  cooling_set_point_celsius?: (number | undefined) | undefined;
32326
32327
  /** 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). */
@@ -32366,7 +32367,7 @@ export interface Routes {
32366
32367
  /** 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`. */
32367
32368
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
32368
32369
  /** 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`. */
32369
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
32370
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
32370
32371
  /** 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). */
32371
32372
  cooling_set_point_celsius?: (number | undefined) | undefined;
32372
32373
  /** 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). */
@@ -32411,7 +32412,7 @@ export interface Routes {
32411
32412
  /** 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`. */
32412
32413
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
32413
32414
  /** 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`. */
32414
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
32415
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
32415
32416
  /** 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). */
32416
32417
  cooling_set_point_celsius?: number | undefined;
32417
32418
  /** 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). */
@@ -33443,7 +33444,7 @@ export interface Routes {
33443
33444
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
33444
33445
  relative_humidity?: number | undefined;
33445
33446
  /** HVAC mode settings that the thermostat supports. */
33446
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
33447
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
33447
33448
  /** Fan mode settings that the thermostat supports. */
33448
33449
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
33449
33450
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -33480,7 +33481,7 @@ export interface Routes {
33480
33481
  /** 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`. */
33481
33482
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
33482
33483
  /** 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`. */
33483
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
33484
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
33484
33485
  /** 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). */
33485
33486
  cooling_set_point_celsius?: (number | undefined) | undefined;
33486
33487
  /** 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). */
@@ -33526,7 +33527,7 @@ export interface Routes {
33526
33527
  /** 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`. */
33527
33528
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
33528
33529
  /** 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`. */
33529
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
33530
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
33530
33531
  /** 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). */
33531
33532
  cooling_set_point_celsius?: (number | undefined) | undefined;
33532
33533
  /** 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). */
@@ -33571,7 +33572,7 @@ export interface Routes {
33571
33572
  /** 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`. */
33572
33573
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
33573
33574
  /** 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`. */
33574
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
33575
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
33575
33576
  /** 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). */
33576
33577
  cooling_set_point_celsius?: number | undefined;
33577
33578
  /** 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). */
@@ -39725,7 +39726,7 @@ export interface Routes {
39725
39726
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
39726
39727
  relative_humidity?: number | undefined;
39727
39728
  /** HVAC mode settings that the thermostat supports. */
39728
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
39729
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
39729
39730
  /** Fan mode settings that the thermostat supports. */
39730
39731
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
39731
39732
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -39762,7 +39763,7 @@ export interface Routes {
39762
39763
  /** 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`. */
39763
39764
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
39764
39765
  /** 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`. */
39765
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
39766
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
39766
39767
  /** 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). */
39767
39768
  cooling_set_point_celsius?: (number | undefined) | undefined;
39768
39769
  /** 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). */
@@ -39808,7 +39809,7 @@ export interface Routes {
39808
39809
  /** 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`. */
39809
39810
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
39810
39811
  /** 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`. */
39811
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
39812
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
39812
39813
  /** 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). */
39813
39814
  cooling_set_point_celsius?: (number | undefined) | undefined;
39814
39815
  /** 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). */
@@ -39853,7 +39854,7 @@ export interface Routes {
39853
39854
  /** 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`. */
39854
39855
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
39855
39856
  /** 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`. */
39856
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
39857
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
39857
39858
  /** 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). */
39858
39859
  cooling_set_point_celsius?: number | undefined;
39859
39860
  /** 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). */
@@ -40885,7 +40886,7 @@ export interface Routes {
40885
40886
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
40886
40887
  relative_humidity?: number | undefined;
40887
40888
  /** HVAC mode settings that the thermostat supports. */
40888
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
40889
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
40889
40890
  /** Fan mode settings that the thermostat supports. */
40890
40891
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
40891
40892
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -40922,7 +40923,7 @@ export interface Routes {
40922
40923
  /** 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`. */
40923
40924
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
40924
40925
  /** 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`. */
40925
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
40926
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
40926
40927
  /** 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). */
40927
40928
  cooling_set_point_celsius?: (number | undefined) | undefined;
40928
40929
  /** 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). */
@@ -40968,7 +40969,7 @@ export interface Routes {
40968
40969
  /** 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`. */
40969
40970
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
40970
40971
  /** 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`. */
40971
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
40972
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
40972
40973
  /** 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). */
40973
40974
  cooling_set_point_celsius?: (number | undefined) | undefined;
40974
40975
  /** 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). */
@@ -41013,7 +41014,7 @@ export interface Routes {
41013
41014
  /** 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`. */
41014
41015
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
41015
41016
  /** 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`. */
41016
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
41017
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
41017
41018
  /** 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). */
41018
41019
  cooling_set_point_celsius?: number | undefined;
41019
41020
  /** 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). */
@@ -47283,7 +47284,7 @@ export interface Routes {
47283
47284
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
47284
47285
  relative_humidity?: number | undefined;
47285
47286
  /** HVAC mode settings that the thermostat supports. */
47286
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
47287
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
47287
47288
  /** Fan mode settings that the thermostat supports. */
47288
47289
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
47289
47290
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -47320,7 +47321,7 @@ export interface Routes {
47320
47321
  /** 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`. */
47321
47322
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
47322
47323
  /** 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`. */
47323
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
47324
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
47324
47325
  /** 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). */
47325
47326
  cooling_set_point_celsius?: (number | undefined) | undefined;
47326
47327
  /** 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). */
@@ -47366,7 +47367,7 @@ export interface Routes {
47366
47367
  /** 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`. */
47367
47368
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
47368
47369
  /** 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`. */
47369
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
47370
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
47370
47371
  /** 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). */
47371
47372
  cooling_set_point_celsius?: (number | undefined) | undefined;
47372
47373
  /** 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). */
@@ -47411,7 +47412,7 @@ export interface Routes {
47411
47412
  /** 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`. */
47412
47413
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
47413
47414
  /** 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`. */
47414
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
47415
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
47415
47416
  /** 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). */
47416
47417
  cooling_set_point_celsius?: number | undefined;
47417
47418
  /** 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). */
@@ -50598,7 +50599,7 @@ export interface Routes {
50598
50599
  /** 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`. */
50599
50600
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
50600
50601
  /** 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`. */
50601
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
50602
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
50602
50603
  /** 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). */
50603
50604
  cooling_set_point_celsius?: number | undefined;
50604
50605
  /** 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). */
@@ -52556,7 +52557,7 @@ export interface Routes {
52556
52557
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
52557
52558
  relative_humidity?: number | undefined;
52558
52559
  /** HVAC mode settings that the thermostat supports. */
52559
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
52560
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
52560
52561
  /** Fan mode settings that the thermostat supports. */
52561
52562
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
52562
52563
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -52593,7 +52594,7 @@ export interface Routes {
52593
52594
  /** 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`. */
52594
52595
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
52595
52596
  /** 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`. */
52596
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
52597
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
52597
52598
  /** 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). */
52598
52599
  cooling_set_point_celsius?: (number | undefined) | undefined;
52599
52600
  /** 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). */
@@ -52639,7 +52640,7 @@ export interface Routes {
52639
52640
  /** 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`. */
52640
52641
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
52641
52642
  /** 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`. */
52642
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
52643
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
52643
52644
  /** 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). */
52644
52645
  cooling_set_point_celsius?: (number | undefined) | undefined;
52645
52646
  /** 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). */
@@ -52684,7 +52685,7 @@ export interface Routes {
52684
52685
  /** 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`. */
52685
52686
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
52686
52687
  /** 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`. */
52687
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
52688
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
52688
52689
  /** 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). */
52689
52690
  cooling_set_point_celsius?: number | undefined;
52690
52691
  /** 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). */
@@ -56297,7 +56298,7 @@ export interface Routes {
56297
56298
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
56298
56299
  relative_humidity?: number | undefined;
56299
56300
  /** HVAC mode settings that the thermostat supports. */
56300
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
56301
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
56301
56302
  /** Fan mode settings that the thermostat supports. */
56302
56303
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
56303
56304
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -56334,7 +56335,7 @@ export interface Routes {
56334
56335
  /** 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`. */
56335
56336
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
56336
56337
  /** 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`. */
56337
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
56338
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
56338
56339
  /** 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). */
56339
56340
  cooling_set_point_celsius?: (number | undefined) | undefined;
56340
56341
  /** 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). */
@@ -56380,7 +56381,7 @@ export interface Routes {
56380
56381
  /** 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`. */
56381
56382
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
56382
56383
  /** 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`. */
56383
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
56384
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
56384
56385
  /** 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). */
56385
56386
  cooling_set_point_celsius?: (number | undefined) | undefined;
56386
56387
  /** 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). */
@@ -56425,7 +56426,7 @@ export interface Routes {
56425
56426
  /** 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`. */
56426
56427
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
56427
56428
  /** 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`. */
56428
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
56429
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
56429
56430
  /** 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). */
56430
56431
  cooling_set_point_celsius?: number | undefined;
56431
56432
  /** 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). */
@@ -57457,7 +57458,7 @@ export interface Routes {
57457
57458
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
57458
57459
  relative_humidity?: number | undefined;
57459
57460
  /** HVAC mode settings that the thermostat supports. */
57460
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
57461
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
57461
57462
  /** Fan mode settings that the thermostat supports. */
57462
57463
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
57463
57464
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -57494,7 +57495,7 @@ export interface Routes {
57494
57495
  /** 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`. */
57495
57496
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
57496
57497
  /** 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`. */
57497
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
57498
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
57498
57499
  /** 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). */
57499
57500
  cooling_set_point_celsius?: (number | undefined) | undefined;
57500
57501
  /** 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). */
@@ -57540,7 +57541,7 @@ export interface Routes {
57540
57541
  /** 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`. */
57541
57542
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
57542
57543
  /** 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`. */
57543
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
57544
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
57544
57545
  /** 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). */
57545
57546
  cooling_set_point_celsius?: (number | undefined) | undefined;
57546
57547
  /** 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). */
@@ -57585,7 +57586,7 @@ export interface Routes {
57585
57586
  /** 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`. */
57586
57587
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
57587
57588
  /** 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`. */
57588
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
57589
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
57589
57590
  /** 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). */
57590
57591
  cooling_set_point_celsius?: number | undefined;
57591
57592
  /** 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). */
@@ -62138,7 +62139,7 @@ export interface Routes {
62138
62139
  /** 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`. */
62139
62140
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
62140
62141
  /** 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`. */
62141
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
62142
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
62142
62143
  /** 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). */
62143
62144
  cooling_set_point_celsius?: number | undefined;
62144
62145
  /** 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). */
@@ -65053,7 +65054,7 @@ export interface Routes {
65053
65054
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
65054
65055
  relative_humidity?: number | undefined;
65055
65056
  /** HVAC mode settings that the thermostat supports. */
65056
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
65057
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
65057
65058
  /** Fan mode settings that the thermostat supports. */
65058
65059
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
65059
65060
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -65090,7 +65091,7 @@ export interface Routes {
65090
65091
  /** 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`. */
65091
65092
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
65092
65093
  /** 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`. */
65093
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
65094
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
65094
65095
  /** 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). */
65095
65096
  cooling_set_point_celsius?: (number | undefined) | undefined;
65096
65097
  /** 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). */
@@ -65136,7 +65137,7 @@ export interface Routes {
65136
65137
  /** 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`. */
65137
65138
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
65138
65139
  /** 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`. */
65139
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
65140
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
65140
65141
  /** 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). */
65141
65142
  cooling_set_point_celsius?: (number | undefined) | undefined;
65142
65143
  /** 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). */
@@ -65181,7 +65182,7 @@ export interface Routes {
65181
65182
  /** 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`. */
65182
65183
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
65183
65184
  /** 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`. */
65184
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
65185
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
65185
65186
  /** 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). */
65186
65187
  cooling_set_point_celsius?: number | undefined;
65187
65188
  /** 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). */
@@ -66215,7 +66216,7 @@ export interface Routes {
66215
66216
  /** Reported relative humidity, as a value between 0 and 1, inclusive. */
66216
66217
  relative_humidity?: number | undefined;
66217
66218
  /** HVAC mode settings that the thermostat supports. */
66218
- available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
66219
+ available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
66219
66220
  /** Fan mode settings that the thermostat supports. */
66220
66221
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
66221
66222
  /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
@@ -66252,7 +66253,7 @@ export interface Routes {
66252
66253
  /** 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`. */
66253
66254
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
66254
66255
  /** 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`. */
66255
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
66256
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
66256
66257
  /** 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). */
66257
66258
  cooling_set_point_celsius?: (number | undefined) | undefined;
66258
66259
  /** 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). */
@@ -66298,7 +66299,7 @@ export interface Routes {
66298
66299
  /** 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`. */
66299
66300
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
66300
66301
  /** 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`. */
66301
- hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
66302
+ hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
66302
66303
  /** 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). */
66303
66304
  cooling_set_point_celsius?: (number | undefined) | undefined;
66304
66305
  /** 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). */
@@ -66343,7 +66344,7 @@ export interface Routes {
66343
66344
  /** 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`. */
66344
66345
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
66345
66346
  /** 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`. */
66346
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
66347
+ hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
66347
66348
  /** 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). */
66348
66349
  cooling_set_point_celsius?: number | undefined;
66349
66350
  /** 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). */