@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
|
@@ -847,6 +847,19 @@ export declare const thermostat_manually_adjusted_event: z.ZodObject<z.objectUti
|
|
|
847
847
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
848
848
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
849
849
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
850
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
851
|
+
climate_ref: z.ZodString;
|
|
852
|
+
is_optimized: z.ZodBoolean;
|
|
853
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
854
|
+
}, "strip", z.ZodTypeAny, {
|
|
855
|
+
climate_ref: string;
|
|
856
|
+
is_optimized: boolean;
|
|
857
|
+
owner: "user" | "system";
|
|
858
|
+
}, {
|
|
859
|
+
climate_ref: string;
|
|
860
|
+
is_optimized: boolean;
|
|
861
|
+
owner: "user" | "system";
|
|
862
|
+
}>>>;
|
|
850
863
|
}, "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, {
|
|
851
864
|
method: "external" | "seam";
|
|
852
865
|
device_id: string;
|
|
@@ -1867,6 +1880,19 @@ export declare const device_events: readonly [z.ZodObject<z.objectUtil.extendSha
|
|
|
1867
1880
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1868
1881
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1869
1882
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1883
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1884
|
+
climate_ref: z.ZodString;
|
|
1885
|
+
is_optimized: z.ZodBoolean;
|
|
1886
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1887
|
+
}, "strip", z.ZodTypeAny, {
|
|
1888
|
+
climate_ref: string;
|
|
1889
|
+
is_optimized: boolean;
|
|
1890
|
+
owner: "user" | "system";
|
|
1891
|
+
}, {
|
|
1892
|
+
climate_ref: string;
|
|
1893
|
+
is_optimized: boolean;
|
|
1894
|
+
owner: "user" | "system";
|
|
1895
|
+
}>>>;
|
|
1870
1896
|
}, "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, {
|
|
1871
1897
|
method: "external" | "seam";
|
|
1872
1898
|
device_id: string;
|
|
@@ -2297,6 +2297,19 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2297
2297
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2298
2298
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2299
2299
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
2300
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2301
|
+
climate_ref: z.ZodString;
|
|
2302
|
+
is_optimized: z.ZodBoolean;
|
|
2303
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
2304
|
+
}, "strip", z.ZodTypeAny, {
|
|
2305
|
+
climate_ref: string;
|
|
2306
|
+
is_optimized: boolean;
|
|
2307
|
+
owner: "user" | "system";
|
|
2308
|
+
}, {
|
|
2309
|
+
climate_ref: string;
|
|
2310
|
+
is_optimized: boolean;
|
|
2311
|
+
owner: "user" | "system";
|
|
2312
|
+
}>>>;
|
|
2300
2313
|
}, "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, {
|
|
2301
2314
|
method: "external" | "seam";
|
|
2302
2315
|
device_id: string;
|
|
@@ -14,6 +14,19 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
14
14
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
15
15
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
16
16
|
manual_override_allowed: z.ZodBoolean;
|
|
17
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
18
|
+
climate_ref: z.ZodString;
|
|
19
|
+
is_optimized: z.ZodBoolean;
|
|
20
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
21
|
+
}, "strip", z.ZodTypeAny, {
|
|
22
|
+
climate_ref: string;
|
|
23
|
+
is_optimized: boolean;
|
|
24
|
+
owner: "user" | "system";
|
|
25
|
+
}, {
|
|
26
|
+
climate_ref: string;
|
|
27
|
+
is_optimized: boolean;
|
|
28
|
+
owner: "user" | "system";
|
|
29
|
+
}>>;
|
|
17
30
|
}, "strip", z.ZodTypeAny, {
|
|
18
31
|
climate_preset_key: string;
|
|
19
32
|
can_edit: boolean;
|
|
@@ -29,6 +42,11 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
29
42
|
heating_set_point_celsius?: number | undefined;
|
|
30
43
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
31
44
|
heating_set_point_fahrenheit?: number | undefined;
|
|
45
|
+
ecobee_metadata?: {
|
|
46
|
+
climate_ref: string;
|
|
47
|
+
is_optimized: boolean;
|
|
48
|
+
owner: "user" | "system";
|
|
49
|
+
} | undefined;
|
|
32
50
|
}, {
|
|
33
51
|
climate_preset_key: string;
|
|
34
52
|
can_edit: boolean;
|
|
@@ -44,6 +62,11 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
44
62
|
heating_set_point_celsius?: number | undefined;
|
|
45
63
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
46
64
|
heating_set_point_fahrenheit?: number | undefined;
|
|
65
|
+
ecobee_metadata?: {
|
|
66
|
+
climate_ref: string;
|
|
67
|
+
is_optimized: boolean;
|
|
68
|
+
owner: "user" | "system";
|
|
69
|
+
} | undefined;
|
|
47
70
|
}>;
|
|
48
71
|
export type ClimatePreset = z.infer<typeof climate_preset>;
|
|
49
72
|
export declare const climate_setting: z.ZodObject<{
|
|
@@ -61,6 +84,19 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
61
84
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62
85
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
63
86
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
87
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
88
|
+
climate_ref: z.ZodString;
|
|
89
|
+
is_optimized: z.ZodBoolean;
|
|
90
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
91
|
+
}, "strip", z.ZodTypeAny, {
|
|
92
|
+
climate_ref: string;
|
|
93
|
+
is_optimized: boolean;
|
|
94
|
+
owner: "user" | "system";
|
|
95
|
+
}, {
|
|
96
|
+
climate_ref: string;
|
|
97
|
+
is_optimized: boolean;
|
|
98
|
+
owner: "user" | "system";
|
|
99
|
+
}>>>;
|
|
64
100
|
}, "strip", z.ZodTypeAny, {
|
|
65
101
|
name?: string | null | undefined;
|
|
66
102
|
climate_preset_key?: string | undefined;
|
|
@@ -76,6 +112,11 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
76
112
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
77
113
|
heating_set_point_fahrenheit?: number | undefined;
|
|
78
114
|
manual_override_allowed?: boolean | undefined;
|
|
115
|
+
ecobee_metadata?: {
|
|
116
|
+
climate_ref: string;
|
|
117
|
+
is_optimized: boolean;
|
|
118
|
+
owner: "user" | "system";
|
|
119
|
+
} | undefined;
|
|
79
120
|
}, {
|
|
80
121
|
name?: string | null | undefined;
|
|
81
122
|
climate_preset_key?: string | undefined;
|
|
@@ -91,5 +132,10 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
91
132
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
92
133
|
heating_set_point_fahrenheit?: number | undefined;
|
|
93
134
|
manual_override_allowed?: boolean | undefined;
|
|
135
|
+
ecobee_metadata?: {
|
|
136
|
+
climate_ref: string;
|
|
137
|
+
is_optimized: boolean;
|
|
138
|
+
owner: "user" | "system";
|
|
139
|
+
} | undefined;
|
|
94
140
|
}>;
|
|
95
141
|
export type ClimateSetting = z.infer<typeof climate_setting>;
|
|
@@ -52,6 +52,21 @@ export const climate_preset = z.object({
|
|
|
52
52
|
deprecated: Use 'thermostat_schedule.is_override_allowed'
|
|
53
53
|
---
|
|
54
54
|
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).`),
|
|
55
|
+
ecobee_metadata: z
|
|
56
|
+
.object({
|
|
57
|
+
climate_ref: z
|
|
58
|
+
.string()
|
|
59
|
+
.describe(`Reference to the Ecobee climate, if applicable.`),
|
|
60
|
+
is_optimized: z
|
|
61
|
+
.boolean()
|
|
62
|
+
.describe(`Indicates if the climate preset is optimized by Ecobee.`),
|
|
63
|
+
owner: z
|
|
64
|
+
.enum(['user', 'system'])
|
|
65
|
+
.describe(`Indicates whether the climate preset is owned by the user or the system.`),
|
|
66
|
+
})
|
|
67
|
+
.optional().describe(`
|
|
68
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
69
|
+
`),
|
|
55
70
|
});
|
|
56
71
|
export const climate_setting = climate_preset.partial();
|
|
57
72
|
//# sourceMappingURL=climate-preset.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"climate-preset.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAA;AAEnB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CACP,+IAA+I,CAChJ;IACH,QAAQ,EAAE,CAAC;SACR,OAAO,EAAE;SACT,QAAQ,CACP,4JAA4J,CAC7J;IACH,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CACP,6JAA6J,CAC9J;IACH,WAAW,EAAE,CAAC;SACX,OAAO,EAAE;SACT,QAAQ,CACP,8LAA8L,CAC/L;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,EAAE;SACV,QAAQ,CACP,uJAAuJ,CACxJ;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,yIAAyI,CAC1I;IACH,mBAAmB,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;GAE5D,CAAC;IACF,gBAAgB,EAAE,gBAAgB;SAC/B,QAAQ,EAAE;SACV,QAAQ,CACP,mLAAmL,CACpL;IACH,iBAAiB,EAAE,iBAAiB;SACjC,QAAQ,EAAE;SACV,QAAQ,CACP,oLAAoL,CACrL;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAC3C;;;;oRAIgR,CACjR;
|
|
1
|
+
{"version":3,"file":"climate-preset.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAA;AAEnB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CACP,+IAA+I,CAChJ;IACH,QAAQ,EAAE,CAAC;SACR,OAAO,EAAE;SACT,QAAQ,CACP,4JAA4J,CAC7J;IACH,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CACP,6JAA6J,CAC9J;IACH,WAAW,EAAE,CAAC;SACX,OAAO,EAAE;SACT,QAAQ,CACP,8LAA8L,CAC/L;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,EAAE;SACV,QAAQ,CACP,uJAAuJ,CACxJ;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,yIAAyI,CAC1I;IACH,mBAAmB,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;GAE5D,CAAC;IACF,gBAAgB,EAAE,gBAAgB;SAC/B,QAAQ,EAAE;SACV,QAAQ,CACP,mLAAmL,CACpL;IACH,iBAAiB,EAAE,iBAAiB;SACjC,QAAQ,EAAE;SACV,QAAQ,CACP,oLAAoL,CACrL;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAC3C;;;;oRAIgR,CACjR;IACD,eAAe,EAAE,CAAC;SACf,MAAM,CAAC;QACN,WAAW,EAAE,CAAC;aACX,MAAM,EAAE;aACR,QAAQ,CAAC,iDAAiD,CAAC;QAC9D,YAAY,EAAE,CAAC;aACZ,OAAO,EAAE;aACT,QAAQ,CAAC,yDAAyD,CAAC;QACtE,KAAK,EAAE,CAAC;aACL,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACxB,QAAQ,CACP,0EAA0E,CAC3E;KACJ,CAAC;SACD,QAAQ,EAAE,CAAC,QAAQ,CAAC;;GAEtB,CAAC;CACH,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,eAAe,GAAG,cAAc,CAAC,OAAO,EAAE,CAAA"}
|
|
@@ -5115,6 +5115,10 @@ declare const _default: {
|
|
|
5115
5115
|
description: string;
|
|
5116
5116
|
type: string;
|
|
5117
5117
|
};
|
|
5118
|
+
is_keypad_linked_to_bridge: {
|
|
5119
|
+
description: string;
|
|
5120
|
+
type: string;
|
|
5121
|
+
};
|
|
5118
5122
|
keypad_id: {
|
|
5119
5123
|
description: string;
|
|
5120
5124
|
type: string;
|
|
@@ -5960,6 +5964,26 @@ declare const _default: {
|
|
|
5960
5964
|
description: string;
|
|
5961
5965
|
type: string;
|
|
5962
5966
|
};
|
|
5967
|
+
ecobee_metadata: {
|
|
5968
|
+
description: string;
|
|
5969
|
+
properties: {
|
|
5970
|
+
climate_ref: {
|
|
5971
|
+
description: string;
|
|
5972
|
+
type: string;
|
|
5973
|
+
};
|
|
5974
|
+
is_optimized: {
|
|
5975
|
+
description: string;
|
|
5976
|
+
type: string;
|
|
5977
|
+
};
|
|
5978
|
+
owner: {
|
|
5979
|
+
description: string;
|
|
5980
|
+
enum: string[];
|
|
5981
|
+
type: string;
|
|
5982
|
+
};
|
|
5983
|
+
};
|
|
5984
|
+
required: string[];
|
|
5985
|
+
type: string;
|
|
5986
|
+
};
|
|
5963
5987
|
fan_mode_setting: {
|
|
5964
5988
|
description: string;
|
|
5965
5989
|
enum: string[];
|
|
@@ -6055,6 +6079,26 @@ declare const _default: {
|
|
|
6055
6079
|
description: string;
|
|
6056
6080
|
type: string;
|
|
6057
6081
|
};
|
|
6082
|
+
ecobee_metadata: {
|
|
6083
|
+
description: string;
|
|
6084
|
+
properties: {
|
|
6085
|
+
climate_ref: {
|
|
6086
|
+
description: string;
|
|
6087
|
+
type: string;
|
|
6088
|
+
};
|
|
6089
|
+
is_optimized: {
|
|
6090
|
+
description: string;
|
|
6091
|
+
type: string;
|
|
6092
|
+
};
|
|
6093
|
+
owner: {
|
|
6094
|
+
description: string;
|
|
6095
|
+
enum: string[];
|
|
6096
|
+
type: string;
|
|
6097
|
+
};
|
|
6098
|
+
};
|
|
6099
|
+
required: string[];
|
|
6100
|
+
type: string;
|
|
6101
|
+
};
|
|
6058
6102
|
fan_mode_setting: {
|
|
6059
6103
|
description: string;
|
|
6060
6104
|
enum: string[];
|
|
@@ -6129,6 +6173,26 @@ declare const _default: {
|
|
|
6129
6173
|
description: string;
|
|
6130
6174
|
type: string;
|
|
6131
6175
|
};
|
|
6176
|
+
ecobee_metadata: {
|
|
6177
|
+
description: string;
|
|
6178
|
+
properties: {
|
|
6179
|
+
climate_ref: {
|
|
6180
|
+
description: string;
|
|
6181
|
+
type: string;
|
|
6182
|
+
};
|
|
6183
|
+
is_optimized: {
|
|
6184
|
+
description: string;
|
|
6185
|
+
type: string;
|
|
6186
|
+
};
|
|
6187
|
+
owner: {
|
|
6188
|
+
description: string;
|
|
6189
|
+
enum: string[];
|
|
6190
|
+
type: string;
|
|
6191
|
+
};
|
|
6192
|
+
};
|
|
6193
|
+
required: string[];
|
|
6194
|
+
type: string;
|
|
6195
|
+
};
|
|
6132
6196
|
fan_mode_setting: {
|
|
6133
6197
|
description: string;
|
|
6134
6198
|
enum: string[];
|
|
@@ -37954,6 +38018,26 @@ declare const _default: {
|
|
|
37954
38018
|
format: string;
|
|
37955
38019
|
type: string;
|
|
37956
38020
|
};
|
|
38021
|
+
ecobee_metadata: {
|
|
38022
|
+
description: string;
|
|
38023
|
+
properties: {
|
|
38024
|
+
climate_ref: {
|
|
38025
|
+
description: string;
|
|
38026
|
+
type: string;
|
|
38027
|
+
};
|
|
38028
|
+
is_optimized: {
|
|
38029
|
+
description: string;
|
|
38030
|
+
type: string;
|
|
38031
|
+
};
|
|
38032
|
+
owner: {
|
|
38033
|
+
description: string;
|
|
38034
|
+
enum: string[];
|
|
38035
|
+
type: string;
|
|
38036
|
+
};
|
|
38037
|
+
};
|
|
38038
|
+
required: string[];
|
|
38039
|
+
type: string;
|
|
38040
|
+
};
|
|
37957
38041
|
fan_mode_setting: {
|
|
37958
38042
|
description: string;
|
|
37959
38043
|
enum: string[];
|
|
@@ -41144,6 +41228,26 @@ declare const _default: {
|
|
|
41144
41228
|
format: string;
|
|
41145
41229
|
type: string;
|
|
41146
41230
|
};
|
|
41231
|
+
ecobee_metadata: {
|
|
41232
|
+
description: string;
|
|
41233
|
+
properties: {
|
|
41234
|
+
climate_ref: {
|
|
41235
|
+
description: string;
|
|
41236
|
+
type: string;
|
|
41237
|
+
};
|
|
41238
|
+
is_optimized: {
|
|
41239
|
+
description: string;
|
|
41240
|
+
type: string;
|
|
41241
|
+
};
|
|
41242
|
+
owner: {
|
|
41243
|
+
description: string;
|
|
41244
|
+
enum: string[];
|
|
41245
|
+
type: string;
|
|
41246
|
+
};
|
|
41247
|
+
};
|
|
41248
|
+
required: string[];
|
|
41249
|
+
type: string;
|
|
41250
|
+
};
|
|
41147
41251
|
fan_mode_setting: {
|
|
41148
41252
|
description: string;
|
|
41149
41253
|
enum: string[];
|
|
@@ -41267,6 +41371,26 @@ declare const _default: {
|
|
|
41267
41371
|
format: string;
|
|
41268
41372
|
type: string;
|
|
41269
41373
|
};
|
|
41374
|
+
ecobee_metadata: {
|
|
41375
|
+
description: string;
|
|
41376
|
+
properties: {
|
|
41377
|
+
climate_ref: {
|
|
41378
|
+
description: string;
|
|
41379
|
+
type: string;
|
|
41380
|
+
};
|
|
41381
|
+
is_optimized: {
|
|
41382
|
+
description: string;
|
|
41383
|
+
type: string;
|
|
41384
|
+
};
|
|
41385
|
+
owner: {
|
|
41386
|
+
description: string;
|
|
41387
|
+
enum: string[];
|
|
41388
|
+
type: string;
|
|
41389
|
+
};
|
|
41390
|
+
};
|
|
41391
|
+
required: string[];
|
|
41392
|
+
type: string;
|
|
41393
|
+
};
|
|
41270
41394
|
fan_mode_setting: {
|
|
41271
41395
|
description: string;
|
|
41272
41396
|
enum: string[];
|
|
@@ -9362,6 +9362,10 @@ export default {
|
|
|
9362
9362
|
description: 'Device name for an igloohome device.',
|
|
9363
9363
|
type: 'string',
|
|
9364
9364
|
},
|
|
9365
|
+
is_keypad_linked_to_bridge: {
|
|
9366
|
+
description: 'Indicates whether a keypad is linked to a bridge for an igloohome device.',
|
|
9367
|
+
type: 'boolean',
|
|
9368
|
+
},
|
|
9365
9369
|
keypad_id: {
|
|
9366
9370
|
description: 'Keypad ID for an igloohome device.',
|
|
9367
9371
|
type: 'string',
|
|
@@ -10270,6 +10274,30 @@ export default {
|
|
|
10270
10274
|
description: 'Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10271
10275
|
type: 'string',
|
|
10272
10276
|
},
|
|
10277
|
+
ecobee_metadata: {
|
|
10278
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
10279
|
+
properties: {
|
|
10280
|
+
climate_ref: {
|
|
10281
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
10282
|
+
type: 'string',
|
|
10283
|
+
},
|
|
10284
|
+
is_optimized: {
|
|
10285
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
10286
|
+
type: 'boolean',
|
|
10287
|
+
},
|
|
10288
|
+
owner: {
|
|
10289
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
10290
|
+
enum: ['user', 'system'],
|
|
10291
|
+
type: 'string',
|
|
10292
|
+
},
|
|
10293
|
+
},
|
|
10294
|
+
required: [
|
|
10295
|
+
'climate_ref',
|
|
10296
|
+
'is_optimized',
|
|
10297
|
+
'owner',
|
|
10298
|
+
],
|
|
10299
|
+
type: 'object',
|
|
10300
|
+
},
|
|
10273
10301
|
fan_mode_setting: {
|
|
10274
10302
|
description: 'Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.',
|
|
10275
10303
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -10379,6 +10407,26 @@ export default {
|
|
|
10379
10407
|
description: 'Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10380
10408
|
type: 'string',
|
|
10381
10409
|
},
|
|
10410
|
+
ecobee_metadata: {
|
|
10411
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
10412
|
+
properties: {
|
|
10413
|
+
climate_ref: {
|
|
10414
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
10415
|
+
type: 'string',
|
|
10416
|
+
},
|
|
10417
|
+
is_optimized: {
|
|
10418
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
10419
|
+
type: 'boolean',
|
|
10420
|
+
},
|
|
10421
|
+
owner: {
|
|
10422
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
10423
|
+
enum: ['user', 'system'],
|
|
10424
|
+
type: 'string',
|
|
10425
|
+
},
|
|
10426
|
+
},
|
|
10427
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
10428
|
+
type: 'object',
|
|
10429
|
+
},
|
|
10382
10430
|
fan_mode_setting: {
|
|
10383
10431
|
description: 'Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.',
|
|
10384
10432
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -10460,6 +10508,26 @@ export default {
|
|
|
10460
10508
|
description: 'Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10461
10509
|
type: 'string',
|
|
10462
10510
|
},
|
|
10511
|
+
ecobee_metadata: {
|
|
10512
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
10513
|
+
properties: {
|
|
10514
|
+
climate_ref: {
|
|
10515
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
10516
|
+
type: 'string',
|
|
10517
|
+
},
|
|
10518
|
+
is_optimized: {
|
|
10519
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
10520
|
+
type: 'boolean',
|
|
10521
|
+
},
|
|
10522
|
+
owner: {
|
|
10523
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
10524
|
+
enum: ['user', 'system'],
|
|
10525
|
+
type: 'string',
|
|
10526
|
+
},
|
|
10527
|
+
},
|
|
10528
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
10529
|
+
type: 'object',
|
|
10530
|
+
},
|
|
10463
10531
|
fan_mode_setting: {
|
|
10464
10532
|
description: 'Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.',
|
|
10465
10533
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -42941,6 +43009,26 @@ export default {
|
|
|
42941
43009
|
format: 'uuid',
|
|
42942
43010
|
type: 'string',
|
|
42943
43011
|
},
|
|
43012
|
+
ecobee_metadata: {
|
|
43013
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
43014
|
+
properties: {
|
|
43015
|
+
climate_ref: {
|
|
43016
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
43017
|
+
type: 'string',
|
|
43018
|
+
},
|
|
43019
|
+
is_optimized: {
|
|
43020
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
43021
|
+
type: 'boolean',
|
|
43022
|
+
},
|
|
43023
|
+
owner: {
|
|
43024
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
43025
|
+
enum: ['user', 'system'],
|
|
43026
|
+
type: 'string',
|
|
43027
|
+
},
|
|
43028
|
+
},
|
|
43029
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
43030
|
+
type: 'object',
|
|
43031
|
+
},
|
|
42944
43032
|
fan_mode_setting: {
|
|
42945
43033
|
description: 'Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.',
|
|
42946
43034
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -45509,6 +45597,26 @@ export default {
|
|
|
45509
45597
|
format: 'uuid',
|
|
45510
45598
|
type: 'string',
|
|
45511
45599
|
},
|
|
45600
|
+
ecobee_metadata: {
|
|
45601
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
45602
|
+
properties: {
|
|
45603
|
+
climate_ref: {
|
|
45604
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
45605
|
+
type: 'string',
|
|
45606
|
+
},
|
|
45607
|
+
is_optimized: {
|
|
45608
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
45609
|
+
type: 'boolean',
|
|
45610
|
+
},
|
|
45611
|
+
owner: {
|
|
45612
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
45613
|
+
enum: ['user', 'system'],
|
|
45614
|
+
type: 'string',
|
|
45615
|
+
},
|
|
45616
|
+
},
|
|
45617
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
45618
|
+
type: 'object',
|
|
45619
|
+
},
|
|
45512
45620
|
fan_mode_setting: {
|
|
45513
45621
|
description: 'Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.',
|
|
45514
45622
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -45616,6 +45724,26 @@ export default {
|
|
|
45616
45724
|
format: 'uuid',
|
|
45617
45725
|
type: 'string',
|
|
45618
45726
|
},
|
|
45727
|
+
ecobee_metadata: {
|
|
45728
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
45729
|
+
properties: {
|
|
45730
|
+
climate_ref: {
|
|
45731
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
45732
|
+
type: 'string',
|
|
45733
|
+
},
|
|
45734
|
+
is_optimized: {
|
|
45735
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
45736
|
+
type: 'boolean',
|
|
45737
|
+
},
|
|
45738
|
+
owner: {
|
|
45739
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
45740
|
+
enum: ['user', 'system'],
|
|
45741
|
+
type: 'string',
|
|
45742
|
+
},
|
|
45743
|
+
},
|
|
45744
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
45745
|
+
type: 'object',
|
|
45746
|
+
},
|
|
45619
45747
|
fan_mode_setting: {
|
|
45620
45748
|
description: 'Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.',
|
|
45621
45749
|
enum: ['auto', 'on', 'circulate'],
|