@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
@@ -24839,7 +24839,8 @@ export interface Routes {
24839
24839
  user_identifier_key?: string | undefined
24840
24840
  /** 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. */
24841
24841
  custom_metadata_has?: Record<string, string | boolean> | undefined
24842
- customer_ids?: string[] | undefined
24842
+ /** Customer key by which you want to filter connected accounts. */
24843
+ customer_key?: string | undefined
24843
24844
  /** 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`. */
24844
24845
  search?: string | undefined
24845
24846
  /** Maximum number of records to return per page. */
@@ -26531,7 +26532,7 @@ export interface Routes {
26531
26532
  relative_humidity?: number | undefined
26532
26533
  /** HVAC mode settings that the thermostat supports. */
26533
26534
  available_hvac_mode_settings?:
26534
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
26535
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
26535
26536
  | undefined
26536
26537
  /** Fan mode settings that the thermostat supports. */
26537
26538
  available_fan_mode_settings?:
@@ -26591,7 +26592,10 @@ export interface Routes {
26591
26592
  | undefined
26592
26593
  /** 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`. */
26593
26594
  hvac_mode_setting?:
26594
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
26595
+ | (
26596
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
26597
+ | undefined
26598
+ )
26595
26599
  | undefined
26596
26600
  /** 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). */
26597
26601
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -26664,7 +26668,10 @@ export interface Routes {
26664
26668
  | undefined
26665
26669
  /** 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`. */
26666
26670
  hvac_mode_setting?:
26667
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
26671
+ | (
26672
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
26673
+ | undefined
26674
+ )
26668
26675
  | undefined
26669
26676
  /** 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). */
26670
26677
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -26731,7 +26738,7 @@ export interface Routes {
26731
26738
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
26732
26739
  /** 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`. */
26733
26740
  hvac_mode_setting?:
26734
- | ('off' | 'heat' | 'cool' | 'heat_cool')
26741
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
26735
26742
  | undefined
26736
26743
  /** 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). */
26737
26744
  cooling_set_point_celsius?: number | undefined
@@ -28182,7 +28189,7 @@ export interface Routes {
28182
28189
  relative_humidity?: number | undefined
28183
28190
  /** HVAC mode settings that the thermostat supports. */
28184
28191
  available_hvac_mode_settings?:
28185
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
28192
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
28186
28193
  | undefined
28187
28194
  /** Fan mode settings that the thermostat supports. */
28188
28195
  available_fan_mode_settings?:
@@ -28242,7 +28249,10 @@ export interface Routes {
28242
28249
  | undefined
28243
28250
  /** 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`. */
28244
28251
  hvac_mode_setting?:
28245
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
28252
+ | (
28253
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
28254
+ | undefined
28255
+ )
28246
28256
  | undefined
28247
28257
  /** 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). */
28248
28258
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -28315,7 +28325,10 @@ export interface Routes {
28315
28325
  | undefined
28316
28326
  /** 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`. */
28317
28327
  hvac_mode_setting?:
28318
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
28328
+ | (
28329
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
28330
+ | undefined
28331
+ )
28319
28332
  | undefined
28320
28333
  /** 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). */
28321
28334
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -28382,7 +28395,7 @@ export interface Routes {
28382
28395
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
28383
28396
  /** 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`. */
28384
28397
  hvac_mode_setting?:
28385
- | ('off' | 'heat' | 'cool' | 'heat_cool')
28398
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
28386
28399
  | undefined
28387
28400
  /** 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). */
28388
28401
  cooling_set_point_celsius?: number | undefined
@@ -32022,7 +32035,10 @@ export interface Routes {
32022
32035
  | undefined
32023
32036
  /** 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`. */
32024
32037
  hvac_mode_setting?:
32025
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
32038
+ | (
32039
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
32040
+ | undefined
32041
+ )
32026
32042
  | undefined
32027
32043
  /** 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). */
32028
32044
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -34180,7 +34196,7 @@ export interface Routes {
34180
34196
  | undefined
34181
34197
  /** 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`. */
34182
34198
  hvac_mode_setting?:
34183
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
34199
+ | (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined)
34184
34200
  | undefined
34185
34201
  /** 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). */
34186
34202
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -35132,7 +35148,7 @@ export interface Routes {
35132
35148
  relative_humidity?: number | undefined
35133
35149
  /** HVAC mode settings that the thermostat supports. */
35134
35150
  available_hvac_mode_settings?:
35135
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
35151
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
35136
35152
  | undefined
35137
35153
  /** Fan mode settings that the thermostat supports. */
35138
35154
  available_fan_mode_settings?:
@@ -35192,7 +35208,10 @@ export interface Routes {
35192
35208
  | undefined
35193
35209
  /** 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`. */
35194
35210
  hvac_mode_setting?:
35195
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
35211
+ | (
35212
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
35213
+ | undefined
35214
+ )
35196
35215
  | undefined
35197
35216
  /** 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). */
35198
35217
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -35265,7 +35284,10 @@ export interface Routes {
35265
35284
  | undefined
35266
35285
  /** 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`. */
35267
35286
  hvac_mode_setting?:
35268
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
35287
+ | (
35288
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
35289
+ | undefined
35290
+ )
35269
35291
  | undefined
35270
35292
  /** 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). */
35271
35293
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -35332,7 +35354,7 @@ export interface Routes {
35332
35354
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
35333
35355
  /** 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`. */
35334
35356
  hvac_mode_setting?:
35335
- | ('off' | 'heat' | 'cool' | 'heat_cool')
35357
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
35336
35358
  | undefined
35337
35359
  /** 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). */
35338
35360
  cooling_set_point_celsius?: number | undefined
@@ -36579,7 +36601,7 @@ export interface Routes {
36579
36601
  relative_humidity?: number | undefined
36580
36602
  /** HVAC mode settings that the thermostat supports. */
36581
36603
  available_hvac_mode_settings?:
36582
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
36604
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
36583
36605
  | undefined
36584
36606
  /** Fan mode settings that the thermostat supports. */
36585
36607
  available_fan_mode_settings?:
@@ -36639,7 +36661,10 @@ export interface Routes {
36639
36661
  | undefined
36640
36662
  /** 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`. */
36641
36663
  hvac_mode_setting?:
36642
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
36664
+ | (
36665
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
36666
+ | undefined
36667
+ )
36643
36668
  | undefined
36644
36669
  /** 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). */
36645
36670
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -36712,7 +36737,10 @@ export interface Routes {
36712
36737
  | undefined
36713
36738
  /** 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`. */
36714
36739
  hvac_mode_setting?:
36715
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
36740
+ | (
36741
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
36742
+ | undefined
36743
+ )
36716
36744
  | undefined
36717
36745
  /** 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). */
36718
36746
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -36779,7 +36807,7 @@ export interface Routes {
36779
36807
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
36780
36808
  /** 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`. */
36781
36809
  hvac_mode_setting?:
36782
- | ('off' | 'heat' | 'cool' | 'heat_cool')
36810
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
36783
36811
  | undefined
36784
36812
  /** 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). */
36785
36813
  cooling_set_point_celsius?: number | undefined
@@ -38195,7 +38223,7 @@ export interface Routes {
38195
38223
  relative_humidity?: number | undefined
38196
38224
  /** HVAC mode settings that the thermostat supports. */
38197
38225
  available_hvac_mode_settings?:
38198
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
38226
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
38199
38227
  | undefined
38200
38228
  /** Fan mode settings that the thermostat supports. */
38201
38229
  available_fan_mode_settings?:
@@ -38255,7 +38283,10 @@ export interface Routes {
38255
38283
  | undefined
38256
38284
  /** 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`. */
38257
38285
  hvac_mode_setting?:
38258
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
38286
+ | (
38287
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
38288
+ | undefined
38289
+ )
38259
38290
  | undefined
38260
38291
  /** 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). */
38261
38292
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -38328,7 +38359,10 @@ export interface Routes {
38328
38359
  | undefined
38329
38360
  /** 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`. */
38330
38361
  hvac_mode_setting?:
38331
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
38362
+ | (
38363
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
38364
+ | undefined
38365
+ )
38332
38366
  | undefined
38333
38367
  /** 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). */
38334
38368
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -38395,7 +38429,7 @@ export interface Routes {
38395
38429
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
38396
38430
  /** 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`. */
38397
38431
  hvac_mode_setting?:
38398
- | ('off' | 'heat' | 'cool' | 'heat_cool')
38432
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
38399
38433
  | undefined
38400
38434
  /** 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). */
38401
38435
  cooling_set_point_celsius?: number | undefined
@@ -39641,7 +39675,7 @@ export interface Routes {
39641
39675
  relative_humidity?: number | undefined
39642
39676
  /** HVAC mode settings that the thermostat supports. */
39643
39677
  available_hvac_mode_settings?:
39644
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
39678
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
39645
39679
  | undefined
39646
39680
  /** Fan mode settings that the thermostat supports. */
39647
39681
  available_fan_mode_settings?:
@@ -39701,7 +39735,10 @@ export interface Routes {
39701
39735
  | undefined
39702
39736
  /** 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`. */
39703
39737
  hvac_mode_setting?:
39704
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
39738
+ | (
39739
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
39740
+ | undefined
39741
+ )
39705
39742
  | undefined
39706
39743
  /** 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). */
39707
39744
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -39774,7 +39811,10 @@ export interface Routes {
39774
39811
  | undefined
39775
39812
  /** 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`. */
39776
39813
  hvac_mode_setting?:
39777
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
39814
+ | (
39815
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
39816
+ | undefined
39817
+ )
39778
39818
  | undefined
39779
39819
  /** 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). */
39780
39820
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -39841,7 +39881,7 @@ export interface Routes {
39841
39881
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
39842
39882
  /** 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`. */
39843
39883
  hvac_mode_setting?:
39844
- | ('off' | 'heat' | 'cool' | 'heat_cool')
39884
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
39845
39885
  | undefined
39846
39886
  /** 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). */
39847
39887
  cooling_set_point_celsius?: number | undefined
@@ -46965,7 +47005,7 @@ export interface Routes {
46965
47005
  relative_humidity?: number | undefined
46966
47006
  /** HVAC mode settings that the thermostat supports. */
46967
47007
  available_hvac_mode_settings?:
46968
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
47008
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
46969
47009
  | undefined
46970
47010
  /** Fan mode settings that the thermostat supports. */
46971
47011
  available_fan_mode_settings?:
@@ -47025,7 +47065,10 @@ export interface Routes {
47025
47065
  | undefined
47026
47066
  /** 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`. */
47027
47067
  hvac_mode_setting?:
47028
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
47068
+ | (
47069
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
47070
+ | undefined
47071
+ )
47029
47072
  | undefined
47030
47073
  /** 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). */
47031
47074
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -47098,7 +47141,10 @@ export interface Routes {
47098
47141
  | undefined
47099
47142
  /** 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`. */
47100
47143
  hvac_mode_setting?:
47101
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
47144
+ | (
47145
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
47146
+ | undefined
47147
+ )
47102
47148
  | undefined
47103
47149
  /** 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). */
47104
47150
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -47165,7 +47211,7 @@ export interface Routes {
47165
47211
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
47166
47212
  /** 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`. */
47167
47213
  hvac_mode_setting?:
47168
- | ('off' | 'heat' | 'cool' | 'heat_cool')
47214
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
47169
47215
  | undefined
47170
47216
  /** 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). */
47171
47217
  cooling_set_point_celsius?: number | undefined
@@ -48411,7 +48457,7 @@ export interface Routes {
48411
48457
  relative_humidity?: number | undefined
48412
48458
  /** HVAC mode settings that the thermostat supports. */
48413
48459
  available_hvac_mode_settings?:
48414
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
48460
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
48415
48461
  | undefined
48416
48462
  /** Fan mode settings that the thermostat supports. */
48417
48463
  available_fan_mode_settings?:
@@ -48471,7 +48517,10 @@ export interface Routes {
48471
48517
  | undefined
48472
48518
  /** 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`. */
48473
48519
  hvac_mode_setting?:
48474
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
48520
+ | (
48521
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
48522
+ | undefined
48523
+ )
48475
48524
  | undefined
48476
48525
  /** 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). */
48477
48526
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -48544,7 +48593,10 @@ export interface Routes {
48544
48593
  | undefined
48545
48594
  /** 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`. */
48546
48595
  hvac_mode_setting?:
48547
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
48596
+ | (
48597
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
48598
+ | undefined
48599
+ )
48548
48600
  | undefined
48549
48601
  /** 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). */
48550
48602
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -48611,7 +48663,7 @@ export interface Routes {
48611
48663
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
48612
48664
  /** 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`. */
48613
48665
  hvac_mode_setting?:
48614
- | ('off' | 'heat' | 'cool' | 'heat_cool')
48666
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
48615
48667
  | undefined
48616
48668
  /** 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). */
48617
48669
  cooling_set_point_celsius?: number | undefined
@@ -55808,7 +55860,7 @@ export interface Routes {
55808
55860
  relative_humidity?: number | undefined
55809
55861
  /** HVAC mode settings that the thermostat supports. */
55810
55862
  available_hvac_mode_settings?:
55811
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
55863
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
55812
55864
  | undefined
55813
55865
  /** Fan mode settings that the thermostat supports. */
55814
55866
  available_fan_mode_settings?:
@@ -55874,7 +55926,7 @@ export interface Routes {
55874
55926
  /** 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`. */
55875
55927
  hvac_mode_setting?:
55876
55928
  | (
55877
- | ('off' | 'heat' | 'cool' | 'heat_cool')
55929
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
55878
55930
  | undefined
55879
55931
  )
55880
55932
  | undefined
@@ -55954,7 +56006,7 @@ export interface Routes {
55954
56006
  /** 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`. */
55955
56007
  hvac_mode_setting?:
55956
56008
  | (
55957
- | ('off' | 'heat' | 'cool' | 'heat_cool')
56009
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
55958
56010
  | undefined
55959
56011
  )
55960
56012
  | undefined
@@ -56029,7 +56081,7 @@ export interface Routes {
56029
56081
  | undefined
56030
56082
  /** 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`. */
56031
56083
  hvac_mode_setting?:
56032
- | ('off' | 'heat' | 'cool' | 'heat_cool')
56084
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
56033
56085
  | undefined
56034
56086
  /** 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). */
56035
56087
  cooling_set_point_celsius?: number | undefined
@@ -59668,7 +59720,9 @@ export interface Routes {
59668
59720
  /** 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`. */
59669
59721
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
59670
59722
  /** 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`. */
59671
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
59723
+ hvac_mode_setting?:
59724
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
59725
+ | undefined
59672
59726
  /** 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). */
59673
59727
  cooling_set_point_celsius?: number | undefined
59674
59728
  /** 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). */
@@ -61966,7 +62020,7 @@ export interface Routes {
61966
62020
  relative_humidity?: number | undefined
61967
62021
  /** HVAC mode settings that the thermostat supports. */
61968
62022
  available_hvac_mode_settings?:
61969
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
62023
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
61970
62024
  | undefined
61971
62025
  /** Fan mode settings that the thermostat supports. */
61972
62026
  available_fan_mode_settings?:
@@ -62026,7 +62080,10 @@ export interface Routes {
62026
62080
  | undefined
62027
62081
  /** 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`. */
62028
62082
  hvac_mode_setting?:
62029
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
62083
+ | (
62084
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
62085
+ | undefined
62086
+ )
62030
62087
  | undefined
62031
62088
  /** 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). */
62032
62089
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -62099,7 +62156,10 @@ export interface Routes {
62099
62156
  | undefined
62100
62157
  /** 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`. */
62101
62158
  hvac_mode_setting?:
62102
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
62159
+ | (
62160
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
62161
+ | undefined
62162
+ )
62103
62163
  | undefined
62104
62164
  /** 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). */
62105
62165
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -62166,7 +62226,7 @@ export interface Routes {
62166
62226
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
62167
62227
  /** 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`. */
62168
62228
  hvac_mode_setting?:
62169
- | ('off' | 'heat' | 'cool' | 'heat_cool')
62229
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
62170
62230
  | undefined
62171
62231
  /** 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). */
62172
62232
  cooling_set_point_celsius?: number | undefined
@@ -66412,7 +66472,7 @@ export interface Routes {
66412
66472
  relative_humidity?: number | undefined
66413
66473
  /** HVAC mode settings that the thermostat supports. */
66414
66474
  available_hvac_mode_settings?:
66415
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
66475
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
66416
66476
  | undefined
66417
66477
  /** Fan mode settings that the thermostat supports. */
66418
66478
  available_fan_mode_settings?:
@@ -66472,7 +66532,10 @@ export interface Routes {
66472
66532
  | undefined
66473
66533
  /** 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`. */
66474
66534
  hvac_mode_setting?:
66475
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
66535
+ | (
66536
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
66537
+ | undefined
66538
+ )
66476
66539
  | undefined
66477
66540
  /** 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). */
66478
66541
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -66545,7 +66608,10 @@ export interface Routes {
66545
66608
  | undefined
66546
66609
  /** 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`. */
66547
66610
  hvac_mode_setting?:
66548
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
66611
+ | (
66612
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
66613
+ | undefined
66614
+ )
66549
66615
  | undefined
66550
66616
  /** 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). */
66551
66617
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -66612,7 +66678,7 @@ export interface Routes {
66612
66678
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
66613
66679
  /** 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`. */
66614
66680
  hvac_mode_setting?:
66615
- | ('off' | 'heat' | 'cool' | 'heat_cool')
66681
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
66616
66682
  | undefined
66617
66683
  /** 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). */
66618
66684
  cooling_set_point_celsius?: number | undefined
@@ -67858,7 +67924,7 @@ export interface Routes {
67858
67924
  relative_humidity?: number | undefined
67859
67925
  /** HVAC mode settings that the thermostat supports. */
67860
67926
  available_hvac_mode_settings?:
67861
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
67927
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
67862
67928
  | undefined
67863
67929
  /** Fan mode settings that the thermostat supports. */
67864
67930
  available_fan_mode_settings?:
@@ -67918,7 +67984,10 @@ export interface Routes {
67918
67984
  | undefined
67919
67985
  /** 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`. */
67920
67986
  hvac_mode_setting?:
67921
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
67987
+ | (
67988
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
67989
+ | undefined
67990
+ )
67922
67991
  | undefined
67923
67992
  /** 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). */
67924
67993
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -67991,7 +68060,10 @@ export interface Routes {
67991
68060
  | undefined
67992
68061
  /** 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`. */
67993
68062
  hvac_mode_setting?:
67994
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
68063
+ | (
68064
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
68065
+ | undefined
68066
+ )
67995
68067
  | undefined
67996
68068
  /** 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). */
67997
68069
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -68058,7 +68130,7 @@ export interface Routes {
68058
68130
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
68059
68131
  /** 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`. */
68060
68132
  hvac_mode_setting?:
68061
- | ('off' | 'heat' | 'cool' | 'heat_cool')
68133
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
68062
68134
  | undefined
68063
68135
  /** 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). */
68064
68136
  cooling_set_point_celsius?: number | undefined
@@ -73221,7 +73293,9 @@ export interface Routes {
73221
73293
  /** 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`. */
73222
73294
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
73223
73295
  /** 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`. */
73224
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
73296
+ hvac_mode_setting?:
73297
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
73298
+ | undefined
73225
73299
  /** 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). */
73226
73300
  cooling_set_point_celsius?: number | undefined
73227
73301
  /** 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). */
@@ -76528,7 +76602,7 @@ export interface Routes {
76528
76602
  relative_humidity?: number | undefined
76529
76603
  /** HVAC mode settings that the thermostat supports. */
76530
76604
  available_hvac_mode_settings?:
76531
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
76605
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
76532
76606
  | undefined
76533
76607
  /** Fan mode settings that the thermostat supports. */
76534
76608
  available_fan_mode_settings?:
@@ -76588,7 +76662,10 @@ export interface Routes {
76588
76662
  | undefined
76589
76663
  /** 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`. */
76590
76664
  hvac_mode_setting?:
76591
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
76665
+ | (
76666
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
76667
+ | undefined
76668
+ )
76592
76669
  | undefined
76593
76670
  /** 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). */
76594
76671
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -76661,7 +76738,10 @@ export interface Routes {
76661
76738
  | undefined
76662
76739
  /** 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`. */
76663
76740
  hvac_mode_setting?:
76664
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
76741
+ | (
76742
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
76743
+ | undefined
76744
+ )
76665
76745
  | undefined
76666
76746
  /** 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). */
76667
76747
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -76728,7 +76808,7 @@ export interface Routes {
76728
76808
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
76729
76809
  /** 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`. */
76730
76810
  hvac_mode_setting?:
76731
- | ('off' | 'heat' | 'cool' | 'heat_cool')
76811
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
76732
76812
  | undefined
76733
76813
  /** 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). */
76734
76814
  cooling_set_point_celsius?: number | undefined
@@ -77976,7 +78056,7 @@ export interface Routes {
77976
78056
  relative_humidity?: number | undefined
77977
78057
  /** HVAC mode settings that the thermostat supports. */
77978
78058
  available_hvac_mode_settings?:
77979
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
78059
+ | Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
77980
78060
  | undefined
77981
78061
  /** Fan mode settings that the thermostat supports. */
77982
78062
  available_fan_mode_settings?:
@@ -78036,7 +78116,10 @@ export interface Routes {
78036
78116
  | undefined
78037
78117
  /** 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`. */
78038
78118
  hvac_mode_setting?:
78039
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
78119
+ | (
78120
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
78121
+ | undefined
78122
+ )
78040
78123
  | undefined
78041
78124
  /** 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). */
78042
78125
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -78109,7 +78192,10 @@ export interface Routes {
78109
78192
  | undefined
78110
78193
  /** 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`. */
78111
78194
  hvac_mode_setting?:
78112
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
78195
+ | (
78196
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
78197
+ | undefined
78198
+ )
78113
78199
  | undefined
78114
78200
  /** 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). */
78115
78201
  cooling_set_point_celsius?: (number | undefined) | undefined
@@ -78176,7 +78262,7 @@ export interface Routes {
78176
78262
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
78177
78263
  /** 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`. */
78178
78264
  hvac_mode_setting?:
78179
- | ('off' | 'heat' | 'cool' | 'heat_cool')
78265
+ | ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
78180
78266
  | undefined
78181
78267
  /** 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). */
78182
78268
  cooling_set_point_celsius?: number | undefined