@seamapi/types 0.20.0 → 0.20.1
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 +1 -5772
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -7844
- package/lib/seam/connect/openapi.d.ts +1 -7844
- package/lib/seam/connect/openapi.js +1 -5772
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -1
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +25 -25
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +35 -34
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +4 -4
- package/lib/seam/connect/unstable/models/managed-device.d.ts +48 -48
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +6 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -5772
- package/src/lib/seam/connect/route-types.ts +0 -1
- package/src/lib/seam/connect/unstable/models/capability-properties/index.ts +1 -1
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +2 -0
|
@@ -11,7 +11,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
automatic_heating_enabled: boolean;
|
|
13
13
|
automatic_cooling_enabled: boolean;
|
|
14
|
-
hvac_mode_setting: "
|
|
14
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
15
15
|
manual_override_allowed: boolean;
|
|
16
16
|
cooling_set_point_celsius?: number | undefined;
|
|
17
17
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -20,7 +20,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
20
20
|
}, {
|
|
21
21
|
automatic_heating_enabled: boolean;
|
|
22
22
|
automatic_cooling_enabled: boolean;
|
|
23
|
-
hvac_mode_setting: "
|
|
23
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
24
24
|
manual_override_allowed: boolean;
|
|
25
25
|
cooling_set_point_celsius?: number | undefined;
|
|
26
26
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31,11 +31,11 @@ export type ClimateSetting = z.infer<typeof climate_setting>;
|
|
|
31
31
|
export declare const climate_setting_schedule: z.ZodObject<{
|
|
32
32
|
name: z.ZodOptional<z.ZodString>;
|
|
33
33
|
created_at: z.ZodString;
|
|
34
|
+
climate_setting_schedule_id: z.ZodString;
|
|
35
|
+
schedule_type: z.ZodLiteral<"time_bound">;
|
|
34
36
|
device_id: z.ZodString;
|
|
35
37
|
schedule_starts_at: z.ZodString;
|
|
36
38
|
schedule_ends_at: z.ZodString;
|
|
37
|
-
climate_setting_schedule_id: z.ZodString;
|
|
38
|
-
schedule_type: z.ZodLiteral<"time_bound">;
|
|
39
39
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
40
40
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
41
41
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
|
|
@@ -46,15 +46,15 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
46
46
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
48
|
created_at: string;
|
|
49
|
+
climate_setting_schedule_id: string;
|
|
50
|
+
schedule_type: "time_bound";
|
|
49
51
|
device_id: string;
|
|
50
52
|
schedule_starts_at: string;
|
|
51
53
|
schedule_ends_at: string;
|
|
52
|
-
climate_setting_schedule_id: string;
|
|
53
|
-
schedule_type: "time_bound";
|
|
54
54
|
name?: string | undefined;
|
|
55
55
|
automatic_heating_enabled?: boolean | undefined;
|
|
56
56
|
automatic_cooling_enabled?: boolean | undefined;
|
|
57
|
-
hvac_mode_setting?: "
|
|
57
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heatcool" | undefined;
|
|
58
58
|
cooling_set_point_celsius?: number | undefined;
|
|
59
59
|
heating_set_point_celsius?: number | undefined;
|
|
60
60
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -62,15 +62,15 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
62
62
|
manual_override_allowed?: boolean | undefined;
|
|
63
63
|
}, {
|
|
64
64
|
created_at: string;
|
|
65
|
+
climate_setting_schedule_id: string;
|
|
66
|
+
schedule_type: "time_bound";
|
|
65
67
|
device_id: string;
|
|
66
68
|
schedule_starts_at: string;
|
|
67
69
|
schedule_ends_at: string;
|
|
68
|
-
climate_setting_schedule_id: string;
|
|
69
|
-
schedule_type: "time_bound";
|
|
70
70
|
name?: string | undefined;
|
|
71
71
|
automatic_heating_enabled?: boolean | undefined;
|
|
72
72
|
automatic_cooling_enabled?: boolean | undefined;
|
|
73
|
-
hvac_mode_setting?: "
|
|
73
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heatcool" | undefined;
|
|
74
74
|
cooling_set_point_celsius?: number | undefined;
|
|
75
75
|
heating_set_point_celsius?: number | undefined;
|
|
76
76
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -78,6 +78,7 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
78
78
|
manual_override_allowed?: boolean | undefined;
|
|
79
79
|
}>;
|
|
80
80
|
export declare const hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heatcool"]>;
|
|
81
|
+
export type HvacModeSetting = z.infer<typeof hvac_mode_setting>;
|
|
81
82
|
export declare const thermostat_capability_properties: z.ZodObject<{
|
|
82
83
|
temperature_fahrenheit: z.ZodNumber;
|
|
83
84
|
temperature_celsius: z.ZodNumber;
|
|
@@ -107,7 +108,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
107
108
|
}, "strip", z.ZodTypeAny, {
|
|
108
109
|
automatic_heating_enabled: boolean;
|
|
109
110
|
automatic_cooling_enabled: boolean;
|
|
110
|
-
hvac_mode_setting: "
|
|
111
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
111
112
|
manual_override_allowed: boolean;
|
|
112
113
|
cooling_set_point_celsius?: number | undefined;
|
|
113
114
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -116,7 +117,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
116
117
|
}, {
|
|
117
118
|
automatic_heating_enabled: boolean;
|
|
118
119
|
automatic_cooling_enabled: boolean;
|
|
119
|
-
hvac_mode_setting: "
|
|
120
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
120
121
|
manual_override_allowed: boolean;
|
|
121
122
|
cooling_set_point_celsius?: number | undefined;
|
|
122
123
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -135,7 +136,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
135
136
|
}, "strip", z.ZodTypeAny, {
|
|
136
137
|
automatic_heating_enabled: boolean;
|
|
137
138
|
automatic_cooling_enabled: boolean;
|
|
138
|
-
hvac_mode_setting: "
|
|
139
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
139
140
|
manual_override_allowed: boolean;
|
|
140
141
|
cooling_set_point_celsius?: number | undefined;
|
|
141
142
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -144,7 +145,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
144
145
|
}, {
|
|
145
146
|
automatic_heating_enabled: boolean;
|
|
146
147
|
automatic_cooling_enabled: boolean;
|
|
147
|
-
hvac_mode_setting: "
|
|
148
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
148
149
|
manual_override_allowed: boolean;
|
|
149
150
|
cooling_set_point_celsius?: number | undefined;
|
|
150
151
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -155,11 +156,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
155
156
|
active_climate_setting_schedule: z.ZodOptional<z.ZodObject<{
|
|
156
157
|
name: z.ZodOptional<z.ZodString>;
|
|
157
158
|
created_at: z.ZodString;
|
|
159
|
+
climate_setting_schedule_id: z.ZodString;
|
|
160
|
+
schedule_type: z.ZodLiteral<"time_bound">;
|
|
158
161
|
device_id: z.ZodString;
|
|
159
162
|
schedule_starts_at: z.ZodString;
|
|
160
163
|
schedule_ends_at: z.ZodString;
|
|
161
|
-
climate_setting_schedule_id: z.ZodString;
|
|
162
|
-
schedule_type: z.ZodLiteral<"time_bound">;
|
|
163
164
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
164
165
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
165
166
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heatcool"]>>;
|
|
@@ -170,15 +171,15 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
170
171
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
171
172
|
}, "strip", z.ZodTypeAny, {
|
|
172
173
|
created_at: string;
|
|
174
|
+
climate_setting_schedule_id: string;
|
|
175
|
+
schedule_type: "time_bound";
|
|
173
176
|
device_id: string;
|
|
174
177
|
schedule_starts_at: string;
|
|
175
178
|
schedule_ends_at: string;
|
|
176
|
-
climate_setting_schedule_id: string;
|
|
177
|
-
schedule_type: "time_bound";
|
|
178
179
|
name?: string | undefined;
|
|
179
180
|
automatic_heating_enabled?: boolean | undefined;
|
|
180
181
|
automatic_cooling_enabled?: boolean | undefined;
|
|
181
|
-
hvac_mode_setting?: "
|
|
182
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heatcool" | undefined;
|
|
182
183
|
cooling_set_point_celsius?: number | undefined;
|
|
183
184
|
heating_set_point_celsius?: number | undefined;
|
|
184
185
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -186,15 +187,15 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
186
187
|
manual_override_allowed?: boolean | undefined;
|
|
187
188
|
}, {
|
|
188
189
|
created_at: string;
|
|
190
|
+
climate_setting_schedule_id: string;
|
|
191
|
+
schedule_type: "time_bound";
|
|
189
192
|
device_id: string;
|
|
190
193
|
schedule_starts_at: string;
|
|
191
194
|
schedule_ends_at: string;
|
|
192
|
-
climate_setting_schedule_id: string;
|
|
193
|
-
schedule_type: "time_bound";
|
|
194
195
|
name?: string | undefined;
|
|
195
196
|
automatic_heating_enabled?: boolean | undefined;
|
|
196
197
|
automatic_cooling_enabled?: boolean | undefined;
|
|
197
|
-
hvac_mode_setting?: "
|
|
198
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heatcool" | undefined;
|
|
198
199
|
cooling_set_point_celsius?: number | undefined;
|
|
199
200
|
heating_set_point_celsius?: number | undefined;
|
|
200
201
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -207,7 +208,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
207
208
|
relative_humidity: number;
|
|
208
209
|
can_enable_automatic_heating: boolean;
|
|
209
210
|
can_enable_automatic_cooling: boolean;
|
|
210
|
-
available_hvac_mode_settings: ("
|
|
211
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heatcool")[];
|
|
211
212
|
is_heating: boolean;
|
|
212
213
|
is_cooling: boolean;
|
|
213
214
|
is_fan_running: boolean;
|
|
@@ -215,7 +216,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
215
216
|
current_climate_setting: {
|
|
216
217
|
automatic_heating_enabled: boolean;
|
|
217
218
|
automatic_cooling_enabled: boolean;
|
|
218
|
-
hvac_mode_setting: "
|
|
219
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
219
220
|
manual_override_allowed: boolean;
|
|
220
221
|
cooling_set_point_celsius?: number | undefined;
|
|
221
222
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -226,7 +227,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
226
227
|
default_climate_setting?: {
|
|
227
228
|
automatic_heating_enabled: boolean;
|
|
228
229
|
automatic_cooling_enabled: boolean;
|
|
229
|
-
hvac_mode_setting: "
|
|
230
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
230
231
|
manual_override_allowed: boolean;
|
|
231
232
|
cooling_set_point_celsius?: number | undefined;
|
|
232
233
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -235,15 +236,15 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
235
236
|
} | undefined;
|
|
236
237
|
active_climate_setting_schedule?: {
|
|
237
238
|
created_at: string;
|
|
239
|
+
climate_setting_schedule_id: string;
|
|
240
|
+
schedule_type: "time_bound";
|
|
238
241
|
device_id: string;
|
|
239
242
|
schedule_starts_at: string;
|
|
240
243
|
schedule_ends_at: string;
|
|
241
|
-
climate_setting_schedule_id: string;
|
|
242
|
-
schedule_type: "time_bound";
|
|
243
244
|
name?: string | undefined;
|
|
244
245
|
automatic_heating_enabled?: boolean | undefined;
|
|
245
246
|
automatic_cooling_enabled?: boolean | undefined;
|
|
246
|
-
hvac_mode_setting?: "
|
|
247
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heatcool" | undefined;
|
|
247
248
|
cooling_set_point_celsius?: number | undefined;
|
|
248
249
|
heating_set_point_celsius?: number | undefined;
|
|
249
250
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -256,7 +257,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
256
257
|
relative_humidity: number;
|
|
257
258
|
can_enable_automatic_heating: boolean;
|
|
258
259
|
can_enable_automatic_cooling: boolean;
|
|
259
|
-
available_hvac_mode_settings: ("
|
|
260
|
+
available_hvac_mode_settings: ("off" | "heat" | "cool" | "heatcool")[];
|
|
260
261
|
is_heating: boolean;
|
|
261
262
|
is_cooling: boolean;
|
|
262
263
|
is_fan_running: boolean;
|
|
@@ -264,7 +265,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
264
265
|
current_climate_setting: {
|
|
265
266
|
automatic_heating_enabled: boolean;
|
|
266
267
|
automatic_cooling_enabled: boolean;
|
|
267
|
-
hvac_mode_setting: "
|
|
268
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
268
269
|
manual_override_allowed: boolean;
|
|
269
270
|
cooling_set_point_celsius?: number | undefined;
|
|
270
271
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -275,7 +276,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
275
276
|
default_climate_setting?: {
|
|
276
277
|
automatic_heating_enabled: boolean;
|
|
277
278
|
automatic_cooling_enabled: boolean;
|
|
278
|
-
hvac_mode_setting: "
|
|
279
|
+
hvac_mode_setting: "off" | "heat" | "cool" | "heatcool";
|
|
279
280
|
manual_override_allowed: boolean;
|
|
280
281
|
cooling_set_point_celsius?: number | undefined;
|
|
281
282
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -284,15 +285,15 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
284
285
|
} | undefined;
|
|
285
286
|
active_climate_setting_schedule?: {
|
|
286
287
|
created_at: string;
|
|
288
|
+
climate_setting_schedule_id: string;
|
|
289
|
+
schedule_type: "time_bound";
|
|
287
290
|
device_id: string;
|
|
288
291
|
schedule_starts_at: string;
|
|
289
292
|
schedule_ends_at: string;
|
|
290
|
-
climate_setting_schedule_id: string;
|
|
291
|
-
schedule_type: "time_bound";
|
|
292
293
|
name?: string | undefined;
|
|
293
294
|
automatic_heating_enabled?: boolean | undefined;
|
|
294
295
|
automatic_cooling_enabled?: boolean | undefined;
|
|
295
|
-
hvac_mode_setting?: "
|
|
296
|
+
hvac_mode_setting?: "off" | "heat" | "cool" | "heatcool" | undefined;
|
|
296
297
|
cooling_set_point_celsius?: number | undefined;
|
|
297
298
|
heating_set_point_celsius?: number | undefined;
|
|
298
299
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,yBAAyB,EAAE,CAAC,CAAC,OAAO,EAAE;IACtC,yBAAyB,EAAE,CAAC,CAAC,OAAO,EAAE;IACtC,iBAAiB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;IAC9D,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE;CACrC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC;KACtC,MAAM,CAAC;IACN,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9C,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC;IACtC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC;KACD,KAAK,CAAC,eAAe,CAAC,OAAO,EAAE,CAAC,CAAA;AAEnC,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,yBAAyB,EAAE,CAAC,CAAC,OAAO,EAAE;IACtC,yBAAyB,EAAE,CAAC,CAAC,OAAO,EAAE;IACtC,iBAAiB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;IAC9D,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE;CACrC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC;KACtC,MAAM,CAAC;IACN,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9C,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC;IACtC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC;KACD,KAAK,CAAC,eAAe,CAAC,OAAO,EAAE,CAAC,CAAA;AAEnC,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,CAAA;AAI5E,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC,CAAC,MAAM,CAAC;IACvD,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;IAClC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3C,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE;IACzC,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE;IACzC,4BAA4B,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;IACxD,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE;IAE3B;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE;IAEhD;;OAEG;IACH,uBAAuB,EAAE,eAAe;IACxC,uBAAuB,EAAE,eAAe,CAAC,QAAQ,EAAE;IACnD,kCAAkC,EAAE,CAAC,CAAC,OAAO,EAAE;IAC/C,+BAA+B,EAAE,wBAAwB,CAAC,QAAQ,EAAE;CACrE,CAAC,CAAA"}
|
|
@@ -355,11 +355,11 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
355
355
|
}, "strip", z.ZodTypeAny, {
|
|
356
356
|
name: string;
|
|
357
357
|
device_num: number;
|
|
358
|
-
unlock_method?: "
|
|
358
|
+
unlock_method?: "bridge" | "doorking" | undefined;
|
|
359
359
|
}, {
|
|
360
360
|
name: string;
|
|
361
361
|
device_num: number;
|
|
362
|
-
unlock_method?: "
|
|
362
|
+
unlock_method?: "bridge" | "doorking" | undefined;
|
|
363
363
|
}>>;
|
|
364
364
|
igloohome_metadata: z.ZodOptional<z.ZodObject<{
|
|
365
365
|
device_id: z.ZodString;
|
|
@@ -549,7 +549,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
549
549
|
seam_bridge_metadata?: {
|
|
550
550
|
name: string;
|
|
551
551
|
device_num: number;
|
|
552
|
-
unlock_method?: "
|
|
552
|
+
unlock_method?: "bridge" | "doorking" | undefined;
|
|
553
553
|
} | undefined;
|
|
554
554
|
igloohome_metadata?: {
|
|
555
555
|
device_id: string;
|
|
@@ -687,7 +687,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
687
687
|
seam_bridge_metadata?: {
|
|
688
688
|
name: string;
|
|
689
689
|
device_num: number;
|
|
690
|
-
unlock_method?: "
|
|
690
|
+
unlock_method?: "bridge" | "doorking" | undefined;
|
|
691
691
|
} | undefined;
|
|
692
692
|
igloohome_metadata?: {
|
|
693
693
|
device_id: string;
|