@seamapi/types 1.324.0 → 1.325.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 +991 -49
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3076 -281
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +257 -5
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +257 -5
- package/lib/seam/connect/models/acs/acs-system.d.ts +10 -10
- package/lib/seam/connect/models/devices/device.d.ts +419 -11
- package/lib/seam/connect/models/devices/device.js +103 -3
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +258 -6
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +258 -6
- package/lib/seam/connect/openapi.d.ts +124 -79
- package/lib/seam/connect/openapi.js +925 -35
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1630 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +118 -3
- package/src/lib/seam/connect/openapi.ts +995 -35
- package/src/lib/seam/connect/route-types.ts +2080 -130
|
@@ -39,20 +39,176 @@ export declare const device_capability_flags: z.ZodObject<z.objectUtil.extendSha
|
|
|
39
39
|
}>;
|
|
40
40
|
export declare const battery_status: z.ZodEnum<["critical", "low", "good", "full"]>;
|
|
41
41
|
export type BatteryStatus = z.infer<typeof battery_status>;
|
|
42
|
-
export declare const device_error: z.ZodObject<z.objectUtil.extendShape<{
|
|
42
|
+
export declare const device_error: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
43
43
|
message: z.ZodString;
|
|
44
44
|
is_device_error: z.ZodLiteral<true>;
|
|
45
45
|
}, {
|
|
46
|
-
error_code: z.
|
|
46
|
+
error_code: z.ZodLiteral<"device_offline">;
|
|
47
47
|
}>, "strip", z.ZodTypeAny, {
|
|
48
48
|
message: string;
|
|
49
|
-
error_code:
|
|
49
|
+
error_code: "device_offline";
|
|
50
50
|
is_device_error: true;
|
|
51
51
|
}, {
|
|
52
52
|
message: string;
|
|
53
|
-
error_code:
|
|
53
|
+
error_code: "device_offline";
|
|
54
54
|
is_device_error: true;
|
|
55
|
-
}
|
|
55
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
56
|
+
message: z.ZodString;
|
|
57
|
+
is_device_error: z.ZodLiteral<true>;
|
|
58
|
+
}, {
|
|
59
|
+
error_code: z.ZodLiteral<"device_removed">;
|
|
60
|
+
}>, "strip", z.ZodTypeAny, {
|
|
61
|
+
message: string;
|
|
62
|
+
error_code: "device_removed";
|
|
63
|
+
is_device_error: true;
|
|
64
|
+
}, {
|
|
65
|
+
message: string;
|
|
66
|
+
error_code: "device_removed";
|
|
67
|
+
is_device_error: true;
|
|
68
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
69
|
+
message: z.ZodString;
|
|
70
|
+
is_device_error: z.ZodLiteral<true>;
|
|
71
|
+
}, {
|
|
72
|
+
error_code: z.ZodLiteral<"account_disconnected">;
|
|
73
|
+
}>, "strip", z.ZodTypeAny, {
|
|
74
|
+
message: string;
|
|
75
|
+
error_code: "account_disconnected";
|
|
76
|
+
is_device_error: true;
|
|
77
|
+
}, {
|
|
78
|
+
message: string;
|
|
79
|
+
error_code: "account_disconnected";
|
|
80
|
+
is_device_error: true;
|
|
81
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
82
|
+
message: z.ZodString;
|
|
83
|
+
is_device_error: z.ZodLiteral<true>;
|
|
84
|
+
}, {
|
|
85
|
+
error_code: z.ZodLiteral<"hub_disconnected">;
|
|
86
|
+
}>, "strip", z.ZodTypeAny, {
|
|
87
|
+
message: string;
|
|
88
|
+
error_code: "hub_disconnected";
|
|
89
|
+
is_device_error: true;
|
|
90
|
+
}, {
|
|
91
|
+
message: string;
|
|
92
|
+
error_code: "hub_disconnected";
|
|
93
|
+
is_device_error: true;
|
|
94
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
95
|
+
message: z.ZodString;
|
|
96
|
+
is_device_error: z.ZodLiteral<true>;
|
|
97
|
+
}, {
|
|
98
|
+
error_code: z.ZodLiteral<"device_disconnected">;
|
|
99
|
+
}>, "strip", z.ZodTypeAny, {
|
|
100
|
+
message: string;
|
|
101
|
+
error_code: "device_disconnected";
|
|
102
|
+
is_device_error: true;
|
|
103
|
+
}, {
|
|
104
|
+
message: string;
|
|
105
|
+
error_code: "device_disconnected";
|
|
106
|
+
is_device_error: true;
|
|
107
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
108
|
+
message: z.ZodString;
|
|
109
|
+
is_device_error: z.ZodLiteral<true>;
|
|
110
|
+
}, {
|
|
111
|
+
error_code: z.ZodLiteral<"empty_backup_access_code_pool">;
|
|
112
|
+
}>, "strip", z.ZodTypeAny, {
|
|
113
|
+
message: string;
|
|
114
|
+
error_code: "empty_backup_access_code_pool";
|
|
115
|
+
is_device_error: true;
|
|
116
|
+
}, {
|
|
117
|
+
message: string;
|
|
118
|
+
error_code: "empty_backup_access_code_pool";
|
|
119
|
+
is_device_error: true;
|
|
120
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
121
|
+
message: z.ZodString;
|
|
122
|
+
is_device_error: z.ZodLiteral<true>;
|
|
123
|
+
}, {
|
|
124
|
+
error_code: z.ZodLiteral<"august_lock_not_authorized">;
|
|
125
|
+
}>, "strip", z.ZodTypeAny, {
|
|
126
|
+
message: string;
|
|
127
|
+
error_code: "august_lock_not_authorized";
|
|
128
|
+
is_device_error: true;
|
|
129
|
+
}, {
|
|
130
|
+
message: string;
|
|
131
|
+
error_code: "august_lock_not_authorized";
|
|
132
|
+
is_device_error: true;
|
|
133
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
134
|
+
message: z.ZodString;
|
|
135
|
+
is_device_error: z.ZodLiteral<true>;
|
|
136
|
+
}, {
|
|
137
|
+
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
138
|
+
}>, "strip", z.ZodTypeAny, {
|
|
139
|
+
message: string;
|
|
140
|
+
error_code: "august_lock_missing_bridge";
|
|
141
|
+
is_device_error: true;
|
|
142
|
+
}, {
|
|
143
|
+
message: string;
|
|
144
|
+
error_code: "august_lock_missing_bridge";
|
|
145
|
+
is_device_error: true;
|
|
146
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
147
|
+
message: z.ZodString;
|
|
148
|
+
is_device_error: z.ZodLiteral<true>;
|
|
149
|
+
}, {
|
|
150
|
+
error_code: z.ZodLiteral<"salto_site_user_limit_reached">;
|
|
151
|
+
}>, "strip", z.ZodTypeAny, {
|
|
152
|
+
message: string;
|
|
153
|
+
error_code: "salto_site_user_limit_reached";
|
|
154
|
+
is_device_error: true;
|
|
155
|
+
}, {
|
|
156
|
+
message: string;
|
|
157
|
+
error_code: "salto_site_user_limit_reached";
|
|
158
|
+
is_device_error: true;
|
|
159
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
160
|
+
message: z.ZodString;
|
|
161
|
+
is_device_error: z.ZodLiteral<true>;
|
|
162
|
+
}, {
|
|
163
|
+
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
164
|
+
}>, "strip", z.ZodTypeAny, {
|
|
165
|
+
message: string;
|
|
166
|
+
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
167
|
+
is_device_error: true;
|
|
168
|
+
}, {
|
|
169
|
+
message: string;
|
|
170
|
+
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
171
|
+
is_device_error: true;
|
|
172
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
173
|
+
message: z.ZodString;
|
|
174
|
+
is_device_error: z.ZodLiteral<true>;
|
|
175
|
+
}, {
|
|
176
|
+
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
177
|
+
}>, "strip", z.ZodTypeAny, {
|
|
178
|
+
message: string;
|
|
179
|
+
error_code: "missing_device_credentials";
|
|
180
|
+
is_device_error: true;
|
|
181
|
+
}, {
|
|
182
|
+
message: string;
|
|
183
|
+
error_code: "missing_device_credentials";
|
|
184
|
+
is_device_error: true;
|
|
185
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
186
|
+
message: z.ZodString;
|
|
187
|
+
is_device_error: z.ZodLiteral<true>;
|
|
188
|
+
}, {
|
|
189
|
+
error_code: z.ZodLiteral<"auxiliary_heat_running">;
|
|
190
|
+
}>, "strip", z.ZodTypeAny, {
|
|
191
|
+
message: string;
|
|
192
|
+
error_code: "auxiliary_heat_running";
|
|
193
|
+
is_device_error: true;
|
|
194
|
+
}, {
|
|
195
|
+
message: string;
|
|
196
|
+
error_code: "auxiliary_heat_running";
|
|
197
|
+
is_device_error: true;
|
|
198
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
199
|
+
message: z.ZodString;
|
|
200
|
+
is_device_error: z.ZodLiteral<true>;
|
|
201
|
+
}, {
|
|
202
|
+
error_code: z.ZodLiteral<"subscription_required">;
|
|
203
|
+
}>, "strip", z.ZodTypeAny, {
|
|
204
|
+
message: string;
|
|
205
|
+
error_code: "subscription_required";
|
|
206
|
+
is_device_error: true;
|
|
207
|
+
}, {
|
|
208
|
+
message: string;
|
|
209
|
+
error_code: "subscription_required";
|
|
210
|
+
is_device_error: true;
|
|
211
|
+
}>]>;
|
|
56
212
|
export type DeviceError = z.infer<typeof device_error>;
|
|
57
213
|
declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
|
|
58
214
|
message: z.ZodString;
|
|
@@ -2061,20 +2217,176 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2061
2217
|
}>>;
|
|
2062
2218
|
connected_account_id: z.ZodString;
|
|
2063
2219
|
workspace_id: z.ZodString;
|
|
2064
|
-
errors: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2220
|
+
errors: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2065
2221
|
message: z.ZodString;
|
|
2066
2222
|
is_device_error: z.ZodLiteral<true>;
|
|
2067
2223
|
}, {
|
|
2068
|
-
error_code: z.
|
|
2224
|
+
error_code: z.ZodLiteral<"device_offline">;
|
|
2069
2225
|
}>, "strip", z.ZodTypeAny, {
|
|
2070
2226
|
message: string;
|
|
2071
|
-
error_code:
|
|
2227
|
+
error_code: "device_offline";
|
|
2072
2228
|
is_device_error: true;
|
|
2073
2229
|
}, {
|
|
2074
2230
|
message: string;
|
|
2075
|
-
error_code:
|
|
2231
|
+
error_code: "device_offline";
|
|
2232
|
+
is_device_error: true;
|
|
2233
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2234
|
+
message: z.ZodString;
|
|
2235
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2236
|
+
}, {
|
|
2237
|
+
error_code: z.ZodLiteral<"device_removed">;
|
|
2238
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2239
|
+
message: string;
|
|
2240
|
+
error_code: "device_removed";
|
|
2241
|
+
is_device_error: true;
|
|
2242
|
+
}, {
|
|
2243
|
+
message: string;
|
|
2244
|
+
error_code: "device_removed";
|
|
2245
|
+
is_device_error: true;
|
|
2246
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2247
|
+
message: z.ZodString;
|
|
2248
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2249
|
+
}, {
|
|
2250
|
+
error_code: z.ZodLiteral<"account_disconnected">;
|
|
2251
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2252
|
+
message: string;
|
|
2253
|
+
error_code: "account_disconnected";
|
|
2254
|
+
is_device_error: true;
|
|
2255
|
+
}, {
|
|
2256
|
+
message: string;
|
|
2257
|
+
error_code: "account_disconnected";
|
|
2258
|
+
is_device_error: true;
|
|
2259
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2260
|
+
message: z.ZodString;
|
|
2261
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2262
|
+
}, {
|
|
2263
|
+
error_code: z.ZodLiteral<"hub_disconnected">;
|
|
2264
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2265
|
+
message: string;
|
|
2266
|
+
error_code: "hub_disconnected";
|
|
2267
|
+
is_device_error: true;
|
|
2268
|
+
}, {
|
|
2269
|
+
message: string;
|
|
2270
|
+
error_code: "hub_disconnected";
|
|
2076
2271
|
is_device_error: true;
|
|
2077
2272
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2273
|
+
message: z.ZodString;
|
|
2274
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2275
|
+
}, {
|
|
2276
|
+
error_code: z.ZodLiteral<"device_disconnected">;
|
|
2277
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2278
|
+
message: string;
|
|
2279
|
+
error_code: "device_disconnected";
|
|
2280
|
+
is_device_error: true;
|
|
2281
|
+
}, {
|
|
2282
|
+
message: string;
|
|
2283
|
+
error_code: "device_disconnected";
|
|
2284
|
+
is_device_error: true;
|
|
2285
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2286
|
+
message: z.ZodString;
|
|
2287
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2288
|
+
}, {
|
|
2289
|
+
error_code: z.ZodLiteral<"empty_backup_access_code_pool">;
|
|
2290
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2291
|
+
message: string;
|
|
2292
|
+
error_code: "empty_backup_access_code_pool";
|
|
2293
|
+
is_device_error: true;
|
|
2294
|
+
}, {
|
|
2295
|
+
message: string;
|
|
2296
|
+
error_code: "empty_backup_access_code_pool";
|
|
2297
|
+
is_device_error: true;
|
|
2298
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2299
|
+
message: z.ZodString;
|
|
2300
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2301
|
+
}, {
|
|
2302
|
+
error_code: z.ZodLiteral<"august_lock_not_authorized">;
|
|
2303
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2304
|
+
message: string;
|
|
2305
|
+
error_code: "august_lock_not_authorized";
|
|
2306
|
+
is_device_error: true;
|
|
2307
|
+
}, {
|
|
2308
|
+
message: string;
|
|
2309
|
+
error_code: "august_lock_not_authorized";
|
|
2310
|
+
is_device_error: true;
|
|
2311
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2312
|
+
message: z.ZodString;
|
|
2313
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2314
|
+
}, {
|
|
2315
|
+
error_code: z.ZodLiteral<"august_lock_missing_bridge">;
|
|
2316
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2317
|
+
message: string;
|
|
2318
|
+
error_code: "august_lock_missing_bridge";
|
|
2319
|
+
is_device_error: true;
|
|
2320
|
+
}, {
|
|
2321
|
+
message: string;
|
|
2322
|
+
error_code: "august_lock_missing_bridge";
|
|
2323
|
+
is_device_error: true;
|
|
2324
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2325
|
+
message: z.ZodString;
|
|
2326
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2327
|
+
}, {
|
|
2328
|
+
error_code: z.ZodLiteral<"salto_site_user_limit_reached">;
|
|
2329
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2330
|
+
message: string;
|
|
2331
|
+
error_code: "salto_site_user_limit_reached";
|
|
2332
|
+
is_device_error: true;
|
|
2333
|
+
}, {
|
|
2334
|
+
message: string;
|
|
2335
|
+
error_code: "salto_site_user_limit_reached";
|
|
2336
|
+
is_device_error: true;
|
|
2337
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2338
|
+
message: z.ZodString;
|
|
2339
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2340
|
+
}, {
|
|
2341
|
+
error_code: z.ZodLiteral<"ttlock_lock_not_paired_to_gateway">;
|
|
2342
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2343
|
+
message: string;
|
|
2344
|
+
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2345
|
+
is_device_error: true;
|
|
2346
|
+
}, {
|
|
2347
|
+
message: string;
|
|
2348
|
+
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2349
|
+
is_device_error: true;
|
|
2350
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2351
|
+
message: z.ZodString;
|
|
2352
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2353
|
+
}, {
|
|
2354
|
+
error_code: z.ZodLiteral<"missing_device_credentials">;
|
|
2355
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2356
|
+
message: string;
|
|
2357
|
+
error_code: "missing_device_credentials";
|
|
2358
|
+
is_device_error: true;
|
|
2359
|
+
}, {
|
|
2360
|
+
message: string;
|
|
2361
|
+
error_code: "missing_device_credentials";
|
|
2362
|
+
is_device_error: true;
|
|
2363
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2364
|
+
message: z.ZodString;
|
|
2365
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2366
|
+
}, {
|
|
2367
|
+
error_code: z.ZodLiteral<"auxiliary_heat_running">;
|
|
2368
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2369
|
+
message: string;
|
|
2370
|
+
error_code: "auxiliary_heat_running";
|
|
2371
|
+
is_device_error: true;
|
|
2372
|
+
}, {
|
|
2373
|
+
message: string;
|
|
2374
|
+
error_code: "auxiliary_heat_running";
|
|
2375
|
+
is_device_error: true;
|
|
2376
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2377
|
+
message: z.ZodString;
|
|
2378
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2379
|
+
}, {
|
|
2380
|
+
error_code: z.ZodLiteral<"subscription_required">;
|
|
2381
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2382
|
+
message: string;
|
|
2383
|
+
error_code: "subscription_required";
|
|
2384
|
+
is_device_error: true;
|
|
2385
|
+
}, {
|
|
2386
|
+
message: string;
|
|
2387
|
+
error_code: "subscription_required";
|
|
2388
|
+
is_device_error: true;
|
|
2389
|
+
}>]>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2078
2390
|
message: z.ZodString;
|
|
2079
2391
|
is_connected_account_error: z.ZodLiteral<true>;
|
|
2080
2392
|
}, {
|
|
@@ -2128,7 +2440,55 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2128
2440
|
error_code: string;
|
|
2129
2441
|
} | {
|
|
2130
2442
|
message: string;
|
|
2131
|
-
error_code:
|
|
2443
|
+
error_code: "device_offline";
|
|
2444
|
+
is_device_error: true;
|
|
2445
|
+
} | {
|
|
2446
|
+
message: string;
|
|
2447
|
+
error_code: "device_removed";
|
|
2448
|
+
is_device_error: true;
|
|
2449
|
+
} | {
|
|
2450
|
+
message: string;
|
|
2451
|
+
error_code: "account_disconnected";
|
|
2452
|
+
is_device_error: true;
|
|
2453
|
+
} | {
|
|
2454
|
+
message: string;
|
|
2455
|
+
error_code: "hub_disconnected";
|
|
2456
|
+
is_device_error: true;
|
|
2457
|
+
} | {
|
|
2458
|
+
message: string;
|
|
2459
|
+
error_code: "device_disconnected";
|
|
2460
|
+
is_device_error: true;
|
|
2461
|
+
} | {
|
|
2462
|
+
message: string;
|
|
2463
|
+
error_code: "empty_backup_access_code_pool";
|
|
2464
|
+
is_device_error: true;
|
|
2465
|
+
} | {
|
|
2466
|
+
message: string;
|
|
2467
|
+
error_code: "august_lock_not_authorized";
|
|
2468
|
+
is_device_error: true;
|
|
2469
|
+
} | {
|
|
2470
|
+
message: string;
|
|
2471
|
+
error_code: "august_lock_missing_bridge";
|
|
2472
|
+
is_device_error: true;
|
|
2473
|
+
} | {
|
|
2474
|
+
message: string;
|
|
2475
|
+
error_code: "salto_site_user_limit_reached";
|
|
2476
|
+
is_device_error: true;
|
|
2477
|
+
} | {
|
|
2478
|
+
message: string;
|
|
2479
|
+
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2480
|
+
is_device_error: true;
|
|
2481
|
+
} | {
|
|
2482
|
+
message: string;
|
|
2483
|
+
error_code: "missing_device_credentials";
|
|
2484
|
+
is_device_error: true;
|
|
2485
|
+
} | {
|
|
2486
|
+
message: string;
|
|
2487
|
+
error_code: "auxiliary_heat_running";
|
|
2488
|
+
is_device_error: true;
|
|
2489
|
+
} | {
|
|
2490
|
+
message: string;
|
|
2491
|
+
error_code: "subscription_required";
|
|
2132
2492
|
is_device_error: true;
|
|
2133
2493
|
})[];
|
|
2134
2494
|
warnings: {
|
|
@@ -2543,7 +2903,55 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2543
2903
|
error_code: string;
|
|
2544
2904
|
} | {
|
|
2545
2905
|
message: string;
|
|
2546
|
-
error_code:
|
|
2906
|
+
error_code: "device_offline";
|
|
2907
|
+
is_device_error: true;
|
|
2908
|
+
} | {
|
|
2909
|
+
message: string;
|
|
2910
|
+
error_code: "device_removed";
|
|
2911
|
+
is_device_error: true;
|
|
2912
|
+
} | {
|
|
2913
|
+
message: string;
|
|
2914
|
+
error_code: "account_disconnected";
|
|
2915
|
+
is_device_error: true;
|
|
2916
|
+
} | {
|
|
2917
|
+
message: string;
|
|
2918
|
+
error_code: "hub_disconnected";
|
|
2919
|
+
is_device_error: true;
|
|
2920
|
+
} | {
|
|
2921
|
+
message: string;
|
|
2922
|
+
error_code: "device_disconnected";
|
|
2923
|
+
is_device_error: true;
|
|
2924
|
+
} | {
|
|
2925
|
+
message: string;
|
|
2926
|
+
error_code: "empty_backup_access_code_pool";
|
|
2927
|
+
is_device_error: true;
|
|
2928
|
+
} | {
|
|
2929
|
+
message: string;
|
|
2930
|
+
error_code: "august_lock_not_authorized";
|
|
2931
|
+
is_device_error: true;
|
|
2932
|
+
} | {
|
|
2933
|
+
message: string;
|
|
2934
|
+
error_code: "august_lock_missing_bridge";
|
|
2935
|
+
is_device_error: true;
|
|
2936
|
+
} | {
|
|
2937
|
+
message: string;
|
|
2938
|
+
error_code: "salto_site_user_limit_reached";
|
|
2939
|
+
is_device_error: true;
|
|
2940
|
+
} | {
|
|
2941
|
+
message: string;
|
|
2942
|
+
error_code: "ttlock_lock_not_paired_to_gateway";
|
|
2943
|
+
is_device_error: true;
|
|
2944
|
+
} | {
|
|
2945
|
+
message: string;
|
|
2946
|
+
error_code: "missing_device_credentials";
|
|
2947
|
+
is_device_error: true;
|
|
2948
|
+
} | {
|
|
2949
|
+
message: string;
|
|
2950
|
+
error_code: "auxiliary_heat_running";
|
|
2951
|
+
is_device_error: true;
|
|
2952
|
+
} | {
|
|
2953
|
+
message: string;
|
|
2954
|
+
error_code: "subscription_required";
|
|
2547
2955
|
is_device_error: true;
|
|
2548
2956
|
})[];
|
|
2549
2957
|
warnings: {
|
|
@@ -17,12 +17,112 @@ const common_device_error = z.object({
|
|
|
17
17
|
message: z.string(),
|
|
18
18
|
is_device_error: z.literal(true),
|
|
19
19
|
});
|
|
20
|
+
const error_code_description = 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.';
|
|
20
21
|
const common_device_warning = z.object({
|
|
21
22
|
message: z.string(),
|
|
22
23
|
});
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
const device_offline = common_device_error
|
|
25
|
+
.extend({
|
|
26
|
+
error_code: z.literal('device_offline').describe(error_code_description),
|
|
27
|
+
})
|
|
28
|
+
.describe('Device is offline');
|
|
29
|
+
const device_removed = common_device_error
|
|
30
|
+
.extend({
|
|
31
|
+
error_code: z.literal('device_removed').describe(error_code_description),
|
|
32
|
+
})
|
|
33
|
+
.describe('Device has been removed');
|
|
34
|
+
const account_disconnected = common_device_error
|
|
35
|
+
.extend({
|
|
36
|
+
error_code: z
|
|
37
|
+
.literal('account_disconnected')
|
|
38
|
+
.describe(error_code_description),
|
|
39
|
+
})
|
|
40
|
+
.describe('Account is disconnected');
|
|
41
|
+
const hub_disconnected = common_device_error
|
|
42
|
+
.extend({
|
|
43
|
+
error_code: z.literal('hub_disconnected').describe(error_code_description),
|
|
44
|
+
})
|
|
45
|
+
.describe('Hub is disconnected');
|
|
46
|
+
const device_disconnected = common_device_error
|
|
47
|
+
.extend({
|
|
48
|
+
error_code: z
|
|
49
|
+
.literal('device_disconnected')
|
|
50
|
+
.describe(error_code_description),
|
|
51
|
+
})
|
|
52
|
+
.describe('Device is disconnected');
|
|
53
|
+
const empty_backup_access_code_pool = common_device_error
|
|
54
|
+
.extend({
|
|
55
|
+
error_code: z
|
|
56
|
+
.literal('empty_backup_access_code_pool')
|
|
57
|
+
.describe(error_code_description),
|
|
58
|
+
})
|
|
59
|
+
.describe('The backup access code pool is empty.');
|
|
60
|
+
const august_lock_not_authorized = common_device_error
|
|
61
|
+
.extend({
|
|
62
|
+
error_code: z
|
|
63
|
+
.literal('august_lock_not_authorized')
|
|
64
|
+
.describe(error_code_description),
|
|
65
|
+
})
|
|
66
|
+
.describe('User is not authorized to use the August Lock.');
|
|
67
|
+
const august_lock_missing_bridge = common_device_error
|
|
68
|
+
.extend({
|
|
69
|
+
error_code: z
|
|
70
|
+
.literal('august_lock_missing_bridge')
|
|
71
|
+
.describe(error_code_description),
|
|
72
|
+
})
|
|
73
|
+
.describe('Lock is not connected to the Seam Bridge.');
|
|
74
|
+
const salto_site_user_limit_reached = common_device_error
|
|
75
|
+
.extend({
|
|
76
|
+
error_code: z
|
|
77
|
+
.literal('salto_site_user_limit_reached')
|
|
78
|
+
.describe(error_code_description),
|
|
79
|
+
})
|
|
80
|
+
.describe('Salto site user limit reached.');
|
|
81
|
+
const ttlock_lock_not_paired_to_gateway = common_device_error
|
|
82
|
+
.extend({
|
|
83
|
+
error_code: z
|
|
84
|
+
.literal('ttlock_lock_not_paired_to_gateway')
|
|
85
|
+
.describe(error_code_description),
|
|
86
|
+
})
|
|
87
|
+
.describe('Lock is not paired with a Gateway.');
|
|
88
|
+
const missing_device_credentials = common_device_error
|
|
89
|
+
.extend({
|
|
90
|
+
error_code: z
|
|
91
|
+
.literal('missing_device_credentials')
|
|
92
|
+
.describe(error_code_description),
|
|
93
|
+
})
|
|
94
|
+
.describe('Missing device credentials.');
|
|
95
|
+
const auxiliary_heat_running = common_device_error
|
|
96
|
+
.extend({
|
|
97
|
+
error_code: z
|
|
98
|
+
.literal('auxiliary_heat_running')
|
|
99
|
+
.describe(error_code_description),
|
|
100
|
+
})
|
|
101
|
+
.describe('The auxiliary heat is running.');
|
|
102
|
+
const subscription_required = common_device_error
|
|
103
|
+
.extend({
|
|
104
|
+
error_code: z
|
|
105
|
+
.literal('subscription_required')
|
|
106
|
+
.describe(error_code_description),
|
|
107
|
+
})
|
|
108
|
+
.describe('Subscription required to connect.');
|
|
109
|
+
export const device_error = z
|
|
110
|
+
.union([
|
|
111
|
+
device_offline,
|
|
112
|
+
device_removed,
|
|
113
|
+
account_disconnected,
|
|
114
|
+
hub_disconnected,
|
|
115
|
+
device_disconnected,
|
|
116
|
+
empty_backup_access_code_pool,
|
|
117
|
+
august_lock_not_authorized,
|
|
118
|
+
august_lock_missing_bridge,
|
|
119
|
+
salto_site_user_limit_reached,
|
|
120
|
+
ttlock_lock_not_paired_to_gateway,
|
|
121
|
+
missing_device_credentials,
|
|
122
|
+
auxiliary_heat_running,
|
|
123
|
+
subscription_required,
|
|
124
|
+
])
|
|
125
|
+
.describe('Error associated with the `device`.');
|
|
26
126
|
const device_warning = common_device_warning.extend({
|
|
27
127
|
warning_code: z.string(),
|
|
28
128
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAErE,OAAO,EAAE,uBAAuB,EAAE,MAAM,gCAAgC,CAAA;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC1D,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAClD,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAA;AAEjE,MAAM,CAAC,MAAM,uBAAuB,GAClC,gBAAgB,CAAC,uBAAuB,CAAC,MAAM,CAAC;IAC9C,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC5C,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/C,0BAA0B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;AAIzE,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,eAAe,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACjC,CAAC,CAAA;AAEF,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device.ts"],"names":[],"mappings":"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"}
|