@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
package/dist/connect.d.cts
CHANGED
|
@@ -12202,18 +12202,21 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12202
12202
|
bridge_id: z.ZodOptional<z.ZodString>;
|
|
12203
12203
|
bridge_name: z.ZodOptional<z.ZodString>;
|
|
12204
12204
|
keypad_id: z.ZodOptional<z.ZodString>;
|
|
12205
|
+
is_keypad_linked_to_bridge: z.ZodOptional<z.ZodBoolean>;
|
|
12205
12206
|
}, "strip", z.ZodTypeAny, {
|
|
12206
12207
|
device_id: string;
|
|
12207
12208
|
device_name: string;
|
|
12208
12209
|
bridge_id?: string | undefined;
|
|
12209
12210
|
bridge_name?: string | undefined;
|
|
12210
12211
|
keypad_id?: string | undefined;
|
|
12212
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
12211
12213
|
}, {
|
|
12212
12214
|
device_id: string;
|
|
12213
12215
|
device_name: string;
|
|
12214
12216
|
bridge_id?: string | undefined;
|
|
12215
12217
|
bridge_name?: string | undefined;
|
|
12216
12218
|
keypad_id?: string | undefined;
|
|
12219
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
12217
12220
|
}>>;
|
|
12218
12221
|
nest_metadata: z.ZodOptional<z.ZodObject<{
|
|
12219
12222
|
nest_device_id: z.ZodString;
|
|
@@ -12454,6 +12457,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12454
12457
|
product_type: string;
|
|
12455
12458
|
}>>;
|
|
12456
12459
|
}, "strip", z.ZodTypeAny, {
|
|
12460
|
+
ecobee_metadata?: {
|
|
12461
|
+
device_name: string;
|
|
12462
|
+
ecobee_device_id: string;
|
|
12463
|
+
} | undefined;
|
|
12457
12464
|
salto_ks_metadata?: {
|
|
12458
12465
|
lock_type: string;
|
|
12459
12466
|
lock_id: string;
|
|
@@ -12604,6 +12611,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12604
12611
|
bridge_id?: string | undefined;
|
|
12605
12612
|
bridge_name?: string | undefined;
|
|
12606
12613
|
keypad_id?: string | undefined;
|
|
12614
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
12607
12615
|
} | undefined;
|
|
12608
12616
|
nest_metadata?: {
|
|
12609
12617
|
device_name: string;
|
|
@@ -12611,10 +12619,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12611
12619
|
device_custom_name: string;
|
|
12612
12620
|
display_name?: string | undefined;
|
|
12613
12621
|
} | undefined;
|
|
12614
|
-
ecobee_metadata?: {
|
|
12615
|
-
device_name: string;
|
|
12616
|
-
ecobee_device_id: string;
|
|
12617
|
-
} | undefined;
|
|
12618
12622
|
honeywell_resideo_metadata?: {
|
|
12619
12623
|
device_name: string;
|
|
12620
12624
|
honeywell_resideo_device_id: string;
|
|
@@ -12686,6 +12690,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12686
12690
|
product_type: string;
|
|
12687
12691
|
} | undefined;
|
|
12688
12692
|
}, {
|
|
12693
|
+
ecobee_metadata?: {
|
|
12694
|
+
device_name: string;
|
|
12695
|
+
ecobee_device_id: string;
|
|
12696
|
+
} | undefined;
|
|
12689
12697
|
salto_ks_metadata?: {
|
|
12690
12698
|
lock_type: string;
|
|
12691
12699
|
lock_id: string;
|
|
@@ -12836,6 +12844,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12836
12844
|
bridge_id?: string | undefined;
|
|
12837
12845
|
bridge_name?: string | undefined;
|
|
12838
12846
|
keypad_id?: string | undefined;
|
|
12847
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
12839
12848
|
} | undefined;
|
|
12840
12849
|
nest_metadata?: {
|
|
12841
12850
|
device_name: string;
|
|
@@ -12843,10 +12852,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12843
12852
|
device_custom_name: string;
|
|
12844
12853
|
display_name?: string | undefined;
|
|
12845
12854
|
} | undefined;
|
|
12846
|
-
ecobee_metadata?: {
|
|
12847
|
-
device_name: string;
|
|
12848
|
-
ecobee_device_id: string;
|
|
12849
|
-
} | undefined;
|
|
12850
12855
|
honeywell_resideo_metadata?: {
|
|
12851
12856
|
device_name: string;
|
|
12852
12857
|
honeywell_resideo_device_id: string;
|
|
@@ -13015,6 +13020,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13015
13020
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
13016
13021
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
13017
13022
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
13023
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
13024
|
+
climate_ref: z.ZodString;
|
|
13025
|
+
is_optimized: z.ZodBoolean;
|
|
13026
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
13027
|
+
}, "strip", z.ZodTypeAny, {
|
|
13028
|
+
climate_ref: string;
|
|
13029
|
+
is_optimized: boolean;
|
|
13030
|
+
owner: "user" | "system";
|
|
13031
|
+
}, {
|
|
13032
|
+
climate_ref: string;
|
|
13033
|
+
is_optimized: boolean;
|
|
13034
|
+
owner: "user" | "system";
|
|
13035
|
+
}>>>;
|
|
13018
13036
|
}, "strip", z.ZodTypeAny, {
|
|
13019
13037
|
climate_preset_key?: string | undefined;
|
|
13020
13038
|
can_edit?: boolean | undefined;
|
|
@@ -13030,6 +13048,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13030
13048
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13031
13049
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13032
13050
|
manual_override_allowed?: boolean | undefined;
|
|
13051
|
+
ecobee_metadata?: {
|
|
13052
|
+
climate_ref: string;
|
|
13053
|
+
is_optimized: boolean;
|
|
13054
|
+
owner: "user" | "system";
|
|
13055
|
+
} | undefined;
|
|
13033
13056
|
}, {
|
|
13034
13057
|
climate_preset_key?: string | undefined;
|
|
13035
13058
|
can_edit?: boolean | undefined;
|
|
@@ -13045,6 +13068,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13045
13068
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13046
13069
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13047
13070
|
manual_override_allowed?: boolean | undefined;
|
|
13071
|
+
ecobee_metadata?: {
|
|
13072
|
+
climate_ref: string;
|
|
13073
|
+
is_optimized: boolean;
|
|
13074
|
+
owner: "user" | "system";
|
|
13075
|
+
} | undefined;
|
|
13048
13076
|
}>>;
|
|
13049
13077
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
13050
13078
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -13061,6 +13089,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13061
13089
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
13062
13090
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
13063
13091
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
13092
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
13093
|
+
climate_ref: z.ZodString;
|
|
13094
|
+
is_optimized: z.ZodBoolean;
|
|
13095
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
13096
|
+
}, "strip", z.ZodTypeAny, {
|
|
13097
|
+
climate_ref: string;
|
|
13098
|
+
is_optimized: boolean;
|
|
13099
|
+
owner: "user" | "system";
|
|
13100
|
+
}, {
|
|
13101
|
+
climate_ref: string;
|
|
13102
|
+
is_optimized: boolean;
|
|
13103
|
+
owner: "user" | "system";
|
|
13104
|
+
}>>>;
|
|
13064
13105
|
}, "strip", z.ZodTypeAny, {
|
|
13065
13106
|
climate_preset_key?: string | undefined;
|
|
13066
13107
|
can_edit?: boolean | undefined;
|
|
@@ -13076,6 +13117,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13076
13117
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13077
13118
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13078
13119
|
manual_override_allowed?: boolean | undefined;
|
|
13120
|
+
ecobee_metadata?: {
|
|
13121
|
+
climate_ref: string;
|
|
13122
|
+
is_optimized: boolean;
|
|
13123
|
+
owner: "user" | "system";
|
|
13124
|
+
} | undefined;
|
|
13079
13125
|
}, {
|
|
13080
13126
|
climate_preset_key?: string | undefined;
|
|
13081
13127
|
can_edit?: boolean | undefined;
|
|
@@ -13091,6 +13137,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13091
13137
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13092
13138
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13093
13139
|
manual_override_allowed?: boolean | undefined;
|
|
13140
|
+
ecobee_metadata?: {
|
|
13141
|
+
climate_ref: string;
|
|
13142
|
+
is_optimized: boolean;
|
|
13143
|
+
owner: "user" | "system";
|
|
13144
|
+
} | undefined;
|
|
13094
13145
|
}>>;
|
|
13095
13146
|
available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13096
13147
|
climate_preset_key: z.ZodString;
|
|
@@ -13107,6 +13158,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13107
13158
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
13108
13159
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
13109
13160
|
manual_override_allowed: z.ZodBoolean;
|
|
13161
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
13162
|
+
climate_ref: z.ZodString;
|
|
13163
|
+
is_optimized: z.ZodBoolean;
|
|
13164
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
13165
|
+
}, "strip", z.ZodTypeAny, {
|
|
13166
|
+
climate_ref: string;
|
|
13167
|
+
is_optimized: boolean;
|
|
13168
|
+
owner: "user" | "system";
|
|
13169
|
+
}, {
|
|
13170
|
+
climate_ref: string;
|
|
13171
|
+
is_optimized: boolean;
|
|
13172
|
+
owner: "user" | "system";
|
|
13173
|
+
}>>;
|
|
13110
13174
|
}, "strip", z.ZodTypeAny, {
|
|
13111
13175
|
climate_preset_key: string;
|
|
13112
13176
|
can_edit: boolean;
|
|
@@ -13122,6 +13186,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13122
13186
|
heating_set_point_celsius?: number | undefined;
|
|
13123
13187
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13124
13188
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13189
|
+
ecobee_metadata?: {
|
|
13190
|
+
climate_ref: string;
|
|
13191
|
+
is_optimized: boolean;
|
|
13192
|
+
owner: "user" | "system";
|
|
13193
|
+
} | undefined;
|
|
13125
13194
|
}, {
|
|
13126
13195
|
climate_preset_key: string;
|
|
13127
13196
|
can_edit: boolean;
|
|
@@ -13137,6 +13206,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13137
13206
|
heating_set_point_celsius?: number | undefined;
|
|
13138
13207
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13139
13208
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13209
|
+
ecobee_metadata?: {
|
|
13210
|
+
climate_ref: string;
|
|
13211
|
+
is_optimized: boolean;
|
|
13212
|
+
owner: "user" | "system";
|
|
13213
|
+
} | undefined;
|
|
13140
13214
|
}>, "many">>;
|
|
13141
13215
|
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13142
13216
|
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -13310,6 +13384,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13310
13384
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13311
13385
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13312
13386
|
manual_override_allowed?: boolean | undefined;
|
|
13387
|
+
ecobee_metadata?: {
|
|
13388
|
+
climate_ref: string;
|
|
13389
|
+
is_optimized: boolean;
|
|
13390
|
+
owner: "user" | "system";
|
|
13391
|
+
} | undefined;
|
|
13313
13392
|
} | undefined;
|
|
13314
13393
|
default_climate_setting?: {
|
|
13315
13394
|
climate_preset_key?: string | undefined;
|
|
@@ -13326,6 +13405,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13326
13405
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13327
13406
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13328
13407
|
manual_override_allowed?: boolean | undefined;
|
|
13408
|
+
ecobee_metadata?: {
|
|
13409
|
+
climate_ref: string;
|
|
13410
|
+
is_optimized: boolean;
|
|
13411
|
+
owner: "user" | "system";
|
|
13412
|
+
} | undefined;
|
|
13329
13413
|
} | undefined;
|
|
13330
13414
|
available_climate_presets?: {
|
|
13331
13415
|
climate_preset_key: string;
|
|
@@ -13342,6 +13426,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13342
13426
|
heating_set_point_celsius?: number | undefined;
|
|
13343
13427
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13344
13428
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13429
|
+
ecobee_metadata?: {
|
|
13430
|
+
climate_ref: string;
|
|
13431
|
+
is_optimized: boolean;
|
|
13432
|
+
owner: "user" | "system";
|
|
13433
|
+
} | undefined;
|
|
13345
13434
|
}[] | undefined;
|
|
13346
13435
|
fallback_climate_preset_key?: string | null | undefined;
|
|
13347
13436
|
active_thermostat_schedule?: {
|
|
@@ -13425,6 +13514,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13425
13514
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13426
13515
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13427
13516
|
manual_override_allowed?: boolean | undefined;
|
|
13517
|
+
ecobee_metadata?: {
|
|
13518
|
+
climate_ref: string;
|
|
13519
|
+
is_optimized: boolean;
|
|
13520
|
+
owner: "user" | "system";
|
|
13521
|
+
} | undefined;
|
|
13428
13522
|
} | undefined;
|
|
13429
13523
|
default_climate_setting?: {
|
|
13430
13524
|
climate_preset_key?: string | undefined;
|
|
@@ -13441,6 +13535,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13441
13535
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13442
13536
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13443
13537
|
manual_override_allowed?: boolean | undefined;
|
|
13538
|
+
ecobee_metadata?: {
|
|
13539
|
+
climate_ref: string;
|
|
13540
|
+
is_optimized: boolean;
|
|
13541
|
+
owner: "user" | "system";
|
|
13542
|
+
} | undefined;
|
|
13444
13543
|
} | undefined;
|
|
13445
13544
|
available_climate_presets?: {
|
|
13446
13545
|
climate_preset_key: string;
|
|
@@ -13457,6 +13556,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13457
13556
|
heating_set_point_celsius?: number | undefined;
|
|
13458
13557
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13459
13558
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13559
|
+
ecobee_metadata?: {
|
|
13560
|
+
climate_ref: string;
|
|
13561
|
+
is_optimized: boolean;
|
|
13562
|
+
owner: "user" | "system";
|
|
13563
|
+
} | undefined;
|
|
13460
13564
|
}[] | undefined;
|
|
13461
13565
|
fallback_climate_preset_key?: string | null | undefined;
|
|
13462
13566
|
active_thermostat_schedule?: {
|
|
@@ -14371,6 +14475,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14371
14475
|
has_active_phone: boolean;
|
|
14372
14476
|
} | undefined;
|
|
14373
14477
|
} & {
|
|
14478
|
+
ecobee_metadata?: {
|
|
14479
|
+
device_name: string;
|
|
14480
|
+
ecobee_device_id: string;
|
|
14481
|
+
} | undefined;
|
|
14374
14482
|
salto_ks_metadata?: {
|
|
14375
14483
|
lock_type: string;
|
|
14376
14484
|
lock_id: string;
|
|
@@ -14521,6 +14629,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14521
14629
|
bridge_id?: string | undefined;
|
|
14522
14630
|
bridge_name?: string | undefined;
|
|
14523
14631
|
keypad_id?: string | undefined;
|
|
14632
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
14524
14633
|
} | undefined;
|
|
14525
14634
|
nest_metadata?: {
|
|
14526
14635
|
device_name: string;
|
|
@@ -14528,10 +14637,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14528
14637
|
device_custom_name: string;
|
|
14529
14638
|
display_name?: string | undefined;
|
|
14530
14639
|
} | undefined;
|
|
14531
|
-
ecobee_metadata?: {
|
|
14532
|
-
device_name: string;
|
|
14533
|
-
ecobee_device_id: string;
|
|
14534
|
-
} | undefined;
|
|
14535
14640
|
honeywell_resideo_metadata?: {
|
|
14536
14641
|
device_name: string;
|
|
14537
14642
|
honeywell_resideo_device_id: string;
|
|
@@ -14647,6 +14752,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14647
14752
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
14648
14753
|
heating_set_point_fahrenheit?: number | undefined;
|
|
14649
14754
|
manual_override_allowed?: boolean | undefined;
|
|
14755
|
+
ecobee_metadata?: {
|
|
14756
|
+
climate_ref: string;
|
|
14757
|
+
is_optimized: boolean;
|
|
14758
|
+
owner: "user" | "system";
|
|
14759
|
+
} | undefined;
|
|
14650
14760
|
} | undefined;
|
|
14651
14761
|
default_climate_setting?: {
|
|
14652
14762
|
climate_preset_key?: string | undefined;
|
|
@@ -14663,6 +14773,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14663
14773
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
14664
14774
|
heating_set_point_fahrenheit?: number | undefined;
|
|
14665
14775
|
manual_override_allowed?: boolean | undefined;
|
|
14776
|
+
ecobee_metadata?: {
|
|
14777
|
+
climate_ref: string;
|
|
14778
|
+
is_optimized: boolean;
|
|
14779
|
+
owner: "user" | "system";
|
|
14780
|
+
} | undefined;
|
|
14666
14781
|
} | undefined;
|
|
14667
14782
|
available_climate_presets?: {
|
|
14668
14783
|
climate_preset_key: string;
|
|
@@ -14679,6 +14794,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14679
14794
|
heating_set_point_celsius?: number | undefined;
|
|
14680
14795
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
14681
14796
|
heating_set_point_fahrenheit?: number | undefined;
|
|
14797
|
+
ecobee_metadata?: {
|
|
14798
|
+
climate_ref: string;
|
|
14799
|
+
is_optimized: boolean;
|
|
14800
|
+
owner: "user" | "system";
|
|
14801
|
+
} | undefined;
|
|
14682
14802
|
}[] | undefined;
|
|
14683
14803
|
fallback_climate_preset_key?: string | null | undefined;
|
|
14684
14804
|
active_thermostat_schedule?: {
|
|
@@ -14990,6 +15110,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14990
15110
|
has_active_phone: boolean;
|
|
14991
15111
|
} | undefined;
|
|
14992
15112
|
} & {
|
|
15113
|
+
ecobee_metadata?: {
|
|
15114
|
+
device_name: string;
|
|
15115
|
+
ecobee_device_id: string;
|
|
15116
|
+
} | undefined;
|
|
14993
15117
|
salto_ks_metadata?: {
|
|
14994
15118
|
lock_type: string;
|
|
14995
15119
|
lock_id: string;
|
|
@@ -15140,6 +15264,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15140
15264
|
bridge_id?: string | undefined;
|
|
15141
15265
|
bridge_name?: string | undefined;
|
|
15142
15266
|
keypad_id?: string | undefined;
|
|
15267
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
15143
15268
|
} | undefined;
|
|
15144
15269
|
nest_metadata?: {
|
|
15145
15270
|
device_name: string;
|
|
@@ -15147,10 +15272,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15147
15272
|
device_custom_name: string;
|
|
15148
15273
|
display_name?: string | undefined;
|
|
15149
15274
|
} | undefined;
|
|
15150
|
-
ecobee_metadata?: {
|
|
15151
|
-
device_name: string;
|
|
15152
|
-
ecobee_device_id: string;
|
|
15153
|
-
} | undefined;
|
|
15154
15275
|
honeywell_resideo_metadata?: {
|
|
15155
15276
|
device_name: string;
|
|
15156
15277
|
honeywell_resideo_device_id: string;
|
|
@@ -15266,6 +15387,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15266
15387
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
15267
15388
|
heating_set_point_fahrenheit?: number | undefined;
|
|
15268
15389
|
manual_override_allowed?: boolean | undefined;
|
|
15390
|
+
ecobee_metadata?: {
|
|
15391
|
+
climate_ref: string;
|
|
15392
|
+
is_optimized: boolean;
|
|
15393
|
+
owner: "user" | "system";
|
|
15394
|
+
} | undefined;
|
|
15269
15395
|
} | undefined;
|
|
15270
15396
|
default_climate_setting?: {
|
|
15271
15397
|
climate_preset_key?: string | undefined;
|
|
@@ -15282,6 +15408,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15282
15408
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
15283
15409
|
heating_set_point_fahrenheit?: number | undefined;
|
|
15284
15410
|
manual_override_allowed?: boolean | undefined;
|
|
15411
|
+
ecobee_metadata?: {
|
|
15412
|
+
climate_ref: string;
|
|
15413
|
+
is_optimized: boolean;
|
|
15414
|
+
owner: "user" | "system";
|
|
15415
|
+
} | undefined;
|
|
15285
15416
|
} | undefined;
|
|
15286
15417
|
available_climate_presets?: {
|
|
15287
15418
|
climate_preset_key: string;
|
|
@@ -15298,6 +15429,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15298
15429
|
heating_set_point_celsius?: number | undefined;
|
|
15299
15430
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
15300
15431
|
heating_set_point_fahrenheit?: number | undefined;
|
|
15432
|
+
ecobee_metadata?: {
|
|
15433
|
+
climate_ref: string;
|
|
15434
|
+
is_optimized: boolean;
|
|
15435
|
+
owner: "user" | "system";
|
|
15436
|
+
} | undefined;
|
|
15301
15437
|
}[] | undefined;
|
|
15302
15438
|
fallback_climate_preset_key?: string | null | undefined;
|
|
15303
15439
|
active_thermostat_schedule?: {
|
|
@@ -16187,18 +16323,21 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16187
16323
|
bridge_id: z.ZodOptional<z.ZodString>;
|
|
16188
16324
|
bridge_name: z.ZodOptional<z.ZodString>;
|
|
16189
16325
|
keypad_id: z.ZodOptional<z.ZodString>;
|
|
16326
|
+
is_keypad_linked_to_bridge: z.ZodOptional<z.ZodBoolean>;
|
|
16190
16327
|
}, "strip", z.ZodTypeAny, {
|
|
16191
16328
|
device_id: string;
|
|
16192
16329
|
device_name: string;
|
|
16193
16330
|
bridge_id?: string | undefined;
|
|
16194
16331
|
bridge_name?: string | undefined;
|
|
16195
16332
|
keypad_id?: string | undefined;
|
|
16333
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
16196
16334
|
}, {
|
|
16197
16335
|
device_id: string;
|
|
16198
16336
|
device_name: string;
|
|
16199
16337
|
bridge_id?: string | undefined;
|
|
16200
16338
|
bridge_name?: string | undefined;
|
|
16201
16339
|
keypad_id?: string | undefined;
|
|
16340
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
16202
16341
|
}>>;
|
|
16203
16342
|
nest_metadata: z.ZodOptional<z.ZodObject<{
|
|
16204
16343
|
nest_device_id: z.ZodString;
|
|
@@ -16439,6 +16578,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16439
16578
|
product_type: string;
|
|
16440
16579
|
}>>;
|
|
16441
16580
|
}, "strip", z.ZodTypeAny, {
|
|
16581
|
+
ecobee_metadata?: {
|
|
16582
|
+
device_name: string;
|
|
16583
|
+
ecobee_device_id: string;
|
|
16584
|
+
} | undefined;
|
|
16442
16585
|
salto_ks_metadata?: {
|
|
16443
16586
|
lock_type: string;
|
|
16444
16587
|
lock_id: string;
|
|
@@ -16589,6 +16732,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16589
16732
|
bridge_id?: string | undefined;
|
|
16590
16733
|
bridge_name?: string | undefined;
|
|
16591
16734
|
keypad_id?: string | undefined;
|
|
16735
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
16592
16736
|
} | undefined;
|
|
16593
16737
|
nest_metadata?: {
|
|
16594
16738
|
device_name: string;
|
|
@@ -16596,10 +16740,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16596
16740
|
device_custom_name: string;
|
|
16597
16741
|
display_name?: string | undefined;
|
|
16598
16742
|
} | undefined;
|
|
16599
|
-
ecobee_metadata?: {
|
|
16600
|
-
device_name: string;
|
|
16601
|
-
ecobee_device_id: string;
|
|
16602
|
-
} | undefined;
|
|
16603
16743
|
honeywell_resideo_metadata?: {
|
|
16604
16744
|
device_name: string;
|
|
16605
16745
|
honeywell_resideo_device_id: string;
|
|
@@ -16671,6 +16811,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16671
16811
|
product_type: string;
|
|
16672
16812
|
} | undefined;
|
|
16673
16813
|
}, {
|
|
16814
|
+
ecobee_metadata?: {
|
|
16815
|
+
device_name: string;
|
|
16816
|
+
ecobee_device_id: string;
|
|
16817
|
+
} | undefined;
|
|
16674
16818
|
salto_ks_metadata?: {
|
|
16675
16819
|
lock_type: string;
|
|
16676
16820
|
lock_id: string;
|
|
@@ -16821,6 +16965,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16821
16965
|
bridge_id?: string | undefined;
|
|
16822
16966
|
bridge_name?: string | undefined;
|
|
16823
16967
|
keypad_id?: string | undefined;
|
|
16968
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
16824
16969
|
} | undefined;
|
|
16825
16970
|
nest_metadata?: {
|
|
16826
16971
|
device_name: string;
|
|
@@ -16828,10 +16973,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16828
16973
|
device_custom_name: string;
|
|
16829
16974
|
display_name?: string | undefined;
|
|
16830
16975
|
} | undefined;
|
|
16831
|
-
ecobee_metadata?: {
|
|
16832
|
-
device_name: string;
|
|
16833
|
-
ecobee_device_id: string;
|
|
16834
|
-
} | undefined;
|
|
16835
16976
|
honeywell_resideo_metadata?: {
|
|
16836
16977
|
device_name: string;
|
|
16837
16978
|
honeywell_resideo_device_id: string;
|
|
@@ -17000,6 +17141,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17000
17141
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
17001
17142
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
17002
17143
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
17144
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
17145
|
+
climate_ref: z.ZodString;
|
|
17146
|
+
is_optimized: z.ZodBoolean;
|
|
17147
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
17148
|
+
}, "strip", z.ZodTypeAny, {
|
|
17149
|
+
climate_ref: string;
|
|
17150
|
+
is_optimized: boolean;
|
|
17151
|
+
owner: "user" | "system";
|
|
17152
|
+
}, {
|
|
17153
|
+
climate_ref: string;
|
|
17154
|
+
is_optimized: boolean;
|
|
17155
|
+
owner: "user" | "system";
|
|
17156
|
+
}>>>;
|
|
17003
17157
|
}, "strip", z.ZodTypeAny, {
|
|
17004
17158
|
climate_preset_key?: string | undefined;
|
|
17005
17159
|
can_edit?: boolean | undefined;
|
|
@@ -17015,6 +17169,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17015
17169
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17016
17170
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17017
17171
|
manual_override_allowed?: boolean | undefined;
|
|
17172
|
+
ecobee_metadata?: {
|
|
17173
|
+
climate_ref: string;
|
|
17174
|
+
is_optimized: boolean;
|
|
17175
|
+
owner: "user" | "system";
|
|
17176
|
+
} | undefined;
|
|
17018
17177
|
}, {
|
|
17019
17178
|
climate_preset_key?: string | undefined;
|
|
17020
17179
|
can_edit?: boolean | undefined;
|
|
@@ -17030,6 +17189,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17030
17189
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17031
17190
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17032
17191
|
manual_override_allowed?: boolean | undefined;
|
|
17192
|
+
ecobee_metadata?: {
|
|
17193
|
+
climate_ref: string;
|
|
17194
|
+
is_optimized: boolean;
|
|
17195
|
+
owner: "user" | "system";
|
|
17196
|
+
} | undefined;
|
|
17033
17197
|
}>>;
|
|
17034
17198
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
17035
17199
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -17046,6 +17210,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17046
17210
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
17047
17211
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
17048
17212
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
17213
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
17214
|
+
climate_ref: z.ZodString;
|
|
17215
|
+
is_optimized: z.ZodBoolean;
|
|
17216
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
17217
|
+
}, "strip", z.ZodTypeAny, {
|
|
17218
|
+
climate_ref: string;
|
|
17219
|
+
is_optimized: boolean;
|
|
17220
|
+
owner: "user" | "system";
|
|
17221
|
+
}, {
|
|
17222
|
+
climate_ref: string;
|
|
17223
|
+
is_optimized: boolean;
|
|
17224
|
+
owner: "user" | "system";
|
|
17225
|
+
}>>>;
|
|
17049
17226
|
}, "strip", z.ZodTypeAny, {
|
|
17050
17227
|
climate_preset_key?: string | undefined;
|
|
17051
17228
|
can_edit?: boolean | undefined;
|
|
@@ -17061,6 +17238,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17061
17238
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17062
17239
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17063
17240
|
manual_override_allowed?: boolean | undefined;
|
|
17241
|
+
ecobee_metadata?: {
|
|
17242
|
+
climate_ref: string;
|
|
17243
|
+
is_optimized: boolean;
|
|
17244
|
+
owner: "user" | "system";
|
|
17245
|
+
} | undefined;
|
|
17064
17246
|
}, {
|
|
17065
17247
|
climate_preset_key?: string | undefined;
|
|
17066
17248
|
can_edit?: boolean | undefined;
|
|
@@ -17076,6 +17258,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17076
17258
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17077
17259
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17078
17260
|
manual_override_allowed?: boolean | undefined;
|
|
17261
|
+
ecobee_metadata?: {
|
|
17262
|
+
climate_ref: string;
|
|
17263
|
+
is_optimized: boolean;
|
|
17264
|
+
owner: "user" | "system";
|
|
17265
|
+
} | undefined;
|
|
17079
17266
|
}>>;
|
|
17080
17267
|
available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17081
17268
|
climate_preset_key: z.ZodString;
|
|
@@ -17092,6 +17279,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17092
17279
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
17093
17280
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
17094
17281
|
manual_override_allowed: z.ZodBoolean;
|
|
17282
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
17283
|
+
climate_ref: z.ZodString;
|
|
17284
|
+
is_optimized: z.ZodBoolean;
|
|
17285
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
17286
|
+
}, "strip", z.ZodTypeAny, {
|
|
17287
|
+
climate_ref: string;
|
|
17288
|
+
is_optimized: boolean;
|
|
17289
|
+
owner: "user" | "system";
|
|
17290
|
+
}, {
|
|
17291
|
+
climate_ref: string;
|
|
17292
|
+
is_optimized: boolean;
|
|
17293
|
+
owner: "user" | "system";
|
|
17294
|
+
}>>;
|
|
17095
17295
|
}, "strip", z.ZodTypeAny, {
|
|
17096
17296
|
climate_preset_key: string;
|
|
17097
17297
|
can_edit: boolean;
|
|
@@ -17107,6 +17307,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17107
17307
|
heating_set_point_celsius?: number | undefined;
|
|
17108
17308
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17109
17309
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17310
|
+
ecobee_metadata?: {
|
|
17311
|
+
climate_ref: string;
|
|
17312
|
+
is_optimized: boolean;
|
|
17313
|
+
owner: "user" | "system";
|
|
17314
|
+
} | undefined;
|
|
17110
17315
|
}, {
|
|
17111
17316
|
climate_preset_key: string;
|
|
17112
17317
|
can_edit: boolean;
|
|
@@ -17122,6 +17327,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17122
17327
|
heating_set_point_celsius?: number | undefined;
|
|
17123
17328
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17124
17329
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17330
|
+
ecobee_metadata?: {
|
|
17331
|
+
climate_ref: string;
|
|
17332
|
+
is_optimized: boolean;
|
|
17333
|
+
owner: "user" | "system";
|
|
17334
|
+
} | undefined;
|
|
17125
17335
|
}>, "many">>;
|
|
17126
17336
|
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17127
17337
|
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -17295,6 +17505,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17295
17505
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17296
17506
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17297
17507
|
manual_override_allowed?: boolean | undefined;
|
|
17508
|
+
ecobee_metadata?: {
|
|
17509
|
+
climate_ref: string;
|
|
17510
|
+
is_optimized: boolean;
|
|
17511
|
+
owner: "user" | "system";
|
|
17512
|
+
} | undefined;
|
|
17298
17513
|
} | undefined;
|
|
17299
17514
|
default_climate_setting?: {
|
|
17300
17515
|
climate_preset_key?: string | undefined;
|
|
@@ -17311,6 +17526,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17311
17526
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17312
17527
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17313
17528
|
manual_override_allowed?: boolean | undefined;
|
|
17529
|
+
ecobee_metadata?: {
|
|
17530
|
+
climate_ref: string;
|
|
17531
|
+
is_optimized: boolean;
|
|
17532
|
+
owner: "user" | "system";
|
|
17533
|
+
} | undefined;
|
|
17314
17534
|
} | undefined;
|
|
17315
17535
|
available_climate_presets?: {
|
|
17316
17536
|
climate_preset_key: string;
|
|
@@ -17327,6 +17547,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17327
17547
|
heating_set_point_celsius?: number | undefined;
|
|
17328
17548
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17329
17549
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17550
|
+
ecobee_metadata?: {
|
|
17551
|
+
climate_ref: string;
|
|
17552
|
+
is_optimized: boolean;
|
|
17553
|
+
owner: "user" | "system";
|
|
17554
|
+
} | undefined;
|
|
17330
17555
|
}[] | undefined;
|
|
17331
17556
|
fallback_climate_preset_key?: string | null | undefined;
|
|
17332
17557
|
active_thermostat_schedule?: {
|
|
@@ -17410,6 +17635,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17410
17635
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17411
17636
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17412
17637
|
manual_override_allowed?: boolean | undefined;
|
|
17638
|
+
ecobee_metadata?: {
|
|
17639
|
+
climate_ref: string;
|
|
17640
|
+
is_optimized: boolean;
|
|
17641
|
+
owner: "user" | "system";
|
|
17642
|
+
} | undefined;
|
|
17413
17643
|
} | undefined;
|
|
17414
17644
|
default_climate_setting?: {
|
|
17415
17645
|
climate_preset_key?: string | undefined;
|
|
@@ -17426,6 +17656,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17426
17656
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17427
17657
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17428
17658
|
manual_override_allowed?: boolean | undefined;
|
|
17659
|
+
ecobee_metadata?: {
|
|
17660
|
+
climate_ref: string;
|
|
17661
|
+
is_optimized: boolean;
|
|
17662
|
+
owner: "user" | "system";
|
|
17663
|
+
} | undefined;
|
|
17429
17664
|
} | undefined;
|
|
17430
17665
|
available_climate_presets?: {
|
|
17431
17666
|
climate_preset_key: string;
|
|
@@ -17442,6 +17677,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17442
17677
|
heating_set_point_celsius?: number | undefined;
|
|
17443
17678
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17444
17679
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17680
|
+
ecobee_metadata?: {
|
|
17681
|
+
climate_ref: string;
|
|
17682
|
+
is_optimized: boolean;
|
|
17683
|
+
owner: "user" | "system";
|
|
17684
|
+
} | undefined;
|
|
17445
17685
|
}[] | undefined;
|
|
17446
17686
|
fallback_climate_preset_key?: string | null | undefined;
|
|
17447
17687
|
active_thermostat_schedule?: {
|
|
@@ -21033,6 +21273,19 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
21033
21273
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
21034
21274
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
21035
21275
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
21276
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
21277
|
+
climate_ref: z.ZodString;
|
|
21278
|
+
is_optimized: z.ZodBoolean;
|
|
21279
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
21280
|
+
}, "strip", z.ZodTypeAny, {
|
|
21281
|
+
climate_ref: string;
|
|
21282
|
+
is_optimized: boolean;
|
|
21283
|
+
owner: "user" | "system";
|
|
21284
|
+
}, {
|
|
21285
|
+
climate_ref: string;
|
|
21286
|
+
is_optimized: boolean;
|
|
21287
|
+
owner: "user" | "system";
|
|
21288
|
+
}>>>;
|
|
21036
21289
|
}, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
|
|
21037
21290
|
device_id: string;
|
|
21038
21291
|
workspace_id: string;
|
|
@@ -26877,6 +27130,10 @@ declare const _default: {
|
|
|
26877
27130
|
description: string;
|
|
26878
27131
|
type: string;
|
|
26879
27132
|
};
|
|
27133
|
+
is_keypad_linked_to_bridge: {
|
|
27134
|
+
description: string;
|
|
27135
|
+
type: string;
|
|
27136
|
+
};
|
|
26880
27137
|
keypad_id: {
|
|
26881
27138
|
description: string;
|
|
26882
27139
|
type: string;
|
|
@@ -27722,6 +27979,26 @@ declare const _default: {
|
|
|
27722
27979
|
description: string;
|
|
27723
27980
|
type: string;
|
|
27724
27981
|
};
|
|
27982
|
+
ecobee_metadata: {
|
|
27983
|
+
description: string;
|
|
27984
|
+
properties: {
|
|
27985
|
+
climate_ref: {
|
|
27986
|
+
description: string;
|
|
27987
|
+
type: string;
|
|
27988
|
+
};
|
|
27989
|
+
is_optimized: {
|
|
27990
|
+
description: string;
|
|
27991
|
+
type: string;
|
|
27992
|
+
};
|
|
27993
|
+
owner: {
|
|
27994
|
+
description: string;
|
|
27995
|
+
enum: string[];
|
|
27996
|
+
type: string;
|
|
27997
|
+
};
|
|
27998
|
+
};
|
|
27999
|
+
required: string[];
|
|
28000
|
+
type: string;
|
|
28001
|
+
};
|
|
27725
28002
|
fan_mode_setting: {
|
|
27726
28003
|
description: string;
|
|
27727
28004
|
enum: string[];
|
|
@@ -27817,6 +28094,26 @@ declare const _default: {
|
|
|
27817
28094
|
description: string;
|
|
27818
28095
|
type: string;
|
|
27819
28096
|
};
|
|
28097
|
+
ecobee_metadata: {
|
|
28098
|
+
description: string;
|
|
28099
|
+
properties: {
|
|
28100
|
+
climate_ref: {
|
|
28101
|
+
description: string;
|
|
28102
|
+
type: string;
|
|
28103
|
+
};
|
|
28104
|
+
is_optimized: {
|
|
28105
|
+
description: string;
|
|
28106
|
+
type: string;
|
|
28107
|
+
};
|
|
28108
|
+
owner: {
|
|
28109
|
+
description: string;
|
|
28110
|
+
enum: string[];
|
|
28111
|
+
type: string;
|
|
28112
|
+
};
|
|
28113
|
+
};
|
|
28114
|
+
required: string[];
|
|
28115
|
+
type: string;
|
|
28116
|
+
};
|
|
27820
28117
|
fan_mode_setting: {
|
|
27821
28118
|
description: string;
|
|
27822
28119
|
enum: string[];
|
|
@@ -27891,6 +28188,26 @@ declare const _default: {
|
|
|
27891
28188
|
description: string;
|
|
27892
28189
|
type: string;
|
|
27893
28190
|
};
|
|
28191
|
+
ecobee_metadata: {
|
|
28192
|
+
description: string;
|
|
28193
|
+
properties: {
|
|
28194
|
+
climate_ref: {
|
|
28195
|
+
description: string;
|
|
28196
|
+
type: string;
|
|
28197
|
+
};
|
|
28198
|
+
is_optimized: {
|
|
28199
|
+
description: string;
|
|
28200
|
+
type: string;
|
|
28201
|
+
};
|
|
28202
|
+
owner: {
|
|
28203
|
+
description: string;
|
|
28204
|
+
enum: string[];
|
|
28205
|
+
type: string;
|
|
28206
|
+
};
|
|
28207
|
+
};
|
|
28208
|
+
required: string[];
|
|
28209
|
+
type: string;
|
|
28210
|
+
};
|
|
27894
28211
|
fan_mode_setting: {
|
|
27895
28212
|
description: string;
|
|
27896
28213
|
enum: string[];
|
|
@@ -59716,6 +60033,26 @@ declare const _default: {
|
|
|
59716
60033
|
format: string;
|
|
59717
60034
|
type: string;
|
|
59718
60035
|
};
|
|
60036
|
+
ecobee_metadata: {
|
|
60037
|
+
description: string;
|
|
60038
|
+
properties: {
|
|
60039
|
+
climate_ref: {
|
|
60040
|
+
description: string;
|
|
60041
|
+
type: string;
|
|
60042
|
+
};
|
|
60043
|
+
is_optimized: {
|
|
60044
|
+
description: string;
|
|
60045
|
+
type: string;
|
|
60046
|
+
};
|
|
60047
|
+
owner: {
|
|
60048
|
+
description: string;
|
|
60049
|
+
enum: string[];
|
|
60050
|
+
type: string;
|
|
60051
|
+
};
|
|
60052
|
+
};
|
|
60053
|
+
required: string[];
|
|
60054
|
+
type: string;
|
|
60055
|
+
};
|
|
59719
60056
|
fan_mode_setting: {
|
|
59720
60057
|
description: string;
|
|
59721
60058
|
enum: string[];
|
|
@@ -62906,6 +63243,26 @@ declare const _default: {
|
|
|
62906
63243
|
format: string;
|
|
62907
63244
|
type: string;
|
|
62908
63245
|
};
|
|
63246
|
+
ecobee_metadata: {
|
|
63247
|
+
description: string;
|
|
63248
|
+
properties: {
|
|
63249
|
+
climate_ref: {
|
|
63250
|
+
description: string;
|
|
63251
|
+
type: string;
|
|
63252
|
+
};
|
|
63253
|
+
is_optimized: {
|
|
63254
|
+
description: string;
|
|
63255
|
+
type: string;
|
|
63256
|
+
};
|
|
63257
|
+
owner: {
|
|
63258
|
+
description: string;
|
|
63259
|
+
enum: string[];
|
|
63260
|
+
type: string;
|
|
63261
|
+
};
|
|
63262
|
+
};
|
|
63263
|
+
required: string[];
|
|
63264
|
+
type: string;
|
|
63265
|
+
};
|
|
62909
63266
|
fan_mode_setting: {
|
|
62910
63267
|
description: string;
|
|
62911
63268
|
enum: string[];
|
|
@@ -63029,6 +63386,26 @@ declare const _default: {
|
|
|
63029
63386
|
format: string;
|
|
63030
63387
|
type: string;
|
|
63031
63388
|
};
|
|
63389
|
+
ecobee_metadata: {
|
|
63390
|
+
description: string;
|
|
63391
|
+
properties: {
|
|
63392
|
+
climate_ref: {
|
|
63393
|
+
description: string;
|
|
63394
|
+
type: string;
|
|
63395
|
+
};
|
|
63396
|
+
is_optimized: {
|
|
63397
|
+
description: string;
|
|
63398
|
+
type: string;
|
|
63399
|
+
};
|
|
63400
|
+
owner: {
|
|
63401
|
+
description: string;
|
|
63402
|
+
enum: string[];
|
|
63403
|
+
type: string;
|
|
63404
|
+
};
|
|
63405
|
+
};
|
|
63406
|
+
required: string[];
|
|
63407
|
+
type: string;
|
|
63408
|
+
};
|
|
63032
63409
|
fan_mode_setting: {
|
|
63033
63410
|
description: string;
|
|
63034
63411
|
enum: string[];
|
|
@@ -92573,6 +92950,8 @@ interface Routes {
|
|
|
92573
92950
|
bridge_name?: string | undefined;
|
|
92574
92951
|
/** Keypad ID for an igloohome device. */
|
|
92575
92952
|
keypad_id?: string | undefined;
|
|
92953
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
92954
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
92576
92955
|
} | undefined;
|
|
92577
92956
|
/** Metadata for a Google Nest device. */
|
|
92578
92957
|
nest_metadata?: {
|
|
@@ -92812,6 +93191,17 @@ interface Routes {
|
|
|
92812
93191
|
/** 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).
|
|
92813
93192
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
92814
93193
|
manual_override_allowed?: boolean | undefined;
|
|
93194
|
+
/**
|
|
93195
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
93196
|
+
*/
|
|
93197
|
+
ecobee_metadata?: ({
|
|
93198
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
93199
|
+
climate_ref: string;
|
|
93200
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
93201
|
+
is_optimized: boolean;
|
|
93202
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
93203
|
+
owner: 'user' | 'system';
|
|
93204
|
+
} | undefined) | undefined;
|
|
92815
93205
|
} | undefined;
|
|
92816
93206
|
/**
|
|
92817
93207
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -92847,6 +93237,17 @@ interface Routes {
|
|
|
92847
93237
|
/** 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).
|
|
92848
93238
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
92849
93239
|
manual_override_allowed?: boolean | undefined;
|
|
93240
|
+
/**
|
|
93241
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
93242
|
+
*/
|
|
93243
|
+
ecobee_metadata?: ({
|
|
93244
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
93245
|
+
climate_ref: string;
|
|
93246
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
93247
|
+
is_optimized: boolean;
|
|
93248
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
93249
|
+
owner: 'user' | 'system';
|
|
93250
|
+
} | undefined) | undefined;
|
|
92850
93251
|
} | undefined;
|
|
92851
93252
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
92852
93253
|
available_climate_presets?: Array<{
|
|
@@ -92881,6 +93282,17 @@ interface Routes {
|
|
|
92881
93282
|
/** 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).
|
|
92882
93283
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
92883
93284
|
manual_override_allowed: boolean;
|
|
93285
|
+
/**
|
|
93286
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
93287
|
+
*/
|
|
93288
|
+
ecobee_metadata?: {
|
|
93289
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
93290
|
+
climate_ref: string;
|
|
93291
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
93292
|
+
is_optimized: boolean;
|
|
93293
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
93294
|
+
owner: 'user' | 'system';
|
|
93295
|
+
} | undefined;
|
|
92884
93296
|
}> | undefined;
|
|
92885
93297
|
/** 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. */
|
|
92886
93298
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -93745,6 +94157,8 @@ interface Routes {
|
|
|
93745
94157
|
bridge_name?: string | undefined;
|
|
93746
94158
|
/** Keypad ID for an igloohome device. */
|
|
93747
94159
|
keypad_id?: string | undefined;
|
|
94160
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
94161
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
93748
94162
|
} | undefined;
|
|
93749
94163
|
/** Metadata for a Google Nest device. */
|
|
93750
94164
|
nest_metadata?: {
|
|
@@ -93984,6 +94398,17 @@ interface Routes {
|
|
|
93984
94398
|
/** 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).
|
|
93985
94399
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
93986
94400
|
manual_override_allowed?: boolean | undefined;
|
|
94401
|
+
/**
|
|
94402
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
94403
|
+
*/
|
|
94404
|
+
ecobee_metadata?: ({
|
|
94405
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
94406
|
+
climate_ref: string;
|
|
94407
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
94408
|
+
is_optimized: boolean;
|
|
94409
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
94410
|
+
owner: 'user' | 'system';
|
|
94411
|
+
} | undefined) | undefined;
|
|
93987
94412
|
} | undefined;
|
|
93988
94413
|
/**
|
|
93989
94414
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -94019,6 +94444,17 @@ interface Routes {
|
|
|
94019
94444
|
/** 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).
|
|
94020
94445
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
94021
94446
|
manual_override_allowed?: boolean | undefined;
|
|
94447
|
+
/**
|
|
94448
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
94449
|
+
*/
|
|
94450
|
+
ecobee_metadata?: ({
|
|
94451
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
94452
|
+
climate_ref: string;
|
|
94453
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
94454
|
+
is_optimized: boolean;
|
|
94455
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
94456
|
+
owner: 'user' | 'system';
|
|
94457
|
+
} | undefined) | undefined;
|
|
94022
94458
|
} | undefined;
|
|
94023
94459
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
94024
94460
|
available_climate_presets?: Array<{
|
|
@@ -94053,6 +94489,17 @@ interface Routes {
|
|
|
94053
94489
|
/** 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).
|
|
94054
94490
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
94055
94491
|
manual_override_allowed: boolean;
|
|
94492
|
+
/**
|
|
94493
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
94494
|
+
*/
|
|
94495
|
+
ecobee_metadata?: {
|
|
94496
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
94497
|
+
climate_ref: string;
|
|
94498
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
94499
|
+
is_optimized: boolean;
|
|
94500
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
94501
|
+
owner: 'user' | 'system';
|
|
94502
|
+
} | undefined;
|
|
94056
94503
|
}> | undefined;
|
|
94057
94504
|
/** 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. */
|
|
94058
94505
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -98681,6 +99128,8 @@ interface Routes {
|
|
|
98681
99128
|
bridge_name?: string | undefined;
|
|
98682
99129
|
/** Keypad ID for an igloohome device. */
|
|
98683
99130
|
keypad_id?: string | undefined;
|
|
99131
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
99132
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
98684
99133
|
} | undefined;
|
|
98685
99134
|
/** Metadata for a Google Nest device. */
|
|
98686
99135
|
nest_metadata?: {
|
|
@@ -98920,6 +99369,17 @@ interface Routes {
|
|
|
98920
99369
|
/** 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).
|
|
98921
99370
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
98922
99371
|
manual_override_allowed?: boolean | undefined;
|
|
99372
|
+
/**
|
|
99373
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
99374
|
+
*/
|
|
99375
|
+
ecobee_metadata?: ({
|
|
99376
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
99377
|
+
climate_ref: string;
|
|
99378
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
99379
|
+
is_optimized: boolean;
|
|
99380
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
99381
|
+
owner: 'user' | 'system';
|
|
99382
|
+
} | undefined) | undefined;
|
|
98923
99383
|
} | undefined;
|
|
98924
99384
|
/**
|
|
98925
99385
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -98955,6 +99415,17 @@ interface Routes {
|
|
|
98955
99415
|
/** 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).
|
|
98956
99416
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
98957
99417
|
manual_override_allowed?: boolean | undefined;
|
|
99418
|
+
/**
|
|
99419
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
99420
|
+
*/
|
|
99421
|
+
ecobee_metadata?: ({
|
|
99422
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
99423
|
+
climate_ref: string;
|
|
99424
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
99425
|
+
is_optimized: boolean;
|
|
99426
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
99427
|
+
owner: 'user' | 'system';
|
|
99428
|
+
} | undefined) | undefined;
|
|
98958
99429
|
} | undefined;
|
|
98959
99430
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
98960
99431
|
available_climate_presets?: Array<{
|
|
@@ -98989,6 +99460,17 @@ interface Routes {
|
|
|
98989
99460
|
/** 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).
|
|
98990
99461
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
98991
99462
|
manual_override_allowed: boolean;
|
|
99463
|
+
/**
|
|
99464
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
99465
|
+
*/
|
|
99466
|
+
ecobee_metadata?: {
|
|
99467
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
99468
|
+
climate_ref: string;
|
|
99469
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
99470
|
+
is_optimized: boolean;
|
|
99471
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
99472
|
+
owner: 'user' | 'system';
|
|
99473
|
+
} | undefined;
|
|
98992
99474
|
}> | undefined;
|
|
98993
99475
|
/** 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. */
|
|
98994
99476
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -99807,6 +100289,8 @@ interface Routes {
|
|
|
99807
100289
|
bridge_name?: string | undefined;
|
|
99808
100290
|
/** Keypad ID for an igloohome device. */
|
|
99809
100291
|
keypad_id?: string | undefined;
|
|
100292
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
100293
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
99810
100294
|
} | undefined;
|
|
99811
100295
|
/** Metadata for a Google Nest device. */
|
|
99812
100296
|
nest_metadata?: {
|
|
@@ -100046,6 +100530,17 @@ interface Routes {
|
|
|
100046
100530
|
/** 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).
|
|
100047
100531
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
100048
100532
|
manual_override_allowed?: boolean | undefined;
|
|
100533
|
+
/**
|
|
100534
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
100535
|
+
*/
|
|
100536
|
+
ecobee_metadata?: ({
|
|
100537
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
100538
|
+
climate_ref: string;
|
|
100539
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
100540
|
+
is_optimized: boolean;
|
|
100541
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
100542
|
+
owner: 'user' | 'system';
|
|
100543
|
+
} | undefined) | undefined;
|
|
100049
100544
|
} | undefined;
|
|
100050
100545
|
/**
|
|
100051
100546
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -100081,6 +100576,17 @@ interface Routes {
|
|
|
100081
100576
|
/** 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).
|
|
100082
100577
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
100083
100578
|
manual_override_allowed?: boolean | undefined;
|
|
100579
|
+
/**
|
|
100580
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
100581
|
+
*/
|
|
100582
|
+
ecobee_metadata?: ({
|
|
100583
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
100584
|
+
climate_ref: string;
|
|
100585
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
100586
|
+
is_optimized: boolean;
|
|
100587
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
100588
|
+
owner: 'user' | 'system';
|
|
100589
|
+
} | undefined) | undefined;
|
|
100084
100590
|
} | undefined;
|
|
100085
100591
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
100086
100592
|
available_climate_presets?: Array<{
|
|
@@ -100115,6 +100621,17 @@ interface Routes {
|
|
|
100115
100621
|
/** 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).
|
|
100116
100622
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
100117
100623
|
manual_override_allowed: boolean;
|
|
100624
|
+
/**
|
|
100625
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
100626
|
+
*/
|
|
100627
|
+
ecobee_metadata?: {
|
|
100628
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
100629
|
+
climate_ref: string;
|
|
100630
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
100631
|
+
is_optimized: boolean;
|
|
100632
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
100633
|
+
owner: 'user' | 'system';
|
|
100634
|
+
} | undefined;
|
|
100118
100635
|
}> | undefined;
|
|
100119
100636
|
/** 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. */
|
|
100120
100637
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -100979,6 +101496,8 @@ interface Routes {
|
|
|
100979
101496
|
bridge_name?: string | undefined;
|
|
100980
101497
|
/** Keypad ID for an igloohome device. */
|
|
100981
101498
|
keypad_id?: string | undefined;
|
|
101499
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
101500
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
100982
101501
|
} | undefined;
|
|
100983
101502
|
/** Metadata for a Google Nest device. */
|
|
100984
101503
|
nest_metadata?: {
|
|
@@ -101218,6 +101737,17 @@ interface Routes {
|
|
|
101218
101737
|
/** 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).
|
|
101219
101738
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
101220
101739
|
manual_override_allowed?: boolean | undefined;
|
|
101740
|
+
/**
|
|
101741
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
101742
|
+
*/
|
|
101743
|
+
ecobee_metadata?: ({
|
|
101744
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
101745
|
+
climate_ref: string;
|
|
101746
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
101747
|
+
is_optimized: boolean;
|
|
101748
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
101749
|
+
owner: 'user' | 'system';
|
|
101750
|
+
} | undefined) | undefined;
|
|
101221
101751
|
} | undefined;
|
|
101222
101752
|
/**
|
|
101223
101753
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -101253,6 +101783,17 @@ interface Routes {
|
|
|
101253
101783
|
/** 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).
|
|
101254
101784
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
101255
101785
|
manual_override_allowed?: boolean | undefined;
|
|
101786
|
+
/**
|
|
101787
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
101788
|
+
*/
|
|
101789
|
+
ecobee_metadata?: ({
|
|
101790
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
101791
|
+
climate_ref: string;
|
|
101792
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
101793
|
+
is_optimized: boolean;
|
|
101794
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
101795
|
+
owner: 'user' | 'system';
|
|
101796
|
+
} | undefined) | undefined;
|
|
101256
101797
|
} | undefined;
|
|
101257
101798
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
101258
101799
|
available_climate_presets?: Array<{
|
|
@@ -101287,6 +101828,17 @@ interface Routes {
|
|
|
101287
101828
|
/** 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).
|
|
101288
101829
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
101289
101830
|
manual_override_allowed: boolean;
|
|
101831
|
+
/**
|
|
101832
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
101833
|
+
*/
|
|
101834
|
+
ecobee_metadata?: {
|
|
101835
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
101836
|
+
climate_ref: string;
|
|
101837
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
101838
|
+
is_optimized: boolean;
|
|
101839
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
101840
|
+
owner: 'user' | 'system';
|
|
101841
|
+
} | undefined;
|
|
101290
101842
|
}> | undefined;
|
|
101291
101843
|
/** 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. */
|
|
101292
101844
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -102104,6 +102656,8 @@ interface Routes {
|
|
|
102104
102656
|
bridge_name?: string | undefined;
|
|
102105
102657
|
/** Keypad ID for an igloohome device. */
|
|
102106
102658
|
keypad_id?: string | undefined;
|
|
102659
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
102660
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
102107
102661
|
} | undefined;
|
|
102108
102662
|
/** Metadata for a Google Nest device. */
|
|
102109
102663
|
nest_metadata?: {
|
|
@@ -102343,6 +102897,17 @@ interface Routes {
|
|
|
102343
102897
|
/** 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).
|
|
102344
102898
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
102345
102899
|
manual_override_allowed?: boolean | undefined;
|
|
102900
|
+
/**
|
|
102901
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
102902
|
+
*/
|
|
102903
|
+
ecobee_metadata?: ({
|
|
102904
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
102905
|
+
climate_ref: string;
|
|
102906
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
102907
|
+
is_optimized: boolean;
|
|
102908
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
102909
|
+
owner: 'user' | 'system';
|
|
102910
|
+
} | undefined) | undefined;
|
|
102346
102911
|
} | undefined;
|
|
102347
102912
|
/**
|
|
102348
102913
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -102378,6 +102943,17 @@ interface Routes {
|
|
|
102378
102943
|
/** 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).
|
|
102379
102944
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
102380
102945
|
manual_override_allowed?: boolean | undefined;
|
|
102946
|
+
/**
|
|
102947
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
102948
|
+
*/
|
|
102949
|
+
ecobee_metadata?: ({
|
|
102950
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
102951
|
+
climate_ref: string;
|
|
102952
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
102953
|
+
is_optimized: boolean;
|
|
102954
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
102955
|
+
owner: 'user' | 'system';
|
|
102956
|
+
} | undefined) | undefined;
|
|
102381
102957
|
} | undefined;
|
|
102382
102958
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
102383
102959
|
available_climate_presets?: Array<{
|
|
@@ -102412,6 +102988,17 @@ interface Routes {
|
|
|
102412
102988
|
/** 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).
|
|
102413
102989
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
102414
102990
|
manual_override_allowed: boolean;
|
|
102991
|
+
/**
|
|
102992
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
102993
|
+
*/
|
|
102994
|
+
ecobee_metadata?: {
|
|
102995
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
102996
|
+
climate_ref: string;
|
|
102997
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
102998
|
+
is_optimized: boolean;
|
|
102999
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
103000
|
+
owner: 'user' | 'system';
|
|
103001
|
+
} | undefined;
|
|
102415
103002
|
}> | undefined;
|
|
102416
103003
|
/** 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. */
|
|
102417
103004
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -108349,6 +108936,8 @@ interface Routes {
|
|
|
108349
108936
|
bridge_name?: string | undefined;
|
|
108350
108937
|
/** Keypad ID for an igloohome device. */
|
|
108351
108938
|
keypad_id?: string | undefined;
|
|
108939
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
108940
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
108352
108941
|
} | undefined;
|
|
108353
108942
|
/** Metadata for a Google Nest device. */
|
|
108354
108943
|
nest_metadata?: {
|
|
@@ -108588,6 +109177,17 @@ interface Routes {
|
|
|
108588
109177
|
/** 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).
|
|
108589
109178
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
108590
109179
|
manual_override_allowed?: boolean | undefined;
|
|
109180
|
+
/**
|
|
109181
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
109182
|
+
*/
|
|
109183
|
+
ecobee_metadata?: ({
|
|
109184
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
109185
|
+
climate_ref: string;
|
|
109186
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
109187
|
+
is_optimized: boolean;
|
|
109188
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
109189
|
+
owner: 'user' | 'system';
|
|
109190
|
+
} | undefined) | undefined;
|
|
108591
109191
|
} | undefined;
|
|
108592
109192
|
/**
|
|
108593
109193
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -108623,6 +109223,17 @@ interface Routes {
|
|
|
108623
109223
|
/** 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).
|
|
108624
109224
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
108625
109225
|
manual_override_allowed?: boolean | undefined;
|
|
109226
|
+
/**
|
|
109227
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
109228
|
+
*/
|
|
109229
|
+
ecobee_metadata?: ({
|
|
109230
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
109231
|
+
climate_ref: string;
|
|
109232
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
109233
|
+
is_optimized: boolean;
|
|
109234
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
109235
|
+
owner: 'user' | 'system';
|
|
109236
|
+
} | undefined) | undefined;
|
|
108626
109237
|
} | undefined;
|
|
108627
109238
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
108628
109239
|
available_climate_presets?: Array<{
|
|
@@ -108657,6 +109268,17 @@ interface Routes {
|
|
|
108657
109268
|
/** 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).
|
|
108658
109269
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
108659
109270
|
manual_override_allowed: boolean;
|
|
109271
|
+
/**
|
|
109272
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
109273
|
+
*/
|
|
109274
|
+
ecobee_metadata?: {
|
|
109275
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
109276
|
+
climate_ref: string;
|
|
109277
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
109278
|
+
is_optimized: boolean;
|
|
109279
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
109280
|
+
owner: 'user' | 'system';
|
|
109281
|
+
} | undefined;
|
|
108660
109282
|
}> | undefined;
|
|
108661
109283
|
/** 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. */
|
|
108662
109284
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -109474,6 +110096,8 @@ interface Routes {
|
|
|
109474
110096
|
bridge_name?: string | undefined;
|
|
109475
110097
|
/** Keypad ID for an igloohome device. */
|
|
109476
110098
|
keypad_id?: string | undefined;
|
|
110099
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
110100
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
109477
110101
|
} | undefined;
|
|
109478
110102
|
/** Metadata for a Google Nest device. */
|
|
109479
110103
|
nest_metadata?: {
|
|
@@ -109713,6 +110337,17 @@ interface Routes {
|
|
|
109713
110337
|
/** 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).
|
|
109714
110338
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
109715
110339
|
manual_override_allowed?: boolean | undefined;
|
|
110340
|
+
/**
|
|
110341
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
110342
|
+
*/
|
|
110343
|
+
ecobee_metadata?: ({
|
|
110344
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
110345
|
+
climate_ref: string;
|
|
110346
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
110347
|
+
is_optimized: boolean;
|
|
110348
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
110349
|
+
owner: 'user' | 'system';
|
|
110350
|
+
} | undefined) | undefined;
|
|
109716
110351
|
} | undefined;
|
|
109717
110352
|
/**
|
|
109718
110353
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -109748,6 +110383,17 @@ interface Routes {
|
|
|
109748
110383
|
/** 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).
|
|
109749
110384
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
109750
110385
|
manual_override_allowed?: boolean | undefined;
|
|
110386
|
+
/**
|
|
110387
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
110388
|
+
*/
|
|
110389
|
+
ecobee_metadata?: ({
|
|
110390
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
110391
|
+
climate_ref: string;
|
|
110392
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
110393
|
+
is_optimized: boolean;
|
|
110394
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
110395
|
+
owner: 'user' | 'system';
|
|
110396
|
+
} | undefined) | undefined;
|
|
109751
110397
|
} | undefined;
|
|
109752
110398
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
109753
110399
|
available_climate_presets?: Array<{
|
|
@@ -109782,6 +110428,17 @@ interface Routes {
|
|
|
109782
110428
|
/** 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).
|
|
109783
110429
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
109784
110430
|
manual_override_allowed: boolean;
|
|
110431
|
+
/**
|
|
110432
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
110433
|
+
*/
|
|
110434
|
+
ecobee_metadata?: {
|
|
110435
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
110436
|
+
climate_ref: string;
|
|
110437
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
110438
|
+
is_optimized: boolean;
|
|
110439
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
110440
|
+
owner: 'user' | 'system';
|
|
110441
|
+
} | undefined;
|
|
109785
110442
|
}> | undefined;
|
|
109786
110443
|
/** 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. */
|
|
109787
110444
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -118026,6 +118683,17 @@ interface Routes {
|
|
|
118026
118683
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
118027
118684
|
/** 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). */
|
|
118028
118685
|
heating_set_point_fahrenheit?: number | undefined;
|
|
118686
|
+
/**
|
|
118687
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
118688
|
+
*/
|
|
118689
|
+
ecobee_metadata?: {
|
|
118690
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
118691
|
+
climate_ref: string;
|
|
118692
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
118693
|
+
is_optimized: boolean;
|
|
118694
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
118695
|
+
owner: 'user' | 'system';
|
|
118696
|
+
} | undefined;
|
|
118029
118697
|
};
|
|
118030
118698
|
commonParams: {};
|
|
118031
118699
|
formData: {};
|
|
@@ -119772,6 +120440,8 @@ interface Routes {
|
|
|
119772
120440
|
bridge_name?: string | undefined;
|
|
119773
120441
|
/** Keypad ID for an igloohome device. */
|
|
119774
120442
|
keypad_id?: string | undefined;
|
|
120443
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
120444
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
119775
120445
|
} | undefined;
|
|
119776
120446
|
/** Metadata for a Google Nest device. */
|
|
119777
120447
|
nest_metadata?: {
|
|
@@ -120011,6 +120681,17 @@ interface Routes {
|
|
|
120011
120681
|
/** 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).
|
|
120012
120682
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
120013
120683
|
manual_override_allowed?: boolean | undefined;
|
|
120684
|
+
/**
|
|
120685
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
120686
|
+
*/
|
|
120687
|
+
ecobee_metadata?: ({
|
|
120688
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
120689
|
+
climate_ref: string;
|
|
120690
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
120691
|
+
is_optimized: boolean;
|
|
120692
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
120693
|
+
owner: 'user' | 'system';
|
|
120694
|
+
} | undefined) | undefined;
|
|
120014
120695
|
} | undefined;
|
|
120015
120696
|
/**
|
|
120016
120697
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -120046,6 +120727,17 @@ interface Routes {
|
|
|
120046
120727
|
/** 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).
|
|
120047
120728
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
120048
120729
|
manual_override_allowed?: boolean | undefined;
|
|
120730
|
+
/**
|
|
120731
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
120732
|
+
*/
|
|
120733
|
+
ecobee_metadata?: ({
|
|
120734
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
120735
|
+
climate_ref: string;
|
|
120736
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
120737
|
+
is_optimized: boolean;
|
|
120738
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
120739
|
+
owner: 'user' | 'system';
|
|
120740
|
+
} | undefined) | undefined;
|
|
120049
120741
|
} | undefined;
|
|
120050
120742
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
120051
120743
|
available_climate_presets?: Array<{
|
|
@@ -120080,6 +120772,17 @@ interface Routes {
|
|
|
120080
120772
|
/** 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).
|
|
120081
120773
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
120082
120774
|
manual_override_allowed: boolean;
|
|
120775
|
+
/**
|
|
120776
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
120777
|
+
*/
|
|
120778
|
+
ecobee_metadata?: {
|
|
120779
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
120780
|
+
climate_ref: string;
|
|
120781
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
120782
|
+
is_optimized: boolean;
|
|
120783
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
120784
|
+
owner: 'user' | 'system';
|
|
120785
|
+
} | undefined;
|
|
120083
120786
|
}> | undefined;
|
|
120084
120787
|
/** 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. */
|
|
120085
120788
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -123476,6 +124179,8 @@ interface Routes {
|
|
|
123476
124179
|
bridge_name?: string | undefined;
|
|
123477
124180
|
/** Keypad ID for an igloohome device. */
|
|
123478
124181
|
keypad_id?: string | undefined;
|
|
124182
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
124183
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
123479
124184
|
} | undefined;
|
|
123480
124185
|
/** Metadata for a Google Nest device. */
|
|
123481
124186
|
nest_metadata?: {
|
|
@@ -123715,6 +124420,17 @@ interface Routes {
|
|
|
123715
124420
|
/** 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).
|
|
123716
124421
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
123717
124422
|
manual_override_allowed?: boolean | undefined;
|
|
124423
|
+
/**
|
|
124424
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
124425
|
+
*/
|
|
124426
|
+
ecobee_metadata?: ({
|
|
124427
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
124428
|
+
climate_ref: string;
|
|
124429
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
124430
|
+
is_optimized: boolean;
|
|
124431
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
124432
|
+
owner: 'user' | 'system';
|
|
124433
|
+
} | undefined) | undefined;
|
|
123718
124434
|
} | undefined;
|
|
123719
124435
|
/**
|
|
123720
124436
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -123750,6 +124466,17 @@ interface Routes {
|
|
|
123750
124466
|
/** 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).
|
|
123751
124467
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
123752
124468
|
manual_override_allowed?: boolean | undefined;
|
|
124469
|
+
/**
|
|
124470
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
124471
|
+
*/
|
|
124472
|
+
ecobee_metadata?: ({
|
|
124473
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
124474
|
+
climate_ref: string;
|
|
124475
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
124476
|
+
is_optimized: boolean;
|
|
124477
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
124478
|
+
owner: 'user' | 'system';
|
|
124479
|
+
} | undefined) | undefined;
|
|
123753
124480
|
} | undefined;
|
|
123754
124481
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
123755
124482
|
available_climate_presets?: Array<{
|
|
@@ -123784,6 +124511,17 @@ interface Routes {
|
|
|
123784
124511
|
/** 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).
|
|
123785
124512
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
123786
124513
|
manual_override_allowed: boolean;
|
|
124514
|
+
/**
|
|
124515
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
124516
|
+
*/
|
|
124517
|
+
ecobee_metadata?: {
|
|
124518
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
124519
|
+
climate_ref: string;
|
|
124520
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
124521
|
+
is_optimized: boolean;
|
|
124522
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
124523
|
+
owner: 'user' | 'system';
|
|
124524
|
+
} | undefined;
|
|
123787
124525
|
}> | undefined;
|
|
123788
124526
|
/** 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. */
|
|
123789
124527
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -124601,6 +125339,8 @@ interface Routes {
|
|
|
124601
125339
|
bridge_name?: string | undefined;
|
|
124602
125340
|
/** Keypad ID for an igloohome device. */
|
|
124603
125341
|
keypad_id?: string | undefined;
|
|
125342
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
125343
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
124604
125344
|
} | undefined;
|
|
124605
125345
|
/** Metadata for a Google Nest device. */
|
|
124606
125346
|
nest_metadata?: {
|
|
@@ -124840,6 +125580,17 @@ interface Routes {
|
|
|
124840
125580
|
/** 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).
|
|
124841
125581
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
124842
125582
|
manual_override_allowed?: boolean | undefined;
|
|
125583
|
+
/**
|
|
125584
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
125585
|
+
*/
|
|
125586
|
+
ecobee_metadata?: ({
|
|
125587
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
125588
|
+
climate_ref: string;
|
|
125589
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
125590
|
+
is_optimized: boolean;
|
|
125591
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
125592
|
+
owner: 'user' | 'system';
|
|
125593
|
+
} | undefined) | undefined;
|
|
124843
125594
|
} | undefined;
|
|
124844
125595
|
/**
|
|
124845
125596
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -124875,6 +125626,17 @@ interface Routes {
|
|
|
124875
125626
|
/** 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).
|
|
124876
125627
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
124877
125628
|
manual_override_allowed?: boolean | undefined;
|
|
125629
|
+
/**
|
|
125630
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
125631
|
+
*/
|
|
125632
|
+
ecobee_metadata?: ({
|
|
125633
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
125634
|
+
climate_ref: string;
|
|
125635
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
125636
|
+
is_optimized: boolean;
|
|
125637
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
125638
|
+
owner: 'user' | 'system';
|
|
125639
|
+
} | undefined) | undefined;
|
|
124878
125640
|
} | undefined;
|
|
124879
125641
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
124880
125642
|
available_climate_presets?: Array<{
|
|
@@ -124909,6 +125671,17 @@ interface Routes {
|
|
|
124909
125671
|
/** 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).
|
|
124910
125672
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
124911
125673
|
manual_override_allowed: boolean;
|
|
125674
|
+
/**
|
|
125675
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
125676
|
+
*/
|
|
125677
|
+
ecobee_metadata?: {
|
|
125678
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
125679
|
+
climate_ref: string;
|
|
125680
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
125681
|
+
is_optimized: boolean;
|
|
125682
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
125683
|
+
owner: 'user' | 'system';
|
|
125684
|
+
} | undefined;
|
|
124912
125685
|
}> | undefined;
|
|
124913
125686
|
/** 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. */
|
|
124914
125687
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -129451,6 +130224,17 @@ interface Routes {
|
|
|
129451
130224
|
/** 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).
|
|
129452
130225
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
129453
130226
|
manual_override_allowed?: boolean | undefined;
|
|
130227
|
+
/**
|
|
130228
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
130229
|
+
*/
|
|
130230
|
+
ecobee_metadata?: {
|
|
130231
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
130232
|
+
climate_ref: string;
|
|
130233
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
130234
|
+
is_optimized: boolean;
|
|
130235
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
130236
|
+
owner: 'user' | 'system';
|
|
130237
|
+
} | undefined;
|
|
129454
130238
|
};
|
|
129455
130239
|
commonParams: {};
|
|
129456
130240
|
formData: {};
|
|
@@ -132135,6 +132919,8 @@ interface Routes {
|
|
|
132135
132919
|
bridge_name?: string | undefined;
|
|
132136
132920
|
/** Keypad ID for an igloohome device. */
|
|
132137
132921
|
keypad_id?: string | undefined;
|
|
132922
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
132923
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
132138
132924
|
} | undefined;
|
|
132139
132925
|
/** Metadata for a Google Nest device. */
|
|
132140
132926
|
nest_metadata?: {
|
|
@@ -132374,6 +133160,17 @@ interface Routes {
|
|
|
132374
133160
|
/** 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).
|
|
132375
133161
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
132376
133162
|
manual_override_allowed?: boolean | undefined;
|
|
133163
|
+
/**
|
|
133164
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
133165
|
+
*/
|
|
133166
|
+
ecobee_metadata?: ({
|
|
133167
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
133168
|
+
climate_ref: string;
|
|
133169
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
133170
|
+
is_optimized: boolean;
|
|
133171
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
133172
|
+
owner: 'user' | 'system';
|
|
133173
|
+
} | undefined) | undefined;
|
|
132377
133174
|
} | undefined;
|
|
132378
133175
|
/**
|
|
132379
133176
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -132409,6 +133206,17 @@ interface Routes {
|
|
|
132409
133206
|
/** 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).
|
|
132410
133207
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
132411
133208
|
manual_override_allowed?: boolean | undefined;
|
|
133209
|
+
/**
|
|
133210
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
133211
|
+
*/
|
|
133212
|
+
ecobee_metadata?: ({
|
|
133213
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
133214
|
+
climate_ref: string;
|
|
133215
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
133216
|
+
is_optimized: boolean;
|
|
133217
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
133218
|
+
owner: 'user' | 'system';
|
|
133219
|
+
} | undefined) | undefined;
|
|
132412
133220
|
} | undefined;
|
|
132413
133221
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
132414
133222
|
available_climate_presets?: Array<{
|
|
@@ -132443,6 +133251,17 @@ interface Routes {
|
|
|
132443
133251
|
/** 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).
|
|
132444
133252
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
132445
133253
|
manual_override_allowed: boolean;
|
|
133254
|
+
/**
|
|
133255
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
133256
|
+
*/
|
|
133257
|
+
ecobee_metadata?: {
|
|
133258
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
133259
|
+
climate_ref: string;
|
|
133260
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
133261
|
+
is_optimized: boolean;
|
|
133262
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
133263
|
+
owner: 'user' | 'system';
|
|
133264
|
+
} | undefined;
|
|
132446
133265
|
}> | undefined;
|
|
132447
133266
|
/** 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. */
|
|
132448
133267
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -133262,6 +134081,8 @@ interface Routes {
|
|
|
133262
134081
|
bridge_name?: string | undefined;
|
|
133263
134082
|
/** Keypad ID for an igloohome device. */
|
|
133264
134083
|
keypad_id?: string | undefined;
|
|
134084
|
+
/** Indicates whether a keypad is linked to a bridge for an igloohome device. */
|
|
134085
|
+
is_keypad_linked_to_bridge?: boolean | undefined;
|
|
133265
134086
|
} | undefined;
|
|
133266
134087
|
/** Metadata for a Google Nest device. */
|
|
133267
134088
|
nest_metadata?: {
|
|
@@ -133501,6 +134322,17 @@ interface Routes {
|
|
|
133501
134322
|
/** 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).
|
|
133502
134323
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
133503
134324
|
manual_override_allowed?: boolean | undefined;
|
|
134325
|
+
/**
|
|
134326
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
134327
|
+
*/
|
|
134328
|
+
ecobee_metadata?: ({
|
|
134329
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
134330
|
+
climate_ref: string;
|
|
134331
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
134332
|
+
is_optimized: boolean;
|
|
134333
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
134334
|
+
owner: 'user' | 'system';
|
|
134335
|
+
} | undefined) | undefined;
|
|
133504
134336
|
} | undefined;
|
|
133505
134337
|
/**
|
|
133506
134338
|
* @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
|
|
@@ -133536,6 +134368,17 @@ interface Routes {
|
|
|
133536
134368
|
/** 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).
|
|
133537
134369
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
133538
134370
|
manual_override_allowed?: boolean | undefined;
|
|
134371
|
+
/**
|
|
134372
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
134373
|
+
*/
|
|
134374
|
+
ecobee_metadata?: ({
|
|
134375
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
134376
|
+
climate_ref: string;
|
|
134377
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
134378
|
+
is_optimized: boolean;
|
|
134379
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
134380
|
+
owner: 'user' | 'system';
|
|
134381
|
+
} | undefined) | undefined;
|
|
133539
134382
|
} | undefined;
|
|
133540
134383
|
/** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
|
|
133541
134384
|
available_climate_presets?: Array<{
|
|
@@ -133570,6 +134413,17 @@ interface Routes {
|
|
|
133570
134413
|
/** 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).
|
|
133571
134414
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
133572
134415
|
manual_override_allowed: boolean;
|
|
134416
|
+
/**
|
|
134417
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
134418
|
+
*/
|
|
134419
|
+
ecobee_metadata?: {
|
|
134420
|
+
/** Reference to the Ecobee climate, if applicable. */
|
|
134421
|
+
climate_ref: string;
|
|
134422
|
+
/** Indicates if the climate preset is optimized by Ecobee. */
|
|
134423
|
+
is_optimized: boolean;
|
|
134424
|
+
/** Indicates whether the climate preset is owned by the user or the system. */
|
|
134425
|
+
owner: 'user' | 'system';
|
|
134426
|
+
} | undefined;
|
|
133573
134427
|
}> | undefined;
|
|
133574
134428
|
/** 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. */
|
|
133575
134429
|
fallback_climate_preset_key?: (string | null) | undefined;
|