@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
|
@@ -9973,7 +9973,7 @@ export interface Routes {
|
|
|
9973
9973
|
};
|
|
9974
9974
|
'/access_grants/delete': {
|
|
9975
9975
|
route: '/access_grants/delete';
|
|
9976
|
-
method: '
|
|
9976
|
+
method: 'DELETE' | 'POST';
|
|
9977
9977
|
queryParams: {};
|
|
9978
9978
|
jsonBody: {};
|
|
9979
9979
|
commonParams: {
|
|
@@ -10109,7 +10109,7 @@ export interface Routes {
|
|
|
10109
10109
|
};
|
|
10110
10110
|
'/access_methods/delete': {
|
|
10111
10111
|
route: '/access_methods/delete';
|
|
10112
|
-
method: '
|
|
10112
|
+
method: 'DELETE' | 'POST';
|
|
10113
10113
|
queryParams: {};
|
|
10114
10114
|
jsonBody: {};
|
|
10115
10115
|
commonParams: {
|
|
@@ -23145,6 +23145,8 @@ export interface Routes {
|
|
|
23145
23145
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
23146
23146
|
/** Fan mode settings that the thermostat supports. */
|
|
23147
23147
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
23148
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
23149
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
23148
23150
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
23149
23151
|
is_heating?: boolean | undefined;
|
|
23150
23152
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -23170,6 +23172,10 @@ export interface Routes {
|
|
|
23170
23172
|
name?: ((string | null) | undefined) | undefined;
|
|
23171
23173
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
23172
23174
|
display_name?: string | undefined;
|
|
23175
|
+
/**
|
|
23176
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
23177
|
+
*/
|
|
23178
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
23173
23179
|
/** 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`. */
|
|
23174
23180
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
23175
23181
|
/** 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`. */
|
|
@@ -23201,6 +23207,10 @@ export interface Routes {
|
|
|
23201
23207
|
name?: ((string | null) | undefined) | undefined;
|
|
23202
23208
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
23203
23209
|
display_name?: string | undefined;
|
|
23210
|
+
/**
|
|
23211
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
23212
|
+
*/
|
|
23213
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
23204
23214
|
/** 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`. */
|
|
23205
23215
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
23206
23216
|
/** 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`. */
|
|
@@ -23231,6 +23241,10 @@ export interface Routes {
|
|
|
23231
23241
|
name?: (string | null) | undefined;
|
|
23232
23242
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
23233
23243
|
display_name: string;
|
|
23244
|
+
/**
|
|
23245
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
23246
|
+
*/
|
|
23247
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
23234
23248
|
/** 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`. */
|
|
23235
23249
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
23236
23250
|
/** 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`. */
|
|
@@ -24303,6 +24317,8 @@ export interface Routes {
|
|
|
24303
24317
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
24304
24318
|
/** Fan mode settings that the thermostat supports. */
|
|
24305
24319
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
24320
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
24321
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
24306
24322
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
24307
24323
|
is_heating?: boolean | undefined;
|
|
24308
24324
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -24328,6 +24344,10 @@ export interface Routes {
|
|
|
24328
24344
|
name?: ((string | null) | undefined) | undefined;
|
|
24329
24345
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
24330
24346
|
display_name?: string | undefined;
|
|
24347
|
+
/**
|
|
24348
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
24349
|
+
*/
|
|
24350
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
24331
24351
|
/** 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`. */
|
|
24332
24352
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
24333
24353
|
/** 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`. */
|
|
@@ -24359,6 +24379,10 @@ export interface Routes {
|
|
|
24359
24379
|
name?: ((string | null) | undefined) | undefined;
|
|
24360
24380
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
24361
24381
|
display_name?: string | undefined;
|
|
24382
|
+
/**
|
|
24383
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
24384
|
+
*/
|
|
24385
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
24362
24386
|
/** 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`. */
|
|
24363
24387
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
24364
24388
|
/** 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`. */
|
|
@@ -24389,6 +24413,10 @@ export interface Routes {
|
|
|
24389
24413
|
name?: (string | null) | undefined;
|
|
24390
24414
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
24391
24415
|
display_name: string;
|
|
24416
|
+
/**
|
|
24417
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
24418
|
+
*/
|
|
24419
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
24392
24420
|
/** 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`. */
|
|
24393
24421
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
24394
24422
|
/** 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`. */
|
|
@@ -29225,6 +29253,8 @@ export interface Routes {
|
|
|
29225
29253
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
29226
29254
|
/** Fan mode settings that the thermostat supports. */
|
|
29227
29255
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
29256
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
29257
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
29228
29258
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
29229
29259
|
is_heating?: boolean | undefined;
|
|
29230
29260
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -29250,6 +29280,10 @@ export interface Routes {
|
|
|
29250
29280
|
name?: ((string | null) | undefined) | undefined;
|
|
29251
29281
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
29252
29282
|
display_name?: string | undefined;
|
|
29283
|
+
/**
|
|
29284
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
29285
|
+
*/
|
|
29286
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
29253
29287
|
/** 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`. */
|
|
29254
29288
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
29255
29289
|
/** 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`. */
|
|
@@ -29281,6 +29315,10 @@ export interface Routes {
|
|
|
29281
29315
|
name?: ((string | null) | undefined) | undefined;
|
|
29282
29316
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
29283
29317
|
display_name?: string | undefined;
|
|
29318
|
+
/**
|
|
29319
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
29320
|
+
*/
|
|
29321
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
29284
29322
|
/** 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`. */
|
|
29285
29323
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
29286
29324
|
/** 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`. */
|
|
@@ -29311,6 +29349,10 @@ export interface Routes {
|
|
|
29311
29349
|
name?: (string | null) | undefined;
|
|
29312
29350
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
29313
29351
|
display_name: string;
|
|
29352
|
+
/**
|
|
29353
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
29354
|
+
*/
|
|
29355
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
29314
29356
|
/** 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`. */
|
|
29315
29357
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
29316
29358
|
/** 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`. */
|
|
@@ -30337,6 +30379,8 @@ export interface Routes {
|
|
|
30337
30379
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
30338
30380
|
/** Fan mode settings that the thermostat supports. */
|
|
30339
30381
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
30382
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
30383
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
30340
30384
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
30341
30385
|
is_heating?: boolean | undefined;
|
|
30342
30386
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -30362,6 +30406,10 @@ export interface Routes {
|
|
|
30362
30406
|
name?: ((string | null) | undefined) | undefined;
|
|
30363
30407
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
30364
30408
|
display_name?: string | undefined;
|
|
30409
|
+
/**
|
|
30410
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
30411
|
+
*/
|
|
30412
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
30365
30413
|
/** 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`. */
|
|
30366
30414
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
30367
30415
|
/** 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`. */
|
|
@@ -30393,6 +30441,10 @@ export interface Routes {
|
|
|
30393
30441
|
name?: ((string | null) | undefined) | undefined;
|
|
30394
30442
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
30395
30443
|
display_name?: string | undefined;
|
|
30444
|
+
/**
|
|
30445
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
30446
|
+
*/
|
|
30447
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
30396
30448
|
/** 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`. */
|
|
30397
30449
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
30398
30450
|
/** 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`. */
|
|
@@ -30423,6 +30475,10 @@ export interface Routes {
|
|
|
30423
30475
|
name?: (string | null) | undefined;
|
|
30424
30476
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
30425
30477
|
display_name: string;
|
|
30478
|
+
/**
|
|
30479
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
30480
|
+
*/
|
|
30481
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
30426
30482
|
/** 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`. */
|
|
30427
30483
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
30428
30484
|
/** 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`. */
|
|
@@ -31495,6 +31551,8 @@ export interface Routes {
|
|
|
31495
31551
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
31496
31552
|
/** Fan mode settings that the thermostat supports. */
|
|
31497
31553
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
31554
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
31555
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
31498
31556
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
31499
31557
|
is_heating?: boolean | undefined;
|
|
31500
31558
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -31520,6 +31578,10 @@ export interface Routes {
|
|
|
31520
31578
|
name?: ((string | null) | undefined) | undefined;
|
|
31521
31579
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
31522
31580
|
display_name?: string | undefined;
|
|
31581
|
+
/**
|
|
31582
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
31583
|
+
*/
|
|
31584
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
31523
31585
|
/** 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`. */
|
|
31524
31586
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
31525
31587
|
/** 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`. */
|
|
@@ -31551,6 +31613,10 @@ export interface Routes {
|
|
|
31551
31613
|
name?: ((string | null) | undefined) | undefined;
|
|
31552
31614
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
31553
31615
|
display_name?: string | undefined;
|
|
31616
|
+
/**
|
|
31617
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
31618
|
+
*/
|
|
31619
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
31554
31620
|
/** 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`. */
|
|
31555
31621
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
31556
31622
|
/** 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`. */
|
|
@@ -31581,6 +31647,10 @@ export interface Routes {
|
|
|
31581
31647
|
name?: (string | null) | undefined;
|
|
31582
31648
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
31583
31649
|
display_name: string;
|
|
31650
|
+
/**
|
|
31651
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
31652
|
+
*/
|
|
31653
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
31584
31654
|
/** 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`. */
|
|
31585
31655
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
31586
31656
|
/** 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`. */
|
|
@@ -32606,6 +32676,8 @@ export interface Routes {
|
|
|
32606
32676
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
32607
32677
|
/** Fan mode settings that the thermostat supports. */
|
|
32608
32678
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
32679
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
32680
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
32609
32681
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
32610
32682
|
is_heating?: boolean | undefined;
|
|
32611
32683
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -32631,6 +32703,10 @@ export interface Routes {
|
|
|
32631
32703
|
name?: ((string | null) | undefined) | undefined;
|
|
32632
32704
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32633
32705
|
display_name?: string | undefined;
|
|
32706
|
+
/**
|
|
32707
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
32708
|
+
*/
|
|
32709
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
32634
32710
|
/** 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`. */
|
|
32635
32711
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
32636
32712
|
/** 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`. */
|
|
@@ -32662,6 +32738,10 @@ export interface Routes {
|
|
|
32662
32738
|
name?: ((string | null) | undefined) | undefined;
|
|
32663
32739
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32664
32740
|
display_name?: string | undefined;
|
|
32741
|
+
/**
|
|
32742
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
32743
|
+
*/
|
|
32744
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
32665
32745
|
/** 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`. */
|
|
32666
32746
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
32667
32747
|
/** 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`. */
|
|
@@ -32692,6 +32772,10 @@ export interface Routes {
|
|
|
32692
32772
|
name?: (string | null) | undefined;
|
|
32693
32773
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
32694
32774
|
display_name: string;
|
|
32775
|
+
/**
|
|
32776
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
32777
|
+
*/
|
|
32778
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
32695
32779
|
/** 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`. */
|
|
32696
32780
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
32697
32781
|
/** 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`. */
|
|
@@ -38805,6 +38889,8 @@ export interface Routes {
|
|
|
38805
38889
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
38806
38890
|
/** Fan mode settings that the thermostat supports. */
|
|
38807
38891
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
38892
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
38893
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
38808
38894
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
38809
38895
|
is_heating?: boolean | undefined;
|
|
38810
38896
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -38830,6 +38916,10 @@ export interface Routes {
|
|
|
38830
38916
|
name?: ((string | null) | undefined) | undefined;
|
|
38831
38917
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38832
38918
|
display_name?: string | undefined;
|
|
38919
|
+
/**
|
|
38920
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
38921
|
+
*/
|
|
38922
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
38833
38923
|
/** 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`. */
|
|
38834
38924
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
38835
38925
|
/** 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`. */
|
|
@@ -38861,6 +38951,10 @@ export interface Routes {
|
|
|
38861
38951
|
name?: ((string | null) | undefined) | undefined;
|
|
38862
38952
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38863
38953
|
display_name?: string | undefined;
|
|
38954
|
+
/**
|
|
38955
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
38956
|
+
*/
|
|
38957
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
38864
38958
|
/** 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`. */
|
|
38865
38959
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
38866
38960
|
/** 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`. */
|
|
@@ -38891,6 +38985,10 @@ export interface Routes {
|
|
|
38891
38985
|
name?: (string | null) | undefined;
|
|
38892
38986
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
38893
38987
|
display_name: string;
|
|
38988
|
+
/**
|
|
38989
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
38990
|
+
*/
|
|
38991
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
38894
38992
|
/** 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`. */
|
|
38895
38993
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
38896
38994
|
/** 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`. */
|
|
@@ -39916,6 +40014,8 @@ export interface Routes {
|
|
|
39916
40014
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
39917
40015
|
/** Fan mode settings that the thermostat supports. */
|
|
39918
40016
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
40017
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
40018
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
39919
40019
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
39920
40020
|
is_heating?: boolean | undefined;
|
|
39921
40021
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -39941,6 +40041,10 @@ export interface Routes {
|
|
|
39941
40041
|
name?: ((string | null) | undefined) | undefined;
|
|
39942
40042
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
39943
40043
|
display_name?: string | undefined;
|
|
40044
|
+
/**
|
|
40045
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
40046
|
+
*/
|
|
40047
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
39944
40048
|
/** 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`. */
|
|
39945
40049
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
39946
40050
|
/** 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`. */
|
|
@@ -39972,6 +40076,10 @@ export interface Routes {
|
|
|
39972
40076
|
name?: ((string | null) | undefined) | undefined;
|
|
39973
40077
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
39974
40078
|
display_name?: string | undefined;
|
|
40079
|
+
/**
|
|
40080
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
40081
|
+
*/
|
|
40082
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
39975
40083
|
/** 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`. */
|
|
39976
40084
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
39977
40085
|
/** 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`. */
|
|
@@ -40002,6 +40110,10 @@ export interface Routes {
|
|
|
40002
40110
|
name?: (string | null) | undefined;
|
|
40003
40111
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
40004
40112
|
display_name: string;
|
|
40113
|
+
/**
|
|
40114
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
40115
|
+
*/
|
|
40116
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
40005
40117
|
/** 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`. */
|
|
40006
40118
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
40007
40119
|
/** 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`. */
|
|
@@ -44924,7 +45036,7 @@ export interface Routes {
|
|
|
44924
45036
|
};
|
|
44925
45037
|
'/seam/customer/v1/automations/delete': {
|
|
44926
45038
|
route: '/seam/customer/v1/automations/delete';
|
|
44927
|
-
method: 'DELETE';
|
|
45039
|
+
method: 'DELETE' | 'POST';
|
|
44928
45040
|
queryParams: {};
|
|
44929
45041
|
jsonBody: {};
|
|
44930
45042
|
commonParams: {};
|
|
@@ -44933,7 +45045,7 @@ export interface Routes {
|
|
|
44933
45045
|
};
|
|
44934
45046
|
'/seam/customer/v1/automations/get': {
|
|
44935
45047
|
route: '/seam/customer/v1/automations/get';
|
|
44936
|
-
method: 'GET';
|
|
45048
|
+
method: 'GET' | 'POST';
|
|
44937
45049
|
queryParams: {};
|
|
44938
45050
|
jsonBody: {};
|
|
44939
45051
|
commonParams: {};
|
|
@@ -44960,7 +45072,7 @@ export interface Routes {
|
|
|
44960
45072
|
};
|
|
44961
45073
|
'/seam/customer/v1/automations/update': {
|
|
44962
45074
|
route: '/seam/customer/v1/automations/update';
|
|
44963
|
-
method: '
|
|
45075
|
+
method: 'PATCH' | 'POST';
|
|
44964
45076
|
queryParams: {};
|
|
44965
45077
|
jsonBody: {
|
|
44966
45078
|
/** Access automation rules configuration. */
|
|
@@ -45017,7 +45129,7 @@ export interface Routes {
|
|
|
45017
45129
|
};
|
|
45018
45130
|
'/seam/customer/v1/settings/update': {
|
|
45019
45131
|
route: '/seam/customer/v1/settings/update';
|
|
45020
|
-
method: '
|
|
45132
|
+
method: 'PATCH' | 'POST';
|
|
45021
45133
|
queryParams: {};
|
|
45022
45134
|
jsonBody: {
|
|
45023
45135
|
/** Business vertical to set on the workspace. */
|
|
@@ -48201,6 +48313,10 @@ export interface Routes {
|
|
|
48201
48313
|
climate_preset_key: string;
|
|
48202
48314
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
48203
48315
|
name?: (string | null) | undefined;
|
|
48316
|
+
/**
|
|
48317
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
48318
|
+
*/
|
|
48319
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
48204
48320
|
/** 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`. */
|
|
48205
48321
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
48206
48322
|
/** 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`. */
|
|
@@ -50144,6 +50260,8 @@ export interface Routes {
|
|
|
50144
50260
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
50145
50261
|
/** Fan mode settings that the thermostat supports. */
|
|
50146
50262
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
50263
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
50264
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
50147
50265
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
50148
50266
|
is_heating?: boolean | undefined;
|
|
50149
50267
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -50169,6 +50287,10 @@ export interface Routes {
|
|
|
50169
50287
|
name?: ((string | null) | undefined) | undefined;
|
|
50170
50288
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
50171
50289
|
display_name?: string | undefined;
|
|
50290
|
+
/**
|
|
50291
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
50292
|
+
*/
|
|
50293
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
50172
50294
|
/** 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`. */
|
|
50173
50295
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
50174
50296
|
/** 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`. */
|
|
@@ -50200,6 +50322,10 @@ export interface Routes {
|
|
|
50200
50322
|
name?: ((string | null) | undefined) | undefined;
|
|
50201
50323
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
50202
50324
|
display_name?: string | undefined;
|
|
50325
|
+
/**
|
|
50326
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
50327
|
+
*/
|
|
50328
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
50203
50329
|
/** 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`. */
|
|
50204
50330
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
50205
50331
|
/** 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`. */
|
|
@@ -50230,6 +50356,10 @@ export interface Routes {
|
|
|
50230
50356
|
name?: (string | null) | undefined;
|
|
50231
50357
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
50232
50358
|
display_name: string;
|
|
50359
|
+
/**
|
|
50360
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
50361
|
+
*/
|
|
50362
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
50233
50363
|
/** 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`. */
|
|
50234
50364
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
50235
50365
|
/** 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`. */
|
|
@@ -53818,6 +53948,8 @@ export interface Routes {
|
|
|
53818
53948
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
53819
53949
|
/** Fan mode settings that the thermostat supports. */
|
|
53820
53950
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
53951
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
53952
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
53821
53953
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
53822
53954
|
is_heating?: boolean | undefined;
|
|
53823
53955
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -53843,6 +53975,10 @@ export interface Routes {
|
|
|
53843
53975
|
name?: ((string | null) | undefined) | undefined;
|
|
53844
53976
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
53845
53977
|
display_name?: string | undefined;
|
|
53978
|
+
/**
|
|
53979
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
53980
|
+
*/
|
|
53981
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
53846
53982
|
/** 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`. */
|
|
53847
53983
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
53848
53984
|
/** 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`. */
|
|
@@ -53874,6 +54010,10 @@ export interface Routes {
|
|
|
53874
54010
|
name?: ((string | null) | undefined) | undefined;
|
|
53875
54011
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
53876
54012
|
display_name?: string | undefined;
|
|
54013
|
+
/**
|
|
54014
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
54015
|
+
*/
|
|
54016
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
53877
54017
|
/** 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`. */
|
|
53878
54018
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
53879
54019
|
/** 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`. */
|
|
@@ -53904,6 +54044,10 @@ export interface Routes {
|
|
|
53904
54044
|
name?: (string | null) | undefined;
|
|
53905
54045
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
53906
54046
|
display_name: string;
|
|
54047
|
+
/**
|
|
54048
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
54049
|
+
*/
|
|
54050
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
53907
54051
|
/** 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`. */
|
|
53908
54052
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
53909
54053
|
/** 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`. */
|
|
@@ -54929,6 +55073,8 @@ export interface Routes {
|
|
|
54929
55073
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
54930
55074
|
/** Fan mode settings that the thermostat supports. */
|
|
54931
55075
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
55076
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
55077
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
54932
55078
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
54933
55079
|
is_heating?: boolean | undefined;
|
|
54934
55080
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -54954,6 +55100,10 @@ export interface Routes {
|
|
|
54954
55100
|
name?: ((string | null) | undefined) | undefined;
|
|
54955
55101
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
54956
55102
|
display_name?: string | undefined;
|
|
55103
|
+
/**
|
|
55104
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
55105
|
+
*/
|
|
55106
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
54957
55107
|
/** 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`. */
|
|
54958
55108
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
54959
55109
|
/** 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`. */
|
|
@@ -54985,6 +55135,10 @@ export interface Routes {
|
|
|
54985
55135
|
name?: ((string | null) | undefined) | undefined;
|
|
54986
55136
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
54987
55137
|
display_name?: string | undefined;
|
|
55138
|
+
/**
|
|
55139
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
55140
|
+
*/
|
|
55141
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
54988
55142
|
/** 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`. */
|
|
54989
55143
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
54990
55144
|
/** 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`. */
|
|
@@ -55015,6 +55169,10 @@ export interface Routes {
|
|
|
55015
55169
|
name?: (string | null) | undefined;
|
|
55016
55170
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
55017
55171
|
display_name: string;
|
|
55172
|
+
/**
|
|
55173
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
55174
|
+
*/
|
|
55175
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
55018
55176
|
/** 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`. */
|
|
55019
55177
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
55020
55178
|
/** 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`. */
|
|
@@ -59529,6 +59687,10 @@ export interface Routes {
|
|
|
59529
59687
|
climate_preset_key: string;
|
|
59530
59688
|
/** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
59531
59689
|
name?: (string | null) | undefined;
|
|
59690
|
+
/**
|
|
59691
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
59692
|
+
*/
|
|
59693
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
59532
59694
|
/** 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`. */
|
|
59533
59695
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
59534
59696
|
/** 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`. */
|
|
@@ -60903,7 +61065,7 @@ export interface Routes {
|
|
|
60903
61065
|
};
|
|
60904
61066
|
'/unstable_access_grants/delete': {
|
|
60905
61067
|
route: '/unstable_access_grants/delete';
|
|
60906
|
-
method: '
|
|
61068
|
+
method: 'DELETE' | 'POST';
|
|
60907
61069
|
queryParams: {};
|
|
60908
61070
|
jsonBody: {};
|
|
60909
61071
|
commonParams: {
|
|
@@ -61023,7 +61185,7 @@ export interface Routes {
|
|
|
61023
61185
|
};
|
|
61024
61186
|
'/unstable_access_methods/delete': {
|
|
61025
61187
|
route: '/unstable_access_methods/delete';
|
|
61026
|
-
method: '
|
|
61188
|
+
method: 'DELETE' | 'POST';
|
|
61027
61189
|
queryParams: {};
|
|
61028
61190
|
jsonBody: {};
|
|
61029
61191
|
commonParams: {
|
|
@@ -62374,6 +62536,8 @@ export interface Routes {
|
|
|
62374
62536
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
62375
62537
|
/** Fan mode settings that the thermostat supports. */
|
|
62376
62538
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
62539
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
62540
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
62377
62541
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
62378
62542
|
is_heating?: boolean | undefined;
|
|
62379
62543
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -62399,6 +62563,10 @@ export interface Routes {
|
|
|
62399
62563
|
name?: ((string | null) | undefined) | undefined;
|
|
62400
62564
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62401
62565
|
display_name?: string | undefined;
|
|
62566
|
+
/**
|
|
62567
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
62568
|
+
*/
|
|
62569
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
62402
62570
|
/** 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`. */
|
|
62403
62571
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
62404
62572
|
/** 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`. */
|
|
@@ -62430,6 +62598,10 @@ export interface Routes {
|
|
|
62430
62598
|
name?: ((string | null) | undefined) | undefined;
|
|
62431
62599
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62432
62600
|
display_name?: string | undefined;
|
|
62601
|
+
/**
|
|
62602
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
62603
|
+
*/
|
|
62604
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
62433
62605
|
/** 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`. */
|
|
62434
62606
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
62435
62607
|
/** 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`. */
|
|
@@ -62460,6 +62632,10 @@ export interface Routes {
|
|
|
62460
62632
|
name?: (string | null) | undefined;
|
|
62461
62633
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
62462
62634
|
display_name: string;
|
|
62635
|
+
/**
|
|
62636
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
62637
|
+
*/
|
|
62638
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
62463
62639
|
/** 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`. */
|
|
62464
62640
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
62465
62641
|
/** 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`. */
|
|
@@ -63487,6 +63663,8 @@ export interface Routes {
|
|
|
63487
63663
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
63488
63664
|
/** Fan mode settings that the thermostat supports. */
|
|
63489
63665
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
63666
|
+
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
63667
|
+
available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
|
|
63490
63668
|
/** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
|
|
63491
63669
|
is_heating?: boolean | undefined;
|
|
63492
63670
|
/** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
|
|
@@ -63512,6 +63690,10 @@ export interface Routes {
|
|
|
63512
63690
|
name?: ((string | null) | undefined) | undefined;
|
|
63513
63691
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
63514
63692
|
display_name?: string | undefined;
|
|
63693
|
+
/**
|
|
63694
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63695
|
+
*/
|
|
63696
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
63515
63697
|
/** 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`. */
|
|
63516
63698
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
63517
63699
|
/** 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`. */
|
|
@@ -63543,6 +63725,10 @@ export interface Routes {
|
|
|
63543
63725
|
name?: ((string | null) | undefined) | undefined;
|
|
63544
63726
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
63545
63727
|
display_name?: string | undefined;
|
|
63728
|
+
/**
|
|
63729
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63730
|
+
*/
|
|
63731
|
+
climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
|
|
63546
63732
|
/** 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`. */
|
|
63547
63733
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
63548
63734
|
/** 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`. */
|
|
@@ -63573,6 +63759,10 @@ export interface Routes {
|
|
|
63573
63759
|
name?: (string | null) | undefined;
|
|
63574
63760
|
/** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
63575
63761
|
display_name: string;
|
|
63762
|
+
/**
|
|
63763
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
63764
|
+
*/
|
|
63765
|
+
climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
|
|
63576
63766
|
/** 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`. */
|
|
63577
63767
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
63578
63768
|
/** 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`. */
|