@seamapi/types 1.429.0 → 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.
- package/dist/connect.cjs +252 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +453 -12
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -1
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +26 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -0
- package/lib/seam/connect/models/events/devices.d.ts +2 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +1 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +4 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/modes.d.ts +2 -0
- package/lib/seam/connect/models/thermostats/modes.js +8 -0
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +210 -4
- package/lib/seam/connect/openapi.js +234 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +198 -8
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +8 -1
- package/src/lib/seam/connect/models/thermostats/modes.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +243 -8
- package/src/lib/seam/connect/route-types.ts +683 -8
package/dist/connect.d.cts
CHANGED
|
@@ -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;
|
|
@@ -37581,7 +37652,7 @@ declare const _default: {
|
|
|
37581
37652
|
};
|
|
37582
37653
|
};
|
|
37583
37654
|
'/access_grants/delete': {
|
|
37584
|
-
|
|
37655
|
+
delete: {
|
|
37585
37656
|
description: string;
|
|
37586
37657
|
operationId: string;
|
|
37587
37658
|
parameters: {
|
|
@@ -38229,7 +38300,7 @@ declare const _default: {
|
|
|
38229
38300
|
};
|
|
38230
38301
|
};
|
|
38231
38302
|
'/access_methods/delete': {
|
|
38232
|
-
|
|
38303
|
+
delete: {
|
|
38233
38304
|
description: string;
|
|
38234
38305
|
operationId: string;
|
|
38235
38306
|
parameters: {
|
|
@@ -56833,6 +56904,64 @@ declare const _default: {
|
|
|
56833
56904
|
'x-title': string;
|
|
56834
56905
|
'x-undocumented': string;
|
|
56835
56906
|
};
|
|
56907
|
+
post: {
|
|
56908
|
+
description: string;
|
|
56909
|
+
operationId: string;
|
|
56910
|
+
requestBody: {
|
|
56911
|
+
content: {
|
|
56912
|
+
'application/json': {
|
|
56913
|
+
schema: {
|
|
56914
|
+
properties: {};
|
|
56915
|
+
type: string;
|
|
56916
|
+
};
|
|
56917
|
+
};
|
|
56918
|
+
};
|
|
56919
|
+
};
|
|
56920
|
+
responses: {
|
|
56921
|
+
200: {
|
|
56922
|
+
content: {
|
|
56923
|
+
'application/json': {
|
|
56924
|
+
schema: {
|
|
56925
|
+
properties: {
|
|
56926
|
+
ok: {
|
|
56927
|
+
type: string;
|
|
56928
|
+
};
|
|
56929
|
+
};
|
|
56930
|
+
required: string[];
|
|
56931
|
+
type: string;
|
|
56932
|
+
};
|
|
56933
|
+
};
|
|
56934
|
+
};
|
|
56935
|
+
description: string;
|
|
56936
|
+
};
|
|
56937
|
+
400: {
|
|
56938
|
+
description: string;
|
|
56939
|
+
};
|
|
56940
|
+
401: {
|
|
56941
|
+
description: string;
|
|
56942
|
+
};
|
|
56943
|
+
};
|
|
56944
|
+
security: ({
|
|
56945
|
+
console_session_with_workspace: never[];
|
|
56946
|
+
api_key?: never;
|
|
56947
|
+
client_session_with_customer?: never;
|
|
56948
|
+
} | {
|
|
56949
|
+
api_key: never[];
|
|
56950
|
+
console_session_with_workspace?: never;
|
|
56951
|
+
client_session_with_customer?: never;
|
|
56952
|
+
} | {
|
|
56953
|
+
client_session_with_customer: never[];
|
|
56954
|
+
console_session_with_workspace?: never;
|
|
56955
|
+
api_key?: never;
|
|
56956
|
+
})[];
|
|
56957
|
+
summary: string;
|
|
56958
|
+
tags: never[];
|
|
56959
|
+
'x-fern-sdk-group-name': string[];
|
|
56960
|
+
'x-fern-sdk-method-name': string;
|
|
56961
|
+
'x-response-key': null;
|
|
56962
|
+
'x-title': string;
|
|
56963
|
+
'x-undocumented': string;
|
|
56964
|
+
};
|
|
56836
56965
|
};
|
|
56837
56966
|
'/seam/customer/v1/automations/get': {
|
|
56838
56967
|
get: {
|
|
@@ -56942,6 +57071,113 @@ declare const _default: {
|
|
|
56942
57071
|
'x-title': string;
|
|
56943
57072
|
'x-undocumented': string;
|
|
56944
57073
|
};
|
|
57074
|
+
post: {
|
|
57075
|
+
description: string;
|
|
57076
|
+
operationId: string;
|
|
57077
|
+
responses: {
|
|
57078
|
+
200: {
|
|
57079
|
+
content: {
|
|
57080
|
+
'application/json': {
|
|
57081
|
+
schema: {
|
|
57082
|
+
properties: {
|
|
57083
|
+
access_rules: {
|
|
57084
|
+
properties: {
|
|
57085
|
+
reservation_created: {
|
|
57086
|
+
properties: {
|
|
57087
|
+
config: {
|
|
57088
|
+
properties: {
|
|
57089
|
+
access_methods: {
|
|
57090
|
+
items: {
|
|
57091
|
+
enum: string[];
|
|
57092
|
+
type: string;
|
|
57093
|
+
};
|
|
57094
|
+
minItems: number;
|
|
57095
|
+
type: string;
|
|
57096
|
+
};
|
|
57097
|
+
method_issuance_strategy: {
|
|
57098
|
+
enum: string[];
|
|
57099
|
+
type: string;
|
|
57100
|
+
};
|
|
57101
|
+
};
|
|
57102
|
+
required: string[];
|
|
57103
|
+
type: string;
|
|
57104
|
+
};
|
|
57105
|
+
rule: {
|
|
57106
|
+
enum: string[];
|
|
57107
|
+
type: string;
|
|
57108
|
+
};
|
|
57109
|
+
};
|
|
57110
|
+
required: string[];
|
|
57111
|
+
type: string;
|
|
57112
|
+
};
|
|
57113
|
+
reservation_deleted: {
|
|
57114
|
+
properties: {
|
|
57115
|
+
config: {
|
|
57116
|
+
$ref: string;
|
|
57117
|
+
};
|
|
57118
|
+
rule: {
|
|
57119
|
+
enum: string[];
|
|
57120
|
+
type: string;
|
|
57121
|
+
};
|
|
57122
|
+
};
|
|
57123
|
+
required: string[];
|
|
57124
|
+
type: string;
|
|
57125
|
+
};
|
|
57126
|
+
reservation_time_updated: {
|
|
57127
|
+
properties: {
|
|
57128
|
+
config: {
|
|
57129
|
+
$ref: string;
|
|
57130
|
+
};
|
|
57131
|
+
rule: {
|
|
57132
|
+
enum: string[];
|
|
57133
|
+
type: string;
|
|
57134
|
+
};
|
|
57135
|
+
};
|
|
57136
|
+
required: string[];
|
|
57137
|
+
type: string;
|
|
57138
|
+
};
|
|
57139
|
+
};
|
|
57140
|
+
type: string;
|
|
57141
|
+
};
|
|
57142
|
+
ok: {
|
|
57143
|
+
type: string;
|
|
57144
|
+
};
|
|
57145
|
+
};
|
|
57146
|
+
required: string[];
|
|
57147
|
+
type: string;
|
|
57148
|
+
};
|
|
57149
|
+
};
|
|
57150
|
+
};
|
|
57151
|
+
description: string;
|
|
57152
|
+
};
|
|
57153
|
+
400: {
|
|
57154
|
+
description: string;
|
|
57155
|
+
};
|
|
57156
|
+
401: {
|
|
57157
|
+
description: string;
|
|
57158
|
+
};
|
|
57159
|
+
};
|
|
57160
|
+
security: ({
|
|
57161
|
+
console_session_with_workspace: never[];
|
|
57162
|
+
api_key?: never;
|
|
57163
|
+
client_session_with_customer?: never;
|
|
57164
|
+
} | {
|
|
57165
|
+
api_key: never[];
|
|
57166
|
+
console_session_with_workspace?: never;
|
|
57167
|
+
client_session_with_customer?: never;
|
|
57168
|
+
} | {
|
|
57169
|
+
client_session_with_customer: never[];
|
|
57170
|
+
console_session_with_workspace?: never;
|
|
57171
|
+
api_key?: never;
|
|
57172
|
+
})[];
|
|
57173
|
+
summary: string;
|
|
57174
|
+
tags: never[];
|
|
57175
|
+
'x-fern-sdk-group-name': string[];
|
|
57176
|
+
'x-fern-sdk-method-name': string;
|
|
57177
|
+
'x-response-key': null;
|
|
57178
|
+
'x-title': string;
|
|
57179
|
+
'x-undocumented': string;
|
|
57180
|
+
};
|
|
56945
57181
|
};
|
|
56946
57182
|
'/seam/customer/v1/automations/update': {
|
|
56947
57183
|
patch: {
|
|
@@ -59331,6 +59567,11 @@ declare const _default: {
|
|
|
59331
59567
|
description: string;
|
|
59332
59568
|
type: string;
|
|
59333
59569
|
};
|
|
59570
|
+
climate_preset_mode: {
|
|
59571
|
+
description: string;
|
|
59572
|
+
enum: string[];
|
|
59573
|
+
type: string;
|
|
59574
|
+
};
|
|
59334
59575
|
cooling_set_point_celsius: {
|
|
59335
59576
|
description: string;
|
|
59336
59577
|
format: string;
|
|
@@ -62516,6 +62757,11 @@ declare const _default: {
|
|
|
62516
62757
|
description: string;
|
|
62517
62758
|
type: string;
|
|
62518
62759
|
};
|
|
62760
|
+
climate_preset_mode: {
|
|
62761
|
+
description: string;
|
|
62762
|
+
enum: string[];
|
|
62763
|
+
type: string;
|
|
62764
|
+
};
|
|
62519
62765
|
cooling_set_point_celsius: {
|
|
62520
62766
|
description: string;
|
|
62521
62767
|
format: string;
|
|
@@ -62634,6 +62880,11 @@ declare const _default: {
|
|
|
62634
62880
|
description: string;
|
|
62635
62881
|
type: string;
|
|
62636
62882
|
};
|
|
62883
|
+
climate_preset_mode: {
|
|
62884
|
+
description: string;
|
|
62885
|
+
enum: string[];
|
|
62886
|
+
type: string;
|
|
62887
|
+
};
|
|
62637
62888
|
cooling_set_point_celsius: {
|
|
62638
62889
|
description: string;
|
|
62639
62890
|
format: string;
|
|
@@ -63073,7 +63324,7 @@ declare const _default: {
|
|
|
63073
63324
|
};
|
|
63074
63325
|
};
|
|
63075
63326
|
'/unstable_access_grants/delete': {
|
|
63076
|
-
|
|
63327
|
+
delete: {
|
|
63077
63328
|
description: string;
|
|
63078
63329
|
operationId: string;
|
|
63079
63330
|
parameters: {
|
|
@@ -63549,7 +63800,7 @@ declare const _default: {
|
|
|
63549
63800
|
};
|
|
63550
63801
|
};
|
|
63551
63802
|
'/unstable_access_methods/delete': {
|
|
63552
|
-
|
|
63803
|
+
delete: {
|
|
63553
63804
|
description: string;
|
|
63554
63805
|
operationId: string;
|
|
63555
63806
|
parameters: {
|
|
@@ -79120,7 +79371,7 @@ interface Routes {
|
|
|
79120
79371
|
};
|
|
79121
79372
|
'/access_grants/delete': {
|
|
79122
79373
|
route: '/access_grants/delete';
|
|
79123
|
-
method: '
|
|
79374
|
+
method: 'DELETE' | 'POST';
|
|
79124
79375
|
queryParams: {};
|
|
79125
79376
|
jsonBody: {};
|
|
79126
79377
|
commonParams: {
|
|
@@ -79256,7 +79507,7 @@ interface Routes {
|
|
|
79256
79507
|
};
|
|
79257
79508
|
'/access_methods/delete': {
|
|
79258
79509
|
route: '/access_methods/delete';
|
|
79259
|
-
method: '
|
|
79510
|
+
method: 'DELETE' | 'POST';
|
|
79260
79511
|
queryParams: {};
|
|
79261
79512
|
jsonBody: {};
|
|
79262
79513
|
commonParams: {
|
|
@@ -92292,6 +92543,8 @@ interface Routes {
|
|
|
92292
92543
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
92293
92544
|
/** Fan mode settings that the thermostat supports. */
|
|
92294
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;
|
|
92295
92548
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
92296
92549
|
is_heating?: boolean | undefined;
|
|
92297
92550
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -92317,6 +92570,10 @@ interface Routes {
|
|
|
92317
92570
|
name?: ((string | null) | undefined) | undefined;
|
|
92318
92571
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
92319
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;
|
|
92320
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`. */
|
|
92321
92578
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
92322
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`. */
|
|
@@ -92348,6 +92605,10 @@ interface Routes {
|
|
|
92348
92605
|
name?: ((string | null) | undefined) | undefined;
|
|
92349
92606
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
92350
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;
|
|
92351
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`. */
|
|
92352
92613
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
92353
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`. */
|
|
@@ -92378,6 +92639,10 @@ interface Routes {
|
|
|
92378
92639
|
name?: (string | null) | undefined;
|
|
92379
92640
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
92380
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;
|
|
92381
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`. */
|
|
92382
92647
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
92383
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`. */
|
|
@@ -93450,6 +93715,8 @@ interface Routes {
|
|
|
93450
93715
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
93451
93716
|
/** Fan mode settings that the thermostat supports. */
|
|
93452
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;
|
|
93453
93720
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
93454
93721
|
is_heating?: boolean | undefined;
|
|
93455
93722
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -93475,6 +93742,10 @@ interface Routes {
|
|
|
93475
93742
|
name?: ((string | null) | undefined) | undefined;
|
|
93476
93743
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
93477
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;
|
|
93478
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`. */
|
|
93479
93750
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
93480
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`. */
|
|
@@ -93506,6 +93777,10 @@ interface Routes {
|
|
|
93506
93777
|
name?: ((string | null) | undefined) | undefined;
|
|
93507
93778
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
93508
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;
|
|
93509
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`. */
|
|
93510
93785
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
93511
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`. */
|
|
@@ -93536,6 +93811,10 @@ interface Routes {
|
|
|
93536
93811
|
name?: (string | null) | undefined;
|
|
93537
93812
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
93538
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;
|
|
93539
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`. */
|
|
93540
93819
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
93541
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`. */
|
|
@@ -98372,6 +98651,8 @@ interface Routes {
|
|
|
98372
98651
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
98373
98652
|
/** Fan mode settings that the thermostat supports. */
|
|
98374
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;
|
|
98375
98656
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
98376
98657
|
is_heating?: boolean | undefined;
|
|
98377
98658
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -98397,6 +98678,10 @@ interface Routes {
|
|
|
98397
98678
|
name?: ((string | null) | undefined) | undefined;
|
|
98398
98679
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
98399
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;
|
|
98400
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`. */
|
|
98401
98686
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
98402
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`. */
|
|
@@ -98428,6 +98713,10 @@ interface Routes {
|
|
|
98428
98713
|
name?: ((string | null) | undefined) | undefined;
|
|
98429
98714
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
98430
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;
|
|
98431
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`. */
|
|
98432
98721
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
98433
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`. */
|
|
@@ -98458,6 +98747,10 @@ interface Routes {
|
|
|
98458
98747
|
name?: (string | null) | undefined;
|
|
98459
98748
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
98460
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;
|
|
98461
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`. */
|
|
98462
98755
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
98463
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`. */
|
|
@@ -99484,6 +99777,8 @@ interface Routes {
|
|
|
99484
99777
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
99485
99778
|
/** Fan mode settings that the thermostat supports. */
|
|
99486
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;
|
|
99487
99782
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
99488
99783
|
is_heating?: boolean | undefined;
|
|
99489
99784
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -99509,6 +99804,10 @@ interface Routes {
|
|
|
99509
99804
|
name?: ((string | null) | undefined) | undefined;
|
|
99510
99805
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
99511
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;
|
|
99512
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`. */
|
|
99513
99812
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
99514
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`. */
|
|
@@ -99540,6 +99839,10 @@ interface Routes {
|
|
|
99540
99839
|
name?: ((string | null) | undefined) | undefined;
|
|
99541
99840
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
99542
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;
|
|
99543
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`. */
|
|
99544
99847
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
99545
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`. */
|
|
@@ -99570,6 +99873,10 @@ interface Routes {
|
|
|
99570
99873
|
name?: (string | null) | undefined;
|
|
99571
99874
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
99572
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;
|
|
99573
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`. */
|
|
99574
99881
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
99575
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`. */
|
|
@@ -100642,6 +100949,8 @@ interface Routes {
|
|
|
100642
100949
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
100643
100950
|
/** Fan mode settings that the thermostat supports. */
|
|
100644
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;
|
|
100645
100954
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
100646
100955
|
is_heating?: boolean | undefined;
|
|
100647
100956
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -100667,6 +100976,10 @@ interface Routes {
|
|
|
100667
100976
|
name?: ((string | null) | undefined) | undefined;
|
|
100668
100977
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
100669
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;
|
|
100670
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`. */
|
|
100671
100984
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
100672
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`. */
|
|
@@ -100698,6 +101011,10 @@ interface Routes {
|
|
|
100698
101011
|
name?: ((string | null) | undefined) | undefined;
|
|
100699
101012
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
100700
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;
|
|
100701
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`. */
|
|
100702
101019
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
100703
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`. */
|
|
@@ -100728,6 +101045,10 @@ interface Routes {
|
|
|
100728
101045
|
name?: (string | null) | undefined;
|
|
100729
101046
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
100730
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;
|
|
100731
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`. */
|
|
100732
101053
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
100733
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`. */
|
|
@@ -101753,6 +102074,8 @@ interface Routes {
|
|
|
101753
102074
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
101754
102075
|
/** Fan mode settings that the thermostat supports. */
|
|
101755
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;
|
|
101756
102079
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
101757
102080
|
is_heating?: boolean | undefined;
|
|
101758
102081
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -101778,6 +102101,10 @@ interface Routes {
|
|
|
101778
102101
|
name?: ((string | null) | undefined) | undefined;
|
|
101779
102102
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
101780
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;
|
|
101781
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`. */
|
|
101782
102109
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
101783
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`. */
|
|
@@ -101809,6 +102136,10 @@ interface Routes {
|
|
|
101809
102136
|
name?: ((string | null) | undefined) | undefined;
|
|
101810
102137
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
101811
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;
|
|
101812
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`. */
|
|
101813
102144
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
101814
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`. */
|
|
@@ -101839,6 +102170,10 @@ interface Routes {
|
|
|
101839
102170
|
name?: (string | null) | undefined;
|
|
101840
102171
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
101841
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;
|
|
101842
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`. */
|
|
101843
102178
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
101844
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`. */
|
|
@@ -107952,6 +108287,8 @@ interface Routes {
|
|
|
107952
108287
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
107953
108288
|
/** Fan mode settings that the thermostat supports. */
|
|
107954
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;
|
|
107955
108292
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
107956
108293
|
is_heating?: boolean | undefined;
|
|
107957
108294
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -107977,6 +108314,10 @@ interface Routes {
|
|
|
107977
108314
|
name?: ((string | null) | undefined) | undefined;
|
|
107978
108315
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
107979
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;
|
|
107980
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`. */
|
|
107981
108322
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
107982
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`. */
|
|
@@ -108008,6 +108349,10 @@ interface Routes {
|
|
|
108008
108349
|
name?: ((string | null) | undefined) | undefined;
|
|
108009
108350
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
108010
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;
|
|
108011
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`. */
|
|
108012
108357
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
108013
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`. */
|
|
@@ -108038,6 +108383,10 @@ interface Routes {
|
|
|
108038
108383
|
name?: (string | null) | undefined;
|
|
108039
108384
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
108040
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;
|
|
108041
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`. */
|
|
108042
108391
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
108043
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`. */
|
|
@@ -109063,6 +109412,8 @@ interface Routes {
|
|
|
109063
109412
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
109064
109413
|
/** Fan mode settings that the thermostat supports. */
|
|
109065
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;
|
|
109066
109417
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
109067
109418
|
is_heating?: boolean | undefined;
|
|
109068
109419
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -109088,6 +109439,10 @@ interface Routes {
|
|
|
109088
109439
|
name?: ((string | null) | undefined) | undefined;
|
|
109089
109440
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
109090
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;
|
|
109091
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`. */
|
|
109092
109447
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
109093
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`. */
|
|
@@ -109119,6 +109474,10 @@ interface Routes {
|
|
|
109119
109474
|
name?: ((string | null) | undefined) | undefined;
|
|
109120
109475
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
109121
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;
|
|
109122
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`. */
|
|
109123
109482
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
109124
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`. */
|
|
@@ -109149,6 +109508,10 @@ interface Routes {
|
|
|
109149
109508
|
name?: (string | null) | undefined;
|
|
109150
109509
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
109151
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;
|
|
109152
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`. */
|
|
109153
109516
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
109154
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`. */
|
|
@@ -114071,7 +114434,7 @@ interface Routes {
|
|
|
114071
114434
|
};
|
|
114072
114435
|
'/seam/customer/v1/automations/delete': {
|
|
114073
114436
|
route: '/seam/customer/v1/automations/delete';
|
|
114074
|
-
method: 'DELETE';
|
|
114437
|
+
method: 'DELETE' | 'POST';
|
|
114075
114438
|
queryParams: {};
|
|
114076
114439
|
jsonBody: {};
|
|
114077
114440
|
commonParams: {};
|
|
@@ -114080,7 +114443,7 @@ interface Routes {
|
|
|
114080
114443
|
};
|
|
114081
114444
|
'/seam/customer/v1/automations/get': {
|
|
114082
114445
|
route: '/seam/customer/v1/automations/get';
|
|
114083
|
-
method: 'GET';
|
|
114446
|
+
method: 'GET' | 'POST';
|
|
114084
114447
|
queryParams: {};
|
|
114085
114448
|
jsonBody: {};
|
|
114086
114449
|
commonParams: {};
|
|
@@ -114107,7 +114470,7 @@ interface Routes {
|
|
|
114107
114470
|
};
|
|
114108
114471
|
'/seam/customer/v1/automations/update': {
|
|
114109
114472
|
route: '/seam/customer/v1/automations/update';
|
|
114110
|
-
method: '
|
|
114473
|
+
method: 'PATCH' | 'POST';
|
|
114111
114474
|
queryParams: {};
|
|
114112
114475
|
jsonBody: {
|
|
114113
114476
|
/** Access automation rules configuration. */
|
|
@@ -114164,7 +114527,7 @@ interface Routes {
|
|
|
114164
114527
|
};
|
|
114165
114528
|
'/seam/customer/v1/settings/update': {
|
|
114166
114529
|
route: '/seam/customer/v1/settings/update';
|
|
114167
|
-
method: '
|
|
114530
|
+
method: 'PATCH' | 'POST';
|
|
114168
114531
|
queryParams: {};
|
|
114169
114532
|
jsonBody: {
|
|
114170
114533
|
/** Business vertical to set on the workspace. */
|
|
@@ -117348,6 +117711,10 @@ interface Routes {
|
|
|
117348
117711
|
climate_preset_key: string;
|
|
117349
117712
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
117350
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;
|
|
117351
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`. */
|
|
117352
117719
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
117353
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`. */
|
|
@@ -119291,6 +119658,8 @@ interface Routes {
|
|
|
119291
119658
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
119292
119659
|
/** Fan mode settings that the thermostat supports. */
|
|
119293
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;
|
|
119294
119663
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
119295
119664
|
is_heating?: boolean | undefined;
|
|
119296
119665
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -119316,6 +119685,10 @@ interface Routes {
|
|
|
119316
119685
|
name?: ((string | null) | undefined) | undefined;
|
|
119317
119686
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
119318
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;
|
|
119319
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`. */
|
|
119320
119693
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
119321
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`. */
|
|
@@ -119347,6 +119720,10 @@ interface Routes {
|
|
|
119347
119720
|
name?: ((string | null) | undefined) | undefined;
|
|
119348
119721
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
119349
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;
|
|
119350
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`. */
|
|
119351
119728
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
119352
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`. */
|
|
@@ -119377,6 +119754,10 @@ interface Routes {
|
|
|
119377
119754
|
name?: (string | null) | undefined;
|
|
119378
119755
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
119379
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;
|
|
119380
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`. */
|
|
119381
119762
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
119382
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`. */
|
|
@@ -122965,6 +123346,8 @@ interface Routes {
|
|
|
122965
123346
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
122966
123347
|
/** Fan mode settings that the thermostat supports. */
|
|
122967
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;
|
|
122968
123351
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
122969
123352
|
is_heating?: boolean | undefined;
|
|
122970
123353
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -122990,6 +123373,10 @@ interface Routes {
|
|
|
122990
123373
|
name?: ((string | null) | undefined) | undefined;
|
|
122991
123374
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
122992
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;
|
|
122993
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`. */
|
|
122994
123381
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
122995
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`. */
|
|
@@ -123021,6 +123408,10 @@ interface Routes {
|
|
|
123021
123408
|
name?: ((string | null) | undefined) | undefined;
|
|
123022
123409
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
123023
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;
|
|
123024
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`. */
|
|
123025
123416
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
123026
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`. */
|
|
@@ -123051,6 +123442,10 @@ interface Routes {
|
|
|
123051
123442
|
name?: (string | null) | undefined;
|
|
123052
123443
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
123053
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;
|
|
123054
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`. */
|
|
123055
123450
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
123056
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`. */
|
|
@@ -124076,6 +124471,8 @@ interface Routes {
|
|
|
124076
124471
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
124077
124472
|
/** Fan mode settings that the thermostat supports. */
|
|
124078
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;
|
|
124079
124476
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
124080
124477
|
is_heating?: boolean | undefined;
|
|
124081
124478
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -124101,6 +124498,10 @@ interface Routes {
|
|
|
124101
124498
|
name?: ((string | null) | undefined) | undefined;
|
|
124102
124499
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
124103
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;
|
|
124104
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`. */
|
|
124105
124506
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
124106
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`. */
|
|
@@ -124132,6 +124533,10 @@ interface Routes {
|
|
|
124132
124533
|
name?: ((string | null) | undefined) | undefined;
|
|
124133
124534
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
124134
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;
|
|
124135
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`. */
|
|
124136
124541
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
124137
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`. */
|
|
@@ -124162,6 +124567,10 @@ interface Routes {
|
|
|
124162
124567
|
name?: (string | null) | undefined;
|
|
124163
124568
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
124164
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;
|
|
124165
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`. */
|
|
124166
124575
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
124167
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`. */
|
|
@@ -128676,6 +129085,10 @@ interface Routes {
|
|
|
128676
129085
|
climate_preset_key: string;
|
|
128677
129086
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
128678
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;
|
|
128679
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`. */
|
|
128680
129093
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
128681
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`. */
|
|
@@ -130050,7 +130463,7 @@ interface Routes {
|
|
|
130050
130463
|
};
|
|
130051
130464
|
'/unstable_access_grants/delete': {
|
|
130052
130465
|
route: '/unstable_access_grants/delete';
|
|
130053
|
-
method: '
|
|
130466
|
+
method: 'DELETE' | 'POST';
|
|
130054
130467
|
queryParams: {};
|
|
130055
130468
|
jsonBody: {};
|
|
130056
130469
|
commonParams: {
|
|
@@ -130170,7 +130583,7 @@ interface Routes {
|
|
|
130170
130583
|
};
|
|
130171
130584
|
'/unstable_access_methods/delete': {
|
|
130172
130585
|
route: '/unstable_access_methods/delete';
|
|
130173
|
-
method: '
|
|
130586
|
+
method: 'DELETE' | 'POST';
|
|
130174
130587
|
queryParams: {};
|
|
130175
130588
|
jsonBody: {};
|
|
130176
130589
|
commonParams: {
|
|
@@ -131521,6 +131934,8 @@ interface Routes {
|
|
|
131521
131934
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
131522
131935
|
/** Fan mode settings that the thermostat supports. */
|
|
131523
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;
|
|
131524
131939
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
131525
131940
|
is_heating?: boolean | undefined;
|
|
131526
131941
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -131546,6 +131961,10 @@ interface Routes {
|
|
|
131546
131961
|
name?: ((string | null) | undefined) | undefined;
|
|
131547
131962
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
131548
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;
|
|
131549
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`. */
|
|
131550
131969
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
131551
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`. */
|
|
@@ -131577,6 +131996,10 @@ interface Routes {
|
|
|
131577
131996
|
name?: ((string | null) | undefined) | undefined;
|
|
131578
131997
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
131579
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;
|
|
131580
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`. */
|
|
131581
132004
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
131582
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`. */
|
|
@@ -131607,6 +132030,10 @@ interface Routes {
|
|
|
131607
132030
|
name?: (string | null) | undefined;
|
|
131608
132031
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
131609
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;
|
|
131610
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`. */
|
|
131611
132038
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
131612
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`. */
|
|
@@ -132634,6 +133061,8 @@ interface Routes {
|
|
|
132634
133061
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
132635
133062
|
/** Fan mode settings that the thermostat supports. */
|
|
132636
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;
|
|
132637
133066
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
132638
133067
|
is_heating?: boolean | undefined;
|
|
132639
133068
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -132659,6 +133088,10 @@ interface Routes {
|
|
|
132659
133088
|
name?: ((string | null) | undefined) | undefined;
|
|
132660
133089
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
132661
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;
|
|
132662
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`. */
|
|
132663
133096
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
132664
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`. */
|
|
@@ -132690,6 +133123,10 @@ interface Routes {
|
|
|
132690
133123
|
name?: ((string | null) | undefined) | undefined;
|
|
132691
133124
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
132692
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;
|
|
132693
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`. */
|
|
132694
133131
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
132695
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`. */
|
|
@@ -132720,6 +133157,10 @@ interface Routes {
|
|
|
132720
133157
|
name?: (string | null) | undefined;
|
|
132721
133158
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
132722
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;
|
|
132723
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`. */
|
|
132724
133165
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
132725
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`. */
|