@seamapi/types 1.396.0 → 1.397.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 +102 -94
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +113 -106
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +0 -53
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +0 -23
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +3 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/thermostat-program.js +16 -6
- package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -5
- package/lib/seam/connect/openapi.js +72 -56
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +97 -95
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +0 -35
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +29 -15
- package/src/lib/seam/connect/openapi.ts +111 -56
- package/src/lib/seam/connect/route-types.ts +97 -74
|
@@ -22161,6 +22161,7 @@ export interface Routes {
|
|
|
22161
22161
|
| 'honeywell_resideo_thermostat'
|
|
22162
22162
|
| 'tado_thermostat'
|
|
22163
22163
|
| 'sensi_thermostat'
|
|
22164
|
+
| 'smartthings_thermostat'
|
|
22164
22165
|
)
|
|
22165
22166
|
| ('ios_phone' | 'android_phone')
|
|
22166
22167
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -22795,15 +22796,15 @@ export interface Routes {
|
|
|
22795
22796
|
| Array<{
|
|
22796
22797
|
/** ID of the thermostat daily program. */
|
|
22797
22798
|
thermostat_daily_program_id: string
|
|
22798
|
-
/** ID of the
|
|
22799
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
22799
22800
|
device_id: string
|
|
22800
22801
|
/** User-friendly name to identify the thermostat daily program. */
|
|
22801
22802
|
name: string | null
|
|
22802
22803
|
/** Array of thermostat daily program periods. */
|
|
22803
22804
|
periods: Array<{
|
|
22804
|
-
/** Time at which the thermostat daily program
|
|
22805
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
22805
22806
|
starts_at_time: string
|
|
22806
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
22807
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
22807
22808
|
climate_preset_key: string
|
|
22808
22809
|
}>
|
|
22809
22810
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -23160,6 +23161,7 @@ export interface Routes {
|
|
|
23160
23161
|
| 'honeywell_resideo_thermostat'
|
|
23161
23162
|
| 'tado_thermostat'
|
|
23162
23163
|
| 'sensi_thermostat'
|
|
23164
|
+
| 'smartthings_thermostat'
|
|
23163
23165
|
)
|
|
23164
23166
|
| ('ios_phone' | 'android_phone')
|
|
23165
23167
|
)
|
|
@@ -23203,6 +23205,7 @@ export interface Routes {
|
|
|
23203
23205
|
| 'honeywell_resideo_thermostat'
|
|
23204
23206
|
| 'tado_thermostat'
|
|
23205
23207
|
| 'sensi_thermostat'
|
|
23208
|
+
| 'smartthings_thermostat'
|
|
23206
23209
|
)
|
|
23207
23210
|
| ('ios_phone' | 'android_phone')
|
|
23208
23211
|
>
|
|
@@ -23340,6 +23343,7 @@ export interface Routes {
|
|
|
23340
23343
|
| 'honeywell_resideo_thermostat'
|
|
23341
23344
|
| 'tado_thermostat'
|
|
23342
23345
|
| 'sensi_thermostat'
|
|
23346
|
+
| 'smartthings_thermostat'
|
|
23343
23347
|
)
|
|
23344
23348
|
| ('ios_phone' | 'android_phone')
|
|
23345
23349
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -23974,15 +23978,15 @@ export interface Routes {
|
|
|
23974
23978
|
| Array<{
|
|
23975
23979
|
/** ID of the thermostat daily program. */
|
|
23976
23980
|
thermostat_daily_program_id: string
|
|
23977
|
-
/** ID of the
|
|
23981
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
23978
23982
|
device_id: string
|
|
23979
23983
|
/** User-friendly name to identify the thermostat daily program. */
|
|
23980
23984
|
name: string | null
|
|
23981
23985
|
/** Array of thermostat daily program periods. */
|
|
23982
23986
|
periods: Array<{
|
|
23983
|
-
/** Time at which the thermostat daily program
|
|
23987
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
23984
23988
|
starts_at_time: string
|
|
23985
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
23989
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
23986
23990
|
climate_preset_key: string
|
|
23987
23991
|
}>
|
|
23988
23992
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -24472,6 +24476,7 @@ export interface Routes {
|
|
|
24472
24476
|
| 'honeywell_resideo_thermostat'
|
|
24473
24477
|
| 'tado_thermostat'
|
|
24474
24478
|
| 'sensi_thermostat'
|
|
24479
|
+
| 'smartthings_thermostat'
|
|
24475
24480
|
)
|
|
24476
24481
|
| ('ios_phone' | 'android_phone')
|
|
24477
24482
|
/** Unique identifier for the account associated with the device. */
|
|
@@ -24838,6 +24843,7 @@ export interface Routes {
|
|
|
24838
24843
|
| 'honeywell_resideo_thermostat'
|
|
24839
24844
|
| 'tado_thermostat'
|
|
24840
24845
|
| 'sensi_thermostat'
|
|
24846
|
+
| 'smartthings_thermostat'
|
|
24841
24847
|
)
|
|
24842
24848
|
| ('ios_phone' | 'android_phone')
|
|
24843
24849
|
)
|
|
@@ -24881,6 +24887,7 @@ export interface Routes {
|
|
|
24881
24887
|
| 'honeywell_resideo_thermostat'
|
|
24882
24888
|
| 'tado_thermostat'
|
|
24883
24889
|
| 'sensi_thermostat'
|
|
24890
|
+
| 'smartthings_thermostat'
|
|
24884
24891
|
)
|
|
24885
24892
|
| ('ios_phone' | 'android_phone')
|
|
24886
24893
|
>
|
|
@@ -25018,6 +25025,7 @@ export interface Routes {
|
|
|
25018
25025
|
| 'honeywell_resideo_thermostat'
|
|
25019
25026
|
| 'tado_thermostat'
|
|
25020
25027
|
| 'sensi_thermostat'
|
|
25028
|
+
| 'smartthings_thermostat'
|
|
25021
25029
|
)
|
|
25022
25030
|
| ('ios_phone' | 'android_phone')
|
|
25023
25031
|
/** Unique identifier for the account associated with the device. */
|
|
@@ -28573,6 +28581,7 @@ export interface Routes {
|
|
|
28573
28581
|
| 'honeywell_resideo_thermostat'
|
|
28574
28582
|
| 'tado_thermostat'
|
|
28575
28583
|
| 'sensi_thermostat'
|
|
28584
|
+
| 'smartthings_thermostat'
|
|
28576
28585
|
)
|
|
28577
28586
|
| ('ios_phone' | 'android_phone')
|
|
28578
28587
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -29207,15 +29216,15 @@ export interface Routes {
|
|
|
29207
29216
|
| Array<{
|
|
29208
29217
|
/** ID of the thermostat daily program. */
|
|
29209
29218
|
thermostat_daily_program_id: string
|
|
29210
|
-
/** ID of the
|
|
29219
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
29211
29220
|
device_id: string
|
|
29212
29221
|
/** User-friendly name to identify the thermostat daily program. */
|
|
29213
29222
|
name: string | null
|
|
29214
29223
|
/** Array of thermostat daily program periods. */
|
|
29215
29224
|
periods: Array<{
|
|
29216
|
-
/** Time at which the thermostat daily program
|
|
29225
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29217
29226
|
starts_at_time: string
|
|
29218
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
29227
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
29219
29228
|
climate_preset_key: string
|
|
29220
29229
|
}>
|
|
29221
29230
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -29560,6 +29569,7 @@ export interface Routes {
|
|
|
29560
29569
|
| 'honeywell_resideo_thermostat'
|
|
29561
29570
|
| 'tado_thermostat'
|
|
29562
29571
|
| 'sensi_thermostat'
|
|
29572
|
+
| 'smartthings_thermostat'
|
|
29563
29573
|
)
|
|
29564
29574
|
| ('ios_phone' | 'android_phone')
|
|
29565
29575
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -30194,15 +30204,15 @@ export interface Routes {
|
|
|
30194
30204
|
| Array<{
|
|
30195
30205
|
/** ID of the thermostat daily program. */
|
|
30196
30206
|
thermostat_daily_program_id: string
|
|
30197
|
-
/** ID of the
|
|
30207
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
30198
30208
|
device_id: string
|
|
30199
30209
|
/** User-friendly name to identify the thermostat daily program. */
|
|
30200
30210
|
name: string | null
|
|
30201
30211
|
/** Array of thermostat daily program periods. */
|
|
30202
30212
|
periods: Array<{
|
|
30203
|
-
/** Time at which the thermostat daily program
|
|
30213
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
30204
30214
|
starts_at_time: string
|
|
30205
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
30215
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
30206
30216
|
climate_preset_key: string
|
|
30207
30217
|
}>
|
|
30208
30218
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -30706,6 +30716,7 @@ export interface Routes {
|
|
|
30706
30716
|
| 'honeywell_resideo_thermostat'
|
|
30707
30717
|
| 'tado_thermostat'
|
|
30708
30718
|
| 'sensi_thermostat'
|
|
30719
|
+
| 'smartthings_thermostat'
|
|
30709
30720
|
)
|
|
30710
30721
|
| ('ios_phone' | 'android_phone')
|
|
30711
30722
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -31340,15 +31351,15 @@ export interface Routes {
|
|
|
31340
31351
|
| Array<{
|
|
31341
31352
|
/** ID of the thermostat daily program. */
|
|
31342
31353
|
thermostat_daily_program_id: string
|
|
31343
|
-
/** ID of the
|
|
31354
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
31344
31355
|
device_id: string
|
|
31345
31356
|
/** User-friendly name to identify the thermostat daily program. */
|
|
31346
31357
|
name: string | null
|
|
31347
31358
|
/** Array of thermostat daily program periods. */
|
|
31348
31359
|
periods: Array<{
|
|
31349
|
-
/** Time at which the thermostat daily program
|
|
31360
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
31350
31361
|
starts_at_time: string
|
|
31351
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
31362
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
31352
31363
|
climate_preset_key: string
|
|
31353
31364
|
}>
|
|
31354
31365
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -31692,6 +31703,7 @@ export interface Routes {
|
|
|
31692
31703
|
| 'honeywell_resideo_thermostat'
|
|
31693
31704
|
| 'tado_thermostat'
|
|
31694
31705
|
| 'sensi_thermostat'
|
|
31706
|
+
| 'smartthings_thermostat'
|
|
31695
31707
|
)
|
|
31696
31708
|
| ('ios_phone' | 'android_phone')
|
|
31697
31709
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -32326,15 +32338,15 @@ export interface Routes {
|
|
|
32326
32338
|
| Array<{
|
|
32327
32339
|
/** ID of the thermostat daily program. */
|
|
32328
32340
|
thermostat_daily_program_id: string
|
|
32329
|
-
/** ID of the
|
|
32341
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
32330
32342
|
device_id: string
|
|
32331
32343
|
/** User-friendly name to identify the thermostat daily program. */
|
|
32332
32344
|
name: string | null
|
|
32333
32345
|
/** Array of thermostat daily program periods. */
|
|
32334
32346
|
periods: Array<{
|
|
32335
|
-
/** Time at which the thermostat daily program
|
|
32347
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
32336
32348
|
starts_at_time: string
|
|
32337
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
32349
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
32338
32350
|
climate_preset_key: string
|
|
32339
32351
|
}>
|
|
32340
32352
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -38004,6 +38016,7 @@ export interface Routes {
|
|
|
38004
38016
|
| 'honeywell_resideo_thermostat'
|
|
38005
38017
|
| 'tado_thermostat'
|
|
38006
38018
|
| 'sensi_thermostat'
|
|
38019
|
+
| 'smartthings_thermostat'
|
|
38007
38020
|
)
|
|
38008
38021
|
| ('ios_phone' | 'android_phone')
|
|
38009
38022
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -38638,15 +38651,15 @@ export interface Routes {
|
|
|
38638
38651
|
| Array<{
|
|
38639
38652
|
/** ID of the thermostat daily program. */
|
|
38640
38653
|
thermostat_daily_program_id: string
|
|
38641
|
-
/** ID of the
|
|
38654
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
38642
38655
|
device_id: string
|
|
38643
38656
|
/** User-friendly name to identify the thermostat daily program. */
|
|
38644
38657
|
name: string | null
|
|
38645
38658
|
/** Array of thermostat daily program periods. */
|
|
38646
38659
|
periods: Array<{
|
|
38647
|
-
/** Time at which the thermostat daily program
|
|
38660
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
38648
38661
|
starts_at_time: string
|
|
38649
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
38662
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
38650
38663
|
climate_preset_key: string
|
|
38651
38664
|
}>
|
|
38652
38665
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -38990,6 +39003,7 @@ export interface Routes {
|
|
|
38990
39003
|
| 'honeywell_resideo_thermostat'
|
|
38991
39004
|
| 'tado_thermostat'
|
|
38992
39005
|
| 'sensi_thermostat'
|
|
39006
|
+
| 'smartthings_thermostat'
|
|
38993
39007
|
)
|
|
38994
39008
|
| ('ios_phone' | 'android_phone')
|
|
38995
39009
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -39624,15 +39638,15 @@ export interface Routes {
|
|
|
39624
39638
|
| Array<{
|
|
39625
39639
|
/** ID of the thermostat daily program. */
|
|
39626
39640
|
thermostat_daily_program_id: string
|
|
39627
|
-
/** ID of the
|
|
39641
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
39628
39642
|
device_id: string
|
|
39629
39643
|
/** User-friendly name to identify the thermostat daily program. */
|
|
39630
39644
|
name: string | null
|
|
39631
39645
|
/** Array of thermostat daily program periods. */
|
|
39632
39646
|
periods: Array<{
|
|
39633
|
-
/** Time at which the thermostat daily program
|
|
39647
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
39634
39648
|
starts_at_time: string
|
|
39635
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
39649
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
39636
39650
|
climate_preset_key: string
|
|
39637
39651
|
}>
|
|
39638
39652
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -44578,9 +44592,9 @@ export interface Routes {
|
|
|
44578
44592
|
method: 'POST'
|
|
44579
44593
|
queryParams: {}
|
|
44580
44594
|
jsonBody: {
|
|
44581
|
-
/** ID of the
|
|
44595
|
+
/** ID of the thermostat device for which you want to activate a climate preset. */
|
|
44582
44596
|
device_id: string
|
|
44583
|
-
/** Climate preset key of the
|
|
44597
|
+
/** Climate preset key of the climate preset that you want to activate. */
|
|
44584
44598
|
climate_preset_key: string
|
|
44585
44599
|
}
|
|
44586
44600
|
commonParams: {}
|
|
@@ -45885,7 +45899,7 @@ export interface Routes {
|
|
|
45885
45899
|
method: 'POST'
|
|
45886
45900
|
queryParams: {}
|
|
45887
45901
|
jsonBody: {
|
|
45888
|
-
/** ID of the
|
|
45902
|
+
/** ID of the thermostat device that you want to set to cool mode. */
|
|
45889
45903
|
device_id: string
|
|
45890
45904
|
/** Desired [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `cooling_set_point` parameters. */
|
|
45891
45905
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -47196,7 +47210,7 @@ export interface Routes {
|
|
|
47196
47210
|
method: 'POST'
|
|
47197
47211
|
queryParams: {}
|
|
47198
47212
|
jsonBody: {
|
|
47199
|
-
/** ID of the
|
|
47213
|
+
/** ID of the thermostat device for which you want create a climate preset. */
|
|
47200
47214
|
device_id: string
|
|
47201
47215
|
/** Indicates whether a person at the thermostat or using the API can change the thermostat's settings.
|
|
47202
47216
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
@@ -47227,33 +47241,34 @@ export interface Routes {
|
|
|
47227
47241
|
method: 'POST'
|
|
47228
47242
|
queryParams: {}
|
|
47229
47243
|
jsonBody: {
|
|
47230
|
-
/** ID of the
|
|
47244
|
+
/** ID of the thermostat device for which you want to create a daily program. */
|
|
47231
47245
|
device_id: string
|
|
47232
47246
|
/** User-friendly name to identify the thermostat daily program. */
|
|
47233
47247
|
name?: string | undefined
|
|
47234
47248
|
/** Array of thermostat daily program periods. */
|
|
47235
47249
|
periods: Array<{
|
|
47236
|
-
/** Time at which the thermostat daily program
|
|
47250
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
47237
47251
|
starts_at_time: string
|
|
47238
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
47252
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
47239
47253
|
climate_preset_key: string
|
|
47240
47254
|
}>
|
|
47241
47255
|
}
|
|
47242
47256
|
commonParams: {}
|
|
47243
47257
|
formData: {}
|
|
47244
47258
|
jsonResponse: {
|
|
47259
|
+
/** Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time. */
|
|
47245
47260
|
thermostat_daily_program: {
|
|
47246
47261
|
/** ID of the thermostat daily program. */
|
|
47247
47262
|
thermostat_daily_program_id: string
|
|
47248
|
-
/** ID of the
|
|
47263
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
47249
47264
|
device_id: string
|
|
47250
47265
|
/** User-friendly name to identify the thermostat daily program. */
|
|
47251
47266
|
name: string | null
|
|
47252
47267
|
/** Array of thermostat daily program periods. */
|
|
47253
47268
|
periods: Array<{
|
|
47254
|
-
/** Time at which the thermostat daily program
|
|
47269
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
47255
47270
|
starts_at_time: string
|
|
47256
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
47271
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
47257
47272
|
climate_preset_key: string
|
|
47258
47273
|
}>
|
|
47259
47274
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -47269,7 +47284,7 @@ export interface Routes {
|
|
|
47269
47284
|
queryParams: {}
|
|
47270
47285
|
jsonBody: {}
|
|
47271
47286
|
commonParams: {
|
|
47272
|
-
/** ID of the
|
|
47287
|
+
/** ID of the thermostat daily program that you want to delete. */
|
|
47273
47288
|
thermostat_daily_program_id: string
|
|
47274
47289
|
}
|
|
47275
47290
|
formData: {}
|
|
@@ -47280,15 +47295,15 @@ export interface Routes {
|
|
|
47280
47295
|
method: 'PATCH' | 'POST'
|
|
47281
47296
|
queryParams: {}
|
|
47282
47297
|
jsonBody: {
|
|
47283
|
-
/** ID of the
|
|
47298
|
+
/** ID of the thermostat daily program that you want to update. */
|
|
47284
47299
|
thermostat_daily_program_id: string
|
|
47285
|
-
/** User-friendly name to identify the thermostat daily program. */
|
|
47300
|
+
/** User-friendly name to identify the thermostat daily program that you want to update. */
|
|
47286
47301
|
name?: string | undefined
|
|
47287
|
-
/** Array of thermostat daily program periods. */
|
|
47302
|
+
/** Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program. */
|
|
47288
47303
|
periods: Array<{
|
|
47289
|
-
/** Time at which the thermostat daily program
|
|
47304
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
47290
47305
|
starts_at_time: string
|
|
47291
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
47306
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
47292
47307
|
climate_preset_key: string
|
|
47293
47308
|
}>
|
|
47294
47309
|
}
|
|
@@ -48594,9 +48609,9 @@ export interface Routes {
|
|
|
48594
48609
|
method: 'POST' | 'DELETE'
|
|
48595
48610
|
queryParams: {}
|
|
48596
48611
|
jsonBody: {
|
|
48597
|
-
/** ID of the
|
|
48612
|
+
/** ID of the thermostat device for which you want to delete a climate preset. */
|
|
48598
48613
|
device_id: string
|
|
48599
|
-
/** Climate preset key of the
|
|
48614
|
+
/** Climate preset key of the climate preset that you want to delete. */
|
|
48600
48615
|
climate_preset_key: string
|
|
48601
48616
|
}
|
|
48602
48617
|
commonParams: {}
|
|
@@ -48609,9 +48624,9 @@ export interface Routes {
|
|
|
48609
48624
|
queryParams: {}
|
|
48610
48625
|
jsonBody: {}
|
|
48611
48626
|
commonParams: {
|
|
48612
|
-
/** ID of the
|
|
48627
|
+
/** ID of the thermostat device that you want to retrieve. */
|
|
48613
48628
|
device_id?: string | undefined
|
|
48614
|
-
/** User-friendly name of the
|
|
48629
|
+
/** User-friendly name of the thermostat device that you want to retrieve. */
|
|
48615
48630
|
name?: string | undefined
|
|
48616
48631
|
}
|
|
48617
48632
|
formData: {}
|
|
@@ -48658,6 +48673,7 @@ export interface Routes {
|
|
|
48658
48673
|
| 'honeywell_resideo_thermostat'
|
|
48659
48674
|
| 'tado_thermostat'
|
|
48660
48675
|
| 'sensi_thermostat'
|
|
48676
|
+
| 'smartthings_thermostat'
|
|
48661
48677
|
)
|
|
48662
48678
|
| ('ios_phone' | 'android_phone')
|
|
48663
48679
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -49292,15 +49308,15 @@ export interface Routes {
|
|
|
49292
49308
|
| Array<{
|
|
49293
49309
|
/** ID of the thermostat daily program. */
|
|
49294
49310
|
thermostat_daily_program_id: string
|
|
49295
|
-
/** ID of the
|
|
49311
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
49296
49312
|
device_id: string
|
|
49297
49313
|
/** User-friendly name to identify the thermostat daily program. */
|
|
49298
49314
|
name: string | null
|
|
49299
49315
|
/** Array of thermostat daily program periods. */
|
|
49300
49316
|
periods: Array<{
|
|
49301
|
-
/** Time at which the thermostat daily program
|
|
49317
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
49302
49318
|
starts_at_time: string
|
|
49303
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
49319
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
49304
49320
|
climate_preset_key: string
|
|
49305
49321
|
}>
|
|
49306
49322
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -49610,7 +49626,7 @@ export interface Routes {
|
|
|
49610
49626
|
method: 'POST'
|
|
49611
49627
|
queryParams: {}
|
|
49612
49628
|
jsonBody: {
|
|
49613
|
-
/** ID of the
|
|
49629
|
+
/** ID of the thermostat device that you want to set to heat mode. */
|
|
49614
49630
|
device_id: string
|
|
49615
49631
|
/** Desired [heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `heating_set_point` parameters. */
|
|
49616
49632
|
heating_set_point_celsius?: number | undefined
|
|
@@ -50921,7 +50937,7 @@ export interface Routes {
|
|
|
50921
50937
|
method: 'POST'
|
|
50922
50938
|
queryParams: {}
|
|
50923
50939
|
jsonBody: {
|
|
50924
|
-
/** ID of the
|
|
50940
|
+
/** ID of the thermostat device that you want to set to heat-cool mode. */
|
|
50925
50941
|
device_id: string
|
|
50926
50942
|
/** Desired [heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `heating_set_point` parameters. */
|
|
50927
50943
|
heating_set_point_celsius?: number | undefined
|
|
@@ -52244,7 +52260,7 @@ export interface Routes {
|
|
|
52244
52260
|
connected_account_ids?: string[] | undefined
|
|
52245
52261
|
/** ID of the Connect Webview by which to filter devices. */
|
|
52246
52262
|
connect_webview_id?: string | undefined
|
|
52247
|
-
/** Device type by which to filter devices. */
|
|
52263
|
+
/** Device type by which to filter thermostat devices. */
|
|
52248
52264
|
device_type?:
|
|
52249
52265
|
| (
|
|
52250
52266
|
| 'ecobee_thermostat'
|
|
@@ -52252,9 +52268,10 @@ export interface Routes {
|
|
|
52252
52268
|
| 'honeywell_resideo_thermostat'
|
|
52253
52269
|
| 'tado_thermostat'
|
|
52254
52270
|
| 'sensi_thermostat'
|
|
52271
|
+
| 'smartthings_thermostat'
|
|
52255
52272
|
)
|
|
52256
52273
|
| undefined
|
|
52257
|
-
/** Array of device types by which to filter devices. */
|
|
52274
|
+
/** Array of device types by which to filter thermostat devices. */
|
|
52258
52275
|
device_types?:
|
|
52259
52276
|
| Array<
|
|
52260
52277
|
| 'ecobee_thermostat'
|
|
@@ -52262,9 +52279,10 @@ export interface Routes {
|
|
|
52262
52279
|
| 'honeywell_resideo_thermostat'
|
|
52263
52280
|
| 'tado_thermostat'
|
|
52264
52281
|
| 'sensi_thermostat'
|
|
52282
|
+
| 'smartthings_thermostat'
|
|
52265
52283
|
>
|
|
52266
52284
|
| undefined
|
|
52267
|
-
/** Manufacturer by which to filter devices. */
|
|
52285
|
+
/** Manufacturer by which to filter thermostat devices. */
|
|
52268
52286
|
manufacturer?:
|
|
52269
52287
|
| ('ecobee' | 'honeywell_resideo' | 'nest' | 'tado' | 'sensi')
|
|
52270
52288
|
| undefined
|
|
@@ -52358,6 +52376,7 @@ export interface Routes {
|
|
|
52358
52376
|
| 'honeywell_resideo_thermostat'
|
|
52359
52377
|
| 'tado_thermostat'
|
|
52360
52378
|
| 'sensi_thermostat'
|
|
52379
|
+
| 'smartthings_thermostat'
|
|
52361
52380
|
)
|
|
52362
52381
|
| ('ios_phone' | 'android_phone')
|
|
52363
52382
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -52992,15 +53011,15 @@ export interface Routes {
|
|
|
52992
53011
|
| Array<{
|
|
52993
53012
|
/** ID of the thermostat daily program. */
|
|
52994
53013
|
thermostat_daily_program_id: string
|
|
52995
|
-
/** ID of the
|
|
53014
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
52996
53015
|
device_id: string
|
|
52997
53016
|
/** User-friendly name to identify the thermostat daily program. */
|
|
52998
53017
|
name: string | null
|
|
52999
53018
|
/** Array of thermostat daily program periods. */
|
|
53000
53019
|
periods: Array<{
|
|
53001
|
-
/** Time at which the thermostat daily program
|
|
53020
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
53002
53021
|
starts_at_time: string
|
|
53003
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
53022
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
53004
53023
|
climate_preset_key: string
|
|
53005
53024
|
}>
|
|
53006
53025
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -53344,6 +53363,7 @@ export interface Routes {
|
|
|
53344
53363
|
| 'honeywell_resideo_thermostat'
|
|
53345
53364
|
| 'tado_thermostat'
|
|
53346
53365
|
| 'sensi_thermostat'
|
|
53366
|
+
| 'smartthings_thermostat'
|
|
53347
53367
|
)
|
|
53348
53368
|
| ('ios_phone' | 'android_phone')
|
|
53349
53369
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -53978,15 +53998,15 @@ export interface Routes {
|
|
|
53978
53998
|
| Array<{
|
|
53979
53999
|
/** ID of the thermostat daily program. */
|
|
53980
54000
|
thermostat_daily_program_id: string
|
|
53981
|
-
/** ID of the
|
|
54001
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
53982
54002
|
device_id: string
|
|
53983
54003
|
/** User-friendly name to identify the thermostat daily program. */
|
|
53984
54004
|
name: string | null
|
|
53985
54005
|
/** Array of thermostat daily program periods. */
|
|
53986
54006
|
periods: Array<{
|
|
53987
|
-
/** Time at which the thermostat daily program
|
|
54007
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
53988
54008
|
starts_at_time: string
|
|
53989
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
54009
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
53990
54010
|
climate_preset_key: string
|
|
53991
54011
|
}>
|
|
53992
54012
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -54296,7 +54316,7 @@ export interface Routes {
|
|
|
54296
54316
|
method: 'POST'
|
|
54297
54317
|
queryParams: {}
|
|
54298
54318
|
jsonBody: {
|
|
54299
|
-
/** ID of the
|
|
54319
|
+
/** ID of the thermostat device that you want to set to off mode. */
|
|
54300
54320
|
device_id: string
|
|
54301
54321
|
/** */
|
|
54302
54322
|
sync?: boolean
|
|
@@ -55781,9 +55801,9 @@ export interface Routes {
|
|
|
55781
55801
|
method: 'POST'
|
|
55782
55802
|
queryParams: {}
|
|
55783
55803
|
jsonBody: {
|
|
55784
|
-
/** ID of the
|
|
55804
|
+
/** ID of the thermostat device for which you want to set the fallback climate preset. */
|
|
55785
55805
|
device_id: string
|
|
55786
|
-
/** Climate preset key of the
|
|
55806
|
+
/** Climate preset key of the climate preset that you want to set as the fallback climate preset. */
|
|
55787
55807
|
climate_preset_key: string
|
|
55788
55808
|
}
|
|
55789
55809
|
commonParams: {}
|
|
@@ -55795,6 +55815,7 @@ export interface Routes {
|
|
|
55795
55815
|
method: 'POST'
|
|
55796
55816
|
queryParams: {}
|
|
55797
55817
|
jsonBody: {
|
|
55818
|
+
/** ID of the thermostat device for which you want to set the fan mode. */
|
|
55798
55819
|
device_id: string
|
|
55799
55820
|
/**
|
|
55800
55821
|
* @deprecated Use `fan_mode_setting` instead. */
|
|
@@ -57108,12 +57129,12 @@ export interface Routes {
|
|
|
57108
57129
|
jsonBody:
|
|
57109
57130
|
| {
|
|
57110
57131
|
hvac_mode_setting: 'off'
|
|
57111
|
-
/** ID of the
|
|
57132
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
57112
57133
|
device_id: string
|
|
57113
57134
|
}
|
|
57114
57135
|
| {
|
|
57115
57136
|
hvac_mode_setting: 'cool'
|
|
57116
|
-
/** ID of the
|
|
57137
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
57117
57138
|
device_id: string
|
|
57118
57139
|
/** Desired [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `cooling_set_point` parameters. */
|
|
57119
57140
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -57122,7 +57143,7 @@ export interface Routes {
|
|
|
57122
57143
|
}
|
|
57123
57144
|
| {
|
|
57124
57145
|
hvac_mode_setting: 'heat'
|
|
57125
|
-
/** ID of the
|
|
57146
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
57126
57147
|
device_id: string
|
|
57127
57148
|
/** Desired [heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `heating_set_point` parameters. */
|
|
57128
57149
|
heating_set_point_celsius?: number | undefined
|
|
@@ -57131,7 +57152,7 @@ export interface Routes {
|
|
|
57131
57152
|
}
|
|
57132
57153
|
| {
|
|
57133
57154
|
hvac_mode_setting: 'heat_cool'
|
|
57134
|
-
/** ID of the
|
|
57155
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
57135
57156
|
device_id: string
|
|
57136
57157
|
/** Desired [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `cooling_set_point` parameters. */
|
|
57137
57158
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -58444,7 +58465,7 @@ export interface Routes {
|
|
|
58444
58465
|
method: 'POST' | 'PATCH'
|
|
58445
58466
|
queryParams: {}
|
|
58446
58467
|
jsonBody: {
|
|
58447
|
-
/** ID of the
|
|
58468
|
+
/** ID of the thermostat device for which you want to set a temperature threshold. */
|
|
58448
58469
|
device_id: string
|
|
58449
58470
|
/** Lower temperature limit in in °C. Seam alerts you if the reported temperature is lower than this value. You can specify either `lower_limit` but not both. */
|
|
58450
58471
|
lower_limit_celsius?: (number | undefined) | null
|
|
@@ -58529,7 +58550,7 @@ export interface Routes {
|
|
|
58529
58550
|
method: 'POST' | 'PATCH'
|
|
58530
58551
|
queryParams: {}
|
|
58531
58552
|
jsonBody: {
|
|
58532
|
-
/** ID of the
|
|
58553
|
+
/** ID of the thermostat device for which you want to update a climate preset. */
|
|
58533
58554
|
device_id: string
|
|
58534
58555
|
/** Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
58535
58556
|
climate_preset_key: string
|
|
@@ -58560,7 +58581,7 @@ export interface Routes {
|
|
|
58560
58581
|
method: 'POST'
|
|
58561
58582
|
queryParams: {}
|
|
58562
58583
|
jsonBody: {
|
|
58563
|
-
/** ID of the thermostat device
|
|
58584
|
+
/** ID of the thermostat device for which you want to update the weekly program. */
|
|
58564
58585
|
device_id: string
|
|
58565
58586
|
/** ID of the thermostat daily program to run on Mondays. */
|
|
58566
58587
|
monday_program_id?: (string | undefined) | null
|
|
@@ -60614,6 +60635,7 @@ export interface Routes {
|
|
|
60614
60635
|
| 'honeywell_resideo_thermostat'
|
|
60615
60636
|
| 'tado_thermostat'
|
|
60616
60637
|
| 'sensi_thermostat'
|
|
60638
|
+
| 'smartthings_thermostat'
|
|
60617
60639
|
)
|
|
60618
60640
|
| ('ios_phone' | 'android_phone')
|
|
60619
60641
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -61248,15 +61270,15 @@ export interface Routes {
|
|
|
61248
61270
|
| Array<{
|
|
61249
61271
|
/** ID of the thermostat daily program. */
|
|
61250
61272
|
thermostat_daily_program_id: string
|
|
61251
|
-
/** ID of the
|
|
61273
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
61252
61274
|
device_id: string
|
|
61253
61275
|
/** User-friendly name to identify the thermostat daily program. */
|
|
61254
61276
|
name: string | null
|
|
61255
61277
|
/** Array of thermostat daily program periods. */
|
|
61256
61278
|
periods: Array<{
|
|
61257
|
-
/** Time at which the thermostat daily program
|
|
61279
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
61258
61280
|
starts_at_time: string
|
|
61259
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
61281
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
61260
61282
|
climate_preset_key: string
|
|
61261
61283
|
}>
|
|
61262
61284
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -61602,6 +61624,7 @@ export interface Routes {
|
|
|
61602
61624
|
| 'honeywell_resideo_thermostat'
|
|
61603
61625
|
| 'tado_thermostat'
|
|
61604
61626
|
| 'sensi_thermostat'
|
|
61627
|
+
| 'smartthings_thermostat'
|
|
61605
61628
|
)
|
|
61606
61629
|
| ('ios_phone' | 'android_phone')
|
|
61607
61630
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -62236,15 +62259,15 @@ export interface Routes {
|
|
|
62236
62259
|
| Array<{
|
|
62237
62260
|
/** ID of the thermostat daily program. */
|
|
62238
62261
|
thermostat_daily_program_id: string
|
|
62239
|
-
/** ID of the
|
|
62262
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
62240
62263
|
device_id: string
|
|
62241
62264
|
/** User-friendly name to identify the thermostat daily program. */
|
|
62242
62265
|
name: string | null
|
|
62243
62266
|
/** Array of thermostat daily program periods. */
|
|
62244
62267
|
periods: Array<{
|
|
62245
|
-
/** Time at which the thermostat daily program
|
|
62268
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
62246
62269
|
starts_at_time: string
|
|
62247
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
62270
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
62248
62271
|
climate_preset_key: string
|
|
62249
62272
|
}>
|
|
62250
62273
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|