@seamapi/types 1.434.0 → 1.436.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 +142 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +878 -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 +13 -8
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +152 -16
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +112 -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 +124 -0
- package/lib/seam/connect/openapi.js +128 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +477 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +153 -0
- package/src/lib/seam/connect/route-types.ts +637 -0
|
@@ -23046,6 +23046,8 @@ export interface Routes {
|
|
|
23046
23046
|
bridge_name?: string | undefined;
|
|
23047
23047
|
/** Keypad ID for an igloohome device. */
|
|
23048
23048
|
keypad_id?: string | undefined;
|
|
23049
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
23050
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
23049
23051
|
} | undefined;
|
|
23050
23052
|
/** Metadata for a Google Nest device. */
|
|
23051
23053
|
nest_metadata?: {
|
|
@@ -23285,6 +23287,17 @@ export interface Routes {
|
|
|
23285
23287
|
/** 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).
|
|
23286
23288
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
23287
23289
|
manual_override_allowed?: boolean | undefined;
|
|
23290
|
+
/**
|
|
23291
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
23292
|
+
*/
|
|
23293
|
+
ecobee_metadata?: ({
|
|
23294
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
23295
|
+
climate_ref: string;
|
|
23296
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
23297
|
+
is_optimized: boolean;
|
|
23298
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
23299
|
+
owner: 'user' | 'system';
|
|
23300
|
+
} | undefined) | undefined;
|
|
23288
23301
|
} | undefined;
|
|
23289
23302
|
/**
|
|
23290
23303
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -23320,6 +23333,17 @@ export interface Routes {
|
|
|
23320
23333
|
/** 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).
|
|
23321
23334
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
23322
23335
|
manual_override_allowed?: boolean | undefined;
|
|
23336
|
+
/**
|
|
23337
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
23338
|
+
*/
|
|
23339
|
+
ecobee_metadata?: ({
|
|
23340
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
23341
|
+
climate_ref: string;
|
|
23342
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
23343
|
+
is_optimized: boolean;
|
|
23344
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
23345
|
+
owner: 'user' | 'system';
|
|
23346
|
+
} | undefined) | undefined;
|
|
23323
23347
|
} | undefined;
|
|
23324
23348
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
23325
23349
|
available_climate_presets?: Array<{
|
|
@@ -23354,6 +23378,17 @@ export interface Routes {
|
|
|
23354
23378
|
/** 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).
|
|
23355
23379
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
23356
23380
|
manual_override_allowed: boolean;
|
|
23381
|
+
/**
|
|
23382
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
23383
|
+
*/
|
|
23384
|
+
ecobee_metadata?: {
|
|
23385
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
23386
|
+
climate_ref: string;
|
|
23387
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
23388
|
+
is_optimized: boolean;
|
|
23389
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
23390
|
+
owner: 'user' | 'system';
|
|
23391
|
+
} | undefined;
|
|
23357
23392
|
}> | undefined;
|
|
23358
23393
|
/** 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. */
|
|
23359
23394
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -24218,6 +24253,8 @@ export interface Routes {
|
|
|
24218
24253
|
bridge_name?: string | undefined;
|
|
24219
24254
|
/** Keypad ID for an igloohome device. */
|
|
24220
24255
|
keypad_id?: string | undefined;
|
|
24256
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
24257
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
24221
24258
|
} | undefined;
|
|
24222
24259
|
/** Metadata for a Google Nest device. */
|
|
24223
24260
|
nest_metadata?: {
|
|
@@ -24457,6 +24494,17 @@ export interface Routes {
|
|
|
24457
24494
|
/** 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).
|
|
24458
24495
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24459
24496
|
manual_override_allowed?: boolean | undefined;
|
|
24497
|
+
/**
|
|
24498
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
24499
|
+
*/
|
|
24500
|
+
ecobee_metadata?: ({
|
|
24501
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
24502
|
+
climate_ref: string;
|
|
24503
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
24504
|
+
is_optimized: boolean;
|
|
24505
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
24506
|
+
owner: 'user' | 'system';
|
|
24507
|
+
} | undefined) | undefined;
|
|
24460
24508
|
} | undefined;
|
|
24461
24509
|
/**
|
|
24462
24510
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -24492,6 +24540,17 @@ export interface Routes {
|
|
|
24492
24540
|
/** 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).
|
|
24493
24541
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24494
24542
|
manual_override_allowed?: boolean | undefined;
|
|
24543
|
+
/**
|
|
24544
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
24545
|
+
*/
|
|
24546
|
+
ecobee_metadata?: ({
|
|
24547
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
24548
|
+
climate_ref: string;
|
|
24549
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
24550
|
+
is_optimized: boolean;
|
|
24551
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
24552
|
+
owner: 'user' | 'system';
|
|
24553
|
+
} | undefined) | undefined;
|
|
24495
24554
|
} | undefined;
|
|
24496
24555
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
24497
24556
|
available_climate_presets?: Array<{
|
|
@@ -24526,6 +24585,17 @@ export interface Routes {
|
|
|
24526
24585
|
/** 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).
|
|
24527
24586
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24528
24587
|
manual_override_allowed: boolean;
|
|
24588
|
+
/**
|
|
24589
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
24590
|
+
*/
|
|
24591
|
+
ecobee_metadata?: {
|
|
24592
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
24593
|
+
climate_ref: string;
|
|
24594
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
24595
|
+
is_optimized: boolean;
|
|
24596
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
24597
|
+
owner: 'user' | 'system';
|
|
24598
|
+
} | undefined;
|
|
24529
24599
|
}> | undefined;
|
|
24530
24600
|
/** 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. */
|
|
24531
24601
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -29154,6 +29224,8 @@ export interface Routes {
|
|
|
29154
29224
|
bridge_name?: string | undefined;
|
|
29155
29225
|
/** Keypad ID for an igloohome device. */
|
|
29156
29226
|
keypad_id?: string | undefined;
|
|
29227
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
29228
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
29157
29229
|
} | undefined;
|
|
29158
29230
|
/** Metadata for a Google Nest device. */
|
|
29159
29231
|
nest_metadata?: {
|
|
@@ -29393,6 +29465,17 @@ export interface Routes {
|
|
|
29393
29465
|
/** 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).
|
|
29394
29466
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
29395
29467
|
manual_override_allowed?: boolean | undefined;
|
|
29468
|
+
/**
|
|
29469
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
29470
|
+
*/
|
|
29471
|
+
ecobee_metadata?: ({
|
|
29472
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
29473
|
+
climate_ref: string;
|
|
29474
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
29475
|
+
is_optimized: boolean;
|
|
29476
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
29477
|
+
owner: 'user' | 'system';
|
|
29478
|
+
} | undefined) | undefined;
|
|
29396
29479
|
} | undefined;
|
|
29397
29480
|
/**
|
|
29398
29481
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -29428,6 +29511,17 @@ export interface Routes {
|
|
|
29428
29511
|
/** 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).
|
|
29429
29512
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
29430
29513
|
manual_override_allowed?: boolean | undefined;
|
|
29514
|
+
/**
|
|
29515
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
29516
|
+
*/
|
|
29517
|
+
ecobee_metadata?: ({
|
|
29518
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
29519
|
+
climate_ref: string;
|
|
29520
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
29521
|
+
is_optimized: boolean;
|
|
29522
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
29523
|
+
owner: 'user' | 'system';
|
|
29524
|
+
} | undefined) | undefined;
|
|
29431
29525
|
} | undefined;
|
|
29432
29526
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
29433
29527
|
available_climate_presets?: Array<{
|
|
@@ -29462,6 +29556,17 @@ export interface Routes {
|
|
|
29462
29556
|
/** 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).
|
|
29463
29557
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
29464
29558
|
manual_override_allowed: boolean;
|
|
29559
|
+
/**
|
|
29560
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
29561
|
+
*/
|
|
29562
|
+
ecobee_metadata?: {
|
|
29563
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
29564
|
+
climate_ref: string;
|
|
29565
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
29566
|
+
is_optimized: boolean;
|
|
29567
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
29568
|
+
owner: 'user' | 'system';
|
|
29569
|
+
} | undefined;
|
|
29465
29570
|
}> | undefined;
|
|
29466
29571
|
/** 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. */
|
|
29467
29572
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -30280,6 +30385,8 @@ export interface Routes {
|
|
|
30280
30385
|
bridge_name?: string | undefined;
|
|
30281
30386
|
/** Keypad ID for an igloohome device. */
|
|
30282
30387
|
keypad_id?: string | undefined;
|
|
30388
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
30389
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
30283
30390
|
} | undefined;
|
|
30284
30391
|
/** Metadata for a Google Nest device. */
|
|
30285
30392
|
nest_metadata?: {
|
|
@@ -30519,6 +30626,17 @@ export interface Routes {
|
|
|
30519
30626
|
/** 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).
|
|
30520
30627
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
30521
30628
|
manual_override_allowed?: boolean | undefined;
|
|
30629
|
+
/**
|
|
30630
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
30631
|
+
*/
|
|
30632
|
+
ecobee_metadata?: ({
|
|
30633
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
30634
|
+
climate_ref: string;
|
|
30635
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
30636
|
+
is_optimized: boolean;
|
|
30637
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
30638
|
+
owner: 'user' | 'system';
|
|
30639
|
+
} | undefined) | undefined;
|
|
30522
30640
|
} | undefined;
|
|
30523
30641
|
/**
|
|
30524
30642
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -30554,6 +30672,17 @@ export interface Routes {
|
|
|
30554
30672
|
/** 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).
|
|
30555
30673
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
30556
30674
|
manual_override_allowed?: boolean | undefined;
|
|
30675
|
+
/**
|
|
30676
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
30677
|
+
*/
|
|
30678
|
+
ecobee_metadata?: ({
|
|
30679
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
30680
|
+
climate_ref: string;
|
|
30681
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
30682
|
+
is_optimized: boolean;
|
|
30683
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
30684
|
+
owner: 'user' | 'system';
|
|
30685
|
+
} | undefined) | undefined;
|
|
30557
30686
|
} | undefined;
|
|
30558
30687
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
30559
30688
|
available_climate_presets?: Array<{
|
|
@@ -30588,6 +30717,17 @@ export interface Routes {
|
|
|
30588
30717
|
/** 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).
|
|
30589
30718
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
30590
30719
|
manual_override_allowed: boolean;
|
|
30720
|
+
/**
|
|
30721
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
30722
|
+
*/
|
|
30723
|
+
ecobee_metadata?: {
|
|
30724
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
30725
|
+
climate_ref: string;
|
|
30726
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
30727
|
+
is_optimized: boolean;
|
|
30728
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
30729
|
+
owner: 'user' | 'system';
|
|
30730
|
+
} | undefined;
|
|
30591
30731
|
}> | undefined;
|
|
30592
30732
|
/** 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. */
|
|
30593
30733
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -31452,6 +31592,8 @@ export interface Routes {
|
|
|
31452
31592
|
bridge_name?: string | undefined;
|
|
31453
31593
|
/** Keypad ID for an igloohome device. */
|
|
31454
31594
|
keypad_id?: string | undefined;
|
|
31595
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
31596
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
31455
31597
|
} | undefined;
|
|
31456
31598
|
/** Metadata for a Google Nest device. */
|
|
31457
31599
|
nest_metadata?: {
|
|
@@ -31691,6 +31833,17 @@ export interface Routes {
|
|
|
31691
31833
|
/** 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).
|
|
31692
31834
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
31693
31835
|
manual_override_allowed?: boolean | undefined;
|
|
31836
|
+
/**
|
|
31837
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
31838
|
+
*/
|
|
31839
|
+
ecobee_metadata?: ({
|
|
31840
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
31841
|
+
climate_ref: string;
|
|
31842
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
31843
|
+
is_optimized: boolean;
|
|
31844
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
31845
|
+
owner: 'user' | 'system';
|
|
31846
|
+
} | undefined) | undefined;
|
|
31694
31847
|
} | undefined;
|
|
31695
31848
|
/**
|
|
31696
31849
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -31726,6 +31879,17 @@ export interface Routes {
|
|
|
31726
31879
|
/** 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).
|
|
31727
31880
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
31728
31881
|
manual_override_allowed?: boolean | undefined;
|
|
31882
|
+
/**
|
|
31883
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
31884
|
+
*/
|
|
31885
|
+
ecobee_metadata?: ({
|
|
31886
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
31887
|
+
climate_ref: string;
|
|
31888
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
31889
|
+
is_optimized: boolean;
|
|
31890
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
31891
|
+
owner: 'user' | 'system';
|
|
31892
|
+
} | undefined) | undefined;
|
|
31729
31893
|
} | undefined;
|
|
31730
31894
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
31731
31895
|
available_climate_presets?: Array<{
|
|
@@ -31760,6 +31924,17 @@ export interface Routes {
|
|
|
31760
31924
|
/** 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).
|
|
31761
31925
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
31762
31926
|
manual_override_allowed: boolean;
|
|
31927
|
+
/**
|
|
31928
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
31929
|
+
*/
|
|
31930
|
+
ecobee_metadata?: {
|
|
31931
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
31932
|
+
climate_ref: string;
|
|
31933
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
31934
|
+
is_optimized: boolean;
|
|
31935
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
31936
|
+
owner: 'user' | 'system';
|
|
31937
|
+
} | undefined;
|
|
31763
31938
|
}> | undefined;
|
|
31764
31939
|
/** 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. */
|
|
31765
31940
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -32577,6 +32752,8 @@ export interface Routes {
|
|
|
32577
32752
|
bridge_name?: string | undefined;
|
|
32578
32753
|
/** Keypad ID for an igloohome device. */
|
|
32579
32754
|
keypad_id?: string | undefined;
|
|
32755
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
32756
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
32580
32757
|
} | undefined;
|
|
32581
32758
|
/** Metadata for a Google Nest device. */
|
|
32582
32759
|
nest_metadata?: {
|
|
@@ -32816,6 +32993,17 @@ export interface Routes {
|
|
|
32816
32993
|
/** 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).
|
|
32817
32994
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
32818
32995
|
manual_override_allowed?: boolean | undefined;
|
|
32996
|
+
/**
|
|
32997
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
32998
|
+
*/
|
|
32999
|
+
ecobee_metadata?: ({
|
|
33000
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
33001
|
+
climate_ref: string;
|
|
33002
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
33003
|
+
is_optimized: boolean;
|
|
33004
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
33005
|
+
owner: 'user' | 'system';
|
|
33006
|
+
} | undefined) | undefined;
|
|
32819
33007
|
} | undefined;
|
|
32820
33008
|
/**
|
|
32821
33009
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -32851,6 +33039,17 @@ export interface Routes {
|
|
|
32851
33039
|
/** 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).
|
|
32852
33040
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
32853
33041
|
manual_override_allowed?: boolean | undefined;
|
|
33042
|
+
/**
|
|
33043
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
33044
|
+
*/
|
|
33045
|
+
ecobee_metadata?: ({
|
|
33046
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
33047
|
+
climate_ref: string;
|
|
33048
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
33049
|
+
is_optimized: boolean;
|
|
33050
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
33051
|
+
owner: 'user' | 'system';
|
|
33052
|
+
} | undefined) | undefined;
|
|
32854
33053
|
} | undefined;
|
|
32855
33054
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
32856
33055
|
available_climate_presets?: Array<{
|
|
@@ -32885,6 +33084,17 @@ export interface Routes {
|
|
|
32885
33084
|
/** 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).
|
|
32886
33085
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
32887
33086
|
manual_override_allowed: boolean;
|
|
33087
|
+
/**
|
|
33088
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
33089
|
+
*/
|
|
33090
|
+
ecobee_metadata?: {
|
|
33091
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
33092
|
+
climate_ref: string;
|
|
33093
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
33094
|
+
is_optimized: boolean;
|
|
33095
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
33096
|
+
owner: 'user' | 'system';
|
|
33097
|
+
} | undefined;
|
|
32888
33098
|
}> | undefined;
|
|
32889
33099
|
/** 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. */
|
|
32890
33100
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -38822,6 +39032,8 @@ export interface Routes {
|
|
|
38822
39032
|
bridge_name?: string | undefined;
|
|
38823
39033
|
/** Keypad ID for an igloohome device. */
|
|
38824
39034
|
keypad_id?: string | undefined;
|
|
39035
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
39036
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
38825
39037
|
} | undefined;
|
|
38826
39038
|
/** Metadata for a Google Nest device. */
|
|
38827
39039
|
nest_metadata?: {
|
|
@@ -39061,6 +39273,17 @@ export interface Routes {
|
|
|
39061
39273
|
/** 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).
|
|
39062
39274
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
39063
39275
|
manual_override_allowed?: boolean | undefined;
|
|
39276
|
+
/**
|
|
39277
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
39278
|
+
*/
|
|
39279
|
+
ecobee_metadata?: ({
|
|
39280
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
39281
|
+
climate_ref: string;
|
|
39282
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
39283
|
+
is_optimized: boolean;
|
|
39284
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
39285
|
+
owner: 'user' | 'system';
|
|
39286
|
+
} | undefined) | undefined;
|
|
39064
39287
|
} | undefined;
|
|
39065
39288
|
/**
|
|
39066
39289
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -39096,6 +39319,17 @@ export interface Routes {
|
|
|
39096
39319
|
/** 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).
|
|
39097
39320
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
39098
39321
|
manual_override_allowed?: boolean | undefined;
|
|
39322
|
+
/**
|
|
39323
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
39324
|
+
*/
|
|
39325
|
+
ecobee_metadata?: ({
|
|
39326
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
39327
|
+
climate_ref: string;
|
|
39328
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
39329
|
+
is_optimized: boolean;
|
|
39330
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
39331
|
+
owner: 'user' | 'system';
|
|
39332
|
+
} | undefined) | undefined;
|
|
39099
39333
|
} | undefined;
|
|
39100
39334
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
39101
39335
|
available_climate_presets?: Array<{
|
|
@@ -39130,6 +39364,17 @@ export interface Routes {
|
|
|
39130
39364
|
/** 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).
|
|
39131
39365
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
39132
39366
|
manual_override_allowed: boolean;
|
|
39367
|
+
/**
|
|
39368
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
39369
|
+
*/
|
|
39370
|
+
ecobee_metadata?: {
|
|
39371
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
39372
|
+
climate_ref: string;
|
|
39373
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
39374
|
+
is_optimized: boolean;
|
|
39375
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
39376
|
+
owner: 'user' | 'system';
|
|
39377
|
+
} | undefined;
|
|
39133
39378
|
}> | undefined;
|
|
39134
39379
|
/** 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. */
|
|
39135
39380
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -39947,6 +40192,8 @@ export interface Routes {
|
|
|
39947
40192
|
bridge_name?: string | undefined;
|
|
39948
40193
|
/** Keypad ID for an igloohome device. */
|
|
39949
40194
|
keypad_id?: string | undefined;
|
|
40195
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
40196
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
39950
40197
|
} | undefined;
|
|
39951
40198
|
/** Metadata for a Google Nest device. */
|
|
39952
40199
|
nest_metadata?: {
|
|
@@ -40186,6 +40433,17 @@ export interface Routes {
|
|
|
40186
40433
|
/** 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).
|
|
40187
40434
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
40188
40435
|
manual_override_allowed?: boolean | undefined;
|
|
40436
|
+
/**
|
|
40437
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
40438
|
+
*/
|
|
40439
|
+
ecobee_metadata?: ({
|
|
40440
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
40441
|
+
climate_ref: string;
|
|
40442
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
40443
|
+
is_optimized: boolean;
|
|
40444
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
40445
|
+
owner: 'user' | 'system';
|
|
40446
|
+
} | undefined) | undefined;
|
|
40189
40447
|
} | undefined;
|
|
40190
40448
|
/**
|
|
40191
40449
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -40221,6 +40479,17 @@ export interface Routes {
|
|
|
40221
40479
|
/** 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).
|
|
40222
40480
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
40223
40481
|
manual_override_allowed?: boolean | undefined;
|
|
40482
|
+
/**
|
|
40483
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
40484
|
+
*/
|
|
40485
|
+
ecobee_metadata?: ({
|
|
40486
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
40487
|
+
climate_ref: string;
|
|
40488
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
40489
|
+
is_optimized: boolean;
|
|
40490
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
40491
|
+
owner: 'user' | 'system';
|
|
40492
|
+
} | undefined) | undefined;
|
|
40224
40493
|
} | undefined;
|
|
40225
40494
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
40226
40495
|
available_climate_presets?: Array<{
|
|
@@ -40255,6 +40524,17 @@ export interface Routes {
|
|
|
40255
40524
|
/** 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).
|
|
40256
40525
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
40257
40526
|
manual_override_allowed: boolean;
|
|
40527
|
+
/**
|
|
40528
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
40529
|
+
*/
|
|
40530
|
+
ecobee_metadata?: {
|
|
40531
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
40532
|
+
climate_ref: string;
|
|
40533
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
40534
|
+
is_optimized: boolean;
|
|
40535
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
40536
|
+
owner: 'user' | 'system';
|
|
40537
|
+
} | undefined;
|
|
40258
40538
|
}> | undefined;
|
|
40259
40539
|
/** 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. */
|
|
40260
40540
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -48499,6 +48779,17 @@ export interface Routes {
|
|
|
48499
48779
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
48500
48780
|
/** 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). */
|
|
48501
48781
|
heating_set_point_fahrenheit?: number | undefined;
|
|
48782
|
+
/**
|
|
48783
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
48784
|
+
*/
|
|
48785
|
+
ecobee_metadata?: {
|
|
48786
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
48787
|
+
climate_ref: string;
|
|
48788
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
48789
|
+
is_optimized: boolean;
|
|
48790
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
48791
|
+
owner: 'user' | 'system';
|
|
48792
|
+
} | undefined;
|
|
48502
48793
|
};
|
|
48503
48794
|
commonParams: {};
|
|
48504
48795
|
formData: {};
|
|
@@ -50245,6 +50536,8 @@ export interface Routes {
|
|
|
50245
50536
|
bridge_name?: string | undefined;
|
|
50246
50537
|
/** Keypad ID for an igloohome device. */
|
|
50247
50538
|
keypad_id?: string | undefined;
|
|
50539
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
50540
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
50248
50541
|
} | undefined;
|
|
50249
50542
|
/** Metadata for a Google Nest device. */
|
|
50250
50543
|
nest_metadata?: {
|
|
@@ -50484,6 +50777,17 @@ export interface Routes {
|
|
|
50484
50777
|
/** 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).
|
|
50485
50778
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
50486
50779
|
manual_override_allowed?: boolean | undefined;
|
|
50780
|
+
/**
|
|
50781
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
50782
|
+
*/
|
|
50783
|
+
ecobee_metadata?: ({
|
|
50784
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
50785
|
+
climate_ref: string;
|
|
50786
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
50787
|
+
is_optimized: boolean;
|
|
50788
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
50789
|
+
owner: 'user' | 'system';
|
|
50790
|
+
} | undefined) | undefined;
|
|
50487
50791
|
} | undefined;
|
|
50488
50792
|
/**
|
|
50489
50793
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -50519,6 +50823,17 @@ export interface Routes {
|
|
|
50519
50823
|
/** 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).
|
|
50520
50824
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
50521
50825
|
manual_override_allowed?: boolean | undefined;
|
|
50826
|
+
/**
|
|
50827
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
50828
|
+
*/
|
|
50829
|
+
ecobee_metadata?: ({
|
|
50830
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
50831
|
+
climate_ref: string;
|
|
50832
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
50833
|
+
is_optimized: boolean;
|
|
50834
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
50835
|
+
owner: 'user' | 'system';
|
|
50836
|
+
} | undefined) | undefined;
|
|
50522
50837
|
} | undefined;
|
|
50523
50838
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
50524
50839
|
available_climate_presets?: Array<{
|
|
@@ -50553,6 +50868,17 @@ export interface Routes {
|
|
|
50553
50868
|
/** 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).
|
|
50554
50869
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
50555
50870
|
manual_override_allowed: boolean;
|
|
50871
|
+
/**
|
|
50872
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
50873
|
+
*/
|
|
50874
|
+
ecobee_metadata?: {
|
|
50875
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
50876
|
+
climate_ref: string;
|
|
50877
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
50878
|
+
is_optimized: boolean;
|
|
50879
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
50880
|
+
owner: 'user' | 'system';
|
|
50881
|
+
} | undefined;
|
|
50556
50882
|
}> | undefined;
|
|
50557
50883
|
/** 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. */
|
|
50558
50884
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -53949,6 +54275,8 @@ export interface Routes {
|
|
|
53949
54275
|
bridge_name?: string | undefined;
|
|
53950
54276
|
/** Keypad ID for an igloohome device. */
|
|
53951
54277
|
keypad_id?: string | undefined;
|
|
54278
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
54279
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
53952
54280
|
} | undefined;
|
|
53953
54281
|
/** Metadata for a Google Nest device. */
|
|
53954
54282
|
nest_metadata?: {
|
|
@@ -54188,6 +54516,17 @@ export interface Routes {
|
|
|
54188
54516
|
/** 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).
|
|
54189
54517
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
54190
54518
|
manual_override_allowed?: boolean | undefined;
|
|
54519
|
+
/**
|
|
54520
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
54521
|
+
*/
|
|
54522
|
+
ecobee_metadata?: ({
|
|
54523
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
54524
|
+
climate_ref: string;
|
|
54525
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
54526
|
+
is_optimized: boolean;
|
|
54527
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
54528
|
+
owner: 'user' | 'system';
|
|
54529
|
+
} | undefined) | undefined;
|
|
54191
54530
|
} | undefined;
|
|
54192
54531
|
/**
|
|
54193
54532
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -54223,6 +54562,17 @@ export interface Routes {
|
|
|
54223
54562
|
/** 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).
|
|
54224
54563
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
54225
54564
|
manual_override_allowed?: boolean | undefined;
|
|
54565
|
+
/**
|
|
54566
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
54567
|
+
*/
|
|
54568
|
+
ecobee_metadata?: ({
|
|
54569
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
54570
|
+
climate_ref: string;
|
|
54571
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
54572
|
+
is_optimized: boolean;
|
|
54573
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
54574
|
+
owner: 'user' | 'system';
|
|
54575
|
+
} | undefined) | undefined;
|
|
54226
54576
|
} | undefined;
|
|
54227
54577
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
54228
54578
|
available_climate_presets?: Array<{
|
|
@@ -54257,6 +54607,17 @@ export interface Routes {
|
|
|
54257
54607
|
/** 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).
|
|
54258
54608
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
54259
54609
|
manual_override_allowed: boolean;
|
|
54610
|
+
/**
|
|
54611
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
54612
|
+
*/
|
|
54613
|
+
ecobee_metadata?: {
|
|
54614
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
54615
|
+
climate_ref: string;
|
|
54616
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
54617
|
+
is_optimized: boolean;
|
|
54618
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
54619
|
+
owner: 'user' | 'system';
|
|
54620
|
+
} | undefined;
|
|
54260
54621
|
}> | undefined;
|
|
54261
54622
|
/** 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. */
|
|
54262
54623
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -55074,6 +55435,8 @@ export interface Routes {
|
|
|
55074
55435
|
bridge_name?: string | undefined;
|
|
55075
55436
|
/** Keypad ID for an igloohome device. */
|
|
55076
55437
|
keypad_id?: string | undefined;
|
|
55438
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
55439
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
55077
55440
|
} | undefined;
|
|
55078
55441
|
/** Metadata for a Google Nest device. */
|
|
55079
55442
|
nest_metadata?: {
|
|
@@ -55313,6 +55676,17 @@ export interface Routes {
|
|
|
55313
55676
|
/** 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).
|
|
55314
55677
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
55315
55678
|
manual_override_allowed?: boolean | undefined;
|
|
55679
|
+
/**
|
|
55680
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
55681
|
+
*/
|
|
55682
|
+
ecobee_metadata?: ({
|
|
55683
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
55684
|
+
climate_ref: string;
|
|
55685
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
55686
|
+
is_optimized: boolean;
|
|
55687
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
55688
|
+
owner: 'user' | 'system';
|
|
55689
|
+
} | undefined) | undefined;
|
|
55316
55690
|
} | undefined;
|
|
55317
55691
|
/**
|
|
55318
55692
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -55348,6 +55722,17 @@ export interface Routes {
|
|
|
55348
55722
|
/** 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).
|
|
55349
55723
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
55350
55724
|
manual_override_allowed?: boolean | undefined;
|
|
55725
|
+
/**
|
|
55726
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
55727
|
+
*/
|
|
55728
|
+
ecobee_metadata?: ({
|
|
55729
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
55730
|
+
climate_ref: string;
|
|
55731
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
55732
|
+
is_optimized: boolean;
|
|
55733
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
55734
|
+
owner: 'user' | 'system';
|
|
55735
|
+
} | undefined) | undefined;
|
|
55351
55736
|
} | undefined;
|
|
55352
55737
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
55353
55738
|
available_climate_presets?: Array<{
|
|
@@ -55382,6 +55767,17 @@ export interface Routes {
|
|
|
55382
55767
|
/** 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).
|
|
55383
55768
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
55384
55769
|
manual_override_allowed: boolean;
|
|
55770
|
+
/**
|
|
55771
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
55772
|
+
*/
|
|
55773
|
+
ecobee_metadata?: {
|
|
55774
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
55775
|
+
climate_ref: string;
|
|
55776
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
55777
|
+
is_optimized: boolean;
|
|
55778
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
55779
|
+
owner: 'user' | 'system';
|
|
55780
|
+
} | undefined;
|
|
55385
55781
|
}> | undefined;
|
|
55386
55782
|
/** 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. */
|
|
55387
55783
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -59924,6 +60320,17 @@ export interface Routes {
|
|
|
59924
60320
|
/** 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).
|
|
59925
60321
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
59926
60322
|
manual_override_allowed?: boolean | undefined;
|
|
60323
|
+
/**
|
|
60324
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
60325
|
+
*/
|
|
60326
|
+
ecobee_metadata?: {
|
|
60327
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
60328
|
+
climate_ref: string;
|
|
60329
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
60330
|
+
is_optimized: boolean;
|
|
60331
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
60332
|
+
owner: 'user' | 'system';
|
|
60333
|
+
} | undefined;
|
|
59927
60334
|
};
|
|
59928
60335
|
commonParams: {};
|
|
59929
60336
|
formData: {};
|
|
@@ -62608,6 +63015,8 @@ export interface Routes {
|
|
|
62608
63015
|
bridge_name?: string | undefined;
|
|
62609
63016
|
/** Keypad ID for an igloohome device. */
|
|
62610
63017
|
keypad_id?: string | undefined;
|
|
63018
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
63019
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
62611
63020
|
} | undefined;
|
|
62612
63021
|
/** Metadata for a Google Nest device. */
|
|
62613
63022
|
nest_metadata?: {
|
|
@@ -62847,6 +63256,17 @@ export interface Routes {
|
|
|
62847
63256
|
/** 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).
|
|
62848
63257
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
62849
63258
|
manual_override_allowed?: boolean | undefined;
|
|
63259
|
+
/**
|
|
63260
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
63261
|
+
*/
|
|
63262
|
+
ecobee_metadata?: ({
|
|
63263
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
63264
|
+
climate_ref: string;
|
|
63265
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
63266
|
+
is_optimized: boolean;
|
|
63267
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
63268
|
+
owner: 'user' | 'system';
|
|
63269
|
+
} | undefined) | undefined;
|
|
62850
63270
|
} | undefined;
|
|
62851
63271
|
/**
|
|
62852
63272
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -62882,6 +63302,17 @@ export interface Routes {
|
|
|
62882
63302
|
/** 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).
|
|
62883
63303
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
62884
63304
|
manual_override_allowed?: boolean | undefined;
|
|
63305
|
+
/**
|
|
63306
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
63307
|
+
*/
|
|
63308
|
+
ecobee_metadata?: ({
|
|
63309
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
63310
|
+
climate_ref: string;
|
|
63311
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
63312
|
+
is_optimized: boolean;
|
|
63313
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
63314
|
+
owner: 'user' | 'system';
|
|
63315
|
+
} | undefined) | undefined;
|
|
62885
63316
|
} | undefined;
|
|
62886
63317
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
62887
63318
|
available_climate_presets?: Array<{
|
|
@@ -62916,6 +63347,17 @@ export interface Routes {
|
|
|
62916
63347
|
/** 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).
|
|
62917
63348
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
62918
63349
|
manual_override_allowed: boolean;
|
|
63350
|
+
/**
|
|
63351
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
63352
|
+
*/
|
|
63353
|
+
ecobee_metadata?: {
|
|
63354
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
63355
|
+
climate_ref: string;
|
|
63356
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
63357
|
+
is_optimized: boolean;
|
|
63358
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
63359
|
+
owner: 'user' | 'system';
|
|
63360
|
+
} | undefined;
|
|
62919
63361
|
}> | undefined;
|
|
62920
63362
|
/** 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. */
|
|
62921
63363
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -63735,6 +64177,8 @@ export interface Routes {
|
|
|
63735
64177
|
bridge_name?: string | undefined;
|
|
63736
64178
|
/** Keypad ID for an igloohome device. */
|
|
63737
64179
|
keypad_id?: string | undefined;
|
|
64180
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
64181
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
63738
64182
|
} | undefined;
|
|
63739
64183
|
/** Metadata for a Google Nest device. */
|
|
63740
64184
|
nest_metadata?: {
|
|
@@ -63974,6 +64418,17 @@ export interface Routes {
|
|
|
63974
64418
|
/** 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).
|
|
63975
64419
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
63976
64420
|
manual_override_allowed?: boolean | undefined;
|
|
64421
|
+
/**
|
|
64422
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
64423
|
+
*/
|
|
64424
|
+
ecobee_metadata?: ({
|
|
64425
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
64426
|
+
climate_ref: string;
|
|
64427
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
64428
|
+
is_optimized: boolean;
|
|
64429
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
64430
|
+
owner: 'user' | 'system';
|
|
64431
|
+
} | undefined) | undefined;
|
|
63977
64432
|
} | undefined;
|
|
63978
64433
|
/**
|
|
63979
64434
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -64009,6 +64464,17 @@ export interface Routes {
|
|
|
64009
64464
|
/** 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).
|
|
64010
64465
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
64011
64466
|
manual_override_allowed?: boolean | undefined;
|
|
64467
|
+
/**
|
|
64468
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
64469
|
+
*/
|
|
64470
|
+
ecobee_metadata?: ({
|
|
64471
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
64472
|
+
climate_ref: string;
|
|
64473
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
64474
|
+
is_optimized: boolean;
|
|
64475
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
64476
|
+
owner: 'user' | 'system';
|
|
64477
|
+
} | undefined) | undefined;
|
|
64012
64478
|
} | undefined;
|
|
64013
64479
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
64014
64480
|
available_climate_presets?: Array<{
|
|
@@ -64043,6 +64509,17 @@ export interface Routes {
|
|
|
64043
64509
|
/** 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).
|
|
64044
64510
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
64045
64511
|
manual_override_allowed: boolean;
|
|
64512
|
+
/**
|
|
64513
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
64514
|
+
*/
|
|
64515
|
+
ecobee_metadata?: {
|
|
64516
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
64517
|
+
climate_ref: string;
|
|
64518
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
64519
|
+
is_optimized: boolean;
|
|
64520
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
64521
|
+
owner: 'user' | 'system';
|
|
64522
|
+
} | undefined;
|
|
64046
64523
|
}> | undefined;
|
|
64047
64524
|
/** 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. */
|
|
64048
64525
|
fallback_climate_preset_key?: (string | null) | undefined;
|