@seamapi/types 1.434.0 → 1.435.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +134 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +836 -24
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +99 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +99 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/models/devices/device.d.ts +145 -16
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +107 -8
- package/lib/seam/connect/models/events/devices.d.ts +26 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +13 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +46 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +15 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +120 -0
- package/lib/seam/connect/openapi.js +124 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +451 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +148 -0
- package/src/lib/seam/connect/route-types.ts +611 -0
|
@@ -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"}
|
|
@@ -5960,6 +5960,26 @@ declare const _default: {
|
|
|
5960
5960
|
description: string;
|
|
5961
5961
|
type: string;
|
|
5962
5962
|
};
|
|
5963
|
+
ecobee_metadata: {
|
|
5964
|
+
description: string;
|
|
5965
|
+
properties: {
|
|
5966
|
+
climate_ref: {
|
|
5967
|
+
description: string;
|
|
5968
|
+
type: string;
|
|
5969
|
+
};
|
|
5970
|
+
is_optimized: {
|
|
5971
|
+
description: string;
|
|
5972
|
+
type: string;
|
|
5973
|
+
};
|
|
5974
|
+
owner: {
|
|
5975
|
+
description: string;
|
|
5976
|
+
enum: string[];
|
|
5977
|
+
type: string;
|
|
5978
|
+
};
|
|
5979
|
+
};
|
|
5980
|
+
required: string[];
|
|
5981
|
+
type: string;
|
|
5982
|
+
};
|
|
5963
5983
|
fan_mode_setting: {
|
|
5964
5984
|
description: string;
|
|
5965
5985
|
enum: string[];
|
|
@@ -6055,6 +6075,26 @@ declare const _default: {
|
|
|
6055
6075
|
description: string;
|
|
6056
6076
|
type: string;
|
|
6057
6077
|
};
|
|
6078
|
+
ecobee_metadata: {
|
|
6079
|
+
description: string;
|
|
6080
|
+
properties: {
|
|
6081
|
+
climate_ref: {
|
|
6082
|
+
description: string;
|
|
6083
|
+
type: string;
|
|
6084
|
+
};
|
|
6085
|
+
is_optimized: {
|
|
6086
|
+
description: string;
|
|
6087
|
+
type: string;
|
|
6088
|
+
};
|
|
6089
|
+
owner: {
|
|
6090
|
+
description: string;
|
|
6091
|
+
enum: string[];
|
|
6092
|
+
type: string;
|
|
6093
|
+
};
|
|
6094
|
+
};
|
|
6095
|
+
required: string[];
|
|
6096
|
+
type: string;
|
|
6097
|
+
};
|
|
6058
6098
|
fan_mode_setting: {
|
|
6059
6099
|
description: string;
|
|
6060
6100
|
enum: string[];
|
|
@@ -6129,6 +6169,26 @@ declare const _default: {
|
|
|
6129
6169
|
description: string;
|
|
6130
6170
|
type: string;
|
|
6131
6171
|
};
|
|
6172
|
+
ecobee_metadata: {
|
|
6173
|
+
description: string;
|
|
6174
|
+
properties: {
|
|
6175
|
+
climate_ref: {
|
|
6176
|
+
description: string;
|
|
6177
|
+
type: string;
|
|
6178
|
+
};
|
|
6179
|
+
is_optimized: {
|
|
6180
|
+
description: string;
|
|
6181
|
+
type: string;
|
|
6182
|
+
};
|
|
6183
|
+
owner: {
|
|
6184
|
+
description: string;
|
|
6185
|
+
enum: string[];
|
|
6186
|
+
type: string;
|
|
6187
|
+
};
|
|
6188
|
+
};
|
|
6189
|
+
required: string[];
|
|
6190
|
+
type: string;
|
|
6191
|
+
};
|
|
6132
6192
|
fan_mode_setting: {
|
|
6133
6193
|
description: string;
|
|
6134
6194
|
enum: string[];
|
|
@@ -37954,6 +38014,26 @@ declare const _default: {
|
|
|
37954
38014
|
format: string;
|
|
37955
38015
|
type: string;
|
|
37956
38016
|
};
|
|
38017
|
+
ecobee_metadata: {
|
|
38018
|
+
description: string;
|
|
38019
|
+
properties: {
|
|
38020
|
+
climate_ref: {
|
|
38021
|
+
description: string;
|
|
38022
|
+
type: string;
|
|
38023
|
+
};
|
|
38024
|
+
is_optimized: {
|
|
38025
|
+
description: string;
|
|
38026
|
+
type: string;
|
|
38027
|
+
};
|
|
38028
|
+
owner: {
|
|
38029
|
+
description: string;
|
|
38030
|
+
enum: string[];
|
|
38031
|
+
type: string;
|
|
38032
|
+
};
|
|
38033
|
+
};
|
|
38034
|
+
required: string[];
|
|
38035
|
+
type: string;
|
|
38036
|
+
};
|
|
37957
38037
|
fan_mode_setting: {
|
|
37958
38038
|
description: string;
|
|
37959
38039
|
enum: string[];
|
|
@@ -41144,6 +41224,26 @@ declare const _default: {
|
|
|
41144
41224
|
format: string;
|
|
41145
41225
|
type: string;
|
|
41146
41226
|
};
|
|
41227
|
+
ecobee_metadata: {
|
|
41228
|
+
description: string;
|
|
41229
|
+
properties: {
|
|
41230
|
+
climate_ref: {
|
|
41231
|
+
description: string;
|
|
41232
|
+
type: string;
|
|
41233
|
+
};
|
|
41234
|
+
is_optimized: {
|
|
41235
|
+
description: string;
|
|
41236
|
+
type: string;
|
|
41237
|
+
};
|
|
41238
|
+
owner: {
|
|
41239
|
+
description: string;
|
|
41240
|
+
enum: string[];
|
|
41241
|
+
type: string;
|
|
41242
|
+
};
|
|
41243
|
+
};
|
|
41244
|
+
required: string[];
|
|
41245
|
+
type: string;
|
|
41246
|
+
};
|
|
41147
41247
|
fan_mode_setting: {
|
|
41148
41248
|
description: string;
|
|
41149
41249
|
enum: string[];
|
|
@@ -41267,6 +41367,26 @@ declare const _default: {
|
|
|
41267
41367
|
format: string;
|
|
41268
41368
|
type: string;
|
|
41269
41369
|
};
|
|
41370
|
+
ecobee_metadata: {
|
|
41371
|
+
description: string;
|
|
41372
|
+
properties: {
|
|
41373
|
+
climate_ref: {
|
|
41374
|
+
description: string;
|
|
41375
|
+
type: string;
|
|
41376
|
+
};
|
|
41377
|
+
is_optimized: {
|
|
41378
|
+
description: string;
|
|
41379
|
+
type: string;
|
|
41380
|
+
};
|
|
41381
|
+
owner: {
|
|
41382
|
+
description: string;
|
|
41383
|
+
enum: string[];
|
|
41384
|
+
type: string;
|
|
41385
|
+
};
|
|
41386
|
+
};
|
|
41387
|
+
required: string[];
|
|
41388
|
+
type: string;
|
|
41389
|
+
};
|
|
41270
41390
|
fan_mode_setting: {
|
|
41271
41391
|
description: string;
|
|
41272
41392
|
enum: string[];
|
|
@@ -10270,6 +10270,30 @@ export default {
|
|
|
10270
10270
|
description: 'Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10271
10271
|
type: 'string',
|
|
10272
10272
|
},
|
|
10273
|
+
ecobee_metadata: {
|
|
10274
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
10275
|
+
properties: {
|
|
10276
|
+
climate_ref: {
|
|
10277
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
10278
|
+
type: 'string',
|
|
10279
|
+
},
|
|
10280
|
+
is_optimized: {
|
|
10281
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
10282
|
+
type: 'boolean',
|
|
10283
|
+
},
|
|
10284
|
+
owner: {
|
|
10285
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
10286
|
+
enum: ['user', 'system'],
|
|
10287
|
+
type: 'string',
|
|
10288
|
+
},
|
|
10289
|
+
},
|
|
10290
|
+
required: [
|
|
10291
|
+
'climate_ref',
|
|
10292
|
+
'is_optimized',
|
|
10293
|
+
'owner',
|
|
10294
|
+
],
|
|
10295
|
+
type: 'object',
|
|
10296
|
+
},
|
|
10273
10297
|
fan_mode_setting: {
|
|
10274
10298
|
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
10299
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -10379,6 +10403,26 @@ export default {
|
|
|
10379
10403
|
description: 'Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10380
10404
|
type: 'string',
|
|
10381
10405
|
},
|
|
10406
|
+
ecobee_metadata: {
|
|
10407
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
10408
|
+
properties: {
|
|
10409
|
+
climate_ref: {
|
|
10410
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
10411
|
+
type: 'string',
|
|
10412
|
+
},
|
|
10413
|
+
is_optimized: {
|
|
10414
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
10415
|
+
type: 'boolean',
|
|
10416
|
+
},
|
|
10417
|
+
owner: {
|
|
10418
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
10419
|
+
enum: ['user', 'system'],
|
|
10420
|
+
type: 'string',
|
|
10421
|
+
},
|
|
10422
|
+
},
|
|
10423
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
10424
|
+
type: 'object',
|
|
10425
|
+
},
|
|
10382
10426
|
fan_mode_setting: {
|
|
10383
10427
|
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
10428
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -10460,6 +10504,26 @@ export default {
|
|
|
10460
10504
|
description: 'Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10461
10505
|
type: 'string',
|
|
10462
10506
|
},
|
|
10507
|
+
ecobee_metadata: {
|
|
10508
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
10509
|
+
properties: {
|
|
10510
|
+
climate_ref: {
|
|
10511
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
10512
|
+
type: 'string',
|
|
10513
|
+
},
|
|
10514
|
+
is_optimized: {
|
|
10515
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
10516
|
+
type: 'boolean',
|
|
10517
|
+
},
|
|
10518
|
+
owner: {
|
|
10519
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
10520
|
+
enum: ['user', 'system'],
|
|
10521
|
+
type: 'string',
|
|
10522
|
+
},
|
|
10523
|
+
},
|
|
10524
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
10525
|
+
type: 'object',
|
|
10526
|
+
},
|
|
10463
10527
|
fan_mode_setting: {
|
|
10464
10528
|
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
10529
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -42941,6 +43005,26 @@ export default {
|
|
|
42941
43005
|
format: 'uuid',
|
|
42942
43006
|
type: 'string',
|
|
42943
43007
|
},
|
|
43008
|
+
ecobee_metadata: {
|
|
43009
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
43010
|
+
properties: {
|
|
43011
|
+
climate_ref: {
|
|
43012
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
43013
|
+
type: 'string',
|
|
43014
|
+
},
|
|
43015
|
+
is_optimized: {
|
|
43016
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
43017
|
+
type: 'boolean',
|
|
43018
|
+
},
|
|
43019
|
+
owner: {
|
|
43020
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
43021
|
+
enum: ['user', 'system'],
|
|
43022
|
+
type: 'string',
|
|
43023
|
+
},
|
|
43024
|
+
},
|
|
43025
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
43026
|
+
type: 'object',
|
|
43027
|
+
},
|
|
42944
43028
|
fan_mode_setting: {
|
|
42945
43029
|
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
43030
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -45509,6 +45593,26 @@ export default {
|
|
|
45509
45593
|
format: 'uuid',
|
|
45510
45594
|
type: 'string',
|
|
45511
45595
|
},
|
|
45596
|
+
ecobee_metadata: {
|
|
45597
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
45598
|
+
properties: {
|
|
45599
|
+
climate_ref: {
|
|
45600
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
45601
|
+
type: 'string',
|
|
45602
|
+
},
|
|
45603
|
+
is_optimized: {
|
|
45604
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
45605
|
+
type: 'boolean',
|
|
45606
|
+
},
|
|
45607
|
+
owner: {
|
|
45608
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
45609
|
+
enum: ['user', 'system'],
|
|
45610
|
+
type: 'string',
|
|
45611
|
+
},
|
|
45612
|
+
},
|
|
45613
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
45614
|
+
type: 'object',
|
|
45615
|
+
},
|
|
45512
45616
|
fan_mode_setting: {
|
|
45513
45617
|
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
45618
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -45616,6 +45720,26 @@ export default {
|
|
|
45616
45720
|
format: 'uuid',
|
|
45617
45721
|
type: 'string',
|
|
45618
45722
|
},
|
|
45723
|
+
ecobee_metadata: {
|
|
45724
|
+
description: '\n Metadata specific to the Ecobee climate, if applicable.\n ',
|
|
45725
|
+
properties: {
|
|
45726
|
+
climate_ref: {
|
|
45727
|
+
description: 'Reference to the Ecobee climate, if applicable.',
|
|
45728
|
+
type: 'string',
|
|
45729
|
+
},
|
|
45730
|
+
is_optimized: {
|
|
45731
|
+
description: 'Indicates if the climate preset is optimized by Ecobee.',
|
|
45732
|
+
type: 'boolean',
|
|
45733
|
+
},
|
|
45734
|
+
owner: {
|
|
45735
|
+
description: 'Indicates whether the climate preset is owned by the user or the system.',
|
|
45736
|
+
enum: ['user', 'system'],
|
|
45737
|
+
type: 'string',
|
|
45738
|
+
},
|
|
45739
|
+
},
|
|
45740
|
+
required: ['climate_ref', 'is_optimized', 'owner'],
|
|
45741
|
+
type: 'object',
|
|
45742
|
+
},
|
|
45619
45743
|
fan_mode_setting: {
|
|
45620
45744
|
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
45745
|
enum: ['auto', 'on', 'circulate'],
|