@seamapi/types 1.247.1 → 1.249.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 +55 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +206 -97
- package/lib/seam/connect/models/acs/acs-credential.d.ts +18 -0
- package/lib/seam/connect/models/acs/acs-credential.js +3 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +1 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +31 -26
- package/lib/seam/connect/models/devices/phone.d.ts +21 -18
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -18
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +3 -1
- package/lib/seam/connect/models/thermostats/modes.js +2 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +44 -0
- package/lib/seam/connect/openapi.js +49 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +92 -53
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -0
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +49 -10
- package/src/lib/seam/connect/route-types.ts +164 -53
|
@@ -10,6 +10,9 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10
10
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
11
11
|
display_name: z.ZodString;
|
|
12
12
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13
|
+
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14
|
+
is_encoded: z.ZodOptional<z.ZodBoolean>;
|
|
15
|
+
encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13
16
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
14
17
|
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
15
18
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
@@ -91,6 +94,9 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
91
94
|
acs_user_id?: string | undefined;
|
|
92
95
|
acs_credential_pool_id?: string | undefined;
|
|
93
96
|
parent_acs_credential_id?: string | undefined;
|
|
97
|
+
card_number?: string | null | undefined;
|
|
98
|
+
is_encoded?: boolean | undefined;
|
|
99
|
+
encoded_at?: string | null | undefined;
|
|
94
100
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
95
101
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
96
102
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -127,6 +133,9 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
127
133
|
acs_user_id?: string | undefined;
|
|
128
134
|
acs_credential_pool_id?: string | undefined;
|
|
129
135
|
parent_acs_credential_id?: string | undefined;
|
|
136
|
+
card_number?: string | null | undefined;
|
|
137
|
+
is_encoded?: boolean | undefined;
|
|
138
|
+
encoded_at?: string | null | undefined;
|
|
130
139
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
131
140
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
132
141
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -148,6 +157,9 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
148
157
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
149
158
|
display_name: z.ZodString;
|
|
150
159
|
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
160
|
+
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
161
|
+
is_encoded: z.ZodOptional<z.ZodBoolean>;
|
|
162
|
+
encoded_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
151
163
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
152
164
|
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
153
165
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
@@ -229,6 +241,9 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
229
241
|
acs_user_id?: string | undefined;
|
|
230
242
|
acs_credential_pool_id?: string | undefined;
|
|
231
243
|
parent_acs_credential_id?: string | undefined;
|
|
244
|
+
card_number?: string | null | undefined;
|
|
245
|
+
is_encoded?: boolean | undefined;
|
|
246
|
+
encoded_at?: string | null | undefined;
|
|
232
247
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
233
248
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
234
249
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -265,6 +280,9 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
265
280
|
acs_user_id?: string | undefined;
|
|
266
281
|
acs_credential_pool_id?: string | undefined;
|
|
267
282
|
parent_acs_credential_id?: string | undefined;
|
|
283
|
+
card_number?: string | null | undefined;
|
|
284
|
+
is_encoded?: boolean | undefined;
|
|
285
|
+
encoded_at?: string | null | undefined;
|
|
268
286
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
269
287
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
270
288
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -21,6 +21,9 @@ const common_acs_credential = z.object({
|
|
|
21
21
|
parent_acs_credential_id: z.string().uuid().optional(),
|
|
22
22
|
display_name: z.string().min(1),
|
|
23
23
|
code: z.string().optional().nullable(),
|
|
24
|
+
card_number: z.string().optional().nullable(),
|
|
25
|
+
is_encoded: z.boolean().optional(),
|
|
26
|
+
encoded_at: z.string().datetime().optional().nullable(),
|
|
24
27
|
access_method: acs_credential_access_method_type,
|
|
25
28
|
external_type: acs_credential_external_type.optional(),
|
|
26
29
|
external_type_display_name: z.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,kCAAkC,EAAE,MAAM,qBAAqB,CAAA;AAExE,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,qBAAqB;CACtB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACtD,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,QAAQ,EAAE,CAAC,CAAC,KAAK,CACf,CAAC,CAAC,MAAM,CAAC;QACP,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,8BAA8B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACtD,4CAA4C,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACpE,4CAA4C,EAAE,CAAC;SAC5C,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,mBAAmB,EAAE,kCAAkC,CAAC,QAAQ,EAAE;CACnE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,qBAAqB,CAAC,KAAK,CACvD,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CACH,CAAA;AAED,MAAM,CAAC,MAAM,wBAAwB,GAAG,qBAAqB,CAAC,KAAK,CACjE,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;CAC7B,CAAC,CACH,CAAA"}
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -79,10 +79,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
79
79
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
80
80
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
81
81
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
82
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
82
83
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
83
84
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
84
85
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
85
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
86
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
86
87
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
87
88
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
88
89
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -90,7 +91,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
90
91
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
91
92
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
92
93
|
display_name: z.ZodOptional<z.ZodString>;
|
|
93
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
94
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
94
95
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
95
96
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
96
97
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -103,7 +104,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
103
104
|
can_edit?: boolean | undefined;
|
|
104
105
|
can_delete?: boolean | undefined;
|
|
105
106
|
display_name?: string | undefined;
|
|
106
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
107
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
107
108
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
108
109
|
cooling_set_point_celsius?: number | undefined;
|
|
109
110
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -116,7 +117,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
116
117
|
can_edit?: boolean | undefined;
|
|
117
118
|
can_delete?: boolean | undefined;
|
|
118
119
|
display_name?: string | undefined;
|
|
119
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
120
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
120
121
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
121
122
|
cooling_set_point_celsius?: number | undefined;
|
|
122
123
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -130,7 +131,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
130
131
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
131
132
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
132
133
|
display_name: z.ZodOptional<z.ZodString>;
|
|
133
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
134
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
134
135
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
135
136
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
136
137
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -143,7 +144,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
143
144
|
can_edit?: boolean | undefined;
|
|
144
145
|
can_delete?: boolean | undefined;
|
|
145
146
|
display_name?: string | undefined;
|
|
146
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
147
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
147
148
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
148
149
|
cooling_set_point_celsius?: number | undefined;
|
|
149
150
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -156,7 +157,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
156
157
|
can_edit?: boolean | undefined;
|
|
157
158
|
can_delete?: boolean | undefined;
|
|
158
159
|
display_name?: string | undefined;
|
|
159
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
160
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
160
161
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
161
162
|
cooling_set_point_celsius?: number | undefined;
|
|
162
163
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -170,7 +171,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
170
171
|
can_delete: z.ZodBoolean;
|
|
171
172
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
172
173
|
display_name: z.ZodString;
|
|
173
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
174
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
174
175
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
175
176
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
176
177
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -184,7 +185,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
184
185
|
can_delete: boolean;
|
|
185
186
|
display_name: string;
|
|
186
187
|
manual_override_allowed: boolean;
|
|
187
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
188
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
188
189
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
189
190
|
cooling_set_point_celsius?: number | undefined;
|
|
190
191
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -197,7 +198,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
197
198
|
display_name: string;
|
|
198
199
|
manual_override_allowed: boolean;
|
|
199
200
|
name?: string | null | undefined;
|
|
200
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
201
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
201
202
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
202
203
|
cooling_set_point_celsius?: number | undefined;
|
|
203
204
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -247,11 +248,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
247
248
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
248
249
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
249
250
|
}, "strip", z.ZodTypeAny, {
|
|
250
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
251
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
251
252
|
temperature_fahrenheit?: number | undefined;
|
|
252
253
|
temperature_celsius?: number | undefined;
|
|
253
254
|
relative_humidity?: number | undefined;
|
|
254
255
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
256
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
255
257
|
is_heating?: boolean | undefined;
|
|
256
258
|
is_cooling?: boolean | undefined;
|
|
257
259
|
is_fan_running?: boolean | undefined;
|
|
@@ -262,7 +264,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
262
264
|
can_edit?: boolean | undefined;
|
|
263
265
|
can_delete?: boolean | undefined;
|
|
264
266
|
display_name?: string | undefined;
|
|
265
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
267
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
266
268
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
267
269
|
cooling_set_point_celsius?: number | undefined;
|
|
268
270
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -276,7 +278,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
276
278
|
can_edit?: boolean | undefined;
|
|
277
279
|
can_delete?: boolean | undefined;
|
|
278
280
|
display_name?: string | undefined;
|
|
279
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
281
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
280
282
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
281
283
|
cooling_set_point_celsius?: number | undefined;
|
|
282
284
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -291,7 +293,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
291
293
|
can_delete: boolean;
|
|
292
294
|
display_name: string;
|
|
293
295
|
manual_override_allowed: boolean;
|
|
294
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
296
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
295
297
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
296
298
|
cooling_set_point_celsius?: number | undefined;
|
|
297
299
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -321,11 +323,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
321
323
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
322
324
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
323
325
|
}, {
|
|
324
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
326
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
325
327
|
temperature_fahrenheit?: number | undefined;
|
|
326
328
|
temperature_celsius?: number | undefined;
|
|
327
329
|
relative_humidity?: number | undefined;
|
|
328
330
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
331
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
329
332
|
is_heating?: boolean | undefined;
|
|
330
333
|
is_cooling?: boolean | undefined;
|
|
331
334
|
is_fan_running?: boolean | undefined;
|
|
@@ -336,7 +339,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
336
339
|
can_edit?: boolean | undefined;
|
|
337
340
|
can_delete?: boolean | undefined;
|
|
338
341
|
display_name?: string | undefined;
|
|
339
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
342
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
340
343
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
341
344
|
cooling_set_point_celsius?: number | undefined;
|
|
342
345
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -350,7 +353,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
350
353
|
can_edit?: boolean | undefined;
|
|
351
354
|
can_delete?: boolean | undefined;
|
|
352
355
|
display_name?: string | undefined;
|
|
353
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
356
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
354
357
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
355
358
|
cooling_set_point_celsius?: number | undefined;
|
|
356
359
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -365,7 +368,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
365
368
|
display_name: string;
|
|
366
369
|
manual_override_allowed: boolean;
|
|
367
370
|
name?: string | null | undefined;
|
|
368
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
371
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
369
372
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
370
373
|
cooling_set_point_celsius?: number | undefined;
|
|
371
374
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -4,10 +4,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
4
4
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
5
5
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
6
6
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
7
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
7
8
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
8
9
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
9
10
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
10
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
11
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
11
12
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
12
13
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
13
14
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -15,7 +16,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
15
16
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
16
17
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
17
18
|
display_name: z.ZodOptional<z.ZodString>;
|
|
18
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
19
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
19
20
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
20
21
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
21
22
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -28,7 +29,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
28
29
|
can_edit?: boolean | undefined;
|
|
29
30
|
can_delete?: boolean | undefined;
|
|
30
31
|
display_name?: string | undefined;
|
|
31
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
32
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
32
33
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
33
34
|
cooling_set_point_celsius?: number | undefined;
|
|
34
35
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -41,7 +42,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
41
42
|
can_edit?: boolean | undefined;
|
|
42
43
|
can_delete?: boolean | undefined;
|
|
43
44
|
display_name?: string | undefined;
|
|
44
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
45
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
45
46
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
46
47
|
cooling_set_point_celsius?: number | undefined;
|
|
47
48
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -55,7 +56,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
55
56
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
56
57
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
57
58
|
display_name: z.ZodOptional<z.ZodString>;
|
|
58
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
59
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
59
60
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
60
61
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
61
62
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -68,7 +69,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
68
69
|
can_edit?: boolean | undefined;
|
|
69
70
|
can_delete?: boolean | undefined;
|
|
70
71
|
display_name?: string | undefined;
|
|
71
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
72
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
72
73
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
73
74
|
cooling_set_point_celsius?: number | undefined;
|
|
74
75
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -81,7 +82,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
81
82
|
can_edit?: boolean | undefined;
|
|
82
83
|
can_delete?: boolean | undefined;
|
|
83
84
|
display_name?: string | undefined;
|
|
84
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
85
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
85
86
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
86
87
|
cooling_set_point_celsius?: number | undefined;
|
|
87
88
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -95,7 +96,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
95
96
|
can_delete: z.ZodBoolean;
|
|
96
97
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
97
98
|
display_name: z.ZodString;
|
|
98
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
99
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
99
100
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
100
101
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
101
102
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -109,7 +110,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
109
110
|
can_delete: boolean;
|
|
110
111
|
display_name: string;
|
|
111
112
|
manual_override_allowed: boolean;
|
|
112
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
113
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
113
114
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
114
115
|
cooling_set_point_celsius?: number | undefined;
|
|
115
116
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -122,7 +123,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
122
123
|
display_name: string;
|
|
123
124
|
manual_override_allowed: boolean;
|
|
124
125
|
name?: string | null | undefined;
|
|
125
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
126
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
126
127
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
127
128
|
cooling_set_point_celsius?: number | undefined;
|
|
128
129
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -172,11 +173,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
172
173
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
173
174
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
174
175
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
176
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
176
177
|
temperature_fahrenheit?: number | undefined;
|
|
177
178
|
temperature_celsius?: number | undefined;
|
|
178
179
|
relative_humidity?: number | undefined;
|
|
179
180
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
181
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
180
182
|
is_heating?: boolean | undefined;
|
|
181
183
|
is_cooling?: boolean | undefined;
|
|
182
184
|
is_fan_running?: boolean | undefined;
|
|
@@ -187,7 +189,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
187
189
|
can_edit?: boolean | undefined;
|
|
188
190
|
can_delete?: boolean | undefined;
|
|
189
191
|
display_name?: string | undefined;
|
|
190
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
192
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
191
193
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
192
194
|
cooling_set_point_celsius?: number | undefined;
|
|
193
195
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -201,7 +203,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
201
203
|
can_edit?: boolean | undefined;
|
|
202
204
|
can_delete?: boolean | undefined;
|
|
203
205
|
display_name?: string | undefined;
|
|
204
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
206
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
205
207
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
206
208
|
cooling_set_point_celsius?: number | undefined;
|
|
207
209
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -216,7 +218,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
216
218
|
can_delete: boolean;
|
|
217
219
|
display_name: string;
|
|
218
220
|
manual_override_allowed: boolean;
|
|
219
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
221
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
220
222
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
221
223
|
cooling_set_point_celsius?: number | undefined;
|
|
222
224
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -246,11 +248,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
246
248
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
247
249
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
248
250
|
}, {
|
|
249
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
251
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
250
252
|
temperature_fahrenheit?: number | undefined;
|
|
251
253
|
temperature_celsius?: number | undefined;
|
|
252
254
|
relative_humidity?: number | undefined;
|
|
253
255
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
256
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
254
257
|
is_heating?: boolean | undefined;
|
|
255
258
|
is_cooling?: boolean | undefined;
|
|
256
259
|
is_fan_running?: boolean | undefined;
|
|
@@ -261,7 +264,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
261
264
|
can_edit?: boolean | undefined;
|
|
262
265
|
can_delete?: boolean | undefined;
|
|
263
266
|
display_name?: string | undefined;
|
|
264
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
267
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
265
268
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
266
269
|
cooling_set_point_celsius?: number | undefined;
|
|
267
270
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -275,7 +278,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
275
278
|
can_edit?: boolean | undefined;
|
|
276
279
|
can_delete?: boolean | undefined;
|
|
277
280
|
display_name?: string | undefined;
|
|
278
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
281
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
279
282
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
280
283
|
cooling_set_point_celsius?: number | undefined;
|
|
281
284
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -290,7 +293,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
290
293
|
display_name: string;
|
|
291
294
|
manual_override_allowed: boolean;
|
|
292
295
|
name?: string | null | undefined;
|
|
293
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
296
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
294
297
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
295
298
|
cooling_set_point_celsius?: number | undefined;
|
|
296
299
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6,6 +6,7 @@ export const thermostat_capability_properties = z
|
|
|
6
6
|
temperature_celsius: z.number(),
|
|
7
7
|
relative_humidity: z.number().min(0).max(1),
|
|
8
8
|
available_hvac_mode_settings: z.array(hvac_mode_setting),
|
|
9
|
+
available_fan_mode_settings: z.array(fan_mode_setting),
|
|
9
10
|
is_heating: z.boolean(),
|
|
10
11
|
is_cooling: z.boolean(),
|
|
11
12
|
is_fan_running: z.boolean(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,mBAAmB,GACpB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,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,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;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IAEF;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE;IAEhD;;OAEG;IACH,uBAAuB,EAAE,eAAe;IACxC,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;KAIjD,CAAC;IACF,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC;IAClD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACvE,0BAA0B,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACxE,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,iCAAiC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7C,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;CACjD,CAAC;KACD,OAAO,EAAE,CAAA"}
|
|
1
|
+
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,mBAAmB,GACpB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,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,KAAK,CAAC,iBAAiB,CAAC;IACxD,2BAA2B,EAAE,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC;IACtD,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IAEF;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE;IAEhD;;OAEG;IACH,uBAAuB,EAAE,eAAe;IACxC,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;KAIjD,CAAC;IACF,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC;IAClD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACvE,0BAA0B,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACxE,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,iCAAiC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7C,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;CACjD,CAAC;KACD,OAAO,EAAE,CAAA"}
|