@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
|
@@ -11155,6 +11155,8 @@ export interface Routes {
|
|
|
11155
11155
|
}
|
|
11156
11156
|
}
|
|
11157
11157
|
) & {
|
|
11158
|
+
/** Unique key for the access grant within the workspace. */
|
|
11159
|
+
access_grant_key?: string | undefined
|
|
11158
11160
|
/**
|
|
11159
11161
|
* @deprecated Use `space_ids`. */
|
|
11160
11162
|
location_ids?: string[] | undefined
|
|
@@ -11194,6 +11196,8 @@ export interface Routes {
|
|
|
11194
11196
|
workspace_id: string
|
|
11195
11197
|
/** ID of the Access Grant. */
|
|
11196
11198
|
access_grant_id: string
|
|
11199
|
+
/** Unique key for the access grant within the workspace. */
|
|
11200
|
+
access_grant_key?: string | undefined
|
|
11197
11201
|
/** ID of user identity to which the Access Grant gives access. */
|
|
11198
11202
|
user_identity_id: string
|
|
11199
11203
|
/**
|
|
@@ -11244,10 +11248,15 @@ export interface Routes {
|
|
|
11244
11248
|
method: 'GET' | 'POST'
|
|
11245
11249
|
queryParams: {}
|
|
11246
11250
|
jsonBody: {}
|
|
11247
|
-
commonParams:
|
|
11248
|
-
|
|
11249
|
-
|
|
11250
|
-
|
|
11251
|
+
commonParams:
|
|
11252
|
+
| {
|
|
11253
|
+
/** ID of Access Grant to get. */
|
|
11254
|
+
access_grant_id: string
|
|
11255
|
+
}
|
|
11256
|
+
| {
|
|
11257
|
+
/** Unique key of Access Grant to get. */
|
|
11258
|
+
access_grant_key: string
|
|
11259
|
+
}
|
|
11251
11260
|
formData: {}
|
|
11252
11261
|
jsonResponse: {
|
|
11253
11262
|
/** Represents an Access Grant. Access Grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an Access Grant for an existing user identity, or you can create a new user identity *while* creating the new Access Grant. */
|
|
@@ -11256,6 +11265,8 @@ export interface Routes {
|
|
|
11256
11265
|
workspace_id: string
|
|
11257
11266
|
/** ID of the Access Grant. */
|
|
11258
11267
|
access_grant_id: string
|
|
11268
|
+
/** Unique key for the access grant within the workspace. */
|
|
11269
|
+
access_grant_key?: string | undefined
|
|
11259
11270
|
/** ID of user identity to which the Access Grant gives access. */
|
|
11260
11271
|
user_identity_id: string
|
|
11261
11272
|
/**
|
|
@@ -11306,6 +11317,8 @@ export interface Routes {
|
|
|
11306
11317
|
location_id?: string | undefined
|
|
11307
11318
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
11308
11319
|
space_id?: string | undefined
|
|
11320
|
+
/** Filter Access Grants by access_grant_key. */
|
|
11321
|
+
access_grant_key?: string | undefined
|
|
11309
11322
|
}
|
|
11310
11323
|
formData: {}
|
|
11311
11324
|
jsonResponse: {
|
|
@@ -11314,6 +11327,8 @@ export interface Routes {
|
|
|
11314
11327
|
workspace_id: string
|
|
11315
11328
|
/** ID of the Access Grant. */
|
|
11316
11329
|
access_grant_id: string
|
|
11330
|
+
/** Unique key for the access grant within the workspace. */
|
|
11331
|
+
access_grant_key?: string | undefined
|
|
11317
11332
|
/** ID of user identity to which the Access Grant gives access. */
|
|
11318
11333
|
user_identity_id: string
|
|
11319
11334
|
/**
|
|
@@ -26516,7 +26531,7 @@ export interface Routes {
|
|
|
26516
26531
|
relative_humidity?: number | undefined
|
|
26517
26532
|
/** HVAC mode settings that the thermostat supports. */
|
|
26518
26533
|
available_hvac_mode_settings?:
|
|
26519
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
26534
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
26520
26535
|
| undefined
|
|
26521
26536
|
/** Fan mode settings that the thermostat supports. */
|
|
26522
26537
|
available_fan_mode_settings?:
|
|
@@ -26576,7 +26591,10 @@ export interface Routes {
|
|
|
26576
26591
|
| undefined
|
|
26577
26592
|
/** 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`. */
|
|
26578
26593
|
hvac_mode_setting?:
|
|
26579
|
-
| (
|
|
26594
|
+
| (
|
|
26595
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
26596
|
+
| undefined
|
|
26597
|
+
)
|
|
26580
26598
|
| undefined
|
|
26581
26599
|
/** 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). */
|
|
26582
26600
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -26649,7 +26667,10 @@ export interface Routes {
|
|
|
26649
26667
|
| undefined
|
|
26650
26668
|
/** 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`. */
|
|
26651
26669
|
hvac_mode_setting?:
|
|
26652
|
-
| (
|
|
26670
|
+
| (
|
|
26671
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
26672
|
+
| undefined
|
|
26673
|
+
)
|
|
26653
26674
|
| undefined
|
|
26654
26675
|
/** 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). */
|
|
26655
26676
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -26716,7 +26737,7 @@ export interface Routes {
|
|
|
26716
26737
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
26717
26738
|
/** 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`. */
|
|
26718
26739
|
hvac_mode_setting?:
|
|
26719
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
26740
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
26720
26741
|
| undefined
|
|
26721
26742
|
/** 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). */
|
|
26722
26743
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -28167,7 +28188,7 @@ export interface Routes {
|
|
|
28167
28188
|
relative_humidity?: number | undefined
|
|
28168
28189
|
/** HVAC mode settings that the thermostat supports. */
|
|
28169
28190
|
available_hvac_mode_settings?:
|
|
28170
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
28191
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
28171
28192
|
| undefined
|
|
28172
28193
|
/** Fan mode settings that the thermostat supports. */
|
|
28173
28194
|
available_fan_mode_settings?:
|
|
@@ -28227,7 +28248,10 @@ export interface Routes {
|
|
|
28227
28248
|
| undefined
|
|
28228
28249
|
/** 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`. */
|
|
28229
28250
|
hvac_mode_setting?:
|
|
28230
|
-
| (
|
|
28251
|
+
| (
|
|
28252
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
28253
|
+
| undefined
|
|
28254
|
+
)
|
|
28231
28255
|
| undefined
|
|
28232
28256
|
/** 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). */
|
|
28233
28257
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -28300,7 +28324,10 @@ export interface Routes {
|
|
|
28300
28324
|
| undefined
|
|
28301
28325
|
/** 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`. */
|
|
28302
28326
|
hvac_mode_setting?:
|
|
28303
|
-
| (
|
|
28327
|
+
| (
|
|
28328
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
28329
|
+
| undefined
|
|
28330
|
+
)
|
|
28304
28331
|
| undefined
|
|
28305
28332
|
/** 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). */
|
|
28306
28333
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -28367,7 +28394,7 @@ export interface Routes {
|
|
|
28367
28394
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
28368
28395
|
/** 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`. */
|
|
28369
28396
|
hvac_mode_setting?:
|
|
28370
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
28397
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
28371
28398
|
| undefined
|
|
28372
28399
|
/** 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). */
|
|
28373
28400
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -32007,7 +32034,10 @@ export interface Routes {
|
|
|
32007
32034
|
| undefined
|
|
32008
32035
|
/** 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`. */
|
|
32009
32036
|
hvac_mode_setting?:
|
|
32010
|
-
| (
|
|
32037
|
+
| (
|
|
32038
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
32039
|
+
| undefined
|
|
32040
|
+
)
|
|
32011
32041
|
| undefined
|
|
32012
32042
|
/** 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). */
|
|
32013
32043
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -34165,7 +34195,7 @@ export interface Routes {
|
|
|
34165
34195
|
| undefined
|
|
34166
34196
|
/** 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`. */
|
|
34167
34197
|
hvac_mode_setting?:
|
|
34168
|
-
| (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
|
|
34198
|
+
| (('off' | 'heat' | 'cool' | 'heat_cool' | 'eco') | undefined)
|
|
34169
34199
|
| undefined
|
|
34170
34200
|
/** 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). */
|
|
34171
34201
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -35117,7 +35147,7 @@ export interface Routes {
|
|
|
35117
35147
|
relative_humidity?: number | undefined
|
|
35118
35148
|
/** HVAC mode settings that the thermostat supports. */
|
|
35119
35149
|
available_hvac_mode_settings?:
|
|
35120
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
35150
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
35121
35151
|
| undefined
|
|
35122
35152
|
/** Fan mode settings that the thermostat supports. */
|
|
35123
35153
|
available_fan_mode_settings?:
|
|
@@ -35177,7 +35207,10 @@ export interface Routes {
|
|
|
35177
35207
|
| undefined
|
|
35178
35208
|
/** 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`. */
|
|
35179
35209
|
hvac_mode_setting?:
|
|
35180
|
-
| (
|
|
35210
|
+
| (
|
|
35211
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
35212
|
+
| undefined
|
|
35213
|
+
)
|
|
35181
35214
|
| undefined
|
|
35182
35215
|
/** 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). */
|
|
35183
35216
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -35250,7 +35283,10 @@ export interface Routes {
|
|
|
35250
35283
|
| undefined
|
|
35251
35284
|
/** 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`. */
|
|
35252
35285
|
hvac_mode_setting?:
|
|
35253
|
-
| (
|
|
35286
|
+
| (
|
|
35287
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
35288
|
+
| undefined
|
|
35289
|
+
)
|
|
35254
35290
|
| undefined
|
|
35255
35291
|
/** 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). */
|
|
35256
35292
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -35317,7 +35353,7 @@ export interface Routes {
|
|
|
35317
35353
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
35318
35354
|
/** 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`. */
|
|
35319
35355
|
hvac_mode_setting?:
|
|
35320
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
35356
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
35321
35357
|
| undefined
|
|
35322
35358
|
/** 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). */
|
|
35323
35359
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -36564,7 +36600,7 @@ export interface Routes {
|
|
|
36564
36600
|
relative_humidity?: number | undefined
|
|
36565
36601
|
/** HVAC mode settings that the thermostat supports. */
|
|
36566
36602
|
available_hvac_mode_settings?:
|
|
36567
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
36603
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
36568
36604
|
| undefined
|
|
36569
36605
|
/** Fan mode settings that the thermostat supports. */
|
|
36570
36606
|
available_fan_mode_settings?:
|
|
@@ -36624,7 +36660,10 @@ export interface Routes {
|
|
|
36624
36660
|
| undefined
|
|
36625
36661
|
/** 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`. */
|
|
36626
36662
|
hvac_mode_setting?:
|
|
36627
|
-
| (
|
|
36663
|
+
| (
|
|
36664
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
36665
|
+
| undefined
|
|
36666
|
+
)
|
|
36628
36667
|
| undefined
|
|
36629
36668
|
/** 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). */
|
|
36630
36669
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -36697,7 +36736,10 @@ export interface Routes {
|
|
|
36697
36736
|
| undefined
|
|
36698
36737
|
/** 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`. */
|
|
36699
36738
|
hvac_mode_setting?:
|
|
36700
|
-
| (
|
|
36739
|
+
| (
|
|
36740
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
36741
|
+
| undefined
|
|
36742
|
+
)
|
|
36701
36743
|
| undefined
|
|
36702
36744
|
/** 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). */
|
|
36703
36745
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -36764,7 +36806,7 @@ export interface Routes {
|
|
|
36764
36806
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
36765
36807
|
/** 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`. */
|
|
36766
36808
|
hvac_mode_setting?:
|
|
36767
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
36809
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
36768
36810
|
| undefined
|
|
36769
36811
|
/** 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). */
|
|
36770
36812
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -38180,7 +38222,7 @@ export interface Routes {
|
|
|
38180
38222
|
relative_humidity?: number | undefined
|
|
38181
38223
|
/** HVAC mode settings that the thermostat supports. */
|
|
38182
38224
|
available_hvac_mode_settings?:
|
|
38183
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
38225
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
38184
38226
|
| undefined
|
|
38185
38227
|
/** Fan mode settings that the thermostat supports. */
|
|
38186
38228
|
available_fan_mode_settings?:
|
|
@@ -38240,7 +38282,10 @@ export interface Routes {
|
|
|
38240
38282
|
| undefined
|
|
38241
38283
|
/** 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`. */
|
|
38242
38284
|
hvac_mode_setting?:
|
|
38243
|
-
| (
|
|
38285
|
+
| (
|
|
38286
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
38287
|
+
| undefined
|
|
38288
|
+
)
|
|
38244
38289
|
| undefined
|
|
38245
38290
|
/** 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). */
|
|
38246
38291
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -38313,7 +38358,10 @@ export interface Routes {
|
|
|
38313
38358
|
| undefined
|
|
38314
38359
|
/** 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`. */
|
|
38315
38360
|
hvac_mode_setting?:
|
|
38316
|
-
| (
|
|
38361
|
+
| (
|
|
38362
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
38363
|
+
| undefined
|
|
38364
|
+
)
|
|
38317
38365
|
| undefined
|
|
38318
38366
|
/** 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). */
|
|
38319
38367
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -38380,7 +38428,7 @@ export interface Routes {
|
|
|
38380
38428
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
38381
38429
|
/** 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`. */
|
|
38382
38430
|
hvac_mode_setting?:
|
|
38383
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
38431
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
38384
38432
|
| undefined
|
|
38385
38433
|
/** 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). */
|
|
38386
38434
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -39626,7 +39674,7 @@ export interface Routes {
|
|
|
39626
39674
|
relative_humidity?: number | undefined
|
|
39627
39675
|
/** HVAC mode settings that the thermostat supports. */
|
|
39628
39676
|
available_hvac_mode_settings?:
|
|
39629
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
39677
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
39630
39678
|
| undefined
|
|
39631
39679
|
/** Fan mode settings that the thermostat supports. */
|
|
39632
39680
|
available_fan_mode_settings?:
|
|
@@ -39686,7 +39734,10 @@ export interface Routes {
|
|
|
39686
39734
|
| undefined
|
|
39687
39735
|
/** 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`. */
|
|
39688
39736
|
hvac_mode_setting?:
|
|
39689
|
-
| (
|
|
39737
|
+
| (
|
|
39738
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
39739
|
+
| undefined
|
|
39740
|
+
)
|
|
39690
39741
|
| undefined
|
|
39691
39742
|
/** 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). */
|
|
39692
39743
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -39759,7 +39810,10 @@ export interface Routes {
|
|
|
39759
39810
|
| undefined
|
|
39760
39811
|
/** 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`. */
|
|
39761
39812
|
hvac_mode_setting?:
|
|
39762
|
-
| (
|
|
39813
|
+
| (
|
|
39814
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
39815
|
+
| undefined
|
|
39816
|
+
)
|
|
39763
39817
|
| undefined
|
|
39764
39818
|
/** 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). */
|
|
39765
39819
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -39826,7 +39880,7 @@ export interface Routes {
|
|
|
39826
39880
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
39827
39881
|
/** 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`. */
|
|
39828
39882
|
hvac_mode_setting?:
|
|
39829
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
39883
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
39830
39884
|
| undefined
|
|
39831
39885
|
/** 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). */
|
|
39832
39886
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -46950,7 +47004,7 @@ export interface Routes {
|
|
|
46950
47004
|
relative_humidity?: number | undefined
|
|
46951
47005
|
/** HVAC mode settings that the thermostat supports. */
|
|
46952
47006
|
available_hvac_mode_settings?:
|
|
46953
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
47007
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
46954
47008
|
| undefined
|
|
46955
47009
|
/** Fan mode settings that the thermostat supports. */
|
|
46956
47010
|
available_fan_mode_settings?:
|
|
@@ -47010,7 +47064,10 @@ export interface Routes {
|
|
|
47010
47064
|
| undefined
|
|
47011
47065
|
/** 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`. */
|
|
47012
47066
|
hvac_mode_setting?:
|
|
47013
|
-
| (
|
|
47067
|
+
| (
|
|
47068
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
47069
|
+
| undefined
|
|
47070
|
+
)
|
|
47014
47071
|
| undefined
|
|
47015
47072
|
/** 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). */
|
|
47016
47073
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -47083,7 +47140,10 @@ export interface Routes {
|
|
|
47083
47140
|
| undefined
|
|
47084
47141
|
/** 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`. */
|
|
47085
47142
|
hvac_mode_setting?:
|
|
47086
|
-
| (
|
|
47143
|
+
| (
|
|
47144
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
47145
|
+
| undefined
|
|
47146
|
+
)
|
|
47087
47147
|
| undefined
|
|
47088
47148
|
/** 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). */
|
|
47089
47149
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -47150,7 +47210,7 @@ export interface Routes {
|
|
|
47150
47210
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
47151
47211
|
/** 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`. */
|
|
47152
47212
|
hvac_mode_setting?:
|
|
47153
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
47213
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
47154
47214
|
| undefined
|
|
47155
47215
|
/** 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). */
|
|
47156
47216
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -48396,7 +48456,7 @@ export interface Routes {
|
|
|
48396
48456
|
relative_humidity?: number | undefined
|
|
48397
48457
|
/** HVAC mode settings that the thermostat supports. */
|
|
48398
48458
|
available_hvac_mode_settings?:
|
|
48399
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
48459
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
48400
48460
|
| undefined
|
|
48401
48461
|
/** Fan mode settings that the thermostat supports. */
|
|
48402
48462
|
available_fan_mode_settings?:
|
|
@@ -48456,7 +48516,10 @@ export interface Routes {
|
|
|
48456
48516
|
| undefined
|
|
48457
48517
|
/** 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`. */
|
|
48458
48518
|
hvac_mode_setting?:
|
|
48459
|
-
| (
|
|
48519
|
+
| (
|
|
48520
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
48521
|
+
| undefined
|
|
48522
|
+
)
|
|
48460
48523
|
| undefined
|
|
48461
48524
|
/** 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). */
|
|
48462
48525
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -48529,7 +48592,10 @@ export interface Routes {
|
|
|
48529
48592
|
| undefined
|
|
48530
48593
|
/** 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`. */
|
|
48531
48594
|
hvac_mode_setting?:
|
|
48532
|
-
| (
|
|
48595
|
+
| (
|
|
48596
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
48597
|
+
| undefined
|
|
48598
|
+
)
|
|
48533
48599
|
| undefined
|
|
48534
48600
|
/** 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). */
|
|
48535
48601
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -48596,7 +48662,7 @@ export interface Routes {
|
|
|
48596
48662
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
48597
48663
|
/** 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`. */
|
|
48598
48664
|
hvac_mode_setting?:
|
|
48599
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
48665
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
48600
48666
|
| undefined
|
|
48601
48667
|
/** 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). */
|
|
48602
48668
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -54931,6 +54997,8 @@ export interface Routes {
|
|
|
54931
54997
|
jsonBody: {
|
|
54932
54998
|
/** Name of the space that you want to create. */
|
|
54933
54999
|
name: string
|
|
55000
|
+
/** Unique key for the space within the workspace. */
|
|
55001
|
+
space_key?: string | undefined
|
|
54934
55002
|
/** IDs of the devices that you want to add to the new space. */
|
|
54935
55003
|
device_ids?: string[] | undefined
|
|
54936
55004
|
/** IDs of the entrances that you want to add to the new space. */
|
|
@@ -54945,6 +55013,8 @@ export interface Routes {
|
|
|
54945
55013
|
space_id: string
|
|
54946
55014
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
54947
55015
|
workspace_id: string
|
|
55016
|
+
/** Unique key for the space within the workspace. */
|
|
55017
|
+
space_key?: string | undefined
|
|
54948
55018
|
/** Name of the space. */
|
|
54949
55019
|
name: string
|
|
54950
55020
|
/** Display name for the space. */
|
|
@@ -54975,10 +55045,15 @@ export interface Routes {
|
|
|
54975
55045
|
method: 'GET' | 'POST'
|
|
54976
55046
|
queryParams: {}
|
|
54977
55047
|
jsonBody: {}
|
|
54978
|
-
commonParams:
|
|
54979
|
-
|
|
54980
|
-
|
|
54981
|
-
|
|
55048
|
+
commonParams:
|
|
55049
|
+
| {
|
|
55050
|
+
/** ID of the space that you want to get. */
|
|
55051
|
+
space_id: string
|
|
55052
|
+
}
|
|
55053
|
+
| {
|
|
55054
|
+
/** Unique key of the space that you want to get. */
|
|
55055
|
+
space_key: string
|
|
55056
|
+
}
|
|
54982
55057
|
formData: {}
|
|
54983
55058
|
jsonResponse: {
|
|
54984
55059
|
/** Represents a space that is a logical grouping of devices and entrances. You can assign access to an entire space, thereby making granting access more efficient. */
|
|
@@ -54987,6 +55062,8 @@ export interface Routes {
|
|
|
54987
55062
|
space_id: string
|
|
54988
55063
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
54989
55064
|
workspace_id: string
|
|
55065
|
+
/** Unique key for the space within the workspace. */
|
|
55066
|
+
space_key?: string | undefined
|
|
54990
55067
|
/** Name of the space. */
|
|
54991
55068
|
name: string
|
|
54992
55069
|
/** Display name for the space. */
|
|
@@ -55022,6 +55099,8 @@ export interface Routes {
|
|
|
55022
55099
|
space_id: string
|
|
55023
55100
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
55024
55101
|
workspace_id: string
|
|
55102
|
+
/** Unique key for the space within the workspace. */
|
|
55103
|
+
space_key?: string | undefined
|
|
55025
55104
|
/** Name of the space. */
|
|
55026
55105
|
name: string
|
|
55027
55106
|
/** Display name for the space. */
|
|
@@ -55780,7 +55859,7 @@ export interface Routes {
|
|
|
55780
55859
|
relative_humidity?: number | undefined
|
|
55781
55860
|
/** HVAC mode settings that the thermostat supports. */
|
|
55782
55861
|
available_hvac_mode_settings?:
|
|
55783
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
55862
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
55784
55863
|
| undefined
|
|
55785
55864
|
/** Fan mode settings that the thermostat supports. */
|
|
55786
55865
|
available_fan_mode_settings?:
|
|
@@ -55846,7 +55925,7 @@ export interface Routes {
|
|
|
55846
55925
|
/** 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`. */
|
|
55847
55926
|
hvac_mode_setting?:
|
|
55848
55927
|
| (
|
|
55849
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
55928
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
55850
55929
|
| undefined
|
|
55851
55930
|
)
|
|
55852
55931
|
| undefined
|
|
@@ -55926,7 +56005,7 @@ export interface Routes {
|
|
|
55926
56005
|
/** 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`. */
|
|
55927
56006
|
hvac_mode_setting?:
|
|
55928
56007
|
| (
|
|
55929
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
56008
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
55930
56009
|
| undefined
|
|
55931
56010
|
)
|
|
55932
56011
|
| undefined
|
|
@@ -56001,7 +56080,7 @@ export interface Routes {
|
|
|
56001
56080
|
| undefined
|
|
56002
56081
|
/** 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`. */
|
|
56003
56082
|
hvac_mode_setting?:
|
|
56004
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
56083
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
56005
56084
|
| undefined
|
|
56006
56085
|
/** 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). */
|
|
56007
56086
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -56644,6 +56723,8 @@ export interface Routes {
|
|
|
56644
56723
|
commonParams: {
|
|
56645
56724
|
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
|
|
56646
56725
|
search?: string | undefined
|
|
56726
|
+
/** Filter spaces by space_key. */
|
|
56727
|
+
space_key?: string | undefined
|
|
56647
56728
|
}
|
|
56648
56729
|
formData: {}
|
|
56649
56730
|
jsonResponse: {
|
|
@@ -56652,6 +56733,8 @@ export interface Routes {
|
|
|
56652
56733
|
space_id: string
|
|
56653
56734
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
56654
56735
|
workspace_id: string
|
|
56736
|
+
/** Unique key for the space within the workspace. */
|
|
56737
|
+
space_key?: string | undefined
|
|
56655
56738
|
/** Name of the space. */
|
|
56656
56739
|
name: string
|
|
56657
56740
|
/** Display name for the space. */
|
|
@@ -56712,6 +56795,8 @@ export interface Routes {
|
|
|
56712
56795
|
space_id: string
|
|
56713
56796
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the space. */
|
|
56714
56797
|
workspace_id: string
|
|
56798
|
+
/** Unique key for the space within the workspace. */
|
|
56799
|
+
space_key?: string | undefined
|
|
56715
56800
|
/** Name of the space. */
|
|
56716
56801
|
name: string
|
|
56717
56802
|
/** Display name for the space. */
|
|
@@ -59634,7 +59719,9 @@ export interface Routes {
|
|
|
59634
59719
|
/** 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`. */
|
|
59635
59720
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
59636
59721
|
/** 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`. */
|
|
59637
|
-
hvac_mode_setting?:
|
|
59722
|
+
hvac_mode_setting?:
|
|
59723
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
59724
|
+
| undefined
|
|
59638
59725
|
/** 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). */
|
|
59639
59726
|
cooling_set_point_celsius?: number | undefined
|
|
59640
59727
|
/** 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). */
|
|
@@ -61932,7 +62019,7 @@ export interface Routes {
|
|
|
61932
62019
|
relative_humidity?: number | undefined
|
|
61933
62020
|
/** HVAC mode settings that the thermostat supports. */
|
|
61934
62021
|
available_hvac_mode_settings?:
|
|
61935
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
62022
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
61936
62023
|
| undefined
|
|
61937
62024
|
/** Fan mode settings that the thermostat supports. */
|
|
61938
62025
|
available_fan_mode_settings?:
|
|
@@ -61992,7 +62079,10 @@ export interface Routes {
|
|
|
61992
62079
|
| undefined
|
|
61993
62080
|
/** 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`. */
|
|
61994
62081
|
hvac_mode_setting?:
|
|
61995
|
-
| (
|
|
62082
|
+
| (
|
|
62083
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
62084
|
+
| undefined
|
|
62085
|
+
)
|
|
61996
62086
|
| undefined
|
|
61997
62087
|
/** 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). */
|
|
61998
62088
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -62065,7 +62155,10 @@ export interface Routes {
|
|
|
62065
62155
|
| undefined
|
|
62066
62156
|
/** 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`. */
|
|
62067
62157
|
hvac_mode_setting?:
|
|
62068
|
-
| (
|
|
62158
|
+
| (
|
|
62159
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
62160
|
+
| undefined
|
|
62161
|
+
)
|
|
62069
62162
|
| undefined
|
|
62070
62163
|
/** 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). */
|
|
62071
62164
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -62132,7 +62225,7 @@ export interface Routes {
|
|
|
62132
62225
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
62133
62226
|
/** 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`. */
|
|
62134
62227
|
hvac_mode_setting?:
|
|
62135
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
62228
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
62136
62229
|
| undefined
|
|
62137
62230
|
/** 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). */
|
|
62138
62231
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -66378,7 +66471,7 @@ export interface Routes {
|
|
|
66378
66471
|
relative_humidity?: number | undefined
|
|
66379
66472
|
/** HVAC mode settings that the thermostat supports. */
|
|
66380
66473
|
available_hvac_mode_settings?:
|
|
66381
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
66474
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
66382
66475
|
| undefined
|
|
66383
66476
|
/** Fan mode settings that the thermostat supports. */
|
|
66384
66477
|
available_fan_mode_settings?:
|
|
@@ -66438,7 +66531,10 @@ export interface Routes {
|
|
|
66438
66531
|
| undefined
|
|
66439
66532
|
/** 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`. */
|
|
66440
66533
|
hvac_mode_setting?:
|
|
66441
|
-
| (
|
|
66534
|
+
| (
|
|
66535
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
66536
|
+
| undefined
|
|
66537
|
+
)
|
|
66442
66538
|
| undefined
|
|
66443
66539
|
/** 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). */
|
|
66444
66540
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -66511,7 +66607,10 @@ export interface Routes {
|
|
|
66511
66607
|
| undefined
|
|
66512
66608
|
/** 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`. */
|
|
66513
66609
|
hvac_mode_setting?:
|
|
66514
|
-
| (
|
|
66610
|
+
| (
|
|
66611
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
66612
|
+
| undefined
|
|
66613
|
+
)
|
|
66515
66614
|
| undefined
|
|
66516
66615
|
/** 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). */
|
|
66517
66616
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -66578,7 +66677,7 @@ export interface Routes {
|
|
|
66578
66677
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
66579
66678
|
/** 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`. */
|
|
66580
66679
|
hvac_mode_setting?:
|
|
66581
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
66680
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
66582
66681
|
| undefined
|
|
66583
66682
|
/** 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). */
|
|
66584
66683
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -67824,7 +67923,7 @@ export interface Routes {
|
|
|
67824
67923
|
relative_humidity?: number | undefined
|
|
67825
67924
|
/** HVAC mode settings that the thermostat supports. */
|
|
67826
67925
|
available_hvac_mode_settings?:
|
|
67827
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
67926
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
67828
67927
|
| undefined
|
|
67829
67928
|
/** Fan mode settings that the thermostat supports. */
|
|
67830
67929
|
available_fan_mode_settings?:
|
|
@@ -67884,7 +67983,10 @@ export interface Routes {
|
|
|
67884
67983
|
| undefined
|
|
67885
67984
|
/** 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`. */
|
|
67886
67985
|
hvac_mode_setting?:
|
|
67887
|
-
| (
|
|
67986
|
+
| (
|
|
67987
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
67988
|
+
| undefined
|
|
67989
|
+
)
|
|
67888
67990
|
| undefined
|
|
67889
67991
|
/** 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). */
|
|
67890
67992
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -67957,7 +68059,10 @@ export interface Routes {
|
|
|
67957
68059
|
| undefined
|
|
67958
68060
|
/** 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`. */
|
|
67959
68061
|
hvac_mode_setting?:
|
|
67960
|
-
| (
|
|
68062
|
+
| (
|
|
68063
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
68064
|
+
| undefined
|
|
68065
|
+
)
|
|
67961
68066
|
| undefined
|
|
67962
68067
|
/** 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). */
|
|
67963
68068
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -68024,7 +68129,7 @@ export interface Routes {
|
|
|
68024
68129
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
68025
68130
|
/** 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`. */
|
|
68026
68131
|
hvac_mode_setting?:
|
|
68027
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
68132
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
68028
68133
|
| undefined
|
|
68029
68134
|
/** 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). */
|
|
68030
68135
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -73187,7 +73292,9 @@ export interface Routes {
|
|
|
73187
73292
|
/** 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`. */
|
|
73188
73293
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
73189
73294
|
/** 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`. */
|
|
73190
|
-
hvac_mode_setting?:
|
|
73295
|
+
hvac_mode_setting?:
|
|
73296
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
73297
|
+
| undefined
|
|
73191
73298
|
/** 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). */
|
|
73192
73299
|
cooling_set_point_celsius?: number | undefined
|
|
73193
73300
|
/** 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). */
|
|
@@ -74730,6 +74837,8 @@ export interface Routes {
|
|
|
74730
74837
|
workspace_id: string
|
|
74731
74838
|
/** ID of the Access Grant. */
|
|
74732
74839
|
access_grant_id: string
|
|
74840
|
+
/** Unique key for the access grant within the workspace. */
|
|
74841
|
+
access_grant_key?: string | undefined
|
|
74733
74842
|
/** ID of user identity to which the Access Grant gives access. */
|
|
74734
74843
|
user_identity_id: string
|
|
74735
74844
|
/**
|
|
@@ -74792,6 +74901,8 @@ export interface Routes {
|
|
|
74792
74901
|
workspace_id: string
|
|
74793
74902
|
/** ID of the Access Grant. */
|
|
74794
74903
|
access_grant_id: string
|
|
74904
|
+
/** Unique key for the access grant within the workspace. */
|
|
74905
|
+
access_grant_key?: string | undefined
|
|
74795
74906
|
/** ID of user identity to which the Access Grant gives access. */
|
|
74796
74907
|
user_identity_id: string
|
|
74797
74908
|
/**
|
|
@@ -74850,6 +74961,8 @@ export interface Routes {
|
|
|
74850
74961
|
workspace_id: string
|
|
74851
74962
|
/** ID of the Access Grant. */
|
|
74852
74963
|
access_grant_id: string
|
|
74964
|
+
/** Unique key for the access grant within the workspace. */
|
|
74965
|
+
access_grant_key?: string | undefined
|
|
74853
74966
|
/** ID of user identity to which the Access Grant gives access. */
|
|
74854
74967
|
user_identity_id: string
|
|
74855
74968
|
/**
|
|
@@ -76488,7 +76601,7 @@ export interface Routes {
|
|
|
76488
76601
|
relative_humidity?: number | undefined
|
|
76489
76602
|
/** HVAC mode settings that the thermostat supports. */
|
|
76490
76603
|
available_hvac_mode_settings?:
|
|
76491
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
76604
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
76492
76605
|
| undefined
|
|
76493
76606
|
/** Fan mode settings that the thermostat supports. */
|
|
76494
76607
|
available_fan_mode_settings?:
|
|
@@ -76548,7 +76661,10 @@ export interface Routes {
|
|
|
76548
76661
|
| undefined
|
|
76549
76662
|
/** 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`. */
|
|
76550
76663
|
hvac_mode_setting?:
|
|
76551
|
-
| (
|
|
76664
|
+
| (
|
|
76665
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
76666
|
+
| undefined
|
|
76667
|
+
)
|
|
76552
76668
|
| undefined
|
|
76553
76669
|
/** 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). */
|
|
76554
76670
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -76621,7 +76737,10 @@ export interface Routes {
|
|
|
76621
76737
|
| undefined
|
|
76622
76738
|
/** 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`. */
|
|
76623
76739
|
hvac_mode_setting?:
|
|
76624
|
-
| (
|
|
76740
|
+
| (
|
|
76741
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
76742
|
+
| undefined
|
|
76743
|
+
)
|
|
76625
76744
|
| undefined
|
|
76626
76745
|
/** 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). */
|
|
76627
76746
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -76688,7 +76807,7 @@ export interface Routes {
|
|
|
76688
76807
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
76689
76808
|
/** 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`. */
|
|
76690
76809
|
hvac_mode_setting?:
|
|
76691
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
76810
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
76692
76811
|
| undefined
|
|
76693
76812
|
/** 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). */
|
|
76694
76813
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -77936,7 +78055,7 @@ export interface Routes {
|
|
|
77936
78055
|
relative_humidity?: number | undefined
|
|
77937
78056
|
/** HVAC mode settings that the thermostat supports. */
|
|
77938
78057
|
available_hvac_mode_settings?:
|
|
77939
|
-
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
78058
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool' | 'eco'>
|
|
77940
78059
|
| undefined
|
|
77941
78060
|
/** Fan mode settings that the thermostat supports. */
|
|
77942
78061
|
available_fan_mode_settings?:
|
|
@@ -77996,7 +78115,10 @@ export interface Routes {
|
|
|
77996
78115
|
| undefined
|
|
77997
78116
|
/** 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`. */
|
|
77998
78117
|
hvac_mode_setting?:
|
|
77999
|
-
| (
|
|
78118
|
+
| (
|
|
78119
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
78120
|
+
| undefined
|
|
78121
|
+
)
|
|
78000
78122
|
| undefined
|
|
78001
78123
|
/** 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). */
|
|
78002
78124
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -78069,7 +78191,10 @@ export interface Routes {
|
|
|
78069
78191
|
| undefined
|
|
78070
78192
|
/** 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`. */
|
|
78071
78193
|
hvac_mode_setting?:
|
|
78072
|
-
| (
|
|
78194
|
+
| (
|
|
78195
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
78196
|
+
| undefined
|
|
78197
|
+
)
|
|
78073
78198
|
| undefined
|
|
78074
78199
|
/** 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). */
|
|
78075
78200
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
@@ -78136,7 +78261,7 @@ export interface Routes {
|
|
|
78136
78261
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
78137
78262
|
/** 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`. */
|
|
78138
78263
|
hvac_mode_setting?:
|
|
78139
|
-
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
78264
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool' | 'eco')
|
|
78140
78265
|
| undefined
|
|
78141
78266
|
/** 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). */
|
|
78142
78267
|
cooling_set_point_celsius?: number | undefined
|