@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
@@ -12964,6 +12964,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12964
12964
  relative_humidity: z.ZodOptional<z.ZodNumber>;
12965
12965
  available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
12966
12966
  available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
12967
+ available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
12967
12968
  is_heating: z.ZodOptional<z.ZodBoolean>;
12968
12969
  is_cooling: z.ZodOptional<z.ZodBoolean>;
12969
12970
  is_fan_running: z.ZodOptional<z.ZodBoolean>;
@@ -12976,6 +12977,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12976
12977
  can_program: z.ZodOptional<z.ZodBoolean>;
12977
12978
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
12978
12979
  display_name: z.ZodOptional<z.ZodString>;
12980
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
12979
12981
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
12980
12982
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
12981
12983
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -12990,6 +12992,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12990
12992
  can_program?: boolean | undefined;
12991
12993
  name?: string | null | undefined;
12992
12994
  display_name?: string | undefined;
12995
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12993
12996
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12994
12997
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12995
12998
  cooling_set_point_celsius?: number | undefined;
@@ -13004,6 +13007,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13004
13007
  can_program?: boolean | undefined;
13005
13008
  name?: string | null | undefined;
13006
13009
  display_name?: string | undefined;
13010
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13007
13011
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13008
13012
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13009
13013
  cooling_set_point_celsius?: number | undefined;
@@ -13019,6 +13023,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13019
13023
  can_program: z.ZodOptional<z.ZodBoolean>;
13020
13024
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
13021
13025
  display_name: z.ZodOptional<z.ZodString>;
13026
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
13022
13027
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
13023
13028
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
13024
13029
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -13033,6 +13038,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13033
13038
  can_program?: boolean | undefined;
13034
13039
  name?: string | null | undefined;
13035
13040
  display_name?: string | undefined;
13041
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13036
13042
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13037
13043
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13038
13044
  cooling_set_point_celsius?: number | undefined;
@@ -13047,6 +13053,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13047
13053
  can_program?: boolean | undefined;
13048
13054
  name?: string | null | undefined;
13049
13055
  display_name?: string | undefined;
13056
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13050
13057
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13051
13058
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13052
13059
  cooling_set_point_celsius?: number | undefined;
@@ -13062,6 +13069,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13062
13069
  can_program: z.ZodBoolean;
13063
13070
  name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
13064
13071
  display_name: z.ZodString;
13072
+ climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
13065
13073
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
13066
13074
  hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
13067
13075
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
@@ -13077,6 +13085,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13077
13085
  display_name: string;
13078
13086
  manual_override_allowed: boolean;
13079
13087
  name?: string | null | undefined;
13088
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13080
13089
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13081
13090
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13082
13091
  cooling_set_point_celsius?: number | undefined;
@@ -13091,6 +13100,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13091
13100
  display_name: string;
13092
13101
  manual_override_allowed: boolean;
13093
13102
  name?: string | null | undefined;
13103
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13094
13104
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13095
13105
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13096
13106
  cooling_set_point_celsius?: number | undefined;
@@ -13250,6 +13260,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13250
13260
  relative_humidity?: number | undefined;
13251
13261
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
13252
13262
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
13263
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
13253
13264
  is_heating?: boolean | undefined;
13254
13265
  is_cooling?: boolean | undefined;
13255
13266
  is_fan_running?: boolean | undefined;
@@ -13261,6 +13272,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13261
13272
  can_program?: boolean | undefined;
13262
13273
  name?: string | null | undefined;
13263
13274
  display_name?: string | undefined;
13275
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13264
13276
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13265
13277
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13266
13278
  cooling_set_point_celsius?: number | undefined;
@@ -13276,6 +13288,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13276
13288
  can_program?: boolean | undefined;
13277
13289
  name?: string | null | undefined;
13278
13290
  display_name?: string | undefined;
13291
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13279
13292
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13280
13293
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13281
13294
  cooling_set_point_celsius?: number | undefined;
@@ -13292,6 +13305,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13292
13305
  display_name: string;
13293
13306
  manual_override_allowed: boolean;
13294
13307
  name?: string | null | undefined;
13308
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13295
13309
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13296
13310
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13297
13311
  cooling_set_point_celsius?: number | undefined;
@@ -13361,6 +13375,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13361
13375
  relative_humidity?: number | undefined;
13362
13376
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
13363
13377
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
13378
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
13364
13379
  is_heating?: boolean | undefined;
13365
13380
  is_cooling?: boolean | undefined;
13366
13381
  is_fan_running?: boolean | undefined;
@@ -13372,6 +13387,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13372
13387
  can_program?: boolean | undefined;
13373
13388
  name?: string | null | undefined;
13374
13389
  display_name?: string | undefined;
13390
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13375
13391
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13376
13392
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13377
13393
  cooling_set_point_celsius?: number | undefined;
@@ -13387,6 +13403,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13387
13403
  can_program?: boolean | undefined;
13388
13404
  name?: string | null | undefined;
13389
13405
  display_name?: string | undefined;
13406
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13390
13407
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13391
13408
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13392
13409
  cooling_set_point_celsius?: number | undefined;
@@ -13403,6 +13420,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13403
13420
  display_name: string;
13404
13421
  manual_override_allowed: boolean;
13405
13422
  name?: string | null | undefined;
13423
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13406
13424
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13407
13425
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13408
13426
  cooling_set_point_celsius?: number | undefined;
@@ -14579,6 +14597,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14579
14597
  relative_humidity?: number | undefined;
14580
14598
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
14581
14599
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
14600
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
14582
14601
  is_heating?: boolean | undefined;
14583
14602
  is_cooling?: boolean | undefined;
14584
14603
  is_fan_running?: boolean | undefined;
@@ -14590,6 +14609,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14590
14609
  can_program?: boolean | undefined;
14591
14610
  name?: string | null | undefined;
14592
14611
  display_name?: string | undefined;
14612
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14593
14613
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14594
14614
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14595
14615
  cooling_set_point_celsius?: number | undefined;
@@ -14605,6 +14625,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14605
14625
  can_program?: boolean | undefined;
14606
14626
  name?: string | null | undefined;
14607
14627
  display_name?: string | undefined;
14628
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14608
14629
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14609
14630
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14610
14631
  cooling_set_point_celsius?: number | undefined;
@@ -14621,6 +14642,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14621
14642
  display_name: string;
14622
14643
  manual_override_allowed: boolean;
14623
14644
  name?: string | null | undefined;
14645
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14624
14646
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14625
14647
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14626
14648
  cooling_set_point_celsius?: number | undefined;
@@ -15194,6 +15216,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15194
15216
  relative_humidity?: number | undefined;
15195
15217
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
15196
15218
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
15219
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
15197
15220
  is_heating?: boolean | undefined;
15198
15221
  is_cooling?: boolean | undefined;
15199
15222
  is_fan_running?: boolean | undefined;
@@ -15205,6 +15228,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15205
15228
  can_program?: boolean | undefined;
15206
15229
  name?: string | null | undefined;
15207
15230
  display_name?: string | undefined;
15231
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15208
15232
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15209
15233
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15210
15234
  cooling_set_point_celsius?: number | undefined;
@@ -15220,6 +15244,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15220
15244
  can_program?: boolean | undefined;
15221
15245
  name?: string | null | undefined;
15222
15246
  display_name?: string | undefined;
15247
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15223
15248
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15224
15249
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15225
15250
  cooling_set_point_celsius?: number | undefined;
@@ -15236,6 +15261,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15236
15261
  display_name: string;
15237
15262
  manual_override_allowed: boolean;
15238
15263
  name?: string | null | undefined;
15264
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15239
15265
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15240
15266
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15241
15267
  cooling_set_point_celsius?: number | undefined;
@@ -16923,6 +16949,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16923
16949
  relative_humidity: z.ZodOptional<z.ZodNumber>;
16924
16950
  available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
16925
16951
  available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
16952
+ available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
16926
16953
  is_heating: z.ZodOptional<z.ZodBoolean>;
16927
16954
  is_cooling: z.ZodOptional<z.ZodBoolean>;
16928
16955
  is_fan_running: z.ZodOptional<z.ZodBoolean>;
@@ -16935,6 +16962,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16935
16962
  can_program: z.ZodOptional<z.ZodBoolean>;
16936
16963
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
16937
16964
  display_name: z.ZodOptional<z.ZodString>;
16965
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
16938
16966
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
16939
16967
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
16940
16968
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -16949,6 +16977,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16949
16977
  can_program?: boolean | undefined;
16950
16978
  name?: string | null | undefined;
16951
16979
  display_name?: string | undefined;
16980
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
16952
16981
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
16953
16982
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
16954
16983
  cooling_set_point_celsius?: number | undefined;
@@ -16963,6 +16992,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16963
16992
  can_program?: boolean | undefined;
16964
16993
  name?: string | null | undefined;
16965
16994
  display_name?: string | undefined;
16995
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
16966
16996
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
16967
16997
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
16968
16998
  cooling_set_point_celsius?: number | undefined;
@@ -16978,6 +17008,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16978
17008
  can_program: z.ZodOptional<z.ZodBoolean>;
16979
17009
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
16980
17010
  display_name: z.ZodOptional<z.ZodString>;
17011
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
16981
17012
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
16982
17013
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
16983
17014
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -16992,6 +17023,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16992
17023
  can_program?: boolean | undefined;
16993
17024
  name?: string | null | undefined;
16994
17025
  display_name?: string | undefined;
17026
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
16995
17027
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
16996
17028
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
16997
17029
  cooling_set_point_celsius?: number | undefined;
@@ -17006,6 +17038,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17006
17038
  can_program?: boolean | undefined;
17007
17039
  name?: string | null | undefined;
17008
17040
  display_name?: string | undefined;
17041
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17009
17042
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17010
17043
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17011
17044
  cooling_set_point_celsius?: number | undefined;
@@ -17021,6 +17054,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17021
17054
  can_program: z.ZodBoolean;
17022
17055
  name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
17023
17056
  display_name: z.ZodString;
17057
+ climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
17024
17058
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
17025
17059
  hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
17026
17060
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
@@ -17036,6 +17070,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17036
17070
  display_name: string;
17037
17071
  manual_override_allowed: boolean;
17038
17072
  name?: string | null | undefined;
17073
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17039
17074
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17040
17075
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17041
17076
  cooling_set_point_celsius?: number | undefined;
@@ -17050,6 +17085,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17050
17085
  display_name: string;
17051
17086
  manual_override_allowed: boolean;
17052
17087
  name?: string | null | undefined;
17088
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17053
17089
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17054
17090
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17055
17091
  cooling_set_point_celsius?: number | undefined;
@@ -17209,6 +17245,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17209
17245
  relative_humidity?: number | undefined;
17210
17246
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
17211
17247
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
17248
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
17212
17249
  is_heating?: boolean | undefined;
17213
17250
  is_cooling?: boolean | undefined;
17214
17251
  is_fan_running?: boolean | undefined;
@@ -17220,6 +17257,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17220
17257
  can_program?: boolean | undefined;
17221
17258
  name?: string | null | undefined;
17222
17259
  display_name?: string | undefined;
17260
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17223
17261
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17224
17262
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17225
17263
  cooling_set_point_celsius?: number | undefined;
@@ -17235,6 +17273,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17235
17273
  can_program?: boolean | undefined;
17236
17274
  name?: string | null | undefined;
17237
17275
  display_name?: string | undefined;
17276
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17238
17277
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17239
17278
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17240
17279
  cooling_set_point_celsius?: number | undefined;
@@ -17251,6 +17290,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17251
17290
  display_name: string;
17252
17291
  manual_override_allowed: boolean;
17253
17292
  name?: string | null | undefined;
17293
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17254
17294
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17255
17295
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17256
17296
  cooling_set_point_celsius?: number | undefined;
@@ -17320,6 +17360,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17320
17360
  relative_humidity?: number | undefined;
17321
17361
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
17322
17362
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
17363
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
17323
17364
  is_heating?: boolean | undefined;
17324
17365
  is_cooling?: boolean | undefined;
17325
17366
  is_fan_running?: boolean | undefined;
@@ -17331,6 +17372,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17331
17372
  can_program?: boolean | undefined;
17332
17373
  name?: string | null | undefined;
17333
17374
  display_name?: string | undefined;
17375
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17334
17376
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17335
17377
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17336
17378
  cooling_set_point_celsius?: number | undefined;
@@ -17346,6 +17388,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17346
17388
  can_program?: boolean | undefined;
17347
17389
  name?: string | null | undefined;
17348
17390
  display_name?: string | undefined;
17391
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17349
17392
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17350
17393
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17351
17394
  cooling_set_point_celsius?: number | undefined;
@@ -17362,6 +17405,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17362
17405
  display_name: string;
17363
17406
  manual_override_allowed: boolean;
17364
17407
  name?: string | null | undefined;
17408
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17365
17409
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17366
17410
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17367
17411
  cooling_set_point_celsius?: number | undefined;
@@ -20951,6 +20995,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
20951
20995
  can_program: z.ZodOptional<z.ZodBoolean>;
20952
20996
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
20953
20997
  display_name: z.ZodOptional<z.ZodString>;
20998
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
20954
20999
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
20955
21000
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
20956
21001
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -27417,6 +27462,7 @@ declare const _default: {
27417
27462
  };
27418
27463
  active_thermostat_schedule?: never;
27419
27464
  active_thermostat_schedule_id?: never;
27465
+ available_climate_preset_modes?: never;
27420
27466
  available_climate_presets?: never;
27421
27467
  available_fan_mode_settings?: never;
27422
27468
  available_hvac_mode_settings?: never;
@@ -27535,6 +27581,16 @@ declare const _default: {
27535
27581
  type: string;
27536
27582
  'x-property-group-key': string;
27537
27583
  };
27584
+ available_climate_preset_modes: {
27585
+ description: string;
27586
+ items: {
27587
+ enum: string[];
27588
+ type: string;
27589
+ };
27590
+ type: string;
27591
+ 'x-draft': string;
27592
+ 'x-property-group-key': string;
27593
+ };
27538
27594
  available_climate_presets: {
27539
27595
  description: string;
27540
27596
  items: {
@@ -27555,6 +27611,11 @@ declare const _default: {
27555
27611
  description: string;
27556
27612
  type: string;
27557
27613
  };
27614
+ climate_preset_mode: {
27615
+ description: string;
27616
+ enum: string[];
27617
+ type: string;
27618
+ };
27558
27619
  cooling_set_point_celsius: {
27559
27620
  description: string;
27560
27621
  format: string;
@@ -27645,6 +27706,11 @@ declare const _default: {
27645
27706
  description: string;
27646
27707
  type: string;
27647
27708
  };
27709
+ climate_preset_mode: {
27710
+ description: string;
27711
+ enum: string[];
27712
+ type: string;
27713
+ };
27648
27714
  cooling_set_point_celsius: {
27649
27715
  description: string;
27650
27716
  format: string;
@@ -27714,6 +27780,11 @@ declare const _default: {
27714
27780
  description: string;
27715
27781
  type: string;
27716
27782
  };
27783
+ climate_preset_mode: {
27784
+ description: string;
27785
+ enum: string[];
27786
+ type: string;
27787
+ };
27717
27788
  cooling_set_point_celsius: {
27718
27789
  description: string;
27719
27790
  format: string;
@@ -59496,6 +59567,11 @@ declare const _default: {
59496
59567
  description: string;
59497
59568
  type: string;
59498
59569
  };
59570
+ climate_preset_mode: {
59571
+ description: string;
59572
+ enum: string[];
59573
+ type: string;
59574
+ };
59499
59575
  cooling_set_point_celsius: {
59500
59576
  description: string;
59501
59577
  format: string;
@@ -62681,6 +62757,11 @@ declare const _default: {
62681
62757
  description: string;
62682
62758
  type: string;
62683
62759
  };
62760
+ climate_preset_mode: {
62761
+ description: string;
62762
+ enum: string[];
62763
+ type: string;
62764
+ };
62684
62765
  cooling_set_point_celsius: {
62685
62766
  description: string;
62686
62767
  format: string;
@@ -62799,6 +62880,11 @@ declare const _default: {
62799
62880
  description: string;
62800
62881
  type: string;
62801
62882
  };
62883
+ climate_preset_mode: {
62884
+ description: string;
62885
+ enum: string[];
62886
+ type: string;
62887
+ };
62802
62888
  cooling_set_point_celsius: {
62803
62889
  description: string;
62804
62890
  format: string;
@@ -92457,6 +92543,8 @@ interface Routes {
92457
92543
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
92458
92544
  /** Fan mode settings that the thermostat supports. */
92459
92545
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
92546
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
92547
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
92460
92548
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
92461
92549
  is_heating?: boolean | undefined;
92462
92550
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -92482,6 +92570,10 @@ interface Routes {
92482
92570
  name?: ((string | null) | undefined) | undefined;
92483
92571
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92484
92572
  display_name?: string | undefined;
92573
+ /**
92574
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
92575
+ */
92576
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
92485
92577
  /** 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`. */
92486
92578
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
92487
92579
  /** 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`. */
@@ -92513,6 +92605,10 @@ interface Routes {
92513
92605
  name?: ((string | null) | undefined) | undefined;
92514
92606
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92515
92607
  display_name?: string | undefined;
92608
+ /**
92609
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
92610
+ */
92611
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
92516
92612
  /** 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`. */
92517
92613
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
92518
92614
  /** 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`. */
@@ -92543,6 +92639,10 @@ interface Routes {
92543
92639
  name?: (string | null) | undefined;
92544
92640
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92545
92641
  display_name: string;
92642
+ /**
92643
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
92644
+ */
92645
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
92546
92646
  /** 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`. */
92547
92647
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
92548
92648
  /** 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`. */
@@ -93615,6 +93715,8 @@ interface Routes {
93615
93715
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
93616
93716
  /** Fan mode settings that the thermostat supports. */
93617
93717
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
93718
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
93719
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
93618
93720
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
93619
93721
  is_heating?: boolean | undefined;
93620
93722
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -93640,6 +93742,10 @@ interface Routes {
93640
93742
  name?: ((string | null) | undefined) | undefined;
93641
93743
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93642
93744
  display_name?: string | undefined;
93745
+ /**
93746
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
93747
+ */
93748
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
93643
93749
  /** 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`. */
93644
93750
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
93645
93751
  /** 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`. */
@@ -93671,6 +93777,10 @@ interface Routes {
93671
93777
  name?: ((string | null) | undefined) | undefined;
93672
93778
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93673
93779
  display_name?: string | undefined;
93780
+ /**
93781
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
93782
+ */
93783
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
93674
93784
  /** 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`. */
93675
93785
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
93676
93786
  /** 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`. */
@@ -93701,6 +93811,10 @@ interface Routes {
93701
93811
  name?: (string | null) | undefined;
93702
93812
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93703
93813
  display_name: string;
93814
+ /**
93815
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
93816
+ */
93817
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
93704
93818
  /** 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`. */
93705
93819
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
93706
93820
  /** 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`. */
@@ -98537,6 +98651,8 @@ interface Routes {
98537
98651
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
98538
98652
  /** Fan mode settings that the thermostat supports. */
98539
98653
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
98654
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
98655
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
98540
98656
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
98541
98657
  is_heating?: boolean | undefined;
98542
98658
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -98562,6 +98678,10 @@ interface Routes {
98562
98678
  name?: ((string | null) | undefined) | undefined;
98563
98679
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
98564
98680
  display_name?: string | undefined;
98681
+ /**
98682
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
98683
+ */
98684
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
98565
98685
  /** 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`. */
98566
98686
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
98567
98687
  /** 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`. */
@@ -98593,6 +98713,10 @@ interface Routes {
98593
98713
  name?: ((string | null) | undefined) | undefined;
98594
98714
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
98595
98715
  display_name?: string | undefined;
98716
+ /**
98717
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
98718
+ */
98719
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
98596
98720
  /** 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`. */
98597
98721
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
98598
98722
  /** 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`. */
@@ -98623,6 +98747,10 @@ interface Routes {
98623
98747
  name?: (string | null) | undefined;
98624
98748
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
98625
98749
  display_name: string;
98750
+ /**
98751
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
98752
+ */
98753
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
98626
98754
  /** 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`. */
98627
98755
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
98628
98756
  /** 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`. */
@@ -99649,6 +99777,8 @@ interface Routes {
99649
99777
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
99650
99778
  /** Fan mode settings that the thermostat supports. */
99651
99779
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
99780
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
99781
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
99652
99782
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
99653
99783
  is_heating?: boolean | undefined;
99654
99784
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -99674,6 +99804,10 @@ interface Routes {
99674
99804
  name?: ((string | null) | undefined) | undefined;
99675
99805
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
99676
99806
  display_name?: string | undefined;
99807
+ /**
99808
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
99809
+ */
99810
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
99677
99811
  /** 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`. */
99678
99812
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
99679
99813
  /** 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`. */
@@ -99705,6 +99839,10 @@ interface Routes {
99705
99839
  name?: ((string | null) | undefined) | undefined;
99706
99840
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
99707
99841
  display_name?: string | undefined;
99842
+ /**
99843
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
99844
+ */
99845
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
99708
99846
  /** 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`. */
99709
99847
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
99710
99848
  /** 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`. */
@@ -99735,6 +99873,10 @@ interface Routes {
99735
99873
  name?: (string | null) | undefined;
99736
99874
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
99737
99875
  display_name: string;
99876
+ /**
99877
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
99878
+ */
99879
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
99738
99880
  /** 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`. */
99739
99881
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
99740
99882
  /** 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`. */
@@ -100807,6 +100949,8 @@ interface Routes {
100807
100949
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
100808
100950
  /** Fan mode settings that the thermostat supports. */
100809
100951
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
100952
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
100953
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
100810
100954
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
100811
100955
  is_heating?: boolean | undefined;
100812
100956
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -100832,6 +100976,10 @@ interface Routes {
100832
100976
  name?: ((string | null) | undefined) | undefined;
100833
100977
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
100834
100978
  display_name?: string | undefined;
100979
+ /**
100980
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
100981
+ */
100982
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
100835
100983
  /** 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`. */
100836
100984
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
100837
100985
  /** 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`. */
@@ -100863,6 +101011,10 @@ interface Routes {
100863
101011
  name?: ((string | null) | undefined) | undefined;
100864
101012
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
100865
101013
  display_name?: string | undefined;
101014
+ /**
101015
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
101016
+ */
101017
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
100866
101018
  /** 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`. */
100867
101019
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
100868
101020
  /** 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`. */
@@ -100893,6 +101045,10 @@ interface Routes {
100893
101045
  name?: (string | null) | undefined;
100894
101046
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
100895
101047
  display_name: string;
101048
+ /**
101049
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
101050
+ */
101051
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
100896
101052
  /** 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`. */
100897
101053
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
100898
101054
  /** 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`. */
@@ -101918,6 +102074,8 @@ interface Routes {
101918
102074
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
101919
102075
  /** Fan mode settings that the thermostat supports. */
101920
102076
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
102077
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
102078
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
101921
102079
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
101922
102080
  is_heating?: boolean | undefined;
101923
102081
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -101943,6 +102101,10 @@ interface Routes {
101943
102101
  name?: ((string | null) | undefined) | undefined;
101944
102102
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
101945
102103
  display_name?: string | undefined;
102104
+ /**
102105
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
102106
+ */
102107
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
101946
102108
  /** 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`. */
101947
102109
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
101948
102110
  /** 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`. */
@@ -101974,6 +102136,10 @@ interface Routes {
101974
102136
  name?: ((string | null) | undefined) | undefined;
101975
102137
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
101976
102138
  display_name?: string | undefined;
102139
+ /**
102140
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
102141
+ */
102142
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
101977
102143
  /** 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`. */
101978
102144
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
101979
102145
  /** 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`. */
@@ -102004,6 +102170,10 @@ interface Routes {
102004
102170
  name?: (string | null) | undefined;
102005
102171
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
102006
102172
  display_name: string;
102173
+ /**
102174
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
102175
+ */
102176
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
102007
102177
  /** 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`. */
102008
102178
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
102009
102179
  /** 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`. */
@@ -108117,6 +108287,8 @@ interface Routes {
108117
108287
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
108118
108288
  /** Fan mode settings that the thermostat supports. */
108119
108289
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
108290
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
108291
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
108120
108292
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
108121
108293
  is_heating?: boolean | undefined;
108122
108294
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -108142,6 +108314,10 @@ interface Routes {
108142
108314
  name?: ((string | null) | undefined) | undefined;
108143
108315
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
108144
108316
  display_name?: string | undefined;
108317
+ /**
108318
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
108319
+ */
108320
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
108145
108321
  /** 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`. */
108146
108322
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
108147
108323
  /** 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`. */
@@ -108173,6 +108349,10 @@ interface Routes {
108173
108349
  name?: ((string | null) | undefined) | undefined;
108174
108350
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
108175
108351
  display_name?: string | undefined;
108352
+ /**
108353
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
108354
+ */
108355
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
108176
108356
  /** 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`. */
108177
108357
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
108178
108358
  /** 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`. */
@@ -108203,6 +108383,10 @@ interface Routes {
108203
108383
  name?: (string | null) | undefined;
108204
108384
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
108205
108385
  display_name: string;
108386
+ /**
108387
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
108388
+ */
108389
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
108206
108390
  /** 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`. */
108207
108391
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
108208
108392
  /** 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`. */
@@ -109228,6 +109412,8 @@ interface Routes {
109228
109412
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
109229
109413
  /** Fan mode settings that the thermostat supports. */
109230
109414
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
109415
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
109416
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
109231
109417
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
109232
109418
  is_heating?: boolean | undefined;
109233
109419
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -109253,6 +109439,10 @@ interface Routes {
109253
109439
  name?: ((string | null) | undefined) | undefined;
109254
109440
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
109255
109441
  display_name?: string | undefined;
109442
+ /**
109443
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
109444
+ */
109445
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
109256
109446
  /** 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`. */
109257
109447
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
109258
109448
  /** 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`. */
@@ -109284,6 +109474,10 @@ interface Routes {
109284
109474
  name?: ((string | null) | undefined) | undefined;
109285
109475
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
109286
109476
  display_name?: string | undefined;
109477
+ /**
109478
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
109479
+ */
109480
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
109287
109481
  /** 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`. */
109288
109482
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
109289
109483
  /** 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`. */
@@ -109314,6 +109508,10 @@ interface Routes {
109314
109508
  name?: (string | null) | undefined;
109315
109509
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
109316
109510
  display_name: string;
109511
+ /**
109512
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
109513
+ */
109514
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
109317
109515
  /** 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`. */
109318
109516
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
109319
109517
  /** 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`. */
@@ -117513,6 +117711,10 @@ interface Routes {
117513
117711
  climate_preset_key: string;
117514
117712
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
117515
117713
  name?: (string | null) | undefined;
117714
+ /**
117715
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
117716
+ */
117717
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
117516
117718
  /** 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`. */
117517
117719
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
117518
117720
  /** 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`. */
@@ -119456,6 +119658,8 @@ interface Routes {
119456
119658
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
119457
119659
  /** Fan mode settings that the thermostat supports. */
119458
119660
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
119661
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
119662
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
119459
119663
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
119460
119664
  is_heating?: boolean | undefined;
119461
119665
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -119481,6 +119685,10 @@ interface Routes {
119481
119685
  name?: ((string | null) | undefined) | undefined;
119482
119686
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
119483
119687
  display_name?: string | undefined;
119688
+ /**
119689
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
119690
+ */
119691
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
119484
119692
  /** 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`. */
119485
119693
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
119486
119694
  /** 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`. */
@@ -119512,6 +119720,10 @@ interface Routes {
119512
119720
  name?: ((string | null) | undefined) | undefined;
119513
119721
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
119514
119722
  display_name?: string | undefined;
119723
+ /**
119724
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
119725
+ */
119726
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
119515
119727
  /** 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`. */
119516
119728
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
119517
119729
  /** 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`. */
@@ -119542,6 +119754,10 @@ interface Routes {
119542
119754
  name?: (string | null) | undefined;
119543
119755
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
119544
119756
  display_name: string;
119757
+ /**
119758
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
119759
+ */
119760
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
119545
119761
  /** 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`. */
119546
119762
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
119547
119763
  /** 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`. */
@@ -123130,6 +123346,8 @@ interface Routes {
123130
123346
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
123131
123347
  /** Fan mode settings that the thermostat supports. */
123132
123348
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
123349
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
123350
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
123133
123351
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
123134
123352
  is_heating?: boolean | undefined;
123135
123353
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -123155,6 +123373,10 @@ interface Routes {
123155
123373
  name?: ((string | null) | undefined) | undefined;
123156
123374
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
123157
123375
  display_name?: string | undefined;
123376
+ /**
123377
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
123378
+ */
123379
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
123158
123380
  /** 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`. */
123159
123381
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
123160
123382
  /** 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`. */
@@ -123186,6 +123408,10 @@ interface Routes {
123186
123408
  name?: ((string | null) | undefined) | undefined;
123187
123409
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
123188
123410
  display_name?: string | undefined;
123411
+ /**
123412
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
123413
+ */
123414
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
123189
123415
  /** 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`. */
123190
123416
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
123191
123417
  /** 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`. */
@@ -123216,6 +123442,10 @@ interface Routes {
123216
123442
  name?: (string | null) | undefined;
123217
123443
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
123218
123444
  display_name: string;
123445
+ /**
123446
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
123447
+ */
123448
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
123219
123449
  /** 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`. */
123220
123450
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
123221
123451
  /** 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`. */
@@ -124241,6 +124471,8 @@ interface Routes {
124241
124471
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
124242
124472
  /** Fan mode settings that the thermostat supports. */
124243
124473
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
124474
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
124475
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
124244
124476
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
124245
124477
  is_heating?: boolean | undefined;
124246
124478
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -124266,6 +124498,10 @@ interface Routes {
124266
124498
  name?: ((string | null) | undefined) | undefined;
124267
124499
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
124268
124500
  display_name?: string | undefined;
124501
+ /**
124502
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
124503
+ */
124504
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
124269
124505
  /** 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`. */
124270
124506
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
124271
124507
  /** 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`. */
@@ -124297,6 +124533,10 @@ interface Routes {
124297
124533
  name?: ((string | null) | undefined) | undefined;
124298
124534
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
124299
124535
  display_name?: string | undefined;
124536
+ /**
124537
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
124538
+ */
124539
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
124300
124540
  /** 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`. */
124301
124541
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
124302
124542
  /** 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`. */
@@ -124327,6 +124567,10 @@ interface Routes {
124327
124567
  name?: (string | null) | undefined;
124328
124568
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
124329
124569
  display_name: string;
124570
+ /**
124571
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
124572
+ */
124573
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
124330
124574
  /** 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`. */
124331
124575
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
124332
124576
  /** 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`. */
@@ -128841,6 +129085,10 @@ interface Routes {
128841
129085
  climate_preset_key: string;
128842
129086
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
128843
129087
  name?: (string | null) | undefined;
129088
+ /**
129089
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
129090
+ */
129091
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
128844
129092
  /** 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`. */
128845
129093
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
128846
129094
  /** 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`. */
@@ -131686,6 +131934,8 @@ interface Routes {
131686
131934
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
131687
131935
  /** Fan mode settings that the thermostat supports. */
131688
131936
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
131937
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
131938
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
131689
131939
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
131690
131940
  is_heating?: boolean | undefined;
131691
131941
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -131711,6 +131961,10 @@ interface Routes {
131711
131961
  name?: ((string | null) | undefined) | undefined;
131712
131962
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
131713
131963
  display_name?: string | undefined;
131964
+ /**
131965
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
131966
+ */
131967
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
131714
131968
  /** 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`. */
131715
131969
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
131716
131970
  /** 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`. */
@@ -131742,6 +131996,10 @@ interface Routes {
131742
131996
  name?: ((string | null) | undefined) | undefined;
131743
131997
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
131744
131998
  display_name?: string | undefined;
131999
+ /**
132000
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
132001
+ */
132002
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
131745
132003
  /** 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`. */
131746
132004
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
131747
132005
  /** 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`. */
@@ -131772,6 +132030,10 @@ interface Routes {
131772
132030
  name?: (string | null) | undefined;
131773
132031
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
131774
132032
  display_name: string;
132033
+ /**
132034
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
132035
+ */
132036
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
131775
132037
  /** 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`. */
131776
132038
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
131777
132039
  /** 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`. */
@@ -132799,6 +133061,8 @@ interface Routes {
132799
133061
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
132800
133062
  /** Fan mode settings that the thermostat supports. */
132801
133063
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
133064
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
133065
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
132802
133066
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
132803
133067
  is_heating?: boolean | undefined;
132804
133068
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -132824,6 +133088,10 @@ interface Routes {
132824
133088
  name?: ((string | null) | undefined) | undefined;
132825
133089
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
132826
133090
  display_name?: string | undefined;
133091
+ /**
133092
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
133093
+ */
133094
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
132827
133095
  /** 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`. */
132828
133096
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
132829
133097
  /** 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`. */
@@ -132855,6 +133123,10 @@ interface Routes {
132855
133123
  name?: ((string | null) | undefined) | undefined;
132856
133124
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
132857
133125
  display_name?: string | undefined;
133126
+ /**
133127
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
133128
+ */
133129
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
132858
133130
  /** 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`. */
132859
133131
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
132860
133132
  /** 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`. */
@@ -132885,6 +133157,10 @@ interface Routes {
132885
133157
  name?: (string | null) | undefined;
132886
133158
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
132887
133159
  display_name: string;
133160
+ /**
133161
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
133162
+ */
133163
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
132888
133164
  /** 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`. */
132889
133165
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
132890
133166
  /** 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`. */