@seamapi/types 1.429.1 → 1.430.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 (27) hide show
  1. package/dist/connect.cjs +107 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +276 -0
  4. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -0
  5. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -0
  6. package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -1
  7. package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
  8. package/lib/seam/connect/models/devices/device.d.ts +26 -0
  9. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -0
  10. package/lib/seam/connect/models/events/devices.d.ts +2 -0
  11. package/lib/seam/connect/models/events/seam-event.d.ts +1 -0
  12. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -0
  13. package/lib/seam/connect/models/thermostats/climate-preset.js +4 -1
  14. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  15. package/lib/seam/connect/models/thermostats/modes.d.ts +2 -0
  16. package/lib/seam/connect/models/thermostats/modes.js +8 -0
  17. package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
  18. package/lib/seam/connect/openapi.d.ts +41 -0
  19. package/lib/seam/connect/openapi.js +89 -0
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +190 -0
  22. package/package.json +2 -2
  23. package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
  24. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +8 -1
  25. package/src/lib/seam/connect/models/thermostats/modes.ts +11 -0
  26. package/src/lib/seam/connect/openapi.ts +96 -0
  27. package/src/lib/seam/connect/route-types.ts +675 -0
@@ -26406,6 +26406,12 @@ export interface Routes {
26406
26406
  available_fan_mode_settings?:
26407
26407
  | Array<'auto' | 'on' | 'circulate'>
26408
26408
  | undefined
26409
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
26410
+ available_climate_preset_modes?:
26411
+ | Array<
26412
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
26413
+ >
26414
+ | undefined
26409
26415
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
26410
26416
  is_heating?: boolean | undefined
26411
26417
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -26432,6 +26438,22 @@ export interface Routes {
26432
26438
  name?: ((string | null) | undefined) | undefined
26433
26439
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
26434
26440
  display_name?: string | undefined
26441
+ /**
26442
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
26443
+ */
26444
+ climate_preset_mode?:
26445
+ | (
26446
+ | (
26447
+ | 'home'
26448
+ | 'away'
26449
+ | 'wake'
26450
+ | 'sleep'
26451
+ | 'occupied'
26452
+ | 'unoccupied'
26453
+ )
26454
+ | undefined
26455
+ )
26456
+ | undefined
26435
26457
  /** 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`. */
26436
26458
  fan_mode_setting?:
26437
26459
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -26473,6 +26495,22 @@ export interface Routes {
26473
26495
  name?: ((string | null) | undefined) | undefined
26474
26496
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
26475
26497
  display_name?: string | undefined
26498
+ /**
26499
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
26500
+ */
26501
+ climate_preset_mode?:
26502
+ | (
26503
+ | (
26504
+ | 'home'
26505
+ | 'away'
26506
+ | 'wake'
26507
+ | 'sleep'
26508
+ | 'occupied'
26509
+ | 'unoccupied'
26510
+ )
26511
+ | undefined
26512
+ )
26513
+ | undefined
26476
26514
  /** 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`. */
26477
26515
  fan_mode_setting?:
26478
26516
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -26513,6 +26551,19 @@ export interface Routes {
26513
26551
  name?: (string | null) | undefined
26514
26552
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
26515
26553
  display_name: string
26554
+ /**
26555
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
26556
+ */
26557
+ climate_preset_mode?:
26558
+ | (
26559
+ | 'home'
26560
+ | 'away'
26561
+ | 'wake'
26562
+ | 'sleep'
26563
+ | 'occupied'
26564
+ | 'unoccupied'
26565
+ )
26566
+ | undefined
26516
26567
  /** 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`. */
26517
26568
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
26518
26569
  /** 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`. */
@@ -27957,6 +28008,12 @@ export interface Routes {
27957
28008
  available_fan_mode_settings?:
27958
28009
  | Array<'auto' | 'on' | 'circulate'>
27959
28010
  | undefined
28011
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
28012
+ available_climate_preset_modes?:
28013
+ | Array<
28014
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
28015
+ >
28016
+ | undefined
27960
28017
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
27961
28018
  is_heating?: boolean | undefined
27962
28019
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -27983,6 +28040,22 @@ export interface Routes {
27983
28040
  name?: ((string | null) | undefined) | undefined
27984
28041
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
27985
28042
  display_name?: string | undefined
28043
+ /**
28044
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
28045
+ */
28046
+ climate_preset_mode?:
28047
+ | (
28048
+ | (
28049
+ | 'home'
28050
+ | 'away'
28051
+ | 'wake'
28052
+ | 'sleep'
28053
+ | 'occupied'
28054
+ | 'unoccupied'
28055
+ )
28056
+ | undefined
28057
+ )
28058
+ | undefined
27986
28059
  /** 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`. */
27987
28060
  fan_mode_setting?:
27988
28061
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -28024,6 +28097,22 @@ export interface Routes {
28024
28097
  name?: ((string | null) | undefined) | undefined
28025
28098
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
28026
28099
  display_name?: string | undefined
28100
+ /**
28101
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
28102
+ */
28103
+ climate_preset_mode?:
28104
+ | (
28105
+ | (
28106
+ | 'home'
28107
+ | 'away'
28108
+ | 'wake'
28109
+ | 'sleep'
28110
+ | 'occupied'
28111
+ | 'unoccupied'
28112
+ )
28113
+ | undefined
28114
+ )
28115
+ | undefined
28027
28116
  /** 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`. */
28028
28117
  fan_mode_setting?:
28029
28118
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -28064,6 +28153,19 @@ export interface Routes {
28064
28153
  name?: (string | null) | undefined
28065
28154
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
28066
28155
  display_name: string
28156
+ /**
28157
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
28158
+ */
28159
+ climate_preset_mode?:
28160
+ | (
28161
+ | 'home'
28162
+ | 'away'
28163
+ | 'wake'
28164
+ | 'sleep'
28165
+ | 'occupied'
28166
+ | 'unoccupied'
28167
+ )
28168
+ | undefined
28067
28169
  /** 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`. */
28068
28170
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
28069
28171
  /** 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`. */
@@ -33911,6 +34013,12 @@ export interface Routes {
33911
34013
  available_fan_mode_settings?:
33912
34014
  | Array<'auto' | 'on' | 'circulate'>
33913
34015
  | undefined
34016
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
34017
+ available_climate_preset_modes?:
34018
+ | Array<
34019
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
34020
+ >
34021
+ | undefined
33914
34022
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
33915
34023
  is_heating?: boolean | undefined
33916
34024
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -33937,6 +34045,22 @@ export interface Routes {
33937
34045
  name?: ((string | null) | undefined) | undefined
33938
34046
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
33939
34047
  display_name?: string | undefined
34048
+ /**
34049
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
34050
+ */
34051
+ climate_preset_mode?:
34052
+ | (
34053
+ | (
34054
+ | 'home'
34055
+ | 'away'
34056
+ | 'wake'
34057
+ | 'sleep'
34058
+ | 'occupied'
34059
+ | 'unoccupied'
34060
+ )
34061
+ | undefined
34062
+ )
34063
+ | undefined
33940
34064
  /** 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`. */
33941
34065
  fan_mode_setting?:
33942
34066
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -33978,6 +34102,22 @@ export interface Routes {
33978
34102
  name?: ((string | null) | undefined) | undefined
33979
34103
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
33980
34104
  display_name?: string | undefined
34105
+ /**
34106
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
34107
+ */
34108
+ climate_preset_mode?:
34109
+ | (
34110
+ | (
34111
+ | 'home'
34112
+ | 'away'
34113
+ | 'wake'
34114
+ | 'sleep'
34115
+ | 'occupied'
34116
+ | 'unoccupied'
34117
+ )
34118
+ | undefined
34119
+ )
34120
+ | undefined
33981
34121
  /** 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`. */
33982
34122
  fan_mode_setting?:
33983
34123
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -34018,6 +34158,19 @@ export interface Routes {
34018
34158
  name?: (string | null) | undefined
34019
34159
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
34020
34160
  display_name: string
34161
+ /**
34162
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
34163
+ */
34164
+ climate_preset_mode?:
34165
+ | (
34166
+ | 'home'
34167
+ | 'away'
34168
+ | 'wake'
34169
+ | 'sleep'
34170
+ | 'occupied'
34171
+ | 'unoccupied'
34172
+ )
34173
+ | undefined
34021
34174
  /** 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`. */
34022
34175
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
34023
34176
  /** 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`. */
@@ -35260,6 +35413,12 @@ export interface Routes {
35260
35413
  available_fan_mode_settings?:
35261
35414
  | Array<'auto' | 'on' | 'circulate'>
35262
35415
  | undefined
35416
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
35417
+ available_climate_preset_modes?:
35418
+ | Array<
35419
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
35420
+ >
35421
+ | undefined
35263
35422
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
35264
35423
  is_heating?: boolean | undefined
35265
35424
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -35286,6 +35445,22 @@ export interface Routes {
35286
35445
  name?: ((string | null) | undefined) | undefined
35287
35446
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
35288
35447
  display_name?: string | undefined
35448
+ /**
35449
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
35450
+ */
35451
+ climate_preset_mode?:
35452
+ | (
35453
+ | (
35454
+ | 'home'
35455
+ | 'away'
35456
+ | 'wake'
35457
+ | 'sleep'
35458
+ | 'occupied'
35459
+ | 'unoccupied'
35460
+ )
35461
+ | undefined
35462
+ )
35463
+ | undefined
35289
35464
  /** 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`. */
35290
35465
  fan_mode_setting?:
35291
35466
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -35327,6 +35502,22 @@ export interface Routes {
35327
35502
  name?: ((string | null) | undefined) | undefined
35328
35503
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
35329
35504
  display_name?: string | undefined
35505
+ /**
35506
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
35507
+ */
35508
+ climate_preset_mode?:
35509
+ | (
35510
+ | (
35511
+ | 'home'
35512
+ | 'away'
35513
+ | 'wake'
35514
+ | 'sleep'
35515
+ | 'occupied'
35516
+ | 'unoccupied'
35517
+ )
35518
+ | undefined
35519
+ )
35520
+ | undefined
35330
35521
  /** 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`. */
35331
35522
  fan_mode_setting?:
35332
35523
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -35367,6 +35558,19 @@ export interface Routes {
35367
35558
  name?: (string | null) | undefined
35368
35559
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
35369
35560
  display_name: string
35561
+ /**
35562
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
35563
+ */
35564
+ climate_preset_mode?:
35565
+ | (
35566
+ | 'home'
35567
+ | 'away'
35568
+ | 'wake'
35569
+ | 'sleep'
35570
+ | 'occupied'
35571
+ | 'unoccupied'
35572
+ )
35573
+ | undefined
35370
35574
  /** 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`. */
35371
35575
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
35372
35576
  /** 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`. */
@@ -36776,6 +36980,12 @@ export interface Routes {
36776
36980
  available_fan_mode_settings?:
36777
36981
  | Array<'auto' | 'on' | 'circulate'>
36778
36982
  | undefined
36983
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
36984
+ available_climate_preset_modes?:
36985
+ | Array<
36986
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
36987
+ >
36988
+ | undefined
36779
36989
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
36780
36990
  is_heating?: boolean | undefined
36781
36991
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -36802,6 +37012,22 @@ export interface Routes {
36802
37012
  name?: ((string | null) | undefined) | undefined
36803
37013
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
36804
37014
  display_name?: string | undefined
37015
+ /**
37016
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
37017
+ */
37018
+ climate_preset_mode?:
37019
+ | (
37020
+ | (
37021
+ | 'home'
37022
+ | 'away'
37023
+ | 'wake'
37024
+ | 'sleep'
37025
+ | 'occupied'
37026
+ | 'unoccupied'
37027
+ )
37028
+ | undefined
37029
+ )
37030
+ | undefined
36805
37031
  /** 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`. */
36806
37032
  fan_mode_setting?:
36807
37033
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -36843,6 +37069,22 @@ export interface Routes {
36843
37069
  name?: ((string | null) | undefined) | undefined
36844
37070
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
36845
37071
  display_name?: string | undefined
37072
+ /**
37073
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
37074
+ */
37075
+ climate_preset_mode?:
37076
+ | (
37077
+ | (
37078
+ | 'home'
37079
+ | 'away'
37080
+ | 'wake'
37081
+ | 'sleep'
37082
+ | 'occupied'
37083
+ | 'unoccupied'
37084
+ )
37085
+ | undefined
37086
+ )
37087
+ | undefined
36846
37088
  /** 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`. */
36847
37089
  fan_mode_setting?:
36848
37090
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -36883,6 +37125,19 @@ export interface Routes {
36883
37125
  name?: (string | null) | undefined
36884
37126
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
36885
37127
  display_name: string
37128
+ /**
37129
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
37130
+ */
37131
+ climate_preset_mode?:
37132
+ | (
37133
+ | 'home'
37134
+ | 'away'
37135
+ | 'wake'
37136
+ | 'sleep'
37137
+ | 'occupied'
37138
+ | 'unoccupied'
37139
+ )
37140
+ | undefined
36886
37141
  /** 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`. */
36887
37142
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
36888
37143
  /** 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`. */
@@ -38124,6 +38379,12 @@ export interface Routes {
38124
38379
  available_fan_mode_settings?:
38125
38380
  | Array<'auto' | 'on' | 'circulate'>
38126
38381
  | undefined
38382
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
38383
+ available_climate_preset_modes?:
38384
+ | Array<
38385
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
38386
+ >
38387
+ | undefined
38127
38388
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
38128
38389
  is_heating?: boolean | undefined
38129
38390
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -38150,6 +38411,22 @@ export interface Routes {
38150
38411
  name?: ((string | null) | undefined) | undefined
38151
38412
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
38152
38413
  display_name?: string | undefined
38414
+ /**
38415
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
38416
+ */
38417
+ climate_preset_mode?:
38418
+ | (
38419
+ | (
38420
+ | 'home'
38421
+ | 'away'
38422
+ | 'wake'
38423
+ | 'sleep'
38424
+ | 'occupied'
38425
+ | 'unoccupied'
38426
+ )
38427
+ | undefined
38428
+ )
38429
+ | undefined
38153
38430
  /** 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`. */
38154
38431
  fan_mode_setting?:
38155
38432
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -38191,6 +38468,22 @@ export interface Routes {
38191
38468
  name?: ((string | null) | undefined) | undefined
38192
38469
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
38193
38470
  display_name?: string | undefined
38471
+ /**
38472
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
38473
+ */
38474
+ climate_preset_mode?:
38475
+ | (
38476
+ | (
38477
+ | 'home'
38478
+ | 'away'
38479
+ | 'wake'
38480
+ | 'sleep'
38481
+ | 'occupied'
38482
+ | 'unoccupied'
38483
+ )
38484
+ | undefined
38485
+ )
38486
+ | undefined
38194
38487
  /** 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`. */
38195
38488
  fan_mode_setting?:
38196
38489
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -38231,6 +38524,19 @@ export interface Routes {
38231
38524
  name?: (string | null) | undefined
38232
38525
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
38233
38526
  display_name: string
38527
+ /**
38528
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
38529
+ */
38530
+ climate_preset_mode?:
38531
+ | (
38532
+ | 'home'
38533
+ | 'away'
38534
+ | 'wake'
38535
+ | 'sleep'
38536
+ | 'occupied'
38537
+ | 'unoccupied'
38538
+ )
38539
+ | undefined
38234
38540
  /** 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`. */
38235
38541
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
38236
38542
  /** 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`. */
@@ -45316,6 +45622,12 @@ export interface Routes {
45316
45622
  available_fan_mode_settings?:
45317
45623
  | Array<'auto' | 'on' | 'circulate'>
45318
45624
  | undefined
45625
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
45626
+ available_climate_preset_modes?:
45627
+ | Array<
45628
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
45629
+ >
45630
+ | undefined
45319
45631
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
45320
45632
  is_heating?: boolean | undefined
45321
45633
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -45342,6 +45654,22 @@ export interface Routes {
45342
45654
  name?: ((string | null) | undefined) | undefined
45343
45655
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
45344
45656
  display_name?: string | undefined
45657
+ /**
45658
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
45659
+ */
45660
+ climate_preset_mode?:
45661
+ | (
45662
+ | (
45663
+ | 'home'
45664
+ | 'away'
45665
+ | 'wake'
45666
+ | 'sleep'
45667
+ | 'occupied'
45668
+ | 'unoccupied'
45669
+ )
45670
+ | undefined
45671
+ )
45672
+ | undefined
45345
45673
  /** 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`. */
45346
45674
  fan_mode_setting?:
45347
45675
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -45383,6 +45711,22 @@ export interface Routes {
45383
45711
  name?: ((string | null) | undefined) | undefined
45384
45712
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
45385
45713
  display_name?: string | undefined
45714
+ /**
45715
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
45716
+ */
45717
+ climate_preset_mode?:
45718
+ | (
45719
+ | (
45720
+ | 'home'
45721
+ | 'away'
45722
+ | 'wake'
45723
+ | 'sleep'
45724
+ | 'occupied'
45725
+ | 'unoccupied'
45726
+ )
45727
+ | undefined
45728
+ )
45729
+ | undefined
45386
45730
  /** 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`. */
45387
45731
  fan_mode_setting?:
45388
45732
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -45423,6 +45767,19 @@ export interface Routes {
45423
45767
  name?: (string | null) | undefined
45424
45768
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
45425
45769
  display_name: string
45770
+ /**
45771
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
45772
+ */
45773
+ climate_preset_mode?:
45774
+ | (
45775
+ | 'home'
45776
+ | 'away'
45777
+ | 'wake'
45778
+ | 'sleep'
45779
+ | 'occupied'
45780
+ | 'unoccupied'
45781
+ )
45782
+ | undefined
45426
45783
  /** 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`. */
45427
45784
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
45428
45785
  /** 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`. */
@@ -46664,6 +47021,12 @@ export interface Routes {
46664
47021
  available_fan_mode_settings?:
46665
47022
  | Array<'auto' | 'on' | 'circulate'>
46666
47023
  | undefined
47024
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
47025
+ available_climate_preset_modes?:
47026
+ | Array<
47027
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
47028
+ >
47029
+ | undefined
46667
47030
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
46668
47031
  is_heating?: boolean | undefined
46669
47032
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -46690,6 +47053,22 @@ export interface Routes {
46690
47053
  name?: ((string | null) | undefined) | undefined
46691
47054
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
46692
47055
  display_name?: string | undefined
47056
+ /**
47057
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
47058
+ */
47059
+ climate_preset_mode?:
47060
+ | (
47061
+ | (
47062
+ | 'home'
47063
+ | 'away'
47064
+ | 'wake'
47065
+ | 'sleep'
47066
+ | 'occupied'
47067
+ | 'unoccupied'
47068
+ )
47069
+ | undefined
47070
+ )
47071
+ | undefined
46693
47072
  /** 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`. */
46694
47073
  fan_mode_setting?:
46695
47074
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -46731,6 +47110,22 @@ export interface Routes {
46731
47110
  name?: ((string | null) | undefined) | undefined
46732
47111
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
46733
47112
  display_name?: string | undefined
47113
+ /**
47114
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
47115
+ */
47116
+ climate_preset_mode?:
47117
+ | (
47118
+ | (
47119
+ | 'home'
47120
+ | 'away'
47121
+ | 'wake'
47122
+ | 'sleep'
47123
+ | 'occupied'
47124
+ | 'unoccupied'
47125
+ )
47126
+ | undefined
47127
+ )
47128
+ | undefined
46734
47129
  /** 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`. */
46735
47130
  fan_mode_setting?:
46736
47131
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -46771,6 +47166,19 @@ export interface Routes {
46771
47166
  name?: (string | null) | undefined
46772
47167
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
46773
47168
  display_name: string
47169
+ /**
47170
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
47171
+ */
47172
+ climate_preset_mode?:
47173
+ | (
47174
+ | 'home'
47175
+ | 'away'
47176
+ | 'wake'
47177
+ | 'sleep'
47178
+ | 'occupied'
47179
+ | 'unoccupied'
47180
+ )
47181
+ | undefined
46774
47182
  /** 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`. */
46775
47183
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
46776
47184
  /** 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`. */
@@ -56092,6 +56500,12 @@ export interface Routes {
56092
56500
  climate_preset_key: string
56093
56501
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
56094
56502
  name?: (string | null) | undefined
56503
+ /**
56504
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
56505
+ */
56506
+ climate_preset_mode?:
56507
+ | ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied')
56508
+ | undefined
56095
56509
  /** 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`. */
56096
56510
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
56097
56511
  /** 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`. */
@@ -58376,6 +58790,12 @@ export interface Routes {
58376
58790
  available_fan_mode_settings?:
58377
58791
  | Array<'auto' | 'on' | 'circulate'>
58378
58792
  | undefined
58793
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
58794
+ available_climate_preset_modes?:
58795
+ | Array<
58796
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
58797
+ >
58798
+ | undefined
58379
58799
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
58380
58800
  is_heating?: boolean | undefined
58381
58801
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -58402,6 +58822,22 @@ export interface Routes {
58402
58822
  name?: ((string | null) | undefined) | undefined
58403
58823
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
58404
58824
  display_name?: string | undefined
58825
+ /**
58826
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
58827
+ */
58828
+ climate_preset_mode?:
58829
+ | (
58830
+ | (
58831
+ | 'home'
58832
+ | 'away'
58833
+ | 'wake'
58834
+ | 'sleep'
58835
+ | 'occupied'
58836
+ | 'unoccupied'
58837
+ )
58838
+ | undefined
58839
+ )
58840
+ | undefined
58405
58841
  /** 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`. */
58406
58842
  fan_mode_setting?:
58407
58843
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -58443,6 +58879,22 @@ export interface Routes {
58443
58879
  name?: ((string | null) | undefined) | undefined
58444
58880
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
58445
58881
  display_name?: string | undefined
58882
+ /**
58883
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
58884
+ */
58885
+ climate_preset_mode?:
58886
+ | (
58887
+ | (
58888
+ | 'home'
58889
+ | 'away'
58890
+ | 'wake'
58891
+ | 'sleep'
58892
+ | 'occupied'
58893
+ | 'unoccupied'
58894
+ )
58895
+ | undefined
58896
+ )
58897
+ | undefined
58446
58898
  /** 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`. */
58447
58899
  fan_mode_setting?:
58448
58900
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -58483,6 +58935,19 @@ export interface Routes {
58483
58935
  name?: (string | null) | undefined
58484
58936
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
58485
58937
  display_name: string
58938
+ /**
58939
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
58940
+ */
58941
+ climate_preset_mode?:
58942
+ | (
58943
+ | 'home'
58944
+ | 'away'
58945
+ | 'wake'
58946
+ | 'sleep'
58947
+ | 'occupied'
58948
+ | 'unoccupied'
58949
+ )
58950
+ | undefined
58486
58951
  /** 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`. */
58487
58952
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
58488
58953
  /** 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`. */
@@ -62706,6 +63171,12 @@ export interface Routes {
62706
63171
  available_fan_mode_settings?:
62707
63172
  | Array<'auto' | 'on' | 'circulate'>
62708
63173
  | undefined
63174
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
63175
+ available_climate_preset_modes?:
63176
+ | Array<
63177
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
63178
+ >
63179
+ | undefined
62709
63180
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
62710
63181
  is_heating?: boolean | undefined
62711
63182
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -62732,6 +63203,22 @@ export interface Routes {
62732
63203
  name?: ((string | null) | undefined) | undefined
62733
63204
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
62734
63205
  display_name?: string | undefined
63206
+ /**
63207
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
63208
+ */
63209
+ climate_preset_mode?:
63210
+ | (
63211
+ | (
63212
+ | 'home'
63213
+ | 'away'
63214
+ | 'wake'
63215
+ | 'sleep'
63216
+ | 'occupied'
63217
+ | 'unoccupied'
63218
+ )
63219
+ | undefined
63220
+ )
63221
+ | undefined
62735
63222
  /** 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`. */
62736
63223
  fan_mode_setting?:
62737
63224
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -62773,6 +63260,22 @@ export interface Routes {
62773
63260
  name?: ((string | null) | undefined) | undefined
62774
63261
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
62775
63262
  display_name?: string | undefined
63263
+ /**
63264
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
63265
+ */
63266
+ climate_preset_mode?:
63267
+ | (
63268
+ | (
63269
+ | 'home'
63270
+ | 'away'
63271
+ | 'wake'
63272
+ | 'sleep'
63273
+ | 'occupied'
63274
+ | 'unoccupied'
63275
+ )
63276
+ | undefined
63277
+ )
63278
+ | undefined
62776
63279
  /** 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`. */
62777
63280
  fan_mode_setting?:
62778
63281
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -62813,6 +63316,19 @@ export interface Routes {
62813
63316
  name?: (string | null) | undefined
62814
63317
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
62815
63318
  display_name: string
63319
+ /**
63320
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
63321
+ */
63322
+ climate_preset_mode?:
63323
+ | (
63324
+ | 'home'
63325
+ | 'away'
63326
+ | 'wake'
63327
+ | 'sleep'
63328
+ | 'occupied'
63329
+ | 'unoccupied'
63330
+ )
63331
+ | undefined
62816
63332
  /** 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`. */
62817
63333
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
62818
63334
  /** 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`. */
@@ -64054,6 +64570,12 @@ export interface Routes {
64054
64570
  available_fan_mode_settings?:
64055
64571
  | Array<'auto' | 'on' | 'circulate'>
64056
64572
  | undefined
64573
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
64574
+ available_climate_preset_modes?:
64575
+ | Array<
64576
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
64577
+ >
64578
+ | undefined
64057
64579
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
64058
64580
  is_heating?: boolean | undefined
64059
64581
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -64080,6 +64602,22 @@ export interface Routes {
64080
64602
  name?: ((string | null) | undefined) | undefined
64081
64603
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
64082
64604
  display_name?: string | undefined
64605
+ /**
64606
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
64607
+ */
64608
+ climate_preset_mode?:
64609
+ | (
64610
+ | (
64611
+ | 'home'
64612
+ | 'away'
64613
+ | 'wake'
64614
+ | 'sleep'
64615
+ | 'occupied'
64616
+ | 'unoccupied'
64617
+ )
64618
+ | undefined
64619
+ )
64620
+ | undefined
64083
64621
  /** 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`. */
64084
64622
  fan_mode_setting?:
64085
64623
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -64121,6 +64659,22 @@ export interface Routes {
64121
64659
  name?: ((string | null) | undefined) | undefined
64122
64660
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
64123
64661
  display_name?: string | undefined
64662
+ /**
64663
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
64664
+ */
64665
+ climate_preset_mode?:
64666
+ | (
64667
+ | (
64668
+ | 'home'
64669
+ | 'away'
64670
+ | 'wake'
64671
+ | 'sleep'
64672
+ | 'occupied'
64673
+ | 'unoccupied'
64674
+ )
64675
+ | undefined
64676
+ )
64677
+ | undefined
64124
64678
  /** 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`. */
64125
64679
  fan_mode_setting?:
64126
64680
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -64161,6 +64715,19 @@ export interface Routes {
64161
64715
  name?: (string | null) | undefined
64162
64716
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
64163
64717
  display_name: string
64718
+ /**
64719
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
64720
+ */
64721
+ climate_preset_mode?:
64722
+ | (
64723
+ | 'home'
64724
+ | 'away'
64725
+ | 'wake'
64726
+ | 'sleep'
64727
+ | 'occupied'
64728
+ | 'unoccupied'
64729
+ )
64730
+ | undefined
64164
64731
  /** 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`. */
64165
64732
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
64166
64733
  /** 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`. */
@@ -69282,6 +69849,12 @@ export interface Routes {
69282
69849
  climate_preset_key: string
69283
69850
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
69284
69851
  name?: (string | null) | undefined
69852
+ /**
69853
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
69854
+ */
69855
+ climate_preset_mode?:
69856
+ | ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied')
69857
+ | undefined
69285
69858
  /** 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`. */
69286
69859
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
69287
69860
  /** 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`. */
@@ -72511,6 +73084,12 @@ export interface Routes {
72511
73084
  available_fan_mode_settings?:
72512
73085
  | Array<'auto' | 'on' | 'circulate'>
72513
73086
  | undefined
73087
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
73088
+ available_climate_preset_modes?:
73089
+ | Array<
73090
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
73091
+ >
73092
+ | undefined
72514
73093
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
72515
73094
  is_heating?: boolean | undefined
72516
73095
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -72537,6 +73116,22 @@ export interface Routes {
72537
73116
  name?: ((string | null) | undefined) | undefined
72538
73117
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
72539
73118
  display_name?: string | undefined
73119
+ /**
73120
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
73121
+ */
73122
+ climate_preset_mode?:
73123
+ | (
73124
+ | (
73125
+ | 'home'
73126
+ | 'away'
73127
+ | 'wake'
73128
+ | 'sleep'
73129
+ | 'occupied'
73130
+ | 'unoccupied'
73131
+ )
73132
+ | undefined
73133
+ )
73134
+ | undefined
72540
73135
  /** 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`. */
72541
73136
  fan_mode_setting?:
72542
73137
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -72578,6 +73173,22 @@ export interface Routes {
72578
73173
  name?: ((string | null) | undefined) | undefined
72579
73174
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
72580
73175
  display_name?: string | undefined
73176
+ /**
73177
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
73178
+ */
73179
+ climate_preset_mode?:
73180
+ | (
73181
+ | (
73182
+ | 'home'
73183
+ | 'away'
73184
+ | 'wake'
73185
+ | 'sleep'
73186
+ | 'occupied'
73187
+ | 'unoccupied'
73188
+ )
73189
+ | undefined
73190
+ )
73191
+ | undefined
72581
73192
  /** 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`. */
72582
73193
  fan_mode_setting?:
72583
73194
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -72618,6 +73229,19 @@ export interface Routes {
72618
73229
  name?: (string | null) | undefined
72619
73230
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
72620
73231
  display_name: string
73232
+ /**
73233
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
73234
+ */
73235
+ climate_preset_mode?:
73236
+ | (
73237
+ | 'home'
73238
+ | 'away'
73239
+ | 'wake'
73240
+ | 'sleep'
73241
+ | 'occupied'
73242
+ | 'unoccupied'
73243
+ )
73244
+ | undefined
72621
73245
  /** 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`. */
72622
73246
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
72623
73247
  /** 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`. */
@@ -73861,6 +74485,12 @@ export interface Routes {
73861
74485
  available_fan_mode_settings?:
73862
74486
  | Array<'auto' | 'on' | 'circulate'>
73863
74487
  | undefined
74488
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
74489
+ available_climate_preset_modes?:
74490
+ | Array<
74491
+ 'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'
74492
+ >
74493
+ | undefined
73864
74494
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
73865
74495
  is_heating?: boolean | undefined
73866
74496
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -73887,6 +74517,22 @@ export interface Routes {
73887
74517
  name?: ((string | null) | undefined) | undefined
73888
74518
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
73889
74519
  display_name?: string | undefined
74520
+ /**
74521
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
74522
+ */
74523
+ climate_preset_mode?:
74524
+ | (
74525
+ | (
74526
+ | 'home'
74527
+ | 'away'
74528
+ | 'wake'
74529
+ | 'sleep'
74530
+ | 'occupied'
74531
+ | 'unoccupied'
74532
+ )
74533
+ | undefined
74534
+ )
74535
+ | undefined
73890
74536
  /** 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`. */
73891
74537
  fan_mode_setting?:
73892
74538
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -73928,6 +74574,22 @@ export interface Routes {
73928
74574
  name?: ((string | null) | undefined) | undefined
73929
74575
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
73930
74576
  display_name?: string | undefined
74577
+ /**
74578
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
74579
+ */
74580
+ climate_preset_mode?:
74581
+ | (
74582
+ | (
74583
+ | 'home'
74584
+ | 'away'
74585
+ | 'wake'
74586
+ | 'sleep'
74587
+ | 'occupied'
74588
+ | 'unoccupied'
74589
+ )
74590
+ | undefined
74591
+ )
74592
+ | undefined
73931
74593
  /** 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`. */
73932
74594
  fan_mode_setting?:
73933
74595
  | (('auto' | 'on' | 'circulate') | undefined)
@@ -73968,6 +74630,19 @@ export interface Routes {
73968
74630
  name?: (string | null) | undefined
73969
74631
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
73970
74632
  display_name: string
74633
+ /**
74634
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
74635
+ */
74636
+ climate_preset_mode?:
74637
+ | (
74638
+ | 'home'
74639
+ | 'away'
74640
+ | 'wake'
74641
+ | 'sleep'
74642
+ | 'occupied'
74643
+ | 'unoccupied'
74644
+ )
74645
+ | undefined
73971
74646
  /** 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`. */
73972
74647
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
73973
74648
  /** 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`. */