@seamapi/types 1.434.0 → 1.435.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 +134 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +836 -24
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +99 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +99 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/models/devices/device.d.ts +145 -16
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +107 -8
- package/lib/seam/connect/models/events/devices.d.ts +26 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +13 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +46 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +15 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +120 -0
- package/lib/seam/connect/openapi.js +124 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +451 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +148 -0
- package/src/lib/seam/connect/route-types.ts +611 -0
|
@@ -26571,6 +26571,22 @@ export interface Routes {
|
|
|
26571
26571
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
26572
26572
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
26573
26573
|
manual_override_allowed?: boolean | undefined
|
|
26574
|
+
/**
|
|
26575
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
26576
|
+
*/
|
|
26577
|
+
ecobee_metadata?:
|
|
26578
|
+
| (
|
|
26579
|
+
| {
|
|
26580
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
26581
|
+
climate_ref: string
|
|
26582
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
26583
|
+
is_optimized: boolean
|
|
26584
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
26585
|
+
owner: 'user' | 'system'
|
|
26586
|
+
}
|
|
26587
|
+
| undefined
|
|
26588
|
+
)
|
|
26589
|
+
| undefined
|
|
26574
26590
|
}
|
|
26575
26591
|
| undefined
|
|
26576
26592
|
/**
|
|
@@ -26628,6 +26644,22 @@ export interface Routes {
|
|
|
26628
26644
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
26629
26645
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
26630
26646
|
manual_override_allowed?: boolean | undefined
|
|
26647
|
+
/**
|
|
26648
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
26649
|
+
*/
|
|
26650
|
+
ecobee_metadata?:
|
|
26651
|
+
| (
|
|
26652
|
+
| {
|
|
26653
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
26654
|
+
climate_ref: string
|
|
26655
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
26656
|
+
is_optimized: boolean
|
|
26657
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
26658
|
+
owner: 'user' | 'system'
|
|
26659
|
+
}
|
|
26660
|
+
| undefined
|
|
26661
|
+
)
|
|
26662
|
+
| undefined
|
|
26631
26663
|
}
|
|
26632
26664
|
| undefined
|
|
26633
26665
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -26675,6 +26707,19 @@ export interface Routes {
|
|
|
26675
26707
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
26676
26708
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
26677
26709
|
manual_override_allowed: boolean
|
|
26710
|
+
/**
|
|
26711
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
26712
|
+
*/
|
|
26713
|
+
ecobee_metadata?:
|
|
26714
|
+
| {
|
|
26715
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
26716
|
+
climate_ref: string
|
|
26717
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
26718
|
+
is_optimized: boolean
|
|
26719
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
26720
|
+
owner: 'user' | 'system'
|
|
26721
|
+
}
|
|
26722
|
+
| undefined
|
|
26678
26723
|
}>
|
|
26679
26724
|
| undefined
|
|
26680
26725
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -28173,6 +28218,22 @@ export interface Routes {
|
|
|
28173
28218
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
28174
28219
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
28175
28220
|
manual_override_allowed?: boolean | undefined
|
|
28221
|
+
/**
|
|
28222
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
28223
|
+
*/
|
|
28224
|
+
ecobee_metadata?:
|
|
28225
|
+
| (
|
|
28226
|
+
| {
|
|
28227
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
28228
|
+
climate_ref: string
|
|
28229
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
28230
|
+
is_optimized: boolean
|
|
28231
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
28232
|
+
owner: 'user' | 'system'
|
|
28233
|
+
}
|
|
28234
|
+
| undefined
|
|
28235
|
+
)
|
|
28236
|
+
| undefined
|
|
28176
28237
|
}
|
|
28177
28238
|
| undefined
|
|
28178
28239
|
/**
|
|
@@ -28230,6 +28291,22 @@ export interface Routes {
|
|
|
28230
28291
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
28231
28292
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
28232
28293
|
manual_override_allowed?: boolean | undefined
|
|
28294
|
+
/**
|
|
28295
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
28296
|
+
*/
|
|
28297
|
+
ecobee_metadata?:
|
|
28298
|
+
| (
|
|
28299
|
+
| {
|
|
28300
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
28301
|
+
climate_ref: string
|
|
28302
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
28303
|
+
is_optimized: boolean
|
|
28304
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
28305
|
+
owner: 'user' | 'system'
|
|
28306
|
+
}
|
|
28307
|
+
| undefined
|
|
28308
|
+
)
|
|
28309
|
+
| undefined
|
|
28233
28310
|
}
|
|
28234
28311
|
| undefined
|
|
28235
28312
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -28277,6 +28354,19 @@ export interface Routes {
|
|
|
28277
28354
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
28278
28355
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
28279
28356
|
manual_override_allowed: boolean
|
|
28357
|
+
/**
|
|
28358
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
28359
|
+
*/
|
|
28360
|
+
ecobee_metadata?:
|
|
28361
|
+
| {
|
|
28362
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
28363
|
+
climate_ref: string
|
|
28364
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
28365
|
+
is_optimized: boolean
|
|
28366
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
28367
|
+
owner: 'user' | 'system'
|
|
28368
|
+
}
|
|
28369
|
+
| undefined
|
|
28280
28370
|
}>
|
|
28281
28371
|
| undefined
|
|
28282
28372
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -34178,6 +34268,22 @@ export interface Routes {
|
|
|
34178
34268
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
34179
34269
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
34180
34270
|
manual_override_allowed?: boolean | undefined
|
|
34271
|
+
/**
|
|
34272
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
34273
|
+
*/
|
|
34274
|
+
ecobee_metadata?:
|
|
34275
|
+
| (
|
|
34276
|
+
| {
|
|
34277
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
34278
|
+
climate_ref: string
|
|
34279
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
34280
|
+
is_optimized: boolean
|
|
34281
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
34282
|
+
owner: 'user' | 'system'
|
|
34283
|
+
}
|
|
34284
|
+
| undefined
|
|
34285
|
+
)
|
|
34286
|
+
| undefined
|
|
34181
34287
|
}
|
|
34182
34288
|
| undefined
|
|
34183
34289
|
/**
|
|
@@ -34235,6 +34341,22 @@ export interface Routes {
|
|
|
34235
34341
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
34236
34342
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
34237
34343
|
manual_override_allowed?: boolean | undefined
|
|
34344
|
+
/**
|
|
34345
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
34346
|
+
*/
|
|
34347
|
+
ecobee_metadata?:
|
|
34348
|
+
| (
|
|
34349
|
+
| {
|
|
34350
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
34351
|
+
climate_ref: string
|
|
34352
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
34353
|
+
is_optimized: boolean
|
|
34354
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
34355
|
+
owner: 'user' | 'system'
|
|
34356
|
+
}
|
|
34357
|
+
| undefined
|
|
34358
|
+
)
|
|
34359
|
+
| undefined
|
|
34238
34360
|
}
|
|
34239
34361
|
| undefined
|
|
34240
34362
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -34282,6 +34404,19 @@ export interface Routes {
|
|
|
34282
34404
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
34283
34405
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
34284
34406
|
manual_override_allowed: boolean
|
|
34407
|
+
/**
|
|
34408
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
34409
|
+
*/
|
|
34410
|
+
ecobee_metadata?:
|
|
34411
|
+
| {
|
|
34412
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
34413
|
+
climate_ref: string
|
|
34414
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
34415
|
+
is_optimized: boolean
|
|
34416
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
34417
|
+
owner: 'user' | 'system'
|
|
34418
|
+
}
|
|
34419
|
+
| undefined
|
|
34285
34420
|
}>
|
|
34286
34421
|
| undefined
|
|
34287
34422
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -35578,6 +35713,22 @@ export interface Routes {
|
|
|
35578
35713
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
35579
35714
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
35580
35715
|
manual_override_allowed?: boolean | undefined
|
|
35716
|
+
/**
|
|
35717
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
35718
|
+
*/
|
|
35719
|
+
ecobee_metadata?:
|
|
35720
|
+
| (
|
|
35721
|
+
| {
|
|
35722
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
35723
|
+
climate_ref: string
|
|
35724
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
35725
|
+
is_optimized: boolean
|
|
35726
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
35727
|
+
owner: 'user' | 'system'
|
|
35728
|
+
}
|
|
35729
|
+
| undefined
|
|
35730
|
+
)
|
|
35731
|
+
| undefined
|
|
35581
35732
|
}
|
|
35582
35733
|
| undefined
|
|
35583
35734
|
/**
|
|
@@ -35635,6 +35786,22 @@ export interface Routes {
|
|
|
35635
35786
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
35636
35787
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
35637
35788
|
manual_override_allowed?: boolean | undefined
|
|
35789
|
+
/**
|
|
35790
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
35791
|
+
*/
|
|
35792
|
+
ecobee_metadata?:
|
|
35793
|
+
| (
|
|
35794
|
+
| {
|
|
35795
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
35796
|
+
climate_ref: string
|
|
35797
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
35798
|
+
is_optimized: boolean
|
|
35799
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
35800
|
+
owner: 'user' | 'system'
|
|
35801
|
+
}
|
|
35802
|
+
| undefined
|
|
35803
|
+
)
|
|
35804
|
+
| undefined
|
|
35638
35805
|
}
|
|
35639
35806
|
| undefined
|
|
35640
35807
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -35682,6 +35849,19 @@ export interface Routes {
|
|
|
35682
35849
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
35683
35850
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
35684
35851
|
manual_override_allowed: boolean
|
|
35852
|
+
/**
|
|
35853
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
35854
|
+
*/
|
|
35855
|
+
ecobee_metadata?:
|
|
35856
|
+
| {
|
|
35857
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
35858
|
+
climate_ref: string
|
|
35859
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
35860
|
+
is_optimized: boolean
|
|
35861
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
35862
|
+
owner: 'user' | 'system'
|
|
35863
|
+
}
|
|
35864
|
+
| undefined
|
|
35685
35865
|
}>
|
|
35686
35866
|
| undefined
|
|
35687
35867
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -37145,6 +37325,22 @@ export interface Routes {
|
|
|
37145
37325
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
37146
37326
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
37147
37327
|
manual_override_allowed?: boolean | undefined
|
|
37328
|
+
/**
|
|
37329
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
37330
|
+
*/
|
|
37331
|
+
ecobee_metadata?:
|
|
37332
|
+
| (
|
|
37333
|
+
| {
|
|
37334
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
37335
|
+
climate_ref: string
|
|
37336
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
37337
|
+
is_optimized: boolean
|
|
37338
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
37339
|
+
owner: 'user' | 'system'
|
|
37340
|
+
}
|
|
37341
|
+
| undefined
|
|
37342
|
+
)
|
|
37343
|
+
| undefined
|
|
37148
37344
|
}
|
|
37149
37345
|
| undefined
|
|
37150
37346
|
/**
|
|
@@ -37202,6 +37398,22 @@ export interface Routes {
|
|
|
37202
37398
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
37203
37399
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
37204
37400
|
manual_override_allowed?: boolean | undefined
|
|
37401
|
+
/**
|
|
37402
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
37403
|
+
*/
|
|
37404
|
+
ecobee_metadata?:
|
|
37405
|
+
| (
|
|
37406
|
+
| {
|
|
37407
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
37408
|
+
climate_ref: string
|
|
37409
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
37410
|
+
is_optimized: boolean
|
|
37411
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
37412
|
+
owner: 'user' | 'system'
|
|
37413
|
+
}
|
|
37414
|
+
| undefined
|
|
37415
|
+
)
|
|
37416
|
+
| undefined
|
|
37205
37417
|
}
|
|
37206
37418
|
| undefined
|
|
37207
37419
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -37249,6 +37461,19 @@ export interface Routes {
|
|
|
37249
37461
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
37250
37462
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
37251
37463
|
manual_override_allowed: boolean
|
|
37464
|
+
/**
|
|
37465
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
37466
|
+
*/
|
|
37467
|
+
ecobee_metadata?:
|
|
37468
|
+
| {
|
|
37469
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
37470
|
+
climate_ref: string
|
|
37471
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
37472
|
+
is_optimized: boolean
|
|
37473
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
37474
|
+
owner: 'user' | 'system'
|
|
37475
|
+
}
|
|
37476
|
+
| undefined
|
|
37252
37477
|
}>
|
|
37253
37478
|
| undefined
|
|
37254
37479
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -38544,6 +38769,22 @@ export interface Routes {
|
|
|
38544
38769
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
38545
38770
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
38546
38771
|
manual_override_allowed?: boolean | undefined
|
|
38772
|
+
/**
|
|
38773
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
38774
|
+
*/
|
|
38775
|
+
ecobee_metadata?:
|
|
38776
|
+
| (
|
|
38777
|
+
| {
|
|
38778
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
38779
|
+
climate_ref: string
|
|
38780
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
38781
|
+
is_optimized: boolean
|
|
38782
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
38783
|
+
owner: 'user' | 'system'
|
|
38784
|
+
}
|
|
38785
|
+
| undefined
|
|
38786
|
+
)
|
|
38787
|
+
| undefined
|
|
38547
38788
|
}
|
|
38548
38789
|
| undefined
|
|
38549
38790
|
/**
|
|
@@ -38601,6 +38842,22 @@ export interface Routes {
|
|
|
38601
38842
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
38602
38843
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
38603
38844
|
manual_override_allowed?: boolean | undefined
|
|
38845
|
+
/**
|
|
38846
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
38847
|
+
*/
|
|
38848
|
+
ecobee_metadata?:
|
|
38849
|
+
| (
|
|
38850
|
+
| {
|
|
38851
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
38852
|
+
climate_ref: string
|
|
38853
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
38854
|
+
is_optimized: boolean
|
|
38855
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
38856
|
+
owner: 'user' | 'system'
|
|
38857
|
+
}
|
|
38858
|
+
| undefined
|
|
38859
|
+
)
|
|
38860
|
+
| undefined
|
|
38604
38861
|
}
|
|
38605
38862
|
| undefined
|
|
38606
38863
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -38648,6 +38905,19 @@ export interface Routes {
|
|
|
38648
38905
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
38649
38906
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
38650
38907
|
manual_override_allowed: boolean
|
|
38908
|
+
/**
|
|
38909
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
38910
|
+
*/
|
|
38911
|
+
ecobee_metadata?:
|
|
38912
|
+
| {
|
|
38913
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
38914
|
+
climate_ref: string
|
|
38915
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
38916
|
+
is_optimized: boolean
|
|
38917
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
38918
|
+
owner: 'user' | 'system'
|
|
38919
|
+
}
|
|
38920
|
+
| undefined
|
|
38651
38921
|
}>
|
|
38652
38922
|
| undefined
|
|
38653
38923
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -45819,6 +46089,22 @@ export interface Routes {
|
|
|
45819
46089
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
45820
46090
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
45821
46091
|
manual_override_allowed?: boolean | undefined
|
|
46092
|
+
/**
|
|
46093
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
46094
|
+
*/
|
|
46095
|
+
ecobee_metadata?:
|
|
46096
|
+
| (
|
|
46097
|
+
| {
|
|
46098
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
46099
|
+
climate_ref: string
|
|
46100
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
46101
|
+
is_optimized: boolean
|
|
46102
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
46103
|
+
owner: 'user' | 'system'
|
|
46104
|
+
}
|
|
46105
|
+
| undefined
|
|
46106
|
+
)
|
|
46107
|
+
| undefined
|
|
45822
46108
|
}
|
|
45823
46109
|
| undefined
|
|
45824
46110
|
/**
|
|
@@ -45876,6 +46162,22 @@ export interface Routes {
|
|
|
45876
46162
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
45877
46163
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
45878
46164
|
manual_override_allowed?: boolean | undefined
|
|
46165
|
+
/**
|
|
46166
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
46167
|
+
*/
|
|
46168
|
+
ecobee_metadata?:
|
|
46169
|
+
| (
|
|
46170
|
+
| {
|
|
46171
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
46172
|
+
climate_ref: string
|
|
46173
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
46174
|
+
is_optimized: boolean
|
|
46175
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
46176
|
+
owner: 'user' | 'system'
|
|
46177
|
+
}
|
|
46178
|
+
| undefined
|
|
46179
|
+
)
|
|
46180
|
+
| undefined
|
|
45879
46181
|
}
|
|
45880
46182
|
| undefined
|
|
45881
46183
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -45923,6 +46225,19 @@ export interface Routes {
|
|
|
45923
46225
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
45924
46226
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
45925
46227
|
manual_override_allowed: boolean
|
|
46228
|
+
/**
|
|
46229
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
46230
|
+
*/
|
|
46231
|
+
ecobee_metadata?:
|
|
46232
|
+
| {
|
|
46233
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
46234
|
+
climate_ref: string
|
|
46235
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
46236
|
+
is_optimized: boolean
|
|
46237
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
46238
|
+
owner: 'user' | 'system'
|
|
46239
|
+
}
|
|
46240
|
+
| undefined
|
|
45926
46241
|
}>
|
|
45927
46242
|
| undefined
|
|
45928
46243
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -47218,6 +47533,22 @@ export interface Routes {
|
|
|
47218
47533
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
47219
47534
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
47220
47535
|
manual_override_allowed?: boolean | undefined
|
|
47536
|
+
/**
|
|
47537
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
47538
|
+
*/
|
|
47539
|
+
ecobee_metadata?:
|
|
47540
|
+
| (
|
|
47541
|
+
| {
|
|
47542
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
47543
|
+
climate_ref: string
|
|
47544
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
47545
|
+
is_optimized: boolean
|
|
47546
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
47547
|
+
owner: 'user' | 'system'
|
|
47548
|
+
}
|
|
47549
|
+
| undefined
|
|
47550
|
+
)
|
|
47551
|
+
| undefined
|
|
47221
47552
|
}
|
|
47222
47553
|
| undefined
|
|
47223
47554
|
/**
|
|
@@ -47275,6 +47606,22 @@ export interface Routes {
|
|
|
47275
47606
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
47276
47607
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
47277
47608
|
manual_override_allowed?: boolean | undefined
|
|
47609
|
+
/**
|
|
47610
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
47611
|
+
*/
|
|
47612
|
+
ecobee_metadata?:
|
|
47613
|
+
| (
|
|
47614
|
+
| {
|
|
47615
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
47616
|
+
climate_ref: string
|
|
47617
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
47618
|
+
is_optimized: boolean
|
|
47619
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
47620
|
+
owner: 'user' | 'system'
|
|
47621
|
+
}
|
|
47622
|
+
| undefined
|
|
47623
|
+
)
|
|
47624
|
+
| undefined
|
|
47278
47625
|
}
|
|
47279
47626
|
| undefined
|
|
47280
47627
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -47322,6 +47669,19 @@ export interface Routes {
|
|
|
47322
47669
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
47323
47670
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
47324
47671
|
manual_override_allowed: boolean
|
|
47672
|
+
/**
|
|
47673
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
47674
|
+
*/
|
|
47675
|
+
ecobee_metadata?:
|
|
47676
|
+
| {
|
|
47677
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
47678
|
+
climate_ref: string
|
|
47679
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
47680
|
+
is_optimized: boolean
|
|
47681
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
47682
|
+
owner: 'user' | 'system'
|
|
47683
|
+
}
|
|
47684
|
+
| undefined
|
|
47325
47685
|
}>
|
|
47326
47686
|
| undefined
|
|
47327
47687
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -56688,6 +57048,19 @@ export interface Routes {
|
|
|
56688
57048
|
cooling_set_point_fahrenheit?: number | undefined
|
|
56689
57049
|
/** Temperature to which the thermostat should heat (in °F). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
|
|
56690
57050
|
heating_set_point_fahrenheit?: number | undefined
|
|
57051
|
+
/**
|
|
57052
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
57053
|
+
*/
|
|
57054
|
+
ecobee_metadata?:
|
|
57055
|
+
| {
|
|
57056
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
57057
|
+
climate_ref: string
|
|
57058
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
57059
|
+
is_optimized: boolean
|
|
57060
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
57061
|
+
owner: 'user' | 'system'
|
|
57062
|
+
}
|
|
57063
|
+
| undefined
|
|
56691
57064
|
}
|
|
56692
57065
|
commonParams: {}
|
|
56693
57066
|
formData: {}
|
|
@@ -59039,6 +59412,22 @@ export interface Routes {
|
|
|
59039
59412
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
59040
59413
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
59041
59414
|
manual_override_allowed?: boolean | undefined
|
|
59415
|
+
/**
|
|
59416
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
59417
|
+
*/
|
|
59418
|
+
ecobee_metadata?:
|
|
59419
|
+
| (
|
|
59420
|
+
| {
|
|
59421
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
59422
|
+
climate_ref: string
|
|
59423
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
59424
|
+
is_optimized: boolean
|
|
59425
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
59426
|
+
owner: 'user' | 'system'
|
|
59427
|
+
}
|
|
59428
|
+
| undefined
|
|
59429
|
+
)
|
|
59430
|
+
| undefined
|
|
59042
59431
|
}
|
|
59043
59432
|
| undefined
|
|
59044
59433
|
/**
|
|
@@ -59096,6 +59485,22 @@ export interface Routes {
|
|
|
59096
59485
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
59097
59486
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
59098
59487
|
manual_override_allowed?: boolean | undefined
|
|
59488
|
+
/**
|
|
59489
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
59490
|
+
*/
|
|
59491
|
+
ecobee_metadata?:
|
|
59492
|
+
| (
|
|
59493
|
+
| {
|
|
59494
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
59495
|
+
climate_ref: string
|
|
59496
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
59497
|
+
is_optimized: boolean
|
|
59498
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
59499
|
+
owner: 'user' | 'system'
|
|
59500
|
+
}
|
|
59501
|
+
| undefined
|
|
59502
|
+
)
|
|
59503
|
+
| undefined
|
|
59099
59504
|
}
|
|
59100
59505
|
| undefined
|
|
59101
59506
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -59143,6 +59548,19 @@ export interface Routes {
|
|
|
59143
59548
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
59144
59549
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
59145
59550
|
manual_override_allowed: boolean
|
|
59551
|
+
/**
|
|
59552
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
59553
|
+
*/
|
|
59554
|
+
ecobee_metadata?:
|
|
59555
|
+
| {
|
|
59556
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
59557
|
+
climate_ref: string
|
|
59558
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
59559
|
+
is_optimized: boolean
|
|
59560
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
59561
|
+
owner: 'user' | 'system'
|
|
59562
|
+
}
|
|
59563
|
+
| undefined
|
|
59146
59564
|
}>
|
|
59147
59565
|
| undefined
|
|
59148
59566
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -63436,6 +63854,22 @@ export interface Routes {
|
|
|
63436
63854
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
63437
63855
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
63438
63856
|
manual_override_allowed?: boolean | undefined
|
|
63857
|
+
/**
|
|
63858
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
63859
|
+
*/
|
|
63860
|
+
ecobee_metadata?:
|
|
63861
|
+
| (
|
|
63862
|
+
| {
|
|
63863
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
63864
|
+
climate_ref: string
|
|
63865
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
63866
|
+
is_optimized: boolean
|
|
63867
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
63868
|
+
owner: 'user' | 'system'
|
|
63869
|
+
}
|
|
63870
|
+
| undefined
|
|
63871
|
+
)
|
|
63872
|
+
| undefined
|
|
63439
63873
|
}
|
|
63440
63874
|
| undefined
|
|
63441
63875
|
/**
|
|
@@ -63493,6 +63927,22 @@ export interface Routes {
|
|
|
63493
63927
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
63494
63928
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
63495
63929
|
manual_override_allowed?: boolean | undefined
|
|
63930
|
+
/**
|
|
63931
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
63932
|
+
*/
|
|
63933
|
+
ecobee_metadata?:
|
|
63934
|
+
| (
|
|
63935
|
+
| {
|
|
63936
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
63937
|
+
climate_ref: string
|
|
63938
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
63939
|
+
is_optimized: boolean
|
|
63940
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
63941
|
+
owner: 'user' | 'system'
|
|
63942
|
+
}
|
|
63943
|
+
| undefined
|
|
63944
|
+
)
|
|
63945
|
+
| undefined
|
|
63496
63946
|
}
|
|
63497
63947
|
| undefined
|
|
63498
63948
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -63540,6 +63990,19 @@ export interface Routes {
|
|
|
63540
63990
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
63541
63991
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
63542
63992
|
manual_override_allowed: boolean
|
|
63993
|
+
/**
|
|
63994
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
63995
|
+
*/
|
|
63996
|
+
ecobee_metadata?:
|
|
63997
|
+
| {
|
|
63998
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
63999
|
+
climate_ref: string
|
|
64000
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
64001
|
+
is_optimized: boolean
|
|
64002
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
64003
|
+
owner: 'user' | 'system'
|
|
64004
|
+
}
|
|
64005
|
+
| undefined
|
|
63543
64006
|
}>
|
|
63544
64007
|
| undefined
|
|
63545
64008
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -64835,6 +65298,22 @@ export interface Routes {
|
|
|
64835
65298
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
64836
65299
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
64837
65300
|
manual_override_allowed?: boolean | undefined
|
|
65301
|
+
/**
|
|
65302
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
65303
|
+
*/
|
|
65304
|
+
ecobee_metadata?:
|
|
65305
|
+
| (
|
|
65306
|
+
| {
|
|
65307
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
65308
|
+
climate_ref: string
|
|
65309
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
65310
|
+
is_optimized: boolean
|
|
65311
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
65312
|
+
owner: 'user' | 'system'
|
|
65313
|
+
}
|
|
65314
|
+
| undefined
|
|
65315
|
+
)
|
|
65316
|
+
| undefined
|
|
64838
65317
|
}
|
|
64839
65318
|
| undefined
|
|
64840
65319
|
/**
|
|
@@ -64892,6 +65371,22 @@ export interface Routes {
|
|
|
64892
65371
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
64893
65372
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
64894
65373
|
manual_override_allowed?: boolean | undefined
|
|
65374
|
+
/**
|
|
65375
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
65376
|
+
*/
|
|
65377
|
+
ecobee_metadata?:
|
|
65378
|
+
| (
|
|
65379
|
+
| {
|
|
65380
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
65381
|
+
climate_ref: string
|
|
65382
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
65383
|
+
is_optimized: boolean
|
|
65384
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
65385
|
+
owner: 'user' | 'system'
|
|
65386
|
+
}
|
|
65387
|
+
| undefined
|
|
65388
|
+
)
|
|
65389
|
+
| undefined
|
|
64895
65390
|
}
|
|
64896
65391
|
| undefined
|
|
64897
65392
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -64939,6 +65434,19 @@ export interface Routes {
|
|
|
64939
65434
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
64940
65435
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
64941
65436
|
manual_override_allowed: boolean
|
|
65437
|
+
/**
|
|
65438
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
65439
|
+
*/
|
|
65440
|
+
ecobee_metadata?:
|
|
65441
|
+
| {
|
|
65442
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
65443
|
+
climate_ref: string
|
|
65444
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
65445
|
+
is_optimized: boolean
|
|
65446
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
65447
|
+
owner: 'user' | 'system'
|
|
65448
|
+
}
|
|
65449
|
+
| undefined
|
|
64942
65450
|
}>
|
|
64943
65451
|
| undefined
|
|
64944
65452
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -70088,6 +70596,19 @@ export interface Routes {
|
|
|
70088
70596
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
70089
70597
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
70090
70598
|
manual_override_allowed?: boolean | undefined
|
|
70599
|
+
/**
|
|
70600
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
70601
|
+
*/
|
|
70602
|
+
ecobee_metadata?:
|
|
70603
|
+
| {
|
|
70604
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
70605
|
+
climate_ref: string
|
|
70606
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
70607
|
+
is_optimized: boolean
|
|
70608
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
70609
|
+
owner: 'user' | 'system'
|
|
70610
|
+
}
|
|
70611
|
+
| undefined
|
|
70091
70612
|
}
|
|
70092
70613
|
commonParams: {}
|
|
70093
70614
|
formData: {}
|
|
@@ -73429,6 +73950,22 @@ export interface Routes {
|
|
|
73429
73950
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
73430
73951
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
73431
73952
|
manual_override_allowed?: boolean | undefined
|
|
73953
|
+
/**
|
|
73954
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
73955
|
+
*/
|
|
73956
|
+
ecobee_metadata?:
|
|
73957
|
+
| (
|
|
73958
|
+
| {
|
|
73959
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
73960
|
+
climate_ref: string
|
|
73961
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
73962
|
+
is_optimized: boolean
|
|
73963
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
73964
|
+
owner: 'user' | 'system'
|
|
73965
|
+
}
|
|
73966
|
+
| undefined
|
|
73967
|
+
)
|
|
73968
|
+
| undefined
|
|
73432
73969
|
}
|
|
73433
73970
|
| undefined
|
|
73434
73971
|
/**
|
|
@@ -73486,6 +74023,22 @@ export interface Routes {
|
|
|
73486
74023
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
73487
74024
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
73488
74025
|
manual_override_allowed?: boolean | undefined
|
|
74026
|
+
/**
|
|
74027
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
74028
|
+
*/
|
|
74029
|
+
ecobee_metadata?:
|
|
74030
|
+
| (
|
|
74031
|
+
| {
|
|
74032
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
74033
|
+
climate_ref: string
|
|
74034
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
74035
|
+
is_optimized: boolean
|
|
74036
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
74037
|
+
owner: 'user' | 'system'
|
|
74038
|
+
}
|
|
74039
|
+
| undefined
|
|
74040
|
+
)
|
|
74041
|
+
| undefined
|
|
73489
74042
|
}
|
|
73490
74043
|
| undefined
|
|
73491
74044
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -73533,6 +74086,19 @@ export interface Routes {
|
|
|
73533
74086
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
73534
74087
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
73535
74088
|
manual_override_allowed: boolean
|
|
74089
|
+
/**
|
|
74090
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
74091
|
+
*/
|
|
74092
|
+
ecobee_metadata?:
|
|
74093
|
+
| {
|
|
74094
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
74095
|
+
climate_ref: string
|
|
74096
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
74097
|
+
is_optimized: boolean
|
|
74098
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
74099
|
+
owner: 'user' | 'system'
|
|
74100
|
+
}
|
|
74101
|
+
| undefined
|
|
73536
74102
|
}>
|
|
73537
74103
|
| undefined
|
|
73538
74104
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
@@ -74830,6 +75396,22 @@ export interface Routes {
|
|
|
74830
75396
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
74831
75397
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
74832
75398
|
manual_override_allowed?: boolean | undefined
|
|
75399
|
+
/**
|
|
75400
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
75401
|
+
*/
|
|
75402
|
+
ecobee_metadata?:
|
|
75403
|
+
| (
|
|
75404
|
+
| {
|
|
75405
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
75406
|
+
climate_ref: string
|
|
75407
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
75408
|
+
is_optimized: boolean
|
|
75409
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
75410
|
+
owner: 'user' | 'system'
|
|
75411
|
+
}
|
|
75412
|
+
| undefined
|
|
75413
|
+
)
|
|
75414
|
+
| undefined
|
|
74833
75415
|
}
|
|
74834
75416
|
| undefined
|
|
74835
75417
|
/**
|
|
@@ -74887,6 +75469,22 @@ export interface Routes {
|
|
|
74887
75469
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
74888
75470
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
74889
75471
|
manual_override_allowed?: boolean | undefined
|
|
75472
|
+
/**
|
|
75473
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
75474
|
+
*/
|
|
75475
|
+
ecobee_metadata?:
|
|
75476
|
+
| (
|
|
75477
|
+
| {
|
|
75478
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
75479
|
+
climate_ref: string
|
|
75480
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
75481
|
+
is_optimized: boolean
|
|
75482
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
75483
|
+
owner: 'user' | 'system'
|
|
75484
|
+
}
|
|
75485
|
+
| undefined
|
|
75486
|
+
)
|
|
75487
|
+
| undefined
|
|
74890
75488
|
}
|
|
74891
75489
|
| undefined
|
|
74892
75490
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
@@ -74934,6 +75532,19 @@ export interface Routes {
|
|
|
74934
75532
|
/** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
|
|
74935
75533
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
74936
75534
|
manual_override_allowed: boolean
|
|
75535
|
+
/**
|
|
75536
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
75537
|
+
*/
|
|
75538
|
+
ecobee_metadata?:
|
|
75539
|
+
| {
|
|
75540
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
75541
|
+
climate_ref: string
|
|
75542
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
75543
|
+
is_optimized: boolean
|
|
75544
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
75545
|
+
owner: 'user' | 'system'
|
|
75546
|
+
}
|
|
75547
|
+
| undefined
|
|
74937
75548
|
}>
|
|
74938
75549
|
| undefined
|
|
74939
75550
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|