@seamapi/types 1.445.1 → 1.447.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 +100 -49
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +277 -182
- package/dist/devicedb.d.cts +24 -24
- package/dist/index.cjs +100 -49
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batches/batch.d.ts +39 -34
- package/lib/seam/connect/models/batches/spaces.d.ts +39 -34
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
- package/lib/seam/connect/models/devices/device.d.ts +26 -26
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -18
- package/lib/seam/connect/models/events/devices.d.ts +6 -6
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -3
- package/lib/seam/connect/models/spaces/space.d.ts +3 -0
- package/lib/seam/connect/models/spaces/space.js +4 -0
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +1 -1
- package/lib/seam/connect/models/thermostats/modes.js +7 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +86 -38
- package/lib/seam/connect/openapi.js +92 -48
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +96 -60
- package/lib/seam/devicedb/models/device-model.d.ts +12 -12
- package/lib/seam/devicedb/route-specs.d.ts +12 -12
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +4 -0
- package/src/lib/seam/connect/models/spaces/space.ts +4 -0
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +96 -48
- package/src/lib/seam/connect/route-types.ts +193 -68
|
@@ -9933,6 +9933,8 @@ export interface Routes {
|
|
|
9933
9933
|
full_name?: (string | null) | undefined;
|
|
9934
9934
|
};
|
|
9935
9935
|
}) & {
|
|
9936
|
+
/** Unique key for the access grant within the workspace. */
|
|
9937
|
+
access_grant_key?: string | undefined;
|
|
9936
9938
|
/**
|
|
9937
9939
|
* @deprecated Use `space_ids`. */
|
|
9938
9940
|
location_ids?: string[] | undefined;
|
|
@@ -9970,6 +9972,8 @@ export interface Routes {
|
|
|
9970
9972
|
workspace_id: string;
|
|
9971
9973
|
/** ID of the Access Grant. */
|
|
9972
9974
|
access_grant_id: string;
|
|
9975
|
+
/** Unique key for the access grant within the workspace. */
|
|
9976
|
+
access_grant_key?: string | undefined;
|
|
9973
9977
|
/** ID of user identity to which the Access Grant gives access. */
|
|
9974
9978
|
user_identity_id: string;
|
|
9975
9979
|
/**
|
|
@@ -10023,6 +10027,9 @@ export interface Routes {
|
|
|
10023
10027
|
commonParams: {
|
|
10024
10028
|
/** ID of Access Grant to get. */
|
|
10025
10029
|
access_grant_id: string;
|
|
10030
|
+
} | {
|
|
10031
|
+
/** Unique key of Access Grant to get. */
|
|
10032
|
+
access_grant_key: string;
|
|
10026
10033
|
};
|
|
10027
10034
|
formData: {};
|
|
10028
10035
|
jsonResponse: {
|
|
@@ -10032,6 +10039,8 @@ export interface Routes {
|
|
|
10032
10039
|
workspace_id: string;
|
|
10033
10040
|
/** ID of the Access Grant. */
|
|
10034
10041
|
access_grant_id: string;
|
|
10042
|
+
/** Unique key for the access grant within the workspace. */
|
|
10043
|
+
access_grant_key?: string | undefined;
|
|
10035
10044
|
/** ID of user identity to which the Access Grant gives access. */
|
|
10036
10045
|
user_identity_id: string;
|
|
10037
10046
|
/**
|
|
@@ -10082,6 +10091,8 @@ export interface Routes {
|
|
|
10082
10091
|
location_id?: string | undefined;
|
|
10083
10092
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
10084
10093
|
space_id?: string | undefined;
|
|
10094
|
+
/** Filter Access Grants by access_grant_key. */
|
|
10095
|
+
access_grant_key?: string | undefined;
|
|
10085
10096
|
};
|
|
10086
10097
|
formData: {};
|
|
10087
10098
|
jsonResponse: {
|
|
@@ -10090,6 +10101,8 @@ export interface Routes {
|
|
|
10090
10101
|
workspace_id: string;
|
|
10091
10102
|
/** ID of the Access Grant. */
|
|
10092
10103
|
access_grant_id: string;
|
|
10104
|
+
/** Unique key for the access grant within the workspace. */
|
|
10105
|
+
access_grant_key?: string | undefined;
|
|
10093
10106
|
/** ID of user identity to which the Access Grant gives access. */
|
|
10094
10107
|
user_identity_id: string;
|
|
10095
10108
|
/**
|
|
@@ -23258,7 +23271,7 @@ export interface Routes {
|
|
|
23258
23271
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
23259
23272
|
relative_humidity?: number | undefined;
|
|
23260
23273
|
/** HVAC mode settings that the thermostat supports. */
|
|
23261
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
23274
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
23262
23275
|
/** Fan mode settings that the thermostat supports. */
|
|
23263
23276
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
23264
23277
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -23295,7 +23308,7 @@ export interface Routes {
|
|
|
23295
23308
|
/** 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`. */
|
|
23296
23309
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
23297
23310
|
/** 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`. */
|
|
23298
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
23311
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
23299
23312
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
23300
23313
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
23301
23314
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -23341,7 +23354,7 @@ export interface Routes {
|
|
|
23341
23354
|
/** 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`. */
|
|
23342
23355
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
23343
23356
|
/** 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`. */
|
|
23344
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
23357
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
23345
23358
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
23346
23359
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
23347
23360
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -23386,7 +23399,7 @@ export interface Routes {
|
|
|
23386
23399
|
/** 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`. */
|
|
23387
23400
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
23388
23401
|
/** 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`. */
|
|
23389
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
23402
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
23390
23403
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
23391
23404
|
cooling_set_point_celsius?: number | undefined;
|
|
23392
23405
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -24467,7 +24480,7 @@ export interface Routes {
|
|
|
24467
24480
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
24468
24481
|
relative_humidity?: number | undefined;
|
|
24469
24482
|
/** HVAC mode settings that the thermostat supports. */
|
|
24470
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
24483
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
24471
24484
|
/** Fan mode settings that the thermostat supports. */
|
|
24472
24485
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
24473
24486
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -24504,7 +24517,7 @@ export interface Routes {
|
|
|
24504
24517
|
/** 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`. */
|
|
24505
24518
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
24506
24519
|
/** 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`. */
|
|
24507
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
24520
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
24508
24521
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
24509
24522
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
24510
24523
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -24550,7 +24563,7 @@ export interface Routes {
|
|
|
24550
24563
|
/** 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`. */
|
|
24551
24564
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
24552
24565
|
/** 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`. */
|
|
24553
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
24566
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
24554
24567
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
24555
24568
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
24556
24569
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -24595,7 +24608,7 @@ export interface Routes {
|
|
|
24595
24608
|
/** 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`. */
|
|
24596
24609
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
24597
24610
|
/** 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`. */
|
|
24598
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
24611
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
24599
24612
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
24600
24613
|
cooling_set_point_celsius?: number | undefined;
|
|
24601
24614
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -27484,7 +27497,7 @@ export interface Routes {
|
|
|
27484
27497
|
/** 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`. */
|
|
27485
27498
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
27486
27499
|
/** 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`. */
|
|
27487
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
27500
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
27488
27501
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
27489
27502
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
27490
27503
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -29136,7 +29149,7 @@ export interface Routes {
|
|
|
29136
29149
|
/** 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`. */
|
|
29137
29150
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
29138
29151
|
/** 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`. */
|
|
29139
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
29152
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
29140
29153
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
29141
29154
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
29142
29155
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -29900,7 +29913,7 @@ export interface Routes {
|
|
|
29900
29913
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
29901
29914
|
relative_humidity?: number | undefined;
|
|
29902
29915
|
/** HVAC mode settings that the thermostat supports. */
|
|
29903
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
29916
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
29904
29917
|
/** Fan mode settings that the thermostat supports. */
|
|
29905
29918
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
29906
29919
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -29937,7 +29950,7 @@ export interface Routes {
|
|
|
29937
29950
|
/** 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`. */
|
|
29938
29951
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
29939
29952
|
/** 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`. */
|
|
29940
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
29953
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
29941
29954
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
29942
29955
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
29943
29956
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -29983,7 +29996,7 @@ export interface Routes {
|
|
|
29983
29996
|
/** 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`. */
|
|
29984
29997
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
29985
29998
|
/** 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`. */
|
|
29986
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
29999
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
29987
30000
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
29988
30001
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
29989
30002
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -30028,7 +30041,7 @@ export interface Routes {
|
|
|
30028
30041
|
/** 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`. */
|
|
30029
30042
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
30030
30043
|
/** 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`. */
|
|
30031
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
30044
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
30032
30045
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
30033
30046
|
cooling_set_point_celsius?: number | undefined;
|
|
30034
30047
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -31061,7 +31074,7 @@ export interface Routes {
|
|
|
31061
31074
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
31062
31075
|
relative_humidity?: number | undefined;
|
|
31063
31076
|
/** HVAC mode settings that the thermostat supports. */
|
|
31064
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
31077
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
31065
31078
|
/** Fan mode settings that the thermostat supports. */
|
|
31066
31079
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
31067
31080
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -31098,7 +31111,7 @@ export interface Routes {
|
|
|
31098
31111
|
/** 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`. */
|
|
31099
31112
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
31100
31113
|
/** 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`. */
|
|
31101
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
31114
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
31102
31115
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
31103
31116
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
31104
31117
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -31144,7 +31157,7 @@ export interface Routes {
|
|
|
31144
31157
|
/** 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`. */
|
|
31145
31158
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
31146
31159
|
/** 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`. */
|
|
31147
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
31160
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
31148
31161
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
31149
31162
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
31150
31163
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -31189,7 +31202,7 @@ export interface Routes {
|
|
|
31189
31202
|
/** 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`. */
|
|
31190
31203
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
31191
31204
|
/** 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`. */
|
|
31192
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
31205
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
31193
31206
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
31194
31207
|
cooling_set_point_celsius?: number | undefined;
|
|
31195
31208
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -32270,7 +32283,7 @@ export interface Routes {
|
|
|
32270
32283
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
32271
32284
|
relative_humidity?: number | undefined;
|
|
32272
32285
|
/** HVAC mode settings that the thermostat supports. */
|
|
32273
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
32286
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
32274
32287
|
/** Fan mode settings that the thermostat supports. */
|
|
32275
32288
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
32276
32289
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -32307,7 +32320,7 @@ export interface Routes {
|
|
|
32307
32320
|
/** 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`. */
|
|
32308
32321
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
32309
32322
|
/** 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`. */
|
|
32310
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
32323
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
32311
32324
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
32312
32325
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
32313
32326
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -32353,7 +32366,7 @@ export interface Routes {
|
|
|
32353
32366
|
/** 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`. */
|
|
32354
32367
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
32355
32368
|
/** 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`. */
|
|
32356
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
32369
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
32357
32370
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
32358
32371
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
32359
32372
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -32398,7 +32411,7 @@ export interface Routes {
|
|
|
32398
32411
|
/** 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`. */
|
|
32399
32412
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
32400
32413
|
/** 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`. */
|
|
32401
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
32414
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
32402
32415
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
32403
32416
|
cooling_set_point_celsius?: number | undefined;
|
|
32404
32417
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -33430,7 +33443,7 @@ export interface Routes {
|
|
|
33430
33443
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
33431
33444
|
relative_humidity?: number | undefined;
|
|
33432
33445
|
/** HVAC mode settings that the thermostat supports. */
|
|
33433
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
33446
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
33434
33447
|
/** Fan mode settings that the thermostat supports. */
|
|
33435
33448
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
33436
33449
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -33467,7 +33480,7 @@ export interface Routes {
|
|
|
33467
33480
|
/** 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`. */
|
|
33468
33481
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
33469
33482
|
/** 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`. */
|
|
33470
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
33483
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
33471
33484
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
33472
33485
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
33473
33486
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -33513,7 +33526,7 @@ export interface Routes {
|
|
|
33513
33526
|
/** 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`. */
|
|
33514
33527
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
33515
33528
|
/** 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`. */
|
|
33516
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
33529
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
33517
33530
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
33518
33531
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
33519
33532
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -33558,7 +33571,7 @@ export interface Routes {
|
|
|
33558
33571
|
/** 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`. */
|
|
33559
33572
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
33560
33573
|
/** 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`. */
|
|
33561
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
33574
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
33562
33575
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
33563
33576
|
cooling_set_point_celsius?: number | undefined;
|
|
33564
33577
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -39712,7 +39725,7 @@ export interface Routes {
|
|
|
39712
39725
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
39713
39726
|
relative_humidity?: number | undefined;
|
|
39714
39727
|
/** HVAC mode settings that the thermostat supports. */
|
|
39715
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
39728
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
39716
39729
|
/** Fan mode settings that the thermostat supports. */
|
|
39717
39730
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
39718
39731
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -39749,7 +39762,7 @@ export interface Routes {
|
|
|
39749
39762
|
/** 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`. */
|
|
39750
39763
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
39751
39764
|
/** 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`. */
|
|
39752
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
39765
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
39753
39766
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
39754
39767
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
39755
39768
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -39795,7 +39808,7 @@ export interface Routes {
|
|
|
39795
39808
|
/** 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`. */
|
|
39796
39809
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
39797
39810
|
/** 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`. */
|
|
39798
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
39811
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
39799
39812
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
39800
39813
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
39801
39814
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -39840,7 +39853,7 @@ export interface Routes {
|
|
|
39840
39853
|
/** 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`. */
|
|
39841
39854
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
39842
39855
|
/** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
|
|
39843
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
39856
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
39844
39857
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
39845
39858
|
cooling_set_point_celsius?: number | undefined;
|
|
39846
39859
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -40872,7 +40885,7 @@ export interface Routes {
|
|
|
40872
40885
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
40873
40886
|
relative_humidity?: number | undefined;
|
|
40874
40887
|
/** HVAC mode settings that the thermostat supports. */
|
|
40875
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
40888
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
40876
40889
|
/** Fan mode settings that the thermostat supports. */
|
|
40877
40890
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
40878
40891
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -40909,7 +40922,7 @@ export interface Routes {
|
|
|
40909
40922
|
/** 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`. */
|
|
40910
40923
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
40911
40924
|
/** 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`. */
|
|
40912
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
40925
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
40913
40926
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
40914
40927
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
40915
40928
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -40955,7 +40968,7 @@ export interface Routes {
|
|
|
40955
40968
|
/** 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`. */
|
|
40956
40969
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
40957
40970
|
/** 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`. */
|
|
40958
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
40971
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
40959
40972
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
40960
40973
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
40961
40974
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -41000,7 +41013,7 @@ export interface Routes {
|
|
|
41000
41013
|
/** 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`. */
|
|
41001
41014
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
41002
41015
|
/** 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`. */
|
|
41003
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
41016
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
41004
41017
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
41005
41018
|
cooling_set_point_celsius?: number | undefined;
|
|
41006
41019
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -46574,6 +46587,8 @@ export interface Routes {
|
|
|
46574
46587
|
jsonBody: {
|
|
46575
46588
|
/** Name of the space that you want to create. */
|
|
46576
46589
|
name: string;
|
|
46590
|
+
/** Unique key for the space within the workspace. */
|
|
46591
|
+
space_key?: string | undefined;
|
|
46577
46592
|
/** IDs of the devices that you want to add to the new space. */
|
|
46578
46593
|
device_ids?: string[] | undefined;
|
|
46579
46594
|
/** IDs of the entrances that you want to add to the new space. */
|
|
@@ -46588,6 +46603,8 @@ export interface Routes {
|
|
|
46588
46603
|
space_id: string;
|
|
46589
46604
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
46590
46605
|
workspace_id: string;
|
|
46606
|
+
/** Unique key for the space within the workspace. */
|
|
46607
|
+
space_key?: string | undefined;
|
|
46591
46608
|
/** Name of the space. */
|
|
46592
46609
|
name: string;
|
|
46593
46610
|
/** Display name for the space. */
|
|
@@ -46621,6 +46638,9 @@ export interface Routes {
|
|
|
46621
46638
|
commonParams: {
|
|
46622
46639
|
/** ID of the space that you want to get. */
|
|
46623
46640
|
space_id: string;
|
|
46641
|
+
} | {
|
|
46642
|
+
/** Unique key of the space that you want to get. */
|
|
46643
|
+
space_key: string;
|
|
46624
46644
|
};
|
|
46625
46645
|
formData: {};
|
|
46626
46646
|
jsonResponse: {
|
|
@@ -46630,6 +46650,8 @@ export interface Routes {
|
|
|
46630
46650
|
space_id: string;
|
|
46631
46651
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
46632
46652
|
workspace_id: string;
|
|
46653
|
+
/** Unique key for the space within the workspace. */
|
|
46654
|
+
space_key?: string | undefined;
|
|
46633
46655
|
/** Name of the space. */
|
|
46634
46656
|
name: string;
|
|
46635
46657
|
/** Display name for the space. */
|
|
@@ -46664,6 +46686,8 @@ export interface Routes {
|
|
|
46664
46686
|
space_id: string;
|
|
46665
46687
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
46666
46688
|
workspace_id: string;
|
|
46689
|
+
/** Unique key for the space within the workspace. */
|
|
46690
|
+
space_key?: string | undefined;
|
|
46667
46691
|
/** Name of the space. */
|
|
46668
46692
|
name: string;
|
|
46669
46693
|
/** Display name for the space. */
|
|
@@ -47259,7 +47283,7 @@ export interface Routes {
|
|
|
47259
47283
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
47260
47284
|
relative_humidity?: number | undefined;
|
|
47261
47285
|
/** HVAC mode settings that the thermostat supports. */
|
|
47262
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
47286
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
47263
47287
|
/** Fan mode settings that the thermostat supports. */
|
|
47264
47288
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
47265
47289
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -47296,7 +47320,7 @@ export interface Routes {
|
|
|
47296
47320
|
/** 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`. */
|
|
47297
47321
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
47298
47322
|
/** 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`. */
|
|
47299
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
47323
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
47300
47324
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
47301
47325
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
47302
47326
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -47342,7 +47366,7 @@ export interface Routes {
|
|
|
47342
47366
|
/** 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`. */
|
|
47343
47367
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
47344
47368
|
/** 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`. */
|
|
47345
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
47369
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
47346
47370
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
47347
47371
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
47348
47372
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -47387,7 +47411,7 @@ export interface Routes {
|
|
|
47387
47411
|
/** 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`. */
|
|
47388
47412
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
47389
47413
|
/** 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`. */
|
|
47390
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
47414
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
47391
47415
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
47392
47416
|
cooling_set_point_celsius?: number | undefined;
|
|
47393
47417
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -47942,6 +47966,8 @@ export interface Routes {
|
|
|
47942
47966
|
commonParams: {
|
|
47943
47967
|
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
|
|
47944
47968
|
search?: string | undefined;
|
|
47969
|
+
/** Filter spaces by space_key. */
|
|
47970
|
+
space_key?: string | undefined;
|
|
47945
47971
|
};
|
|
47946
47972
|
formData: {};
|
|
47947
47973
|
jsonResponse: {
|
|
@@ -47950,6 +47976,8 @@ export interface Routes {
|
|
|
47950
47976
|
space_id: string;
|
|
47951
47977
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
47952
47978
|
workspace_id: string;
|
|
47979
|
+
/** Unique key for the space within the workspace. */
|
|
47980
|
+
space_key?: string | undefined;
|
|
47953
47981
|
/** Name of the space. */
|
|
47954
47982
|
name: string;
|
|
47955
47983
|
/** Display name for the space. */
|
|
@@ -48010,6 +48038,8 @@ export interface Routes {
|
|
|
48010
48038
|
space_id: string;
|
|
48011
48039
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
48012
48040
|
workspace_id: string;
|
|
48041
|
+
/** Unique key for the space within the workspace. */
|
|
48042
|
+
space_key?: string | undefined;
|
|
48013
48043
|
/** Name of the space. */
|
|
48014
48044
|
name: string;
|
|
48015
48045
|
/** Display name for the space. */
|
|
@@ -50568,7 +50598,7 @@ export interface Routes {
|
|
|
50568
50598
|
/** 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`. */
|
|
50569
50599
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
50570
50600
|
/** 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`. */
|
|
50571
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
50601
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
50572
50602
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
50573
50603
|
cooling_set_point_celsius?: number | undefined;
|
|
50574
50604
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -52526,7 +52556,7 @@ export interface Routes {
|
|
|
52526
52556
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
52527
52557
|
relative_humidity?: number | undefined;
|
|
52528
52558
|
/** HVAC mode settings that the thermostat supports. */
|
|
52529
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
52559
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
52530
52560
|
/** Fan mode settings that the thermostat supports. */
|
|
52531
52561
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
52532
52562
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -52563,7 +52593,7 @@ export interface Routes {
|
|
|
52563
52593
|
/** 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`. */
|
|
52564
52594
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
52565
52595
|
/** 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`. */
|
|
52566
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
52596
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
52567
52597
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
52568
52598
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
52569
52599
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -52609,7 +52639,7 @@ export interface Routes {
|
|
|
52609
52639
|
/** 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`. */
|
|
52610
52640
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
52611
52641
|
/** 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`. */
|
|
52612
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
52642
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
52613
52643
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
52614
52644
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
52615
52645
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -52654,7 +52684,7 @@ export interface Routes {
|
|
|
52654
52684
|
/** 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`. */
|
|
52655
52685
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
52656
52686
|
/** 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`. */
|
|
52657
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
52687
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
52658
52688
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
52659
52689
|
cooling_set_point_celsius?: number | undefined;
|
|
52660
52690
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -56267,7 +56297,7 @@ export interface Routes {
|
|
|
56267
56297
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
56268
56298
|
relative_humidity?: number | undefined;
|
|
56269
56299
|
/** HVAC mode settings that the thermostat supports. */
|
|
56270
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
56300
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
56271
56301
|
/** Fan mode settings that the thermostat supports. */
|
|
56272
56302
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
56273
56303
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -56304,7 +56334,7 @@ export interface Routes {
|
|
|
56304
56334
|
/** 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`. */
|
|
56305
56335
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
56306
56336
|
/** 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`. */
|
|
56307
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
56337
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
56308
56338
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
56309
56339
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
56310
56340
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -56350,7 +56380,7 @@ export interface Routes {
|
|
|
56350
56380
|
/** 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`. */
|
|
56351
56381
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
56352
56382
|
/** 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`. */
|
|
56353
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
56383
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
56354
56384
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
56355
56385
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
56356
56386
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -56395,7 +56425,7 @@ export interface Routes {
|
|
|
56395
56425
|
/** 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`. */
|
|
56396
56426
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
56397
56427
|
/** 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`. */
|
|
56398
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
56428
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
56399
56429
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
56400
56430
|
cooling_set_point_celsius?: number | undefined;
|
|
56401
56431
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -57427,7 +57457,7 @@ export interface Routes {
|
|
|
57427
57457
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
57428
57458
|
relative_humidity?: number | undefined;
|
|
57429
57459
|
/** HVAC mode settings that the thermostat supports. */
|
|
57430
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
57460
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
57431
57461
|
/** Fan mode settings that the thermostat supports. */
|
|
57432
57462
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
57433
57463
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -57464,7 +57494,7 @@ export interface Routes {
|
|
|
57464
57494
|
/** 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`. */
|
|
57465
57495
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
57466
57496
|
/** 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`. */
|
|
57467
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
57497
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
57468
57498
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
57469
57499
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
57470
57500
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -57510,7 +57540,7 @@ export interface Routes {
|
|
|
57510
57540
|
/** 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`. */
|
|
57511
57541
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
57512
57542
|
/** 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`. */
|
|
57513
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
57543
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
57514
57544
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
57515
57545
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
57516
57546
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -57555,7 +57585,7 @@ export interface Routes {
|
|
|
57555
57585
|
/** 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`. */
|
|
57556
57586
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
57557
57587
|
/** 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`. */
|
|
57558
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
57588
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
57559
57589
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
57560
57590
|
cooling_set_point_celsius?: number | undefined;
|
|
57561
57591
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -62108,7 +62138,7 @@ export interface Routes {
|
|
|
62108
62138
|
/** 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`. */
|
|
62109
62139
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
62110
62140
|
/** 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`. */
|
|
62111
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
62141
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
62112
62142
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
62113
62143
|
cooling_set_point_celsius?: number | undefined;
|
|
62114
62144
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -63463,6 +63493,8 @@ export interface Routes {
|
|
|
63463
63493
|
workspace_id: string;
|
|
63464
63494
|
/** ID of the Access Grant. */
|
|
63465
63495
|
access_grant_id: string;
|
|
63496
|
+
/** Unique key for the access grant within the workspace. */
|
|
63497
|
+
access_grant_key?: string | undefined;
|
|
63466
63498
|
/** ID of user identity to which the Access Grant gives access. */
|
|
63467
63499
|
user_identity_id: string;
|
|
63468
63500
|
/**
|
|
@@ -63525,6 +63557,8 @@ export interface Routes {
|
|
|
63525
63557
|
workspace_id: string;
|
|
63526
63558
|
/** ID of the Access Grant. */
|
|
63527
63559
|
access_grant_id: string;
|
|
63560
|
+
/** Unique key for the access grant within the workspace. */
|
|
63561
|
+
access_grant_key?: string | undefined;
|
|
63528
63562
|
/** ID of user identity to which the Access Grant gives access. */
|
|
63529
63563
|
user_identity_id: string;
|
|
63530
63564
|
/**
|
|
@@ -63583,6 +63617,8 @@ export interface Routes {
|
|
|
63583
63617
|
workspace_id: string;
|
|
63584
63618
|
/** ID of the Access Grant. */
|
|
63585
63619
|
access_grant_id: string;
|
|
63620
|
+
/** Unique key for the access grant within the workspace. */
|
|
63621
|
+
access_grant_key?: string | undefined;
|
|
63586
63622
|
/** ID of user identity to which the Access Grant gives access. */
|
|
63587
63623
|
user_identity_id: string;
|
|
63588
63624
|
/**
|
|
@@ -65017,7 +65053,7 @@ export interface Routes {
|
|
|
65017
65053
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
65018
65054
|
relative_humidity?: number | undefined;
|
|
65019
65055
|
/** HVAC mode settings that the thermostat supports. */
|
|
65020
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
65056
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
65021
65057
|
/** Fan mode settings that the thermostat supports. */
|
|
65022
65058
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
65023
65059
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -65054,7 +65090,7 @@ export interface Routes {
|
|
|
65054
65090
|
/** 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`. */
|
|
65055
65091
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
65056
65092
|
/** 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`. */
|
|
65057
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
65093
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
65058
65094
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
65059
65095
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
65060
65096
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -65100,7 +65136,7 @@ export interface Routes {
|
|
|
65100
65136
|
/** 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`. */
|
|
65101
65137
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
65102
65138
|
/** 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`. */
|
|
65103
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
65139
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
65104
65140
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
65105
65141
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
65106
65142
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -65145,7 +65181,7 @@ export interface Routes {
|
|
|
65145
65181
|
/** 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`. */
|
|
65146
65182
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
65147
65183
|
/** 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`. */
|
|
65148
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
65184
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
65149
65185
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
65150
65186
|
cooling_set_point_celsius?: number | undefined;
|
|
65151
65187
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -66179,7 +66215,7 @@ export interface Routes {
|
|
|
66179
66215
|
/** Reported relative humidity, as a value between 0 and 1, inclusive. */
|
|
66180
66216
|
relative_humidity?: number | undefined;
|
|
66181
66217
|
/** HVAC mode settings that the thermostat supports. */
|
|
66182
|
-
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
66218
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'> | undefined;
|
|
66183
66219
|
/** Fan mode settings that the thermostat supports. */
|
|
66184
66220
|
available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
|
|
66185
66221
|
/** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
|
|
@@ -66216,7 +66252,7 @@ export interface Routes {
|
|
|
66216
66252
|
/** 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`. */
|
|
66217
66253
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
66218
66254
|
/** 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`. */
|
|
66219
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
66255
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
66220
66256
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
66221
66257
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
66222
66258
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -66262,7 +66298,7 @@ export interface Routes {
|
|
|
66262
66298
|
/** 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`. */
|
|
66263
66299
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
66264
66300
|
/** 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`. */
|
|
66265
|
-
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
66301
|
+
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined) | undefined;
|
|
66266
66302
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
66267
66303
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
66268
66304
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
@@ -66307,7 +66343,7 @@ export interface Routes {
|
|
|
66307
66343
|
/** 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`. */
|
|
66308
66344
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
66309
66345
|
/** 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`. */
|
|
66310
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
66346
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined;
|
|
66311
66347
|
/** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
66312
66348
|
cooling_set_point_celsius?: number | undefined;
|
|
66313
66349
|
/** Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|