@seamapi/types 1.363.0 → 1.363.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 +101 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +700 -2
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1097 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +67 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +155 -0
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +62 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +279 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +79 -0
- package/src/lib/seam/connect/openapi.ts +62 -0
- package/src/lib/seam/connect/route-types.ts +279 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3,372 +3,465 @@ import { z } from 'zod';
|
|
|
3
3
|
declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
4
4
|
message: z.ZodString;
|
|
5
5
|
is_access_code_error: z.ZodLiteral<true>;
|
|
6
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
6
7
|
}, {
|
|
7
8
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
8
9
|
}>, "strip", z.ZodTypeAny, {
|
|
9
10
|
message: string;
|
|
10
11
|
error_code: "smartthings_failed_to_set_access_code";
|
|
11
12
|
is_access_code_error: true;
|
|
13
|
+
created_at?: string | undefined;
|
|
12
14
|
}, {
|
|
13
15
|
message: string;
|
|
14
16
|
error_code: "smartthings_failed_to_set_access_code";
|
|
15
17
|
is_access_code_error: true;
|
|
18
|
+
created_at?: string | undefined;
|
|
16
19
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17
20
|
message: z.ZodString;
|
|
18
21
|
is_access_code_error: z.ZodLiteral<true>;
|
|
22
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
19
23
|
}, {
|
|
20
24
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
21
25
|
}>, "strip", z.ZodTypeAny, {
|
|
22
26
|
message: string;
|
|
23
27
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
24
28
|
is_access_code_error: true;
|
|
29
|
+
created_at?: string | undefined;
|
|
25
30
|
}, {
|
|
26
31
|
message: string;
|
|
27
32
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
28
33
|
is_access_code_error: true;
|
|
34
|
+
created_at?: string | undefined;
|
|
29
35
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
30
36
|
message: z.ZodString;
|
|
31
37
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
32
39
|
}, {
|
|
33
40
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
34
41
|
}>, "strip", z.ZodTypeAny, {
|
|
35
42
|
message: string;
|
|
36
43
|
error_code: "failed_to_set_on_device";
|
|
37
44
|
is_access_code_error: true;
|
|
45
|
+
created_at?: string | undefined;
|
|
38
46
|
}, {
|
|
39
47
|
message: string;
|
|
40
48
|
error_code: "failed_to_set_on_device";
|
|
41
49
|
is_access_code_error: true;
|
|
50
|
+
created_at?: string | undefined;
|
|
42
51
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
43
52
|
message: z.ZodString;
|
|
44
53
|
is_access_code_error: z.ZodLiteral<true>;
|
|
54
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
45
55
|
}, {
|
|
46
56
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
47
57
|
}>, "strip", z.ZodTypeAny, {
|
|
48
58
|
message: string;
|
|
49
59
|
error_code: "failed_to_remove_from_device";
|
|
50
60
|
is_access_code_error: true;
|
|
61
|
+
created_at?: string | undefined;
|
|
51
62
|
}, {
|
|
52
63
|
message: string;
|
|
53
64
|
error_code: "failed_to_remove_from_device";
|
|
54
65
|
is_access_code_error: true;
|
|
66
|
+
created_at?: string | undefined;
|
|
55
67
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
56
68
|
message: z.ZodString;
|
|
57
69
|
is_access_code_error: z.ZodLiteral<true>;
|
|
70
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
58
71
|
}, {
|
|
59
72
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
60
73
|
}>, "strip", z.ZodTypeAny, {
|
|
61
74
|
message: string;
|
|
62
75
|
error_code: "duplicate_code_on_device";
|
|
63
76
|
is_access_code_error: true;
|
|
77
|
+
created_at?: string | undefined;
|
|
64
78
|
}, {
|
|
65
79
|
message: string;
|
|
66
80
|
error_code: "duplicate_code_on_device";
|
|
67
81
|
is_access_code_error: true;
|
|
82
|
+
created_at?: string | undefined;
|
|
68
83
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
69
84
|
message: z.ZodString;
|
|
70
85
|
is_access_code_error: z.ZodLiteral<true>;
|
|
86
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
71
87
|
}, {
|
|
72
88
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
73
89
|
}>, "strip", z.ZodTypeAny, {
|
|
74
90
|
message: string;
|
|
75
91
|
error_code: "duplicate_code_attempt_prevented";
|
|
76
92
|
is_access_code_error: true;
|
|
93
|
+
created_at?: string | undefined;
|
|
77
94
|
}, {
|
|
78
95
|
message: string;
|
|
79
96
|
error_code: "duplicate_code_attempt_prevented";
|
|
80
97
|
is_access_code_error: true;
|
|
98
|
+
created_at?: string | undefined;
|
|
81
99
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
82
100
|
message: z.ZodString;
|
|
83
101
|
is_access_code_error: z.ZodLiteral<true>;
|
|
102
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
84
103
|
}, {
|
|
85
104
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
86
105
|
}>, "strip", z.ZodTypeAny, {
|
|
87
106
|
message: string;
|
|
88
107
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
89
108
|
is_access_code_error: true;
|
|
109
|
+
created_at?: string | undefined;
|
|
90
110
|
}, {
|
|
91
111
|
message: string;
|
|
92
112
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
93
113
|
is_access_code_error: true;
|
|
114
|
+
created_at?: string | undefined;
|
|
94
115
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
95
116
|
message: z.ZodString;
|
|
96
117
|
is_access_code_error: z.ZodLiteral<true>;
|
|
118
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
97
119
|
}, {
|
|
98
120
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
99
121
|
}>, "strip", z.ZodTypeAny, {
|
|
100
122
|
message: string;
|
|
101
123
|
error_code: "igloohome_bridge_offline";
|
|
102
124
|
is_access_code_error: true;
|
|
125
|
+
created_at?: string | undefined;
|
|
103
126
|
}, {
|
|
104
127
|
message: string;
|
|
105
128
|
error_code: "igloohome_bridge_offline";
|
|
106
129
|
is_access_code_error: true;
|
|
130
|
+
created_at?: string | undefined;
|
|
107
131
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
108
132
|
message: z.ZodString;
|
|
109
133
|
is_access_code_error: z.ZodLiteral<true>;
|
|
134
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
110
135
|
}, {
|
|
111
136
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
112
137
|
}>, "strip", z.ZodTypeAny, {
|
|
113
138
|
message: string;
|
|
114
139
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
115
140
|
is_access_code_error: true;
|
|
141
|
+
created_at?: string | undefined;
|
|
116
142
|
}, {
|
|
117
143
|
message: string;
|
|
118
144
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
119
145
|
is_access_code_error: true;
|
|
146
|
+
created_at?: string | undefined;
|
|
120
147
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
121
148
|
message: z.ZodString;
|
|
122
149
|
is_access_code_error: z.ZodLiteral<true>;
|
|
150
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
123
151
|
}, {
|
|
124
152
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
125
153
|
}>, "strip", z.ZodTypeAny, {
|
|
126
154
|
message: string;
|
|
127
155
|
error_code: "kwikset_unable_to_confirm_code";
|
|
128
156
|
is_access_code_error: true;
|
|
157
|
+
created_at?: string | undefined;
|
|
129
158
|
}, {
|
|
130
159
|
message: string;
|
|
131
160
|
error_code: "kwikset_unable_to_confirm_code";
|
|
132
161
|
is_access_code_error: true;
|
|
162
|
+
created_at?: string | undefined;
|
|
133
163
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
134
164
|
message: z.ZodString;
|
|
135
165
|
is_access_code_error: z.ZodLiteral<true>;
|
|
166
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
136
167
|
}, {
|
|
137
168
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
138
169
|
}>, "strip", z.ZodTypeAny, {
|
|
139
170
|
message: string;
|
|
140
171
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
141
172
|
is_access_code_error: true;
|
|
173
|
+
created_at?: string | undefined;
|
|
142
174
|
}, {
|
|
143
175
|
message: string;
|
|
144
176
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
145
177
|
is_access_code_error: true;
|
|
178
|
+
created_at?: string | undefined;
|
|
146
179
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
147
180
|
message: z.ZodString;
|
|
148
181
|
is_access_code_error: z.ZodLiteral<true>;
|
|
182
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
149
183
|
}, {
|
|
150
184
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
151
185
|
}>, "strip", z.ZodTypeAny, {
|
|
152
186
|
message: string;
|
|
153
187
|
error_code: "code_modified_external_to_seam";
|
|
154
188
|
is_access_code_error: true;
|
|
189
|
+
created_at?: string | undefined;
|
|
155
190
|
}, {
|
|
156
191
|
message: string;
|
|
157
192
|
error_code: "code_modified_external_to_seam";
|
|
158
193
|
is_access_code_error: true;
|
|
194
|
+
created_at?: string | undefined;
|
|
159
195
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
160
196
|
message: z.ZodString;
|
|
161
197
|
is_access_code_error: z.ZodLiteral<true>;
|
|
198
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
162
199
|
}, {
|
|
163
200
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
164
201
|
}>, "strip", z.ZodTypeAny, {
|
|
165
202
|
message: string;
|
|
166
203
|
error_code: "august_lock_invalid_code_length";
|
|
167
204
|
is_access_code_error: true;
|
|
205
|
+
created_at?: string | undefined;
|
|
168
206
|
}, {
|
|
169
207
|
message: string;
|
|
170
208
|
error_code: "august_lock_invalid_code_length";
|
|
171
209
|
is_access_code_error: true;
|
|
210
|
+
created_at?: string | undefined;
|
|
172
211
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
173
212
|
message: z.ZodString;
|
|
174
213
|
is_access_code_error: z.ZodLiteral<true>;
|
|
214
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
175
215
|
}, {
|
|
176
216
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
177
217
|
}>, "strip", z.ZodTypeAny, {
|
|
178
218
|
message: string;
|
|
179
219
|
error_code: "august_device_programming_delay";
|
|
180
220
|
is_access_code_error: true;
|
|
221
|
+
created_at?: string | undefined;
|
|
181
222
|
}, {
|
|
182
223
|
message: string;
|
|
183
224
|
error_code: "august_device_programming_delay";
|
|
184
225
|
is_access_code_error: true;
|
|
226
|
+
created_at?: string | undefined;
|
|
185
227
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
186
228
|
message: z.ZodString;
|
|
187
229
|
is_access_code_error: z.ZodLiteral<true>;
|
|
230
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
188
231
|
}, {
|
|
189
232
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
190
233
|
}>, "strip", z.ZodTypeAny, {
|
|
191
234
|
message: string;
|
|
192
235
|
error_code: "august_device_slots_full";
|
|
193
236
|
is_access_code_error: true;
|
|
237
|
+
created_at?: string | undefined;
|
|
194
238
|
}, {
|
|
195
239
|
message: string;
|
|
196
240
|
error_code: "august_device_slots_full";
|
|
197
241
|
is_access_code_error: true;
|
|
242
|
+
created_at?: string | undefined;
|
|
198
243
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
199
244
|
message: z.ZodString;
|
|
200
245
|
is_access_code_error: z.ZodLiteral<true>;
|
|
246
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
201
247
|
}, {
|
|
202
248
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
203
249
|
}>, "strip", z.ZodTypeAny, {
|
|
204
250
|
message: string;
|
|
205
251
|
error_code: "august_lock_missing_keypad";
|
|
206
252
|
is_access_code_error: true;
|
|
253
|
+
created_at?: string | undefined;
|
|
207
254
|
}, {
|
|
208
255
|
message: string;
|
|
209
256
|
error_code: "august_lock_missing_keypad";
|
|
210
257
|
is_access_code_error: true;
|
|
258
|
+
created_at?: string | undefined;
|
|
211
259
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
212
260
|
message: z.ZodString;
|
|
213
261
|
is_access_code_error: z.ZodLiteral<true>;
|
|
262
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
214
263
|
}, {
|
|
215
264
|
error_code: z.ZodLiteral<"salto_site_user_not_subscribed">;
|
|
216
265
|
}>, "strip", z.ZodTypeAny, {
|
|
217
266
|
message: string;
|
|
218
267
|
error_code: "salto_site_user_not_subscribed";
|
|
219
268
|
is_access_code_error: true;
|
|
269
|
+
created_at?: string | undefined;
|
|
220
270
|
}, {
|
|
221
271
|
message: string;
|
|
222
272
|
error_code: "salto_site_user_not_subscribed";
|
|
223
273
|
is_access_code_error: true;
|
|
274
|
+
created_at?: string | undefined;
|
|
224
275
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
225
276
|
message: z.ZodString;
|
|
226
277
|
is_access_code_error: z.ZodLiteral<true>;
|
|
278
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
227
279
|
}, {
|
|
228
280
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
229
281
|
}>, "strip", z.ZodTypeAny, {
|
|
230
282
|
message: string;
|
|
231
283
|
error_code: "hubitat_device_programming_delay";
|
|
232
284
|
is_access_code_error: true;
|
|
285
|
+
created_at?: string | undefined;
|
|
233
286
|
}, {
|
|
234
287
|
message: string;
|
|
235
288
|
error_code: "hubitat_device_programming_delay";
|
|
236
289
|
is_access_code_error: true;
|
|
290
|
+
created_at?: string | undefined;
|
|
237
291
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
238
292
|
message: z.ZodString;
|
|
239
293
|
is_access_code_error: z.ZodLiteral<true>;
|
|
294
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
240
295
|
}, {
|
|
241
296
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
242
297
|
}>, "strip", z.ZodTypeAny, {
|
|
243
298
|
message: string;
|
|
244
299
|
error_code: "hubitat_no_free_positions_available";
|
|
245
300
|
is_access_code_error: true;
|
|
301
|
+
created_at?: string | undefined;
|
|
246
302
|
}, {
|
|
247
303
|
message: string;
|
|
248
304
|
error_code: "hubitat_no_free_positions_available";
|
|
249
305
|
is_access_code_error: true;
|
|
306
|
+
created_at?: string | undefined;
|
|
250
307
|
}>]>;
|
|
251
308
|
type AccessCodeError = z.infer<typeof access_code_error>;
|
|
252
309
|
declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
253
310
|
message: z.ZodString;
|
|
311
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
254
312
|
}, {
|
|
255
313
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
256
314
|
}>, "strip", z.ZodTypeAny, {
|
|
257
315
|
message: string;
|
|
258
316
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
317
|
+
created_at?: string | undefined;
|
|
259
318
|
}, {
|
|
260
319
|
message: string;
|
|
261
320
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
321
|
+
created_at?: string | undefined;
|
|
262
322
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
263
323
|
message: z.ZodString;
|
|
324
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
264
325
|
}, {
|
|
265
326
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
266
327
|
}>, "strip", z.ZodTypeAny, {
|
|
267
328
|
message: string;
|
|
268
329
|
warning_code: "schlage_detected_duplicate";
|
|
330
|
+
created_at?: string | undefined;
|
|
269
331
|
}, {
|
|
270
332
|
message: string;
|
|
271
333
|
warning_code: "schlage_detected_duplicate";
|
|
334
|
+
created_at?: string | undefined;
|
|
272
335
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
273
336
|
message: z.ZodString;
|
|
337
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
274
338
|
}, {
|
|
275
339
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
276
340
|
}>, "strip", z.ZodTypeAny, {
|
|
277
341
|
message: string;
|
|
278
342
|
warning_code: "schlage_creation_outage";
|
|
343
|
+
created_at?: string | undefined;
|
|
279
344
|
}, {
|
|
280
345
|
message: string;
|
|
281
346
|
warning_code: "schlage_creation_outage";
|
|
347
|
+
created_at?: string | undefined;
|
|
282
348
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
283
349
|
message: z.ZodString;
|
|
350
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
284
351
|
}, {
|
|
285
352
|
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
286
353
|
}>, "strip", z.ZodTypeAny, {
|
|
287
354
|
message: string;
|
|
288
355
|
warning_code: "salto_office_mode";
|
|
356
|
+
created_at?: string | undefined;
|
|
289
357
|
}, {
|
|
290
358
|
message: string;
|
|
291
359
|
warning_code: "salto_office_mode";
|
|
360
|
+
created_at?: string | undefined;
|
|
292
361
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
293
362
|
message: z.ZodString;
|
|
363
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
294
364
|
}, {
|
|
295
365
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
296
366
|
}>, "strip", z.ZodTypeAny, {
|
|
297
367
|
message: string;
|
|
298
368
|
warning_code: "code_modified_external_to_seam";
|
|
369
|
+
created_at?: string | undefined;
|
|
299
370
|
}, {
|
|
300
371
|
message: string;
|
|
301
372
|
warning_code: "code_modified_external_to_seam";
|
|
373
|
+
created_at?: string | undefined;
|
|
302
374
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
303
375
|
message: z.ZodString;
|
|
376
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
304
377
|
}, {
|
|
305
378
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
306
379
|
}>, "strip", z.ZodTypeAny, {
|
|
307
380
|
message: string;
|
|
308
381
|
warning_code: "delay_in_setting_on_device";
|
|
382
|
+
created_at?: string | undefined;
|
|
309
383
|
}, {
|
|
310
384
|
message: string;
|
|
311
385
|
warning_code: "delay_in_setting_on_device";
|
|
386
|
+
created_at?: string | undefined;
|
|
312
387
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
313
388
|
message: z.ZodString;
|
|
389
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
314
390
|
}, {
|
|
315
391
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
316
392
|
}>, "strip", z.ZodTypeAny, {
|
|
317
393
|
message: string;
|
|
318
394
|
warning_code: "delay_in_removing_from_device";
|
|
395
|
+
created_at?: string | undefined;
|
|
319
396
|
}, {
|
|
320
397
|
message: string;
|
|
321
398
|
warning_code: "delay_in_removing_from_device";
|
|
399
|
+
created_at?: string | undefined;
|
|
322
400
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
323
401
|
message: z.ZodString;
|
|
402
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
324
403
|
}, {
|
|
325
404
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
326
405
|
}>, "strip", z.ZodTypeAny, {
|
|
327
406
|
message: string;
|
|
328
407
|
warning_code: "third_party_integration_detected";
|
|
408
|
+
created_at?: string | undefined;
|
|
329
409
|
}, {
|
|
330
410
|
message: string;
|
|
331
411
|
warning_code: "third_party_integration_detected";
|
|
412
|
+
created_at?: string | undefined;
|
|
332
413
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
333
414
|
message: z.ZodString;
|
|
415
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
334
416
|
}, {
|
|
335
417
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
336
418
|
}>, "strip", z.ZodTypeAny, {
|
|
337
419
|
message: string;
|
|
338
420
|
warning_code: "august_device_programming_delay";
|
|
421
|
+
created_at?: string | undefined;
|
|
339
422
|
}, {
|
|
340
423
|
message: string;
|
|
341
424
|
warning_code: "august_device_programming_delay";
|
|
425
|
+
created_at?: string | undefined;
|
|
342
426
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
343
427
|
message: z.ZodString;
|
|
428
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
344
429
|
}, {
|
|
345
430
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
346
431
|
}>, "strip", z.ZodTypeAny, {
|
|
347
432
|
message: string;
|
|
348
433
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
434
|
+
created_at?: string | undefined;
|
|
349
435
|
}, {
|
|
350
436
|
message: string;
|
|
351
437
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
438
|
+
created_at?: string | undefined;
|
|
352
439
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
353
440
|
message: z.ZodString;
|
|
441
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
354
442
|
}, {
|
|
355
443
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
356
444
|
}>, "strip", z.ZodTypeAny, {
|
|
357
445
|
message: string;
|
|
358
446
|
warning_code: "management_transferred";
|
|
447
|
+
created_at?: string | undefined;
|
|
359
448
|
}, {
|
|
360
449
|
message: string;
|
|
361
450
|
warning_code: "management_transferred";
|
|
451
|
+
created_at?: string | undefined;
|
|
362
452
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
363
453
|
message: z.ZodString;
|
|
454
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
364
455
|
}, {
|
|
365
456
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
366
457
|
}>, "strip", z.ZodTypeAny, {
|
|
367
458
|
message: string;
|
|
368
459
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
460
|
+
created_at?: string | undefined;
|
|
369
461
|
}, {
|
|
370
462
|
message: string;
|
|
371
463
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
464
|
+
created_at?: string | undefined;
|
|
372
465
|
}>]>;
|
|
373
466
|
type AccessCodeWarning = z.infer<typeof access_code_warning>;
|
|
374
467
|
declare const access_code: z.ZodObject<{
|
|
@@ -384,250 +477,307 @@ declare const access_code: z.ZodObject<{
|
|
|
384
477
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
385
478
|
message: z.ZodString;
|
|
386
479
|
is_access_code_error: z.ZodLiteral<true>;
|
|
480
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
387
481
|
}, {
|
|
388
482
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
389
483
|
}>, "strip", z.ZodTypeAny, {
|
|
390
484
|
message: string;
|
|
391
485
|
error_code: "smartthings_failed_to_set_access_code";
|
|
392
486
|
is_access_code_error: true;
|
|
487
|
+
created_at?: string | undefined;
|
|
393
488
|
}, {
|
|
394
489
|
message: string;
|
|
395
490
|
error_code: "smartthings_failed_to_set_access_code";
|
|
396
491
|
is_access_code_error: true;
|
|
492
|
+
created_at?: string | undefined;
|
|
397
493
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
398
494
|
message: z.ZodString;
|
|
399
495
|
is_access_code_error: z.ZodLiteral<true>;
|
|
496
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
400
497
|
}, {
|
|
401
498
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
402
499
|
}>, "strip", z.ZodTypeAny, {
|
|
403
500
|
message: string;
|
|
404
501
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
405
502
|
is_access_code_error: true;
|
|
503
|
+
created_at?: string | undefined;
|
|
406
504
|
}, {
|
|
407
505
|
message: string;
|
|
408
506
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
409
507
|
is_access_code_error: true;
|
|
508
|
+
created_at?: string | undefined;
|
|
410
509
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
411
510
|
message: z.ZodString;
|
|
412
511
|
is_access_code_error: z.ZodLiteral<true>;
|
|
512
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
413
513
|
}, {
|
|
414
514
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
415
515
|
}>, "strip", z.ZodTypeAny, {
|
|
416
516
|
message: string;
|
|
417
517
|
error_code: "failed_to_set_on_device";
|
|
418
518
|
is_access_code_error: true;
|
|
519
|
+
created_at?: string | undefined;
|
|
419
520
|
}, {
|
|
420
521
|
message: string;
|
|
421
522
|
error_code: "failed_to_set_on_device";
|
|
422
523
|
is_access_code_error: true;
|
|
524
|
+
created_at?: string | undefined;
|
|
423
525
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
424
526
|
message: z.ZodString;
|
|
425
527
|
is_access_code_error: z.ZodLiteral<true>;
|
|
528
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
426
529
|
}, {
|
|
427
530
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
428
531
|
}>, "strip", z.ZodTypeAny, {
|
|
429
532
|
message: string;
|
|
430
533
|
error_code: "failed_to_remove_from_device";
|
|
431
534
|
is_access_code_error: true;
|
|
535
|
+
created_at?: string | undefined;
|
|
432
536
|
}, {
|
|
433
537
|
message: string;
|
|
434
538
|
error_code: "failed_to_remove_from_device";
|
|
435
539
|
is_access_code_error: true;
|
|
540
|
+
created_at?: string | undefined;
|
|
436
541
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
437
542
|
message: z.ZodString;
|
|
438
543
|
is_access_code_error: z.ZodLiteral<true>;
|
|
544
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
439
545
|
}, {
|
|
440
546
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
441
547
|
}>, "strip", z.ZodTypeAny, {
|
|
442
548
|
message: string;
|
|
443
549
|
error_code: "duplicate_code_on_device";
|
|
444
550
|
is_access_code_error: true;
|
|
551
|
+
created_at?: string | undefined;
|
|
445
552
|
}, {
|
|
446
553
|
message: string;
|
|
447
554
|
error_code: "duplicate_code_on_device";
|
|
448
555
|
is_access_code_error: true;
|
|
556
|
+
created_at?: string | undefined;
|
|
449
557
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
450
558
|
message: z.ZodString;
|
|
451
559
|
is_access_code_error: z.ZodLiteral<true>;
|
|
560
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
452
561
|
}, {
|
|
453
562
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
454
563
|
}>, "strip", z.ZodTypeAny, {
|
|
455
564
|
message: string;
|
|
456
565
|
error_code: "duplicate_code_attempt_prevented";
|
|
457
566
|
is_access_code_error: true;
|
|
567
|
+
created_at?: string | undefined;
|
|
458
568
|
}, {
|
|
459
569
|
message: string;
|
|
460
570
|
error_code: "duplicate_code_attempt_prevented";
|
|
461
571
|
is_access_code_error: true;
|
|
572
|
+
created_at?: string | undefined;
|
|
462
573
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
463
574
|
message: z.ZodString;
|
|
464
575
|
is_access_code_error: z.ZodLiteral<true>;
|
|
576
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
465
577
|
}, {
|
|
466
578
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
467
579
|
}>, "strip", z.ZodTypeAny, {
|
|
468
580
|
message: string;
|
|
469
581
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
470
582
|
is_access_code_error: true;
|
|
583
|
+
created_at?: string | undefined;
|
|
471
584
|
}, {
|
|
472
585
|
message: string;
|
|
473
586
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
474
587
|
is_access_code_error: true;
|
|
588
|
+
created_at?: string | undefined;
|
|
475
589
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
476
590
|
message: z.ZodString;
|
|
477
591
|
is_access_code_error: z.ZodLiteral<true>;
|
|
592
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
478
593
|
}, {
|
|
479
594
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
480
595
|
}>, "strip", z.ZodTypeAny, {
|
|
481
596
|
message: string;
|
|
482
597
|
error_code: "igloohome_bridge_offline";
|
|
483
598
|
is_access_code_error: true;
|
|
599
|
+
created_at?: string | undefined;
|
|
484
600
|
}, {
|
|
485
601
|
message: string;
|
|
486
602
|
error_code: "igloohome_bridge_offline";
|
|
487
603
|
is_access_code_error: true;
|
|
604
|
+
created_at?: string | undefined;
|
|
488
605
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
489
606
|
message: z.ZodString;
|
|
490
607
|
is_access_code_error: z.ZodLiteral<true>;
|
|
608
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
491
609
|
}, {
|
|
492
610
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
493
611
|
}>, "strip", z.ZodTypeAny, {
|
|
494
612
|
message: string;
|
|
495
613
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
496
614
|
is_access_code_error: true;
|
|
615
|
+
created_at?: string | undefined;
|
|
497
616
|
}, {
|
|
498
617
|
message: string;
|
|
499
618
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
500
619
|
is_access_code_error: true;
|
|
620
|
+
created_at?: string | undefined;
|
|
501
621
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
502
622
|
message: z.ZodString;
|
|
503
623
|
is_access_code_error: z.ZodLiteral<true>;
|
|
624
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
504
625
|
}, {
|
|
505
626
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
506
627
|
}>, "strip", z.ZodTypeAny, {
|
|
507
628
|
message: string;
|
|
508
629
|
error_code: "kwikset_unable_to_confirm_code";
|
|
509
630
|
is_access_code_error: true;
|
|
631
|
+
created_at?: string | undefined;
|
|
510
632
|
}, {
|
|
511
633
|
message: string;
|
|
512
634
|
error_code: "kwikset_unable_to_confirm_code";
|
|
513
635
|
is_access_code_error: true;
|
|
636
|
+
created_at?: string | undefined;
|
|
514
637
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
515
638
|
message: z.ZodString;
|
|
516
639
|
is_access_code_error: z.ZodLiteral<true>;
|
|
640
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
517
641
|
}, {
|
|
518
642
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
519
643
|
}>, "strip", z.ZodTypeAny, {
|
|
520
644
|
message: string;
|
|
521
645
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
522
646
|
is_access_code_error: true;
|
|
647
|
+
created_at?: string | undefined;
|
|
523
648
|
}, {
|
|
524
649
|
message: string;
|
|
525
650
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
526
651
|
is_access_code_error: true;
|
|
652
|
+
created_at?: string | undefined;
|
|
527
653
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
528
654
|
message: z.ZodString;
|
|
529
655
|
is_access_code_error: z.ZodLiteral<true>;
|
|
656
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
530
657
|
}, {
|
|
531
658
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
532
659
|
}>, "strip", z.ZodTypeAny, {
|
|
533
660
|
message: string;
|
|
534
661
|
error_code: "code_modified_external_to_seam";
|
|
535
662
|
is_access_code_error: true;
|
|
663
|
+
created_at?: string | undefined;
|
|
536
664
|
}, {
|
|
537
665
|
message: string;
|
|
538
666
|
error_code: "code_modified_external_to_seam";
|
|
539
667
|
is_access_code_error: true;
|
|
668
|
+
created_at?: string | undefined;
|
|
540
669
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
541
670
|
message: z.ZodString;
|
|
542
671
|
is_access_code_error: z.ZodLiteral<true>;
|
|
672
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
543
673
|
}, {
|
|
544
674
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
545
675
|
}>, "strip", z.ZodTypeAny, {
|
|
546
676
|
message: string;
|
|
547
677
|
error_code: "august_lock_invalid_code_length";
|
|
548
678
|
is_access_code_error: true;
|
|
679
|
+
created_at?: string | undefined;
|
|
549
680
|
}, {
|
|
550
681
|
message: string;
|
|
551
682
|
error_code: "august_lock_invalid_code_length";
|
|
552
683
|
is_access_code_error: true;
|
|
684
|
+
created_at?: string | undefined;
|
|
553
685
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
554
686
|
message: z.ZodString;
|
|
555
687
|
is_access_code_error: z.ZodLiteral<true>;
|
|
688
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
556
689
|
}, {
|
|
557
690
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
558
691
|
}>, "strip", z.ZodTypeAny, {
|
|
559
692
|
message: string;
|
|
560
693
|
error_code: "august_device_programming_delay";
|
|
561
694
|
is_access_code_error: true;
|
|
695
|
+
created_at?: string | undefined;
|
|
562
696
|
}, {
|
|
563
697
|
message: string;
|
|
564
698
|
error_code: "august_device_programming_delay";
|
|
565
699
|
is_access_code_error: true;
|
|
700
|
+
created_at?: string | undefined;
|
|
566
701
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
567
702
|
message: z.ZodString;
|
|
568
703
|
is_access_code_error: z.ZodLiteral<true>;
|
|
704
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
569
705
|
}, {
|
|
570
706
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
571
707
|
}>, "strip", z.ZodTypeAny, {
|
|
572
708
|
message: string;
|
|
573
709
|
error_code: "august_device_slots_full";
|
|
574
710
|
is_access_code_error: true;
|
|
711
|
+
created_at?: string | undefined;
|
|
575
712
|
}, {
|
|
576
713
|
message: string;
|
|
577
714
|
error_code: "august_device_slots_full";
|
|
578
715
|
is_access_code_error: true;
|
|
716
|
+
created_at?: string | undefined;
|
|
579
717
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
580
718
|
message: z.ZodString;
|
|
581
719
|
is_access_code_error: z.ZodLiteral<true>;
|
|
720
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
582
721
|
}, {
|
|
583
722
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
584
723
|
}>, "strip", z.ZodTypeAny, {
|
|
585
724
|
message: string;
|
|
586
725
|
error_code: "august_lock_missing_keypad";
|
|
587
726
|
is_access_code_error: true;
|
|
727
|
+
created_at?: string | undefined;
|
|
588
728
|
}, {
|
|
589
729
|
message: string;
|
|
590
730
|
error_code: "august_lock_missing_keypad";
|
|
591
731
|
is_access_code_error: true;
|
|
732
|
+
created_at?: string | undefined;
|
|
592
733
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
593
734
|
message: z.ZodString;
|
|
594
735
|
is_access_code_error: z.ZodLiteral<true>;
|
|
736
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
595
737
|
}, {
|
|
596
738
|
error_code: z.ZodLiteral<"salto_site_user_not_subscribed">;
|
|
597
739
|
}>, "strip", z.ZodTypeAny, {
|
|
598
740
|
message: string;
|
|
599
741
|
error_code: "salto_site_user_not_subscribed";
|
|
600
742
|
is_access_code_error: true;
|
|
743
|
+
created_at?: string | undefined;
|
|
601
744
|
}, {
|
|
602
745
|
message: string;
|
|
603
746
|
error_code: "salto_site_user_not_subscribed";
|
|
604
747
|
is_access_code_error: true;
|
|
748
|
+
created_at?: string | undefined;
|
|
605
749
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
606
750
|
message: z.ZodString;
|
|
607
751
|
is_access_code_error: z.ZodLiteral<true>;
|
|
752
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
608
753
|
}, {
|
|
609
754
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
610
755
|
}>, "strip", z.ZodTypeAny, {
|
|
611
756
|
message: string;
|
|
612
757
|
error_code: "hubitat_device_programming_delay";
|
|
613
758
|
is_access_code_error: true;
|
|
759
|
+
created_at?: string | undefined;
|
|
614
760
|
}, {
|
|
615
761
|
message: string;
|
|
616
762
|
error_code: "hubitat_device_programming_delay";
|
|
617
763
|
is_access_code_error: true;
|
|
764
|
+
created_at?: string | undefined;
|
|
618
765
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
619
766
|
message: z.ZodString;
|
|
620
767
|
is_access_code_error: z.ZodLiteral<true>;
|
|
768
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
621
769
|
}, {
|
|
622
770
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
623
771
|
}>, "strip", z.ZodTypeAny, {
|
|
624
772
|
message: string;
|
|
625
773
|
error_code: "hubitat_no_free_positions_available";
|
|
626
774
|
is_access_code_error: true;
|
|
775
|
+
created_at?: string | undefined;
|
|
627
776
|
}, {
|
|
628
777
|
message: string;
|
|
629
778
|
error_code: "hubitat_no_free_positions_available";
|
|
630
779
|
is_access_code_error: true;
|
|
780
|
+
created_at?: string | undefined;
|
|
631
781
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
632
782
|
created_at: z.ZodString;
|
|
633
783
|
message: z.ZodString;
|
|
@@ -923,124 +1073,160 @@ declare const access_code: z.ZodObject<{
|
|
|
923
1073
|
}>)[]]>, "many">;
|
|
924
1074
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
925
1075
|
message: z.ZodString;
|
|
1076
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
926
1077
|
}, {
|
|
927
1078
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
928
1079
|
}>, "strip", z.ZodTypeAny, {
|
|
929
1080
|
message: string;
|
|
930
1081
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1082
|
+
created_at?: string | undefined;
|
|
931
1083
|
}, {
|
|
932
1084
|
message: string;
|
|
933
1085
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1086
|
+
created_at?: string | undefined;
|
|
934
1087
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
935
1088
|
message: z.ZodString;
|
|
1089
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
936
1090
|
}, {
|
|
937
1091
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
938
1092
|
}>, "strip", z.ZodTypeAny, {
|
|
939
1093
|
message: string;
|
|
940
1094
|
warning_code: "schlage_detected_duplicate";
|
|
1095
|
+
created_at?: string | undefined;
|
|
941
1096
|
}, {
|
|
942
1097
|
message: string;
|
|
943
1098
|
warning_code: "schlage_detected_duplicate";
|
|
1099
|
+
created_at?: string | undefined;
|
|
944
1100
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
945
1101
|
message: z.ZodString;
|
|
1102
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
946
1103
|
}, {
|
|
947
1104
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
948
1105
|
}>, "strip", z.ZodTypeAny, {
|
|
949
1106
|
message: string;
|
|
950
1107
|
warning_code: "schlage_creation_outage";
|
|
1108
|
+
created_at?: string | undefined;
|
|
951
1109
|
}, {
|
|
952
1110
|
message: string;
|
|
953
1111
|
warning_code: "schlage_creation_outage";
|
|
1112
|
+
created_at?: string | undefined;
|
|
954
1113
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
955
1114
|
message: z.ZodString;
|
|
1115
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
956
1116
|
}, {
|
|
957
1117
|
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
958
1118
|
}>, "strip", z.ZodTypeAny, {
|
|
959
1119
|
message: string;
|
|
960
1120
|
warning_code: "salto_office_mode";
|
|
1121
|
+
created_at?: string | undefined;
|
|
961
1122
|
}, {
|
|
962
1123
|
message: string;
|
|
963
1124
|
warning_code: "salto_office_mode";
|
|
1125
|
+
created_at?: string | undefined;
|
|
964
1126
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
965
1127
|
message: z.ZodString;
|
|
1128
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
966
1129
|
}, {
|
|
967
1130
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
968
1131
|
}>, "strip", z.ZodTypeAny, {
|
|
969
1132
|
message: string;
|
|
970
1133
|
warning_code: "code_modified_external_to_seam";
|
|
1134
|
+
created_at?: string | undefined;
|
|
971
1135
|
}, {
|
|
972
1136
|
message: string;
|
|
973
1137
|
warning_code: "code_modified_external_to_seam";
|
|
1138
|
+
created_at?: string | undefined;
|
|
974
1139
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
975
1140
|
message: z.ZodString;
|
|
1141
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
976
1142
|
}, {
|
|
977
1143
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
978
1144
|
}>, "strip", z.ZodTypeAny, {
|
|
979
1145
|
message: string;
|
|
980
1146
|
warning_code: "delay_in_setting_on_device";
|
|
1147
|
+
created_at?: string | undefined;
|
|
981
1148
|
}, {
|
|
982
1149
|
message: string;
|
|
983
1150
|
warning_code: "delay_in_setting_on_device";
|
|
1151
|
+
created_at?: string | undefined;
|
|
984
1152
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
985
1153
|
message: z.ZodString;
|
|
1154
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
986
1155
|
}, {
|
|
987
1156
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
988
1157
|
}>, "strip", z.ZodTypeAny, {
|
|
989
1158
|
message: string;
|
|
990
1159
|
warning_code: "delay_in_removing_from_device";
|
|
1160
|
+
created_at?: string | undefined;
|
|
991
1161
|
}, {
|
|
992
1162
|
message: string;
|
|
993
1163
|
warning_code: "delay_in_removing_from_device";
|
|
1164
|
+
created_at?: string | undefined;
|
|
994
1165
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
995
1166
|
message: z.ZodString;
|
|
1167
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
996
1168
|
}, {
|
|
997
1169
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
998
1170
|
}>, "strip", z.ZodTypeAny, {
|
|
999
1171
|
message: string;
|
|
1000
1172
|
warning_code: "third_party_integration_detected";
|
|
1173
|
+
created_at?: string | undefined;
|
|
1001
1174
|
}, {
|
|
1002
1175
|
message: string;
|
|
1003
1176
|
warning_code: "third_party_integration_detected";
|
|
1177
|
+
created_at?: string | undefined;
|
|
1004
1178
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1005
1179
|
message: z.ZodString;
|
|
1180
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1006
1181
|
}, {
|
|
1007
1182
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
1008
1183
|
}>, "strip", z.ZodTypeAny, {
|
|
1009
1184
|
message: string;
|
|
1010
1185
|
warning_code: "august_device_programming_delay";
|
|
1186
|
+
created_at?: string | undefined;
|
|
1011
1187
|
}, {
|
|
1012
1188
|
message: string;
|
|
1013
1189
|
warning_code: "august_device_programming_delay";
|
|
1190
|
+
created_at?: string | undefined;
|
|
1014
1191
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1015
1192
|
message: z.ZodString;
|
|
1193
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1016
1194
|
}, {
|
|
1017
1195
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
1018
1196
|
}>, "strip", z.ZodTypeAny, {
|
|
1019
1197
|
message: string;
|
|
1020
1198
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1199
|
+
created_at?: string | undefined;
|
|
1021
1200
|
}, {
|
|
1022
1201
|
message: string;
|
|
1023
1202
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1203
|
+
created_at?: string | undefined;
|
|
1024
1204
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1025
1205
|
message: z.ZodString;
|
|
1206
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1026
1207
|
}, {
|
|
1027
1208
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
1028
1209
|
}>, "strip", z.ZodTypeAny, {
|
|
1029
1210
|
message: string;
|
|
1030
1211
|
warning_code: "management_transferred";
|
|
1212
|
+
created_at?: string | undefined;
|
|
1031
1213
|
}, {
|
|
1032
1214
|
message: string;
|
|
1033
1215
|
warning_code: "management_transferred";
|
|
1216
|
+
created_at?: string | undefined;
|
|
1034
1217
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1035
1218
|
message: z.ZodString;
|
|
1219
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1036
1220
|
}, {
|
|
1037
1221
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
1038
1222
|
}>, "strip", z.ZodTypeAny, {
|
|
1039
1223
|
message: string;
|
|
1040
1224
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1225
|
+
created_at?: string | undefined;
|
|
1041
1226
|
}, {
|
|
1042
1227
|
message: string;
|
|
1043
1228
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1229
|
+
created_at?: string | undefined;
|
|
1044
1230
|
}>]>, "many">;
|
|
1045
1231
|
is_managed: z.ZodLiteral<true>;
|
|
1046
1232
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1147,115 +1333,146 @@ declare const access_code: z.ZodObject<{
|
|
|
1147
1333
|
message: string;
|
|
1148
1334
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1149
1335
|
is_access_code_error: true;
|
|
1336
|
+
created_at?: string | undefined;
|
|
1150
1337
|
} | {
|
|
1151
1338
|
message: string;
|
|
1152
1339
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1153
1340
|
is_access_code_error: true;
|
|
1341
|
+
created_at?: string | undefined;
|
|
1154
1342
|
} | {
|
|
1155
1343
|
message: string;
|
|
1156
1344
|
error_code: "code_modified_external_to_seam";
|
|
1157
1345
|
is_access_code_error: true;
|
|
1346
|
+
created_at?: string | undefined;
|
|
1158
1347
|
} | {
|
|
1159
1348
|
message: string;
|
|
1160
1349
|
error_code: "failed_to_set_on_device";
|
|
1161
1350
|
is_access_code_error: true;
|
|
1351
|
+
created_at?: string | undefined;
|
|
1162
1352
|
} | {
|
|
1163
1353
|
message: string;
|
|
1164
1354
|
error_code: "failed_to_remove_from_device";
|
|
1165
1355
|
is_access_code_error: true;
|
|
1356
|
+
created_at?: string | undefined;
|
|
1166
1357
|
} | {
|
|
1167
1358
|
message: string;
|
|
1168
1359
|
error_code: "duplicate_code_on_device";
|
|
1169
1360
|
is_access_code_error: true;
|
|
1361
|
+
created_at?: string | undefined;
|
|
1170
1362
|
} | {
|
|
1171
1363
|
message: string;
|
|
1172
1364
|
error_code: "duplicate_code_attempt_prevented";
|
|
1173
1365
|
is_access_code_error: true;
|
|
1366
|
+
created_at?: string | undefined;
|
|
1174
1367
|
} | {
|
|
1175
1368
|
message: string;
|
|
1176
1369
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1177
1370
|
is_access_code_error: true;
|
|
1371
|
+
created_at?: string | undefined;
|
|
1178
1372
|
} | {
|
|
1179
1373
|
message: string;
|
|
1180
1374
|
error_code: "igloohome_bridge_offline";
|
|
1181
1375
|
is_access_code_error: true;
|
|
1376
|
+
created_at?: string | undefined;
|
|
1182
1377
|
} | {
|
|
1183
1378
|
message: string;
|
|
1184
1379
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1185
1380
|
is_access_code_error: true;
|
|
1381
|
+
created_at?: string | undefined;
|
|
1186
1382
|
} | {
|
|
1187
1383
|
message: string;
|
|
1188
1384
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1189
1385
|
is_access_code_error: true;
|
|
1386
|
+
created_at?: string | undefined;
|
|
1190
1387
|
} | {
|
|
1191
1388
|
message: string;
|
|
1192
1389
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1193
1390
|
is_access_code_error: true;
|
|
1391
|
+
created_at?: string | undefined;
|
|
1194
1392
|
} | {
|
|
1195
1393
|
message: string;
|
|
1196
1394
|
error_code: "august_lock_invalid_code_length";
|
|
1197
1395
|
is_access_code_error: true;
|
|
1396
|
+
created_at?: string | undefined;
|
|
1198
1397
|
} | {
|
|
1199
1398
|
message: string;
|
|
1200
1399
|
error_code: "august_device_programming_delay";
|
|
1201
1400
|
is_access_code_error: true;
|
|
1401
|
+
created_at?: string | undefined;
|
|
1202
1402
|
} | {
|
|
1203
1403
|
message: string;
|
|
1204
1404
|
error_code: "august_device_slots_full";
|
|
1205
1405
|
is_access_code_error: true;
|
|
1406
|
+
created_at?: string | undefined;
|
|
1206
1407
|
} | {
|
|
1207
1408
|
message: string;
|
|
1208
1409
|
error_code: "august_lock_missing_keypad";
|
|
1209
1410
|
is_access_code_error: true;
|
|
1411
|
+
created_at?: string | undefined;
|
|
1210
1412
|
} | {
|
|
1211
1413
|
message: string;
|
|
1212
1414
|
error_code: "salto_site_user_not_subscribed";
|
|
1213
1415
|
is_access_code_error: true;
|
|
1416
|
+
created_at?: string | undefined;
|
|
1214
1417
|
} | {
|
|
1215
1418
|
message: string;
|
|
1216
1419
|
error_code: "hubitat_device_programming_delay";
|
|
1217
1420
|
is_access_code_error: true;
|
|
1421
|
+
created_at?: string | undefined;
|
|
1218
1422
|
} | {
|
|
1219
1423
|
message: string;
|
|
1220
1424
|
error_code: "hubitat_no_free_positions_available";
|
|
1221
1425
|
is_access_code_error: true;
|
|
1426
|
+
created_at?: string | undefined;
|
|
1222
1427
|
})[];
|
|
1223
1428
|
warnings: ({
|
|
1224
1429
|
message: string;
|
|
1225
1430
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1431
|
+
created_at?: string | undefined;
|
|
1226
1432
|
} | {
|
|
1227
1433
|
message: string;
|
|
1228
1434
|
warning_code: "august_device_programming_delay";
|
|
1435
|
+
created_at?: string | undefined;
|
|
1229
1436
|
} | {
|
|
1230
1437
|
message: string;
|
|
1231
1438
|
warning_code: "code_modified_external_to_seam";
|
|
1439
|
+
created_at?: string | undefined;
|
|
1232
1440
|
} | {
|
|
1233
1441
|
message: string;
|
|
1234
1442
|
warning_code: "schlage_detected_duplicate";
|
|
1443
|
+
created_at?: string | undefined;
|
|
1235
1444
|
} | {
|
|
1236
1445
|
message: string;
|
|
1237
1446
|
warning_code: "schlage_creation_outage";
|
|
1447
|
+
created_at?: string | undefined;
|
|
1238
1448
|
} | {
|
|
1239
1449
|
message: string;
|
|
1240
1450
|
warning_code: "salto_office_mode";
|
|
1451
|
+
created_at?: string | undefined;
|
|
1241
1452
|
} | {
|
|
1242
1453
|
message: string;
|
|
1243
1454
|
warning_code: "delay_in_setting_on_device";
|
|
1455
|
+
created_at?: string | undefined;
|
|
1244
1456
|
} | {
|
|
1245
1457
|
message: string;
|
|
1246
1458
|
warning_code: "delay_in_removing_from_device";
|
|
1459
|
+
created_at?: string | undefined;
|
|
1247
1460
|
} | {
|
|
1248
1461
|
message: string;
|
|
1249
1462
|
warning_code: "third_party_integration_detected";
|
|
1463
|
+
created_at?: string | undefined;
|
|
1250
1464
|
} | {
|
|
1251
1465
|
message: string;
|
|
1252
1466
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1467
|
+
created_at?: string | undefined;
|
|
1253
1468
|
} | {
|
|
1254
1469
|
message: string;
|
|
1255
1470
|
warning_code: "management_transferred";
|
|
1471
|
+
created_at?: string | undefined;
|
|
1256
1472
|
} | {
|
|
1257
1473
|
message: string;
|
|
1258
1474
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1475
|
+
created_at?: string | undefined;
|
|
1259
1476
|
})[];
|
|
1260
1477
|
is_managed: true;
|
|
1261
1478
|
common_code_key: string | null;
|
|
@@ -1365,115 +1582,146 @@ declare const access_code: z.ZodObject<{
|
|
|
1365
1582
|
message: string;
|
|
1366
1583
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1367
1584
|
is_access_code_error: true;
|
|
1585
|
+
created_at?: string | undefined;
|
|
1368
1586
|
} | {
|
|
1369
1587
|
message: string;
|
|
1370
1588
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1371
1589
|
is_access_code_error: true;
|
|
1590
|
+
created_at?: string | undefined;
|
|
1372
1591
|
} | {
|
|
1373
1592
|
message: string;
|
|
1374
1593
|
error_code: "code_modified_external_to_seam";
|
|
1375
1594
|
is_access_code_error: true;
|
|
1595
|
+
created_at?: string | undefined;
|
|
1376
1596
|
} | {
|
|
1377
1597
|
message: string;
|
|
1378
1598
|
error_code: "failed_to_set_on_device";
|
|
1379
1599
|
is_access_code_error: true;
|
|
1600
|
+
created_at?: string | undefined;
|
|
1380
1601
|
} | {
|
|
1381
1602
|
message: string;
|
|
1382
1603
|
error_code: "failed_to_remove_from_device";
|
|
1383
1604
|
is_access_code_error: true;
|
|
1605
|
+
created_at?: string | undefined;
|
|
1384
1606
|
} | {
|
|
1385
1607
|
message: string;
|
|
1386
1608
|
error_code: "duplicate_code_on_device";
|
|
1387
1609
|
is_access_code_error: true;
|
|
1610
|
+
created_at?: string | undefined;
|
|
1388
1611
|
} | {
|
|
1389
1612
|
message: string;
|
|
1390
1613
|
error_code: "duplicate_code_attempt_prevented";
|
|
1391
1614
|
is_access_code_error: true;
|
|
1615
|
+
created_at?: string | undefined;
|
|
1392
1616
|
} | {
|
|
1393
1617
|
message: string;
|
|
1394
1618
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1395
1619
|
is_access_code_error: true;
|
|
1620
|
+
created_at?: string | undefined;
|
|
1396
1621
|
} | {
|
|
1397
1622
|
message: string;
|
|
1398
1623
|
error_code: "igloohome_bridge_offline";
|
|
1399
1624
|
is_access_code_error: true;
|
|
1625
|
+
created_at?: string | undefined;
|
|
1400
1626
|
} | {
|
|
1401
1627
|
message: string;
|
|
1402
1628
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1403
1629
|
is_access_code_error: true;
|
|
1630
|
+
created_at?: string | undefined;
|
|
1404
1631
|
} | {
|
|
1405
1632
|
message: string;
|
|
1406
1633
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1407
1634
|
is_access_code_error: true;
|
|
1635
|
+
created_at?: string | undefined;
|
|
1408
1636
|
} | {
|
|
1409
1637
|
message: string;
|
|
1410
1638
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1411
1639
|
is_access_code_error: true;
|
|
1640
|
+
created_at?: string | undefined;
|
|
1412
1641
|
} | {
|
|
1413
1642
|
message: string;
|
|
1414
1643
|
error_code: "august_lock_invalid_code_length";
|
|
1415
1644
|
is_access_code_error: true;
|
|
1645
|
+
created_at?: string | undefined;
|
|
1416
1646
|
} | {
|
|
1417
1647
|
message: string;
|
|
1418
1648
|
error_code: "august_device_programming_delay";
|
|
1419
1649
|
is_access_code_error: true;
|
|
1650
|
+
created_at?: string | undefined;
|
|
1420
1651
|
} | {
|
|
1421
1652
|
message: string;
|
|
1422
1653
|
error_code: "august_device_slots_full";
|
|
1423
1654
|
is_access_code_error: true;
|
|
1655
|
+
created_at?: string | undefined;
|
|
1424
1656
|
} | {
|
|
1425
1657
|
message: string;
|
|
1426
1658
|
error_code: "august_lock_missing_keypad";
|
|
1427
1659
|
is_access_code_error: true;
|
|
1660
|
+
created_at?: string | undefined;
|
|
1428
1661
|
} | {
|
|
1429
1662
|
message: string;
|
|
1430
1663
|
error_code: "salto_site_user_not_subscribed";
|
|
1431
1664
|
is_access_code_error: true;
|
|
1665
|
+
created_at?: string | undefined;
|
|
1432
1666
|
} | {
|
|
1433
1667
|
message: string;
|
|
1434
1668
|
error_code: "hubitat_device_programming_delay";
|
|
1435
1669
|
is_access_code_error: true;
|
|
1670
|
+
created_at?: string | undefined;
|
|
1436
1671
|
} | {
|
|
1437
1672
|
message: string;
|
|
1438
1673
|
error_code: "hubitat_no_free_positions_available";
|
|
1439
1674
|
is_access_code_error: true;
|
|
1675
|
+
created_at?: string | undefined;
|
|
1440
1676
|
})[];
|
|
1441
1677
|
warnings: ({
|
|
1442
1678
|
message: string;
|
|
1443
1679
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1680
|
+
created_at?: string | undefined;
|
|
1444
1681
|
} | {
|
|
1445
1682
|
message: string;
|
|
1446
1683
|
warning_code: "august_device_programming_delay";
|
|
1684
|
+
created_at?: string | undefined;
|
|
1447
1685
|
} | {
|
|
1448
1686
|
message: string;
|
|
1449
1687
|
warning_code: "code_modified_external_to_seam";
|
|
1688
|
+
created_at?: string | undefined;
|
|
1450
1689
|
} | {
|
|
1451
1690
|
message: string;
|
|
1452
1691
|
warning_code: "schlage_detected_duplicate";
|
|
1692
|
+
created_at?: string | undefined;
|
|
1453
1693
|
} | {
|
|
1454
1694
|
message: string;
|
|
1455
1695
|
warning_code: "schlage_creation_outage";
|
|
1696
|
+
created_at?: string | undefined;
|
|
1456
1697
|
} | {
|
|
1457
1698
|
message: string;
|
|
1458
1699
|
warning_code: "salto_office_mode";
|
|
1700
|
+
created_at?: string | undefined;
|
|
1459
1701
|
} | {
|
|
1460
1702
|
message: string;
|
|
1461
1703
|
warning_code: "delay_in_setting_on_device";
|
|
1704
|
+
created_at?: string | undefined;
|
|
1462
1705
|
} | {
|
|
1463
1706
|
message: string;
|
|
1464
1707
|
warning_code: "delay_in_removing_from_device";
|
|
1708
|
+
created_at?: string | undefined;
|
|
1465
1709
|
} | {
|
|
1466
1710
|
message: string;
|
|
1467
1711
|
warning_code: "third_party_integration_detected";
|
|
1712
|
+
created_at?: string | undefined;
|
|
1468
1713
|
} | {
|
|
1469
1714
|
message: string;
|
|
1470
1715
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1716
|
+
created_at?: string | undefined;
|
|
1471
1717
|
} | {
|
|
1472
1718
|
message: string;
|
|
1473
1719
|
warning_code: "management_transferred";
|
|
1720
|
+
created_at?: string | undefined;
|
|
1474
1721
|
} | {
|
|
1475
1722
|
message: string;
|
|
1476
1723
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1724
|
+
created_at?: string | undefined;
|
|
1477
1725
|
})[];
|
|
1478
1726
|
is_managed: true;
|
|
1479
1727
|
common_code_key: string | null;
|
|
@@ -1504,250 +1752,307 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
1504
1752
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
1505
1753
|
message: z.ZodString;
|
|
1506
1754
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1755
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1507
1756
|
}, {
|
|
1508
1757
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
1509
1758
|
}>, "strip", z.ZodTypeAny, {
|
|
1510
1759
|
message: string;
|
|
1511
1760
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1512
1761
|
is_access_code_error: true;
|
|
1762
|
+
created_at?: string | undefined;
|
|
1513
1763
|
}, {
|
|
1514
1764
|
message: string;
|
|
1515
1765
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1516
1766
|
is_access_code_error: true;
|
|
1767
|
+
created_at?: string | undefined;
|
|
1517
1768
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1518
1769
|
message: z.ZodString;
|
|
1519
1770
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1771
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1520
1772
|
}, {
|
|
1521
1773
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
1522
1774
|
}>, "strip", z.ZodTypeAny, {
|
|
1523
1775
|
message: string;
|
|
1524
1776
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1525
1777
|
is_access_code_error: true;
|
|
1778
|
+
created_at?: string | undefined;
|
|
1526
1779
|
}, {
|
|
1527
1780
|
message: string;
|
|
1528
1781
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1529
1782
|
is_access_code_error: true;
|
|
1783
|
+
created_at?: string | undefined;
|
|
1530
1784
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1531
1785
|
message: z.ZodString;
|
|
1532
1786
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1787
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1533
1788
|
}, {
|
|
1534
1789
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
1535
1790
|
}>, "strip", z.ZodTypeAny, {
|
|
1536
1791
|
message: string;
|
|
1537
1792
|
error_code: "failed_to_set_on_device";
|
|
1538
1793
|
is_access_code_error: true;
|
|
1794
|
+
created_at?: string | undefined;
|
|
1539
1795
|
}, {
|
|
1540
1796
|
message: string;
|
|
1541
1797
|
error_code: "failed_to_set_on_device";
|
|
1542
1798
|
is_access_code_error: true;
|
|
1799
|
+
created_at?: string | undefined;
|
|
1543
1800
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1544
1801
|
message: z.ZodString;
|
|
1545
1802
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1803
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1546
1804
|
}, {
|
|
1547
1805
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
1548
1806
|
}>, "strip", z.ZodTypeAny, {
|
|
1549
1807
|
message: string;
|
|
1550
1808
|
error_code: "failed_to_remove_from_device";
|
|
1551
1809
|
is_access_code_error: true;
|
|
1810
|
+
created_at?: string | undefined;
|
|
1552
1811
|
}, {
|
|
1553
1812
|
message: string;
|
|
1554
1813
|
error_code: "failed_to_remove_from_device";
|
|
1555
1814
|
is_access_code_error: true;
|
|
1815
|
+
created_at?: string | undefined;
|
|
1556
1816
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1557
1817
|
message: z.ZodString;
|
|
1558
1818
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1819
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1559
1820
|
}, {
|
|
1560
1821
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
1561
1822
|
}>, "strip", z.ZodTypeAny, {
|
|
1562
1823
|
message: string;
|
|
1563
1824
|
error_code: "duplicate_code_on_device";
|
|
1564
1825
|
is_access_code_error: true;
|
|
1826
|
+
created_at?: string | undefined;
|
|
1565
1827
|
}, {
|
|
1566
1828
|
message: string;
|
|
1567
1829
|
error_code: "duplicate_code_on_device";
|
|
1568
1830
|
is_access_code_error: true;
|
|
1831
|
+
created_at?: string | undefined;
|
|
1569
1832
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1570
1833
|
message: z.ZodString;
|
|
1571
1834
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1835
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1572
1836
|
}, {
|
|
1573
1837
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
1574
1838
|
}>, "strip", z.ZodTypeAny, {
|
|
1575
1839
|
message: string;
|
|
1576
1840
|
error_code: "duplicate_code_attempt_prevented";
|
|
1577
1841
|
is_access_code_error: true;
|
|
1842
|
+
created_at?: string | undefined;
|
|
1578
1843
|
}, {
|
|
1579
1844
|
message: string;
|
|
1580
1845
|
error_code: "duplicate_code_attempt_prevented";
|
|
1581
1846
|
is_access_code_error: true;
|
|
1847
|
+
created_at?: string | undefined;
|
|
1582
1848
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1583
1849
|
message: z.ZodString;
|
|
1584
1850
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1851
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1585
1852
|
}, {
|
|
1586
1853
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
1587
1854
|
}>, "strip", z.ZodTypeAny, {
|
|
1588
1855
|
message: string;
|
|
1589
1856
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1590
1857
|
is_access_code_error: true;
|
|
1858
|
+
created_at?: string | undefined;
|
|
1591
1859
|
}, {
|
|
1592
1860
|
message: string;
|
|
1593
1861
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1594
1862
|
is_access_code_error: true;
|
|
1863
|
+
created_at?: string | undefined;
|
|
1595
1864
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1596
1865
|
message: z.ZodString;
|
|
1597
1866
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1867
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1598
1868
|
}, {
|
|
1599
1869
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
1600
1870
|
}>, "strip", z.ZodTypeAny, {
|
|
1601
1871
|
message: string;
|
|
1602
1872
|
error_code: "igloohome_bridge_offline";
|
|
1603
1873
|
is_access_code_error: true;
|
|
1874
|
+
created_at?: string | undefined;
|
|
1604
1875
|
}, {
|
|
1605
1876
|
message: string;
|
|
1606
1877
|
error_code: "igloohome_bridge_offline";
|
|
1607
1878
|
is_access_code_error: true;
|
|
1879
|
+
created_at?: string | undefined;
|
|
1608
1880
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1609
1881
|
message: z.ZodString;
|
|
1610
1882
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1883
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1611
1884
|
}, {
|
|
1612
1885
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
1613
1886
|
}>, "strip", z.ZodTypeAny, {
|
|
1614
1887
|
message: string;
|
|
1615
1888
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1616
1889
|
is_access_code_error: true;
|
|
1890
|
+
created_at?: string | undefined;
|
|
1617
1891
|
}, {
|
|
1618
1892
|
message: string;
|
|
1619
1893
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1620
1894
|
is_access_code_error: true;
|
|
1895
|
+
created_at?: string | undefined;
|
|
1621
1896
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1622
1897
|
message: z.ZodString;
|
|
1623
1898
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1899
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1624
1900
|
}, {
|
|
1625
1901
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
1626
1902
|
}>, "strip", z.ZodTypeAny, {
|
|
1627
1903
|
message: string;
|
|
1628
1904
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1629
1905
|
is_access_code_error: true;
|
|
1906
|
+
created_at?: string | undefined;
|
|
1630
1907
|
}, {
|
|
1631
1908
|
message: string;
|
|
1632
1909
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1633
1910
|
is_access_code_error: true;
|
|
1911
|
+
created_at?: string | undefined;
|
|
1634
1912
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1635
1913
|
message: z.ZodString;
|
|
1636
1914
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1915
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1637
1916
|
}, {
|
|
1638
1917
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
1639
1918
|
}>, "strip", z.ZodTypeAny, {
|
|
1640
1919
|
message: string;
|
|
1641
1920
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1642
1921
|
is_access_code_error: true;
|
|
1922
|
+
created_at?: string | undefined;
|
|
1643
1923
|
}, {
|
|
1644
1924
|
message: string;
|
|
1645
1925
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1646
1926
|
is_access_code_error: true;
|
|
1927
|
+
created_at?: string | undefined;
|
|
1647
1928
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1648
1929
|
message: z.ZodString;
|
|
1649
1930
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1931
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1650
1932
|
}, {
|
|
1651
1933
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
1652
1934
|
}>, "strip", z.ZodTypeAny, {
|
|
1653
1935
|
message: string;
|
|
1654
1936
|
error_code: "code_modified_external_to_seam";
|
|
1655
1937
|
is_access_code_error: true;
|
|
1938
|
+
created_at?: string | undefined;
|
|
1656
1939
|
}, {
|
|
1657
1940
|
message: string;
|
|
1658
1941
|
error_code: "code_modified_external_to_seam";
|
|
1659
1942
|
is_access_code_error: true;
|
|
1943
|
+
created_at?: string | undefined;
|
|
1660
1944
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1661
1945
|
message: z.ZodString;
|
|
1662
1946
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1947
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1663
1948
|
}, {
|
|
1664
1949
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
1665
1950
|
}>, "strip", z.ZodTypeAny, {
|
|
1666
1951
|
message: string;
|
|
1667
1952
|
error_code: "august_lock_invalid_code_length";
|
|
1668
1953
|
is_access_code_error: true;
|
|
1954
|
+
created_at?: string | undefined;
|
|
1669
1955
|
}, {
|
|
1670
1956
|
message: string;
|
|
1671
1957
|
error_code: "august_lock_invalid_code_length";
|
|
1672
1958
|
is_access_code_error: true;
|
|
1959
|
+
created_at?: string | undefined;
|
|
1673
1960
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1674
1961
|
message: z.ZodString;
|
|
1675
1962
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1963
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1676
1964
|
}, {
|
|
1677
1965
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
1678
1966
|
}>, "strip", z.ZodTypeAny, {
|
|
1679
1967
|
message: string;
|
|
1680
1968
|
error_code: "august_device_programming_delay";
|
|
1681
1969
|
is_access_code_error: true;
|
|
1970
|
+
created_at?: string | undefined;
|
|
1682
1971
|
}, {
|
|
1683
1972
|
message: string;
|
|
1684
1973
|
error_code: "august_device_programming_delay";
|
|
1685
1974
|
is_access_code_error: true;
|
|
1975
|
+
created_at?: string | undefined;
|
|
1686
1976
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1687
1977
|
message: z.ZodString;
|
|
1688
1978
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1979
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1689
1980
|
}, {
|
|
1690
1981
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
1691
1982
|
}>, "strip", z.ZodTypeAny, {
|
|
1692
1983
|
message: string;
|
|
1693
1984
|
error_code: "august_device_slots_full";
|
|
1694
1985
|
is_access_code_error: true;
|
|
1986
|
+
created_at?: string | undefined;
|
|
1695
1987
|
}, {
|
|
1696
1988
|
message: string;
|
|
1697
1989
|
error_code: "august_device_slots_full";
|
|
1698
1990
|
is_access_code_error: true;
|
|
1991
|
+
created_at?: string | undefined;
|
|
1699
1992
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1700
1993
|
message: z.ZodString;
|
|
1701
1994
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1995
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1702
1996
|
}, {
|
|
1703
1997
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
1704
1998
|
}>, "strip", z.ZodTypeAny, {
|
|
1705
1999
|
message: string;
|
|
1706
2000
|
error_code: "august_lock_missing_keypad";
|
|
1707
2001
|
is_access_code_error: true;
|
|
2002
|
+
created_at?: string | undefined;
|
|
1708
2003
|
}, {
|
|
1709
2004
|
message: string;
|
|
1710
2005
|
error_code: "august_lock_missing_keypad";
|
|
1711
2006
|
is_access_code_error: true;
|
|
2007
|
+
created_at?: string | undefined;
|
|
1712
2008
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1713
2009
|
message: z.ZodString;
|
|
1714
2010
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2011
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1715
2012
|
}, {
|
|
1716
2013
|
error_code: z.ZodLiteral<"salto_site_user_not_subscribed">;
|
|
1717
2014
|
}>, "strip", z.ZodTypeAny, {
|
|
1718
2015
|
message: string;
|
|
1719
2016
|
error_code: "salto_site_user_not_subscribed";
|
|
1720
2017
|
is_access_code_error: true;
|
|
2018
|
+
created_at?: string | undefined;
|
|
1721
2019
|
}, {
|
|
1722
2020
|
message: string;
|
|
1723
2021
|
error_code: "salto_site_user_not_subscribed";
|
|
1724
2022
|
is_access_code_error: true;
|
|
2023
|
+
created_at?: string | undefined;
|
|
1725
2024
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1726
2025
|
message: z.ZodString;
|
|
1727
2026
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2027
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1728
2028
|
}, {
|
|
1729
2029
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
1730
2030
|
}>, "strip", z.ZodTypeAny, {
|
|
1731
2031
|
message: string;
|
|
1732
2032
|
error_code: "hubitat_device_programming_delay";
|
|
1733
2033
|
is_access_code_error: true;
|
|
2034
|
+
created_at?: string | undefined;
|
|
1734
2035
|
}, {
|
|
1735
2036
|
message: string;
|
|
1736
2037
|
error_code: "hubitat_device_programming_delay";
|
|
1737
2038
|
is_access_code_error: true;
|
|
2039
|
+
created_at?: string | undefined;
|
|
1738
2040
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1739
2041
|
message: z.ZodString;
|
|
1740
2042
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2043
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1741
2044
|
}, {
|
|
1742
2045
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
1743
2046
|
}>, "strip", z.ZodTypeAny, {
|
|
1744
2047
|
message: string;
|
|
1745
2048
|
error_code: "hubitat_no_free_positions_available";
|
|
1746
2049
|
is_access_code_error: true;
|
|
2050
|
+
created_at?: string | undefined;
|
|
1747
2051
|
}, {
|
|
1748
2052
|
message: string;
|
|
1749
2053
|
error_code: "hubitat_no_free_positions_available";
|
|
1750
2054
|
is_access_code_error: true;
|
|
2055
|
+
created_at?: string | undefined;
|
|
1751
2056
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
1752
2057
|
created_at: z.ZodString;
|
|
1753
2058
|
message: z.ZodString;
|
|
@@ -2043,124 +2348,160 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2043
2348
|
}>)[]]>, "many">;
|
|
2044
2349
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
2045
2350
|
message: z.ZodString;
|
|
2351
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2046
2352
|
}, {
|
|
2047
2353
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
2048
2354
|
}>, "strip", z.ZodTypeAny, {
|
|
2049
2355
|
message: string;
|
|
2050
2356
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2357
|
+
created_at?: string | undefined;
|
|
2051
2358
|
}, {
|
|
2052
2359
|
message: string;
|
|
2053
2360
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2361
|
+
created_at?: string | undefined;
|
|
2054
2362
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2055
2363
|
message: z.ZodString;
|
|
2364
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2056
2365
|
}, {
|
|
2057
2366
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
2058
2367
|
}>, "strip", z.ZodTypeAny, {
|
|
2059
2368
|
message: string;
|
|
2060
2369
|
warning_code: "schlage_detected_duplicate";
|
|
2370
|
+
created_at?: string | undefined;
|
|
2061
2371
|
}, {
|
|
2062
2372
|
message: string;
|
|
2063
2373
|
warning_code: "schlage_detected_duplicate";
|
|
2374
|
+
created_at?: string | undefined;
|
|
2064
2375
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2065
2376
|
message: z.ZodString;
|
|
2377
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2066
2378
|
}, {
|
|
2067
2379
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
2068
2380
|
}>, "strip", z.ZodTypeAny, {
|
|
2069
2381
|
message: string;
|
|
2070
2382
|
warning_code: "schlage_creation_outage";
|
|
2383
|
+
created_at?: string | undefined;
|
|
2071
2384
|
}, {
|
|
2072
2385
|
message: string;
|
|
2073
2386
|
warning_code: "schlage_creation_outage";
|
|
2387
|
+
created_at?: string | undefined;
|
|
2074
2388
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2075
2389
|
message: z.ZodString;
|
|
2390
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2076
2391
|
}, {
|
|
2077
2392
|
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
2078
2393
|
}>, "strip", z.ZodTypeAny, {
|
|
2079
2394
|
message: string;
|
|
2080
2395
|
warning_code: "salto_office_mode";
|
|
2396
|
+
created_at?: string | undefined;
|
|
2081
2397
|
}, {
|
|
2082
2398
|
message: string;
|
|
2083
2399
|
warning_code: "salto_office_mode";
|
|
2400
|
+
created_at?: string | undefined;
|
|
2084
2401
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2085
2402
|
message: z.ZodString;
|
|
2403
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2086
2404
|
}, {
|
|
2087
2405
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
2088
2406
|
}>, "strip", z.ZodTypeAny, {
|
|
2089
2407
|
message: string;
|
|
2090
2408
|
warning_code: "code_modified_external_to_seam";
|
|
2409
|
+
created_at?: string | undefined;
|
|
2091
2410
|
}, {
|
|
2092
2411
|
message: string;
|
|
2093
2412
|
warning_code: "code_modified_external_to_seam";
|
|
2413
|
+
created_at?: string | undefined;
|
|
2094
2414
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2095
2415
|
message: z.ZodString;
|
|
2416
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2096
2417
|
}, {
|
|
2097
2418
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
2098
2419
|
}>, "strip", z.ZodTypeAny, {
|
|
2099
2420
|
message: string;
|
|
2100
2421
|
warning_code: "delay_in_setting_on_device";
|
|
2422
|
+
created_at?: string | undefined;
|
|
2101
2423
|
}, {
|
|
2102
2424
|
message: string;
|
|
2103
2425
|
warning_code: "delay_in_setting_on_device";
|
|
2426
|
+
created_at?: string | undefined;
|
|
2104
2427
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2105
2428
|
message: z.ZodString;
|
|
2429
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2106
2430
|
}, {
|
|
2107
2431
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
2108
2432
|
}>, "strip", z.ZodTypeAny, {
|
|
2109
2433
|
message: string;
|
|
2110
2434
|
warning_code: "delay_in_removing_from_device";
|
|
2435
|
+
created_at?: string | undefined;
|
|
2111
2436
|
}, {
|
|
2112
2437
|
message: string;
|
|
2113
2438
|
warning_code: "delay_in_removing_from_device";
|
|
2439
|
+
created_at?: string | undefined;
|
|
2114
2440
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2115
2441
|
message: z.ZodString;
|
|
2442
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2116
2443
|
}, {
|
|
2117
2444
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
2118
2445
|
}>, "strip", z.ZodTypeAny, {
|
|
2119
2446
|
message: string;
|
|
2120
2447
|
warning_code: "third_party_integration_detected";
|
|
2448
|
+
created_at?: string | undefined;
|
|
2121
2449
|
}, {
|
|
2122
2450
|
message: string;
|
|
2123
2451
|
warning_code: "third_party_integration_detected";
|
|
2452
|
+
created_at?: string | undefined;
|
|
2124
2453
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2125
2454
|
message: z.ZodString;
|
|
2455
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2126
2456
|
}, {
|
|
2127
2457
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
2128
2458
|
}>, "strip", z.ZodTypeAny, {
|
|
2129
2459
|
message: string;
|
|
2130
2460
|
warning_code: "august_device_programming_delay";
|
|
2461
|
+
created_at?: string | undefined;
|
|
2131
2462
|
}, {
|
|
2132
2463
|
message: string;
|
|
2133
2464
|
warning_code: "august_device_programming_delay";
|
|
2465
|
+
created_at?: string | undefined;
|
|
2134
2466
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2135
2467
|
message: z.ZodString;
|
|
2468
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2136
2469
|
}, {
|
|
2137
2470
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
2138
2471
|
}>, "strip", z.ZodTypeAny, {
|
|
2139
2472
|
message: string;
|
|
2140
2473
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2474
|
+
created_at?: string | undefined;
|
|
2141
2475
|
}, {
|
|
2142
2476
|
message: string;
|
|
2143
2477
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2478
|
+
created_at?: string | undefined;
|
|
2144
2479
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2145
2480
|
message: z.ZodString;
|
|
2481
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2146
2482
|
}, {
|
|
2147
2483
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
2148
2484
|
}>, "strip", z.ZodTypeAny, {
|
|
2149
2485
|
message: string;
|
|
2150
2486
|
warning_code: "management_transferred";
|
|
2487
|
+
created_at?: string | undefined;
|
|
2151
2488
|
}, {
|
|
2152
2489
|
message: string;
|
|
2153
2490
|
warning_code: "management_transferred";
|
|
2491
|
+
created_at?: string | undefined;
|
|
2154
2492
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2155
2493
|
message: z.ZodString;
|
|
2494
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2156
2495
|
}, {
|
|
2157
2496
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
2158
2497
|
}>, "strip", z.ZodTypeAny, {
|
|
2159
2498
|
message: string;
|
|
2160
2499
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2500
|
+
created_at?: string | undefined;
|
|
2161
2501
|
}, {
|
|
2162
2502
|
message: string;
|
|
2163
2503
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2504
|
+
created_at?: string | undefined;
|
|
2164
2505
|
}>]>, "many">;
|
|
2165
2506
|
is_managed: z.ZodLiteral<true>;
|
|
2166
2507
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2270,115 +2611,146 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2270
2611
|
message: string;
|
|
2271
2612
|
error_code: "smartthings_failed_to_set_access_code";
|
|
2272
2613
|
is_access_code_error: true;
|
|
2614
|
+
created_at?: string | undefined;
|
|
2273
2615
|
} | {
|
|
2274
2616
|
message: string;
|
|
2275
2617
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
2276
2618
|
is_access_code_error: true;
|
|
2619
|
+
created_at?: string | undefined;
|
|
2277
2620
|
} | {
|
|
2278
2621
|
message: string;
|
|
2279
2622
|
error_code: "code_modified_external_to_seam";
|
|
2280
2623
|
is_access_code_error: true;
|
|
2624
|
+
created_at?: string | undefined;
|
|
2281
2625
|
} | {
|
|
2282
2626
|
message: string;
|
|
2283
2627
|
error_code: "failed_to_set_on_device";
|
|
2284
2628
|
is_access_code_error: true;
|
|
2629
|
+
created_at?: string | undefined;
|
|
2285
2630
|
} | {
|
|
2286
2631
|
message: string;
|
|
2287
2632
|
error_code: "failed_to_remove_from_device";
|
|
2288
2633
|
is_access_code_error: true;
|
|
2634
|
+
created_at?: string | undefined;
|
|
2289
2635
|
} | {
|
|
2290
2636
|
message: string;
|
|
2291
2637
|
error_code: "duplicate_code_on_device";
|
|
2292
2638
|
is_access_code_error: true;
|
|
2639
|
+
created_at?: string | undefined;
|
|
2293
2640
|
} | {
|
|
2294
2641
|
message: string;
|
|
2295
2642
|
error_code: "duplicate_code_attempt_prevented";
|
|
2296
2643
|
is_access_code_error: true;
|
|
2644
|
+
created_at?: string | undefined;
|
|
2297
2645
|
} | {
|
|
2298
2646
|
message: string;
|
|
2299
2647
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
2300
2648
|
is_access_code_error: true;
|
|
2649
|
+
created_at?: string | undefined;
|
|
2301
2650
|
} | {
|
|
2302
2651
|
message: string;
|
|
2303
2652
|
error_code: "igloohome_bridge_offline";
|
|
2304
2653
|
is_access_code_error: true;
|
|
2654
|
+
created_at?: string | undefined;
|
|
2305
2655
|
} | {
|
|
2306
2656
|
message: string;
|
|
2307
2657
|
error_code: "kwikset_unable_to_confirm_code";
|
|
2308
2658
|
is_access_code_error: true;
|
|
2659
|
+
created_at?: string | undefined;
|
|
2309
2660
|
} | {
|
|
2310
2661
|
message: string;
|
|
2311
2662
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
2312
2663
|
is_access_code_error: true;
|
|
2664
|
+
created_at?: string | undefined;
|
|
2313
2665
|
} | {
|
|
2314
2666
|
message: string;
|
|
2315
2667
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
2316
2668
|
is_access_code_error: true;
|
|
2669
|
+
created_at?: string | undefined;
|
|
2317
2670
|
} | {
|
|
2318
2671
|
message: string;
|
|
2319
2672
|
error_code: "august_lock_invalid_code_length";
|
|
2320
2673
|
is_access_code_error: true;
|
|
2674
|
+
created_at?: string | undefined;
|
|
2321
2675
|
} | {
|
|
2322
2676
|
message: string;
|
|
2323
2677
|
error_code: "august_device_programming_delay";
|
|
2324
2678
|
is_access_code_error: true;
|
|
2679
|
+
created_at?: string | undefined;
|
|
2325
2680
|
} | {
|
|
2326
2681
|
message: string;
|
|
2327
2682
|
error_code: "august_device_slots_full";
|
|
2328
2683
|
is_access_code_error: true;
|
|
2684
|
+
created_at?: string | undefined;
|
|
2329
2685
|
} | {
|
|
2330
2686
|
message: string;
|
|
2331
2687
|
error_code: "august_lock_missing_keypad";
|
|
2332
2688
|
is_access_code_error: true;
|
|
2689
|
+
created_at?: string | undefined;
|
|
2333
2690
|
} | {
|
|
2334
2691
|
message: string;
|
|
2335
2692
|
error_code: "salto_site_user_not_subscribed";
|
|
2336
2693
|
is_access_code_error: true;
|
|
2694
|
+
created_at?: string | undefined;
|
|
2337
2695
|
} | {
|
|
2338
2696
|
message: string;
|
|
2339
2697
|
error_code: "hubitat_device_programming_delay";
|
|
2340
2698
|
is_access_code_error: true;
|
|
2699
|
+
created_at?: string | undefined;
|
|
2341
2700
|
} | {
|
|
2342
2701
|
message: string;
|
|
2343
2702
|
error_code: "hubitat_no_free_positions_available";
|
|
2344
2703
|
is_access_code_error: true;
|
|
2704
|
+
created_at?: string | undefined;
|
|
2345
2705
|
})[];
|
|
2346
2706
|
warnings: ({
|
|
2347
2707
|
message: string;
|
|
2348
2708
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2709
|
+
created_at?: string | undefined;
|
|
2349
2710
|
} | {
|
|
2350
2711
|
message: string;
|
|
2351
2712
|
warning_code: "august_device_programming_delay";
|
|
2713
|
+
created_at?: string | undefined;
|
|
2352
2714
|
} | {
|
|
2353
2715
|
message: string;
|
|
2354
2716
|
warning_code: "code_modified_external_to_seam";
|
|
2717
|
+
created_at?: string | undefined;
|
|
2355
2718
|
} | {
|
|
2356
2719
|
message: string;
|
|
2357
2720
|
warning_code: "schlage_detected_duplicate";
|
|
2721
|
+
created_at?: string | undefined;
|
|
2358
2722
|
} | {
|
|
2359
2723
|
message: string;
|
|
2360
2724
|
warning_code: "schlage_creation_outage";
|
|
2725
|
+
created_at?: string | undefined;
|
|
2361
2726
|
} | {
|
|
2362
2727
|
message: string;
|
|
2363
2728
|
warning_code: "salto_office_mode";
|
|
2729
|
+
created_at?: string | undefined;
|
|
2364
2730
|
} | {
|
|
2365
2731
|
message: string;
|
|
2366
2732
|
warning_code: "delay_in_setting_on_device";
|
|
2733
|
+
created_at?: string | undefined;
|
|
2367
2734
|
} | {
|
|
2368
2735
|
message: string;
|
|
2369
2736
|
warning_code: "delay_in_removing_from_device";
|
|
2737
|
+
created_at?: string | undefined;
|
|
2370
2738
|
} | {
|
|
2371
2739
|
message: string;
|
|
2372
2740
|
warning_code: "third_party_integration_detected";
|
|
2741
|
+
created_at?: string | undefined;
|
|
2373
2742
|
} | {
|
|
2374
2743
|
message: string;
|
|
2375
2744
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2745
|
+
created_at?: string | undefined;
|
|
2376
2746
|
} | {
|
|
2377
2747
|
message: string;
|
|
2378
2748
|
warning_code: "management_transferred";
|
|
2749
|
+
created_at?: string | undefined;
|
|
2379
2750
|
} | {
|
|
2380
2751
|
message: string;
|
|
2381
2752
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2753
|
+
created_at?: string | undefined;
|
|
2382
2754
|
})[];
|
|
2383
2755
|
is_managed: false;
|
|
2384
2756
|
access_code_id: string;
|
|
@@ -2479,115 +2851,146 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2479
2851
|
message: string;
|
|
2480
2852
|
error_code: "smartthings_failed_to_set_access_code";
|
|
2481
2853
|
is_access_code_error: true;
|
|
2854
|
+
created_at?: string | undefined;
|
|
2482
2855
|
} | {
|
|
2483
2856
|
message: string;
|
|
2484
2857
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
2485
2858
|
is_access_code_error: true;
|
|
2859
|
+
created_at?: string | undefined;
|
|
2486
2860
|
} | {
|
|
2487
2861
|
message: string;
|
|
2488
2862
|
error_code: "code_modified_external_to_seam";
|
|
2489
2863
|
is_access_code_error: true;
|
|
2864
|
+
created_at?: string | undefined;
|
|
2490
2865
|
} | {
|
|
2491
2866
|
message: string;
|
|
2492
2867
|
error_code: "failed_to_set_on_device";
|
|
2493
2868
|
is_access_code_error: true;
|
|
2869
|
+
created_at?: string | undefined;
|
|
2494
2870
|
} | {
|
|
2495
2871
|
message: string;
|
|
2496
2872
|
error_code: "failed_to_remove_from_device";
|
|
2497
2873
|
is_access_code_error: true;
|
|
2874
|
+
created_at?: string | undefined;
|
|
2498
2875
|
} | {
|
|
2499
2876
|
message: string;
|
|
2500
2877
|
error_code: "duplicate_code_on_device";
|
|
2501
2878
|
is_access_code_error: true;
|
|
2879
|
+
created_at?: string | undefined;
|
|
2502
2880
|
} | {
|
|
2503
2881
|
message: string;
|
|
2504
2882
|
error_code: "duplicate_code_attempt_prevented";
|
|
2505
2883
|
is_access_code_error: true;
|
|
2884
|
+
created_at?: string | undefined;
|
|
2506
2885
|
} | {
|
|
2507
2886
|
message: string;
|
|
2508
2887
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
2509
2888
|
is_access_code_error: true;
|
|
2889
|
+
created_at?: string | undefined;
|
|
2510
2890
|
} | {
|
|
2511
2891
|
message: string;
|
|
2512
2892
|
error_code: "igloohome_bridge_offline";
|
|
2513
2893
|
is_access_code_error: true;
|
|
2894
|
+
created_at?: string | undefined;
|
|
2514
2895
|
} | {
|
|
2515
2896
|
message: string;
|
|
2516
2897
|
error_code: "kwikset_unable_to_confirm_code";
|
|
2517
2898
|
is_access_code_error: true;
|
|
2899
|
+
created_at?: string | undefined;
|
|
2518
2900
|
} | {
|
|
2519
2901
|
message: string;
|
|
2520
2902
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
2521
2903
|
is_access_code_error: true;
|
|
2904
|
+
created_at?: string | undefined;
|
|
2522
2905
|
} | {
|
|
2523
2906
|
message: string;
|
|
2524
2907
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
2525
2908
|
is_access_code_error: true;
|
|
2909
|
+
created_at?: string | undefined;
|
|
2526
2910
|
} | {
|
|
2527
2911
|
message: string;
|
|
2528
2912
|
error_code: "august_lock_invalid_code_length";
|
|
2529
2913
|
is_access_code_error: true;
|
|
2914
|
+
created_at?: string | undefined;
|
|
2530
2915
|
} | {
|
|
2531
2916
|
message: string;
|
|
2532
2917
|
error_code: "august_device_programming_delay";
|
|
2533
2918
|
is_access_code_error: true;
|
|
2919
|
+
created_at?: string | undefined;
|
|
2534
2920
|
} | {
|
|
2535
2921
|
message: string;
|
|
2536
2922
|
error_code: "august_device_slots_full";
|
|
2537
2923
|
is_access_code_error: true;
|
|
2924
|
+
created_at?: string | undefined;
|
|
2538
2925
|
} | {
|
|
2539
2926
|
message: string;
|
|
2540
2927
|
error_code: "august_lock_missing_keypad";
|
|
2541
2928
|
is_access_code_error: true;
|
|
2929
|
+
created_at?: string | undefined;
|
|
2542
2930
|
} | {
|
|
2543
2931
|
message: string;
|
|
2544
2932
|
error_code: "salto_site_user_not_subscribed";
|
|
2545
2933
|
is_access_code_error: true;
|
|
2934
|
+
created_at?: string | undefined;
|
|
2546
2935
|
} | {
|
|
2547
2936
|
message: string;
|
|
2548
2937
|
error_code: "hubitat_device_programming_delay";
|
|
2549
2938
|
is_access_code_error: true;
|
|
2939
|
+
created_at?: string | undefined;
|
|
2550
2940
|
} | {
|
|
2551
2941
|
message: string;
|
|
2552
2942
|
error_code: "hubitat_no_free_positions_available";
|
|
2553
2943
|
is_access_code_error: true;
|
|
2944
|
+
created_at?: string | undefined;
|
|
2554
2945
|
})[];
|
|
2555
2946
|
warnings: ({
|
|
2556
2947
|
message: string;
|
|
2557
2948
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2949
|
+
created_at?: string | undefined;
|
|
2558
2950
|
} | {
|
|
2559
2951
|
message: string;
|
|
2560
2952
|
warning_code: "august_device_programming_delay";
|
|
2953
|
+
created_at?: string | undefined;
|
|
2561
2954
|
} | {
|
|
2562
2955
|
message: string;
|
|
2563
2956
|
warning_code: "code_modified_external_to_seam";
|
|
2957
|
+
created_at?: string | undefined;
|
|
2564
2958
|
} | {
|
|
2565
2959
|
message: string;
|
|
2566
2960
|
warning_code: "schlage_detected_duplicate";
|
|
2961
|
+
created_at?: string | undefined;
|
|
2567
2962
|
} | {
|
|
2568
2963
|
message: string;
|
|
2569
2964
|
warning_code: "schlage_creation_outage";
|
|
2965
|
+
created_at?: string | undefined;
|
|
2570
2966
|
} | {
|
|
2571
2967
|
message: string;
|
|
2572
2968
|
warning_code: "salto_office_mode";
|
|
2969
|
+
created_at?: string | undefined;
|
|
2573
2970
|
} | {
|
|
2574
2971
|
message: string;
|
|
2575
2972
|
warning_code: "delay_in_setting_on_device";
|
|
2973
|
+
created_at?: string | undefined;
|
|
2576
2974
|
} | {
|
|
2577
2975
|
message: string;
|
|
2578
2976
|
warning_code: "delay_in_removing_from_device";
|
|
2977
|
+
created_at?: string | undefined;
|
|
2579
2978
|
} | {
|
|
2580
2979
|
message: string;
|
|
2581
2980
|
warning_code: "third_party_integration_detected";
|
|
2981
|
+
created_at?: string | undefined;
|
|
2582
2982
|
} | {
|
|
2583
2983
|
message: string;
|
|
2584
2984
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2985
|
+
created_at?: string | undefined;
|
|
2585
2986
|
} | {
|
|
2586
2987
|
message: string;
|
|
2587
2988
|
warning_code: "management_transferred";
|
|
2989
|
+
created_at?: string | undefined;
|
|
2588
2990
|
} | {
|
|
2589
2991
|
message: string;
|
|
2590
2992
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2993
|
+
created_at?: string | undefined;
|
|
2591
2994
|
})[];
|
|
2592
2995
|
is_managed: false;
|
|
2593
2996
|
access_code_id: string;
|
|
@@ -17970,6 +18373,11 @@ declare const _default: {
|
|
|
17970
18373
|
oneOf: ({
|
|
17971
18374
|
description: string;
|
|
17972
18375
|
properties: {
|
|
18376
|
+
created_at: {
|
|
18377
|
+
format: string;
|
|
18378
|
+
type: string;
|
|
18379
|
+
description?: never;
|
|
18380
|
+
};
|
|
17973
18381
|
error_code: {
|
|
17974
18382
|
description: string;
|
|
17975
18383
|
enum: string[];
|
|
@@ -17982,7 +18390,6 @@ declare const _default: {
|
|
|
17982
18390
|
message: {
|
|
17983
18391
|
type: string;
|
|
17984
18392
|
};
|
|
17985
|
-
created_at?: never;
|
|
17986
18393
|
is_connected_account_error?: never;
|
|
17987
18394
|
is_device_error?: never;
|
|
17988
18395
|
};
|
|
@@ -18139,6 +18546,10 @@ declare const _default: {
|
|
|
18139
18546
|
oneOf: {
|
|
18140
18547
|
description: string;
|
|
18141
18548
|
properties: {
|
|
18549
|
+
created_at: {
|
|
18550
|
+
format: string;
|
|
18551
|
+
type: string;
|
|
18552
|
+
};
|
|
18142
18553
|
message: {
|
|
18143
18554
|
type: string;
|
|
18144
18555
|
};
|
|
@@ -25409,6 +25820,11 @@ declare const _default: {
|
|
|
25409
25820
|
oneOf: ({
|
|
25410
25821
|
description: string;
|
|
25411
25822
|
properties: {
|
|
25823
|
+
created_at: {
|
|
25824
|
+
format: string;
|
|
25825
|
+
type: string;
|
|
25826
|
+
description?: never;
|
|
25827
|
+
};
|
|
25412
25828
|
error_code: {
|
|
25413
25829
|
description: string;
|
|
25414
25830
|
enum: string[];
|
|
@@ -25421,7 +25837,6 @@ declare const _default: {
|
|
|
25421
25837
|
message: {
|
|
25422
25838
|
type: string;
|
|
25423
25839
|
};
|
|
25424
|
-
created_at?: never;
|
|
25425
25840
|
is_connected_account_error?: never;
|
|
25426
25841
|
is_device_error?: never;
|
|
25427
25842
|
};
|
|
@@ -25542,6 +25957,10 @@ declare const _default: {
|
|
|
25542
25957
|
oneOf: {
|
|
25543
25958
|
description: string;
|
|
25544
25959
|
properties: {
|
|
25960
|
+
created_at: {
|
|
25961
|
+
format: string;
|
|
25962
|
+
type: string;
|
|
25963
|
+
};
|
|
25545
25964
|
message: {
|
|
25546
25965
|
type: string;
|
|
25547
25966
|
};
|
|
@@ -43942,96 +44361,115 @@ interface Routes {
|
|
|
43942
44361
|
errors: Array<{
|
|
43943
44362
|
message: string;
|
|
43944
44363
|
is_access_code_error: true;
|
|
44364
|
+
created_at?: string | undefined;
|
|
43945
44365
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43946
44366
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
43947
44367
|
} | {
|
|
43948
44368
|
message: string;
|
|
43949
44369
|
is_access_code_error: true;
|
|
44370
|
+
created_at?: string | undefined;
|
|
43950
44371
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43951
44372
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
43952
44373
|
} | {
|
|
43953
44374
|
message: string;
|
|
43954
44375
|
is_access_code_error: true;
|
|
44376
|
+
created_at?: string | undefined;
|
|
43955
44377
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43956
44378
|
error_code: 'failed_to_set_on_device';
|
|
43957
44379
|
} | {
|
|
43958
44380
|
message: string;
|
|
43959
44381
|
is_access_code_error: true;
|
|
44382
|
+
created_at?: string | undefined;
|
|
43960
44383
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43961
44384
|
error_code: 'failed_to_remove_from_device';
|
|
43962
44385
|
} | {
|
|
43963
44386
|
message: string;
|
|
43964
44387
|
is_access_code_error: true;
|
|
44388
|
+
created_at?: string | undefined;
|
|
43965
44389
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43966
44390
|
error_code: 'duplicate_code_on_device';
|
|
43967
44391
|
} | {
|
|
43968
44392
|
message: string;
|
|
43969
44393
|
is_access_code_error: true;
|
|
44394
|
+
created_at?: string | undefined;
|
|
43970
44395
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43971
44396
|
error_code: 'duplicate_code_attempt_prevented';
|
|
43972
44397
|
} | {
|
|
43973
44398
|
message: string;
|
|
43974
44399
|
is_access_code_error: true;
|
|
44400
|
+
created_at?: string | undefined;
|
|
43975
44401
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43976
44402
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
43977
44403
|
} | {
|
|
43978
44404
|
message: string;
|
|
43979
44405
|
is_access_code_error: true;
|
|
44406
|
+
created_at?: string | undefined;
|
|
43980
44407
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43981
44408
|
error_code: 'igloohome_bridge_offline';
|
|
43982
44409
|
} | {
|
|
43983
44410
|
message: string;
|
|
43984
44411
|
is_access_code_error: true;
|
|
44412
|
+
created_at?: string | undefined;
|
|
43985
44413
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43986
44414
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
43987
44415
|
} | {
|
|
43988
44416
|
message: string;
|
|
43989
44417
|
is_access_code_error: true;
|
|
44418
|
+
created_at?: string | undefined;
|
|
43990
44419
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43991
44420
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
43992
44421
|
} | {
|
|
43993
44422
|
message: string;
|
|
43994
44423
|
is_access_code_error: true;
|
|
44424
|
+
created_at?: string | undefined;
|
|
43995
44425
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43996
44426
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
43997
44427
|
} | {
|
|
43998
44428
|
message: string;
|
|
43999
44429
|
is_access_code_error: true;
|
|
44430
|
+
created_at?: string | undefined;
|
|
44000
44431
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44001
44432
|
error_code: 'code_modified_external_to_seam';
|
|
44002
44433
|
} | {
|
|
44003
44434
|
message: string;
|
|
44004
44435
|
is_access_code_error: true;
|
|
44436
|
+
created_at?: string | undefined;
|
|
44005
44437
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44006
44438
|
error_code: 'august_lock_invalid_code_length';
|
|
44007
44439
|
} | {
|
|
44008
44440
|
message: string;
|
|
44009
44441
|
is_access_code_error: true;
|
|
44442
|
+
created_at?: string | undefined;
|
|
44010
44443
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44011
44444
|
error_code: 'august_device_programming_delay';
|
|
44012
44445
|
} | {
|
|
44013
44446
|
message: string;
|
|
44014
44447
|
is_access_code_error: true;
|
|
44448
|
+
created_at?: string | undefined;
|
|
44015
44449
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44016
44450
|
error_code: 'august_device_slots_full';
|
|
44017
44451
|
} | {
|
|
44018
44452
|
message: string;
|
|
44019
44453
|
is_access_code_error: true;
|
|
44454
|
+
created_at?: string | undefined;
|
|
44020
44455
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44021
44456
|
error_code: 'august_lock_missing_keypad';
|
|
44022
44457
|
} | {
|
|
44023
44458
|
message: string;
|
|
44024
44459
|
is_access_code_error: true;
|
|
44460
|
+
created_at?: string | undefined;
|
|
44025
44461
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44026
44462
|
error_code: 'salto_site_user_not_subscribed';
|
|
44027
44463
|
} | {
|
|
44028
44464
|
message: string;
|
|
44029
44465
|
is_access_code_error: true;
|
|
44466
|
+
created_at?: string | undefined;
|
|
44030
44467
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44031
44468
|
error_code: 'hubitat_device_programming_delay';
|
|
44032
44469
|
} | {
|
|
44033
44470
|
message: string;
|
|
44034
44471
|
is_access_code_error: true;
|
|
44472
|
+
created_at?: string | undefined;
|
|
44035
44473
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44036
44474
|
error_code: 'hubitat_no_free_positions_available';
|
|
44037
44475
|
} | {
|
|
@@ -44125,50 +44563,62 @@ interface Routes {
|
|
|
44125
44563
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
44126
44564
|
warnings: Array<{
|
|
44127
44565
|
message: string;
|
|
44566
|
+
created_at?: string | undefined;
|
|
44128
44567
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44129
44568
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
44130
44569
|
} | {
|
|
44131
44570
|
message: string;
|
|
44571
|
+
created_at?: string | undefined;
|
|
44132
44572
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44133
44573
|
warning_code: 'schlage_detected_duplicate';
|
|
44134
44574
|
} | {
|
|
44135
44575
|
message: string;
|
|
44576
|
+
created_at?: string | undefined;
|
|
44136
44577
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44137
44578
|
warning_code: 'schlage_creation_outage';
|
|
44138
44579
|
} | {
|
|
44139
44580
|
message: string;
|
|
44581
|
+
created_at?: string | undefined;
|
|
44140
44582
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44141
44583
|
warning_code: 'salto_office_mode';
|
|
44142
44584
|
} | {
|
|
44143
44585
|
message: string;
|
|
44586
|
+
created_at?: string | undefined;
|
|
44144
44587
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44145
44588
|
warning_code: 'code_modified_external_to_seam';
|
|
44146
44589
|
} | {
|
|
44147
44590
|
message: string;
|
|
44591
|
+
created_at?: string | undefined;
|
|
44148
44592
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44149
44593
|
warning_code: 'delay_in_setting_on_device';
|
|
44150
44594
|
} | {
|
|
44151
44595
|
message: string;
|
|
44596
|
+
created_at?: string | undefined;
|
|
44152
44597
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44153
44598
|
warning_code: 'delay_in_removing_from_device';
|
|
44154
44599
|
} | {
|
|
44155
44600
|
message: string;
|
|
44601
|
+
created_at?: string | undefined;
|
|
44156
44602
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44157
44603
|
warning_code: 'third_party_integration_detected';
|
|
44158
44604
|
} | {
|
|
44159
44605
|
message: string;
|
|
44606
|
+
created_at?: string | undefined;
|
|
44160
44607
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44161
44608
|
warning_code: 'august_device_programming_delay';
|
|
44162
44609
|
} | {
|
|
44163
44610
|
message: string;
|
|
44611
|
+
created_at?: string | undefined;
|
|
44164
44612
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44165
44613
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
44166
44614
|
} | {
|
|
44167
44615
|
message: string;
|
|
44616
|
+
created_at?: string | undefined;
|
|
44168
44617
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44169
44618
|
warning_code: 'management_transferred';
|
|
44170
44619
|
} | {
|
|
44171
44620
|
message: string;
|
|
44621
|
+
created_at?: string | undefined;
|
|
44172
44622
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44173
44623
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
44174
44624
|
}>;
|
|
@@ -44245,96 +44695,115 @@ interface Routes {
|
|
|
44245
44695
|
errors: Array<{
|
|
44246
44696
|
message: string;
|
|
44247
44697
|
is_access_code_error: true;
|
|
44698
|
+
created_at?: string | undefined;
|
|
44248
44699
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44249
44700
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
44250
44701
|
} | {
|
|
44251
44702
|
message: string;
|
|
44252
44703
|
is_access_code_error: true;
|
|
44704
|
+
created_at?: string | undefined;
|
|
44253
44705
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44254
44706
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
44255
44707
|
} | {
|
|
44256
44708
|
message: string;
|
|
44257
44709
|
is_access_code_error: true;
|
|
44710
|
+
created_at?: string | undefined;
|
|
44258
44711
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44259
44712
|
error_code: 'failed_to_set_on_device';
|
|
44260
44713
|
} | {
|
|
44261
44714
|
message: string;
|
|
44262
44715
|
is_access_code_error: true;
|
|
44716
|
+
created_at?: string | undefined;
|
|
44263
44717
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44264
44718
|
error_code: 'failed_to_remove_from_device';
|
|
44265
44719
|
} | {
|
|
44266
44720
|
message: string;
|
|
44267
44721
|
is_access_code_error: true;
|
|
44722
|
+
created_at?: string | undefined;
|
|
44268
44723
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44269
44724
|
error_code: 'duplicate_code_on_device';
|
|
44270
44725
|
} | {
|
|
44271
44726
|
message: string;
|
|
44272
44727
|
is_access_code_error: true;
|
|
44728
|
+
created_at?: string | undefined;
|
|
44273
44729
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44274
44730
|
error_code: 'duplicate_code_attempt_prevented';
|
|
44275
44731
|
} | {
|
|
44276
44732
|
message: string;
|
|
44277
44733
|
is_access_code_error: true;
|
|
44734
|
+
created_at?: string | undefined;
|
|
44278
44735
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44279
44736
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
44280
44737
|
} | {
|
|
44281
44738
|
message: string;
|
|
44282
44739
|
is_access_code_error: true;
|
|
44740
|
+
created_at?: string | undefined;
|
|
44283
44741
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44284
44742
|
error_code: 'igloohome_bridge_offline';
|
|
44285
44743
|
} | {
|
|
44286
44744
|
message: string;
|
|
44287
44745
|
is_access_code_error: true;
|
|
44746
|
+
created_at?: string | undefined;
|
|
44288
44747
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44289
44748
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
44290
44749
|
} | {
|
|
44291
44750
|
message: string;
|
|
44292
44751
|
is_access_code_error: true;
|
|
44752
|
+
created_at?: string | undefined;
|
|
44293
44753
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44294
44754
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
44295
44755
|
} | {
|
|
44296
44756
|
message: string;
|
|
44297
44757
|
is_access_code_error: true;
|
|
44758
|
+
created_at?: string | undefined;
|
|
44298
44759
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44299
44760
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
44300
44761
|
} | {
|
|
44301
44762
|
message: string;
|
|
44302
44763
|
is_access_code_error: true;
|
|
44764
|
+
created_at?: string | undefined;
|
|
44303
44765
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44304
44766
|
error_code: 'code_modified_external_to_seam';
|
|
44305
44767
|
} | {
|
|
44306
44768
|
message: string;
|
|
44307
44769
|
is_access_code_error: true;
|
|
44770
|
+
created_at?: string | undefined;
|
|
44308
44771
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44309
44772
|
error_code: 'august_lock_invalid_code_length';
|
|
44310
44773
|
} | {
|
|
44311
44774
|
message: string;
|
|
44312
44775
|
is_access_code_error: true;
|
|
44776
|
+
created_at?: string | undefined;
|
|
44313
44777
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44314
44778
|
error_code: 'august_device_programming_delay';
|
|
44315
44779
|
} | {
|
|
44316
44780
|
message: string;
|
|
44317
44781
|
is_access_code_error: true;
|
|
44782
|
+
created_at?: string | undefined;
|
|
44318
44783
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44319
44784
|
error_code: 'august_device_slots_full';
|
|
44320
44785
|
} | {
|
|
44321
44786
|
message: string;
|
|
44322
44787
|
is_access_code_error: true;
|
|
44788
|
+
created_at?: string | undefined;
|
|
44323
44789
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44324
44790
|
error_code: 'august_lock_missing_keypad';
|
|
44325
44791
|
} | {
|
|
44326
44792
|
message: string;
|
|
44327
44793
|
is_access_code_error: true;
|
|
44794
|
+
created_at?: string | undefined;
|
|
44328
44795
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44329
44796
|
error_code: 'salto_site_user_not_subscribed';
|
|
44330
44797
|
} | {
|
|
44331
44798
|
message: string;
|
|
44332
44799
|
is_access_code_error: true;
|
|
44800
|
+
created_at?: string | undefined;
|
|
44333
44801
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44334
44802
|
error_code: 'hubitat_device_programming_delay';
|
|
44335
44803
|
} | {
|
|
44336
44804
|
message: string;
|
|
44337
44805
|
is_access_code_error: true;
|
|
44806
|
+
created_at?: string | undefined;
|
|
44338
44807
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44339
44808
|
error_code: 'hubitat_no_free_positions_available';
|
|
44340
44809
|
} | {
|
|
@@ -44428,50 +44897,62 @@ interface Routes {
|
|
|
44428
44897
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
44429
44898
|
warnings: Array<{
|
|
44430
44899
|
message: string;
|
|
44900
|
+
created_at?: string | undefined;
|
|
44431
44901
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44432
44902
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
44433
44903
|
} | {
|
|
44434
44904
|
message: string;
|
|
44905
|
+
created_at?: string | undefined;
|
|
44435
44906
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44436
44907
|
warning_code: 'schlage_detected_duplicate';
|
|
44437
44908
|
} | {
|
|
44438
44909
|
message: string;
|
|
44910
|
+
created_at?: string | undefined;
|
|
44439
44911
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44440
44912
|
warning_code: 'schlage_creation_outage';
|
|
44441
44913
|
} | {
|
|
44442
44914
|
message: string;
|
|
44915
|
+
created_at?: string | undefined;
|
|
44443
44916
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44444
44917
|
warning_code: 'salto_office_mode';
|
|
44445
44918
|
} | {
|
|
44446
44919
|
message: string;
|
|
44920
|
+
created_at?: string | undefined;
|
|
44447
44921
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44448
44922
|
warning_code: 'code_modified_external_to_seam';
|
|
44449
44923
|
} | {
|
|
44450
44924
|
message: string;
|
|
44925
|
+
created_at?: string | undefined;
|
|
44451
44926
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44452
44927
|
warning_code: 'delay_in_setting_on_device';
|
|
44453
44928
|
} | {
|
|
44454
44929
|
message: string;
|
|
44930
|
+
created_at?: string | undefined;
|
|
44455
44931
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44456
44932
|
warning_code: 'delay_in_removing_from_device';
|
|
44457
44933
|
} | {
|
|
44458
44934
|
message: string;
|
|
44935
|
+
created_at?: string | undefined;
|
|
44459
44936
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44460
44937
|
warning_code: 'third_party_integration_detected';
|
|
44461
44938
|
} | {
|
|
44462
44939
|
message: string;
|
|
44940
|
+
created_at?: string | undefined;
|
|
44463
44941
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44464
44942
|
warning_code: 'august_device_programming_delay';
|
|
44465
44943
|
} | {
|
|
44466
44944
|
message: string;
|
|
44945
|
+
created_at?: string | undefined;
|
|
44467
44946
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44468
44947
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
44469
44948
|
} | {
|
|
44470
44949
|
message: string;
|
|
44950
|
+
created_at?: string | undefined;
|
|
44471
44951
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44472
44952
|
warning_code: 'management_transferred';
|
|
44473
44953
|
} | {
|
|
44474
44954
|
message: string;
|
|
44955
|
+
created_at?: string | undefined;
|
|
44475
44956
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44476
44957
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
44477
44958
|
}>;
|
|
@@ -45445,96 +45926,115 @@ interface Routes {
|
|
|
45445
45926
|
errors: Array<{
|
|
45446
45927
|
message: string;
|
|
45447
45928
|
is_access_code_error: true;
|
|
45929
|
+
created_at?: string | undefined;
|
|
45448
45930
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45449
45931
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
45450
45932
|
} | {
|
|
45451
45933
|
message: string;
|
|
45452
45934
|
is_access_code_error: true;
|
|
45935
|
+
created_at?: string | undefined;
|
|
45453
45936
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45454
45937
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
45455
45938
|
} | {
|
|
45456
45939
|
message: string;
|
|
45457
45940
|
is_access_code_error: true;
|
|
45941
|
+
created_at?: string | undefined;
|
|
45458
45942
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45459
45943
|
error_code: 'failed_to_set_on_device';
|
|
45460
45944
|
} | {
|
|
45461
45945
|
message: string;
|
|
45462
45946
|
is_access_code_error: true;
|
|
45947
|
+
created_at?: string | undefined;
|
|
45463
45948
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45464
45949
|
error_code: 'failed_to_remove_from_device';
|
|
45465
45950
|
} | {
|
|
45466
45951
|
message: string;
|
|
45467
45952
|
is_access_code_error: true;
|
|
45953
|
+
created_at?: string | undefined;
|
|
45468
45954
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45469
45955
|
error_code: 'duplicate_code_on_device';
|
|
45470
45956
|
} | {
|
|
45471
45957
|
message: string;
|
|
45472
45958
|
is_access_code_error: true;
|
|
45959
|
+
created_at?: string | undefined;
|
|
45473
45960
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45474
45961
|
error_code: 'duplicate_code_attempt_prevented';
|
|
45475
45962
|
} | {
|
|
45476
45963
|
message: string;
|
|
45477
45964
|
is_access_code_error: true;
|
|
45965
|
+
created_at?: string | undefined;
|
|
45478
45966
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45479
45967
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
45480
45968
|
} | {
|
|
45481
45969
|
message: string;
|
|
45482
45970
|
is_access_code_error: true;
|
|
45971
|
+
created_at?: string | undefined;
|
|
45483
45972
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45484
45973
|
error_code: 'igloohome_bridge_offline';
|
|
45485
45974
|
} | {
|
|
45486
45975
|
message: string;
|
|
45487
45976
|
is_access_code_error: true;
|
|
45977
|
+
created_at?: string | undefined;
|
|
45488
45978
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45489
45979
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
45490
45980
|
} | {
|
|
45491
45981
|
message: string;
|
|
45492
45982
|
is_access_code_error: true;
|
|
45983
|
+
created_at?: string | undefined;
|
|
45493
45984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45494
45985
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
45495
45986
|
} | {
|
|
45496
45987
|
message: string;
|
|
45497
45988
|
is_access_code_error: true;
|
|
45989
|
+
created_at?: string | undefined;
|
|
45498
45990
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45499
45991
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
45500
45992
|
} | {
|
|
45501
45993
|
message: string;
|
|
45502
45994
|
is_access_code_error: true;
|
|
45995
|
+
created_at?: string | undefined;
|
|
45503
45996
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45504
45997
|
error_code: 'code_modified_external_to_seam';
|
|
45505
45998
|
} | {
|
|
45506
45999
|
message: string;
|
|
45507
46000
|
is_access_code_error: true;
|
|
46001
|
+
created_at?: string | undefined;
|
|
45508
46002
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45509
46003
|
error_code: 'august_lock_invalid_code_length';
|
|
45510
46004
|
} | {
|
|
45511
46005
|
message: string;
|
|
45512
46006
|
is_access_code_error: true;
|
|
46007
|
+
created_at?: string | undefined;
|
|
45513
46008
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45514
46009
|
error_code: 'august_device_programming_delay';
|
|
45515
46010
|
} | {
|
|
45516
46011
|
message: string;
|
|
45517
46012
|
is_access_code_error: true;
|
|
46013
|
+
created_at?: string | undefined;
|
|
45518
46014
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45519
46015
|
error_code: 'august_device_slots_full';
|
|
45520
46016
|
} | {
|
|
45521
46017
|
message: string;
|
|
45522
46018
|
is_access_code_error: true;
|
|
46019
|
+
created_at?: string | undefined;
|
|
45523
46020
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45524
46021
|
error_code: 'august_lock_missing_keypad';
|
|
45525
46022
|
} | {
|
|
45526
46023
|
message: string;
|
|
45527
46024
|
is_access_code_error: true;
|
|
46025
|
+
created_at?: string | undefined;
|
|
45528
46026
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45529
46027
|
error_code: 'salto_site_user_not_subscribed';
|
|
45530
46028
|
} | {
|
|
45531
46029
|
message: string;
|
|
45532
46030
|
is_access_code_error: true;
|
|
46031
|
+
created_at?: string | undefined;
|
|
45533
46032
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45534
46033
|
error_code: 'hubitat_device_programming_delay';
|
|
45535
46034
|
} | {
|
|
45536
46035
|
message: string;
|
|
45537
46036
|
is_access_code_error: true;
|
|
46037
|
+
created_at?: string | undefined;
|
|
45538
46038
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45539
46039
|
error_code: 'hubitat_no_free_positions_available';
|
|
45540
46040
|
} | {
|
|
@@ -45628,50 +46128,62 @@ interface Routes {
|
|
|
45628
46128
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
45629
46129
|
warnings: Array<{
|
|
45630
46130
|
message: string;
|
|
46131
|
+
created_at?: string | undefined;
|
|
45631
46132
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45632
46133
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
45633
46134
|
} | {
|
|
45634
46135
|
message: string;
|
|
46136
|
+
created_at?: string | undefined;
|
|
45635
46137
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45636
46138
|
warning_code: 'schlage_detected_duplicate';
|
|
45637
46139
|
} | {
|
|
45638
46140
|
message: string;
|
|
46141
|
+
created_at?: string | undefined;
|
|
45639
46142
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45640
46143
|
warning_code: 'schlage_creation_outage';
|
|
45641
46144
|
} | {
|
|
45642
46145
|
message: string;
|
|
46146
|
+
created_at?: string | undefined;
|
|
45643
46147
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45644
46148
|
warning_code: 'salto_office_mode';
|
|
45645
46149
|
} | {
|
|
45646
46150
|
message: string;
|
|
46151
|
+
created_at?: string | undefined;
|
|
45647
46152
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45648
46153
|
warning_code: 'code_modified_external_to_seam';
|
|
45649
46154
|
} | {
|
|
45650
46155
|
message: string;
|
|
46156
|
+
created_at?: string | undefined;
|
|
45651
46157
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45652
46158
|
warning_code: 'delay_in_setting_on_device';
|
|
45653
46159
|
} | {
|
|
45654
46160
|
message: string;
|
|
46161
|
+
created_at?: string | undefined;
|
|
45655
46162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45656
46163
|
warning_code: 'delay_in_removing_from_device';
|
|
45657
46164
|
} | {
|
|
45658
46165
|
message: string;
|
|
46166
|
+
created_at?: string | undefined;
|
|
45659
46167
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45660
46168
|
warning_code: 'third_party_integration_detected';
|
|
45661
46169
|
} | {
|
|
45662
46170
|
message: string;
|
|
46171
|
+
created_at?: string | undefined;
|
|
45663
46172
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45664
46173
|
warning_code: 'august_device_programming_delay';
|
|
45665
46174
|
} | {
|
|
45666
46175
|
message: string;
|
|
46176
|
+
created_at?: string | undefined;
|
|
45667
46177
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45668
46178
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
45669
46179
|
} | {
|
|
45670
46180
|
message: string;
|
|
46181
|
+
created_at?: string | undefined;
|
|
45671
46182
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45672
46183
|
warning_code: 'management_transferred';
|
|
45673
46184
|
} | {
|
|
45674
46185
|
message: string;
|
|
46186
|
+
created_at?: string | undefined;
|
|
45675
46187
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45676
46188
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
45677
46189
|
}>;
|
|
@@ -45735,96 +46247,115 @@ interface Routes {
|
|
|
45735
46247
|
errors: Array<{
|
|
45736
46248
|
message: string;
|
|
45737
46249
|
is_access_code_error: true;
|
|
46250
|
+
created_at?: string | undefined;
|
|
45738
46251
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45739
46252
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
45740
46253
|
} | {
|
|
45741
46254
|
message: string;
|
|
45742
46255
|
is_access_code_error: true;
|
|
46256
|
+
created_at?: string | undefined;
|
|
45743
46257
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45744
46258
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
45745
46259
|
} | {
|
|
45746
46260
|
message: string;
|
|
45747
46261
|
is_access_code_error: true;
|
|
46262
|
+
created_at?: string | undefined;
|
|
45748
46263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45749
46264
|
error_code: 'failed_to_set_on_device';
|
|
45750
46265
|
} | {
|
|
45751
46266
|
message: string;
|
|
45752
46267
|
is_access_code_error: true;
|
|
46268
|
+
created_at?: string | undefined;
|
|
45753
46269
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45754
46270
|
error_code: 'failed_to_remove_from_device';
|
|
45755
46271
|
} | {
|
|
45756
46272
|
message: string;
|
|
45757
46273
|
is_access_code_error: true;
|
|
46274
|
+
created_at?: string | undefined;
|
|
45758
46275
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45759
46276
|
error_code: 'duplicate_code_on_device';
|
|
45760
46277
|
} | {
|
|
45761
46278
|
message: string;
|
|
45762
46279
|
is_access_code_error: true;
|
|
46280
|
+
created_at?: string | undefined;
|
|
45763
46281
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45764
46282
|
error_code: 'duplicate_code_attempt_prevented';
|
|
45765
46283
|
} | {
|
|
45766
46284
|
message: string;
|
|
45767
46285
|
is_access_code_error: true;
|
|
46286
|
+
created_at?: string | undefined;
|
|
45768
46287
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45769
46288
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
45770
46289
|
} | {
|
|
45771
46290
|
message: string;
|
|
45772
46291
|
is_access_code_error: true;
|
|
46292
|
+
created_at?: string | undefined;
|
|
45773
46293
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45774
46294
|
error_code: 'igloohome_bridge_offline';
|
|
45775
46295
|
} | {
|
|
45776
46296
|
message: string;
|
|
45777
46297
|
is_access_code_error: true;
|
|
46298
|
+
created_at?: string | undefined;
|
|
45778
46299
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45779
46300
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
45780
46301
|
} | {
|
|
45781
46302
|
message: string;
|
|
45782
46303
|
is_access_code_error: true;
|
|
46304
|
+
created_at?: string | undefined;
|
|
45783
46305
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45784
46306
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
45785
46307
|
} | {
|
|
45786
46308
|
message: string;
|
|
45787
46309
|
is_access_code_error: true;
|
|
46310
|
+
created_at?: string | undefined;
|
|
45788
46311
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45789
46312
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
45790
46313
|
} | {
|
|
45791
46314
|
message: string;
|
|
45792
46315
|
is_access_code_error: true;
|
|
46316
|
+
created_at?: string | undefined;
|
|
45793
46317
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45794
46318
|
error_code: 'code_modified_external_to_seam';
|
|
45795
46319
|
} | {
|
|
45796
46320
|
message: string;
|
|
45797
46321
|
is_access_code_error: true;
|
|
46322
|
+
created_at?: string | undefined;
|
|
45798
46323
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45799
46324
|
error_code: 'august_lock_invalid_code_length';
|
|
45800
46325
|
} | {
|
|
45801
46326
|
message: string;
|
|
45802
46327
|
is_access_code_error: true;
|
|
46328
|
+
created_at?: string | undefined;
|
|
45803
46329
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45804
46330
|
error_code: 'august_device_programming_delay';
|
|
45805
46331
|
} | {
|
|
45806
46332
|
message: string;
|
|
45807
46333
|
is_access_code_error: true;
|
|
46334
|
+
created_at?: string | undefined;
|
|
45808
46335
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45809
46336
|
error_code: 'august_device_slots_full';
|
|
45810
46337
|
} | {
|
|
45811
46338
|
message: string;
|
|
45812
46339
|
is_access_code_error: true;
|
|
46340
|
+
created_at?: string | undefined;
|
|
45813
46341
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45814
46342
|
error_code: 'august_lock_missing_keypad';
|
|
45815
46343
|
} | {
|
|
45816
46344
|
message: string;
|
|
45817
46345
|
is_access_code_error: true;
|
|
46346
|
+
created_at?: string | undefined;
|
|
45818
46347
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45819
46348
|
error_code: 'salto_site_user_not_subscribed';
|
|
45820
46349
|
} | {
|
|
45821
46350
|
message: string;
|
|
45822
46351
|
is_access_code_error: true;
|
|
46352
|
+
created_at?: string | undefined;
|
|
45823
46353
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45824
46354
|
error_code: 'hubitat_device_programming_delay';
|
|
45825
46355
|
} | {
|
|
45826
46356
|
message: string;
|
|
45827
46357
|
is_access_code_error: true;
|
|
46358
|
+
created_at?: string | undefined;
|
|
45828
46359
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45829
46360
|
error_code: 'hubitat_no_free_positions_available';
|
|
45830
46361
|
} | {
|
|
@@ -45918,50 +46449,62 @@ interface Routes {
|
|
|
45918
46449
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
45919
46450
|
warnings: Array<{
|
|
45920
46451
|
message: string;
|
|
46452
|
+
created_at?: string | undefined;
|
|
45921
46453
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45922
46454
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
45923
46455
|
} | {
|
|
45924
46456
|
message: string;
|
|
46457
|
+
created_at?: string | undefined;
|
|
45925
46458
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45926
46459
|
warning_code: 'schlage_detected_duplicate';
|
|
45927
46460
|
} | {
|
|
45928
46461
|
message: string;
|
|
46462
|
+
created_at?: string | undefined;
|
|
45929
46463
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45930
46464
|
warning_code: 'schlage_creation_outage';
|
|
45931
46465
|
} | {
|
|
45932
46466
|
message: string;
|
|
46467
|
+
created_at?: string | undefined;
|
|
45933
46468
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45934
46469
|
warning_code: 'salto_office_mode';
|
|
45935
46470
|
} | {
|
|
45936
46471
|
message: string;
|
|
46472
|
+
created_at?: string | undefined;
|
|
45937
46473
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45938
46474
|
warning_code: 'code_modified_external_to_seam';
|
|
45939
46475
|
} | {
|
|
45940
46476
|
message: string;
|
|
46477
|
+
created_at?: string | undefined;
|
|
45941
46478
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45942
46479
|
warning_code: 'delay_in_setting_on_device';
|
|
45943
46480
|
} | {
|
|
45944
46481
|
message: string;
|
|
46482
|
+
created_at?: string | undefined;
|
|
45945
46483
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45946
46484
|
warning_code: 'delay_in_removing_from_device';
|
|
45947
46485
|
} | {
|
|
45948
46486
|
message: string;
|
|
46487
|
+
created_at?: string | undefined;
|
|
45949
46488
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45950
46489
|
warning_code: 'third_party_integration_detected';
|
|
45951
46490
|
} | {
|
|
45952
46491
|
message: string;
|
|
46492
|
+
created_at?: string | undefined;
|
|
45953
46493
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45954
46494
|
warning_code: 'august_device_programming_delay';
|
|
45955
46495
|
} | {
|
|
45956
46496
|
message: string;
|
|
46497
|
+
created_at?: string | undefined;
|
|
45957
46498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45958
46499
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
45959
46500
|
} | {
|
|
45960
46501
|
message: string;
|
|
46502
|
+
created_at?: string | undefined;
|
|
45961
46503
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45962
46504
|
warning_code: 'management_transferred';
|
|
45963
46505
|
} | {
|
|
45964
46506
|
message: string;
|
|
46507
|
+
created_at?: string | undefined;
|
|
45965
46508
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45966
46509
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
45967
46510
|
}>;
|
|
@@ -46024,96 +46567,115 @@ interface Routes {
|
|
|
46024
46567
|
errors: Array<{
|
|
46025
46568
|
message: string;
|
|
46026
46569
|
is_access_code_error: true;
|
|
46570
|
+
created_at?: string | undefined;
|
|
46027
46571
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46028
46572
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
46029
46573
|
} | {
|
|
46030
46574
|
message: string;
|
|
46031
46575
|
is_access_code_error: true;
|
|
46576
|
+
created_at?: string | undefined;
|
|
46032
46577
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46033
46578
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
46034
46579
|
} | {
|
|
46035
46580
|
message: string;
|
|
46036
46581
|
is_access_code_error: true;
|
|
46582
|
+
created_at?: string | undefined;
|
|
46037
46583
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46038
46584
|
error_code: 'failed_to_set_on_device';
|
|
46039
46585
|
} | {
|
|
46040
46586
|
message: string;
|
|
46041
46587
|
is_access_code_error: true;
|
|
46588
|
+
created_at?: string | undefined;
|
|
46042
46589
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46043
46590
|
error_code: 'failed_to_remove_from_device';
|
|
46044
46591
|
} | {
|
|
46045
46592
|
message: string;
|
|
46046
46593
|
is_access_code_error: true;
|
|
46594
|
+
created_at?: string | undefined;
|
|
46047
46595
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46048
46596
|
error_code: 'duplicate_code_on_device';
|
|
46049
46597
|
} | {
|
|
46050
46598
|
message: string;
|
|
46051
46599
|
is_access_code_error: true;
|
|
46600
|
+
created_at?: string | undefined;
|
|
46052
46601
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46053
46602
|
error_code: 'duplicate_code_attempt_prevented';
|
|
46054
46603
|
} | {
|
|
46055
46604
|
message: string;
|
|
46056
46605
|
is_access_code_error: true;
|
|
46606
|
+
created_at?: string | undefined;
|
|
46057
46607
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46058
46608
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
46059
46609
|
} | {
|
|
46060
46610
|
message: string;
|
|
46061
46611
|
is_access_code_error: true;
|
|
46612
|
+
created_at?: string | undefined;
|
|
46062
46613
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46063
46614
|
error_code: 'igloohome_bridge_offline';
|
|
46064
46615
|
} | {
|
|
46065
46616
|
message: string;
|
|
46066
46617
|
is_access_code_error: true;
|
|
46618
|
+
created_at?: string | undefined;
|
|
46067
46619
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46068
46620
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
46069
46621
|
} | {
|
|
46070
46622
|
message: string;
|
|
46071
46623
|
is_access_code_error: true;
|
|
46624
|
+
created_at?: string | undefined;
|
|
46072
46625
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46073
46626
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
46074
46627
|
} | {
|
|
46075
46628
|
message: string;
|
|
46076
46629
|
is_access_code_error: true;
|
|
46630
|
+
created_at?: string | undefined;
|
|
46077
46631
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46078
46632
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
46079
46633
|
} | {
|
|
46080
46634
|
message: string;
|
|
46081
46635
|
is_access_code_error: true;
|
|
46636
|
+
created_at?: string | undefined;
|
|
46082
46637
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46083
46638
|
error_code: 'code_modified_external_to_seam';
|
|
46084
46639
|
} | {
|
|
46085
46640
|
message: string;
|
|
46086
46641
|
is_access_code_error: true;
|
|
46642
|
+
created_at?: string | undefined;
|
|
46087
46643
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46088
46644
|
error_code: 'august_lock_invalid_code_length';
|
|
46089
46645
|
} | {
|
|
46090
46646
|
message: string;
|
|
46091
46647
|
is_access_code_error: true;
|
|
46648
|
+
created_at?: string | undefined;
|
|
46092
46649
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46093
46650
|
error_code: 'august_device_programming_delay';
|
|
46094
46651
|
} | {
|
|
46095
46652
|
message: string;
|
|
46096
46653
|
is_access_code_error: true;
|
|
46654
|
+
created_at?: string | undefined;
|
|
46097
46655
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46098
46656
|
error_code: 'august_device_slots_full';
|
|
46099
46657
|
} | {
|
|
46100
46658
|
message: string;
|
|
46101
46659
|
is_access_code_error: true;
|
|
46660
|
+
created_at?: string | undefined;
|
|
46102
46661
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46103
46662
|
error_code: 'august_lock_missing_keypad';
|
|
46104
46663
|
} | {
|
|
46105
46664
|
message: string;
|
|
46106
46665
|
is_access_code_error: true;
|
|
46666
|
+
created_at?: string | undefined;
|
|
46107
46667
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46108
46668
|
error_code: 'salto_site_user_not_subscribed';
|
|
46109
46669
|
} | {
|
|
46110
46670
|
message: string;
|
|
46111
46671
|
is_access_code_error: true;
|
|
46672
|
+
created_at?: string | undefined;
|
|
46112
46673
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46113
46674
|
error_code: 'hubitat_device_programming_delay';
|
|
46114
46675
|
} | {
|
|
46115
46676
|
message: string;
|
|
46116
46677
|
is_access_code_error: true;
|
|
46678
|
+
created_at?: string | undefined;
|
|
46117
46679
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46118
46680
|
error_code: 'hubitat_no_free_positions_available';
|
|
46119
46681
|
} | {
|
|
@@ -46207,50 +46769,62 @@ interface Routes {
|
|
|
46207
46769
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
46208
46770
|
warnings: Array<{
|
|
46209
46771
|
message: string;
|
|
46772
|
+
created_at?: string | undefined;
|
|
46210
46773
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46211
46774
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
46212
46775
|
} | {
|
|
46213
46776
|
message: string;
|
|
46777
|
+
created_at?: string | undefined;
|
|
46214
46778
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46215
46779
|
warning_code: 'schlage_detected_duplicate';
|
|
46216
46780
|
} | {
|
|
46217
46781
|
message: string;
|
|
46782
|
+
created_at?: string | undefined;
|
|
46218
46783
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46219
46784
|
warning_code: 'schlage_creation_outage';
|
|
46220
46785
|
} | {
|
|
46221
46786
|
message: string;
|
|
46787
|
+
created_at?: string | undefined;
|
|
46222
46788
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46223
46789
|
warning_code: 'salto_office_mode';
|
|
46224
46790
|
} | {
|
|
46225
46791
|
message: string;
|
|
46792
|
+
created_at?: string | undefined;
|
|
46226
46793
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46227
46794
|
warning_code: 'code_modified_external_to_seam';
|
|
46228
46795
|
} | {
|
|
46229
46796
|
message: string;
|
|
46797
|
+
created_at?: string | undefined;
|
|
46230
46798
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46231
46799
|
warning_code: 'delay_in_setting_on_device';
|
|
46232
46800
|
} | {
|
|
46233
46801
|
message: string;
|
|
46802
|
+
created_at?: string | undefined;
|
|
46234
46803
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46235
46804
|
warning_code: 'delay_in_removing_from_device';
|
|
46236
46805
|
} | {
|
|
46237
46806
|
message: string;
|
|
46807
|
+
created_at?: string | undefined;
|
|
46238
46808
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46239
46809
|
warning_code: 'third_party_integration_detected';
|
|
46240
46810
|
} | {
|
|
46241
46811
|
message: string;
|
|
46812
|
+
created_at?: string | undefined;
|
|
46242
46813
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46243
46814
|
warning_code: 'august_device_programming_delay';
|
|
46244
46815
|
} | {
|
|
46245
46816
|
message: string;
|
|
46817
|
+
created_at?: string | undefined;
|
|
46246
46818
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46247
46819
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
46248
46820
|
} | {
|
|
46249
46821
|
message: string;
|
|
46822
|
+
created_at?: string | undefined;
|
|
46250
46823
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46251
46824
|
warning_code: 'management_transferred';
|
|
46252
46825
|
} | {
|
|
46253
46826
|
message: string;
|
|
46827
|
+
created_at?: string | undefined;
|
|
46254
46828
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46255
46829
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
46256
46830
|
}>;
|
|
@@ -46301,96 +46875,115 @@ interface Routes {
|
|
|
46301
46875
|
errors: Array<{
|
|
46302
46876
|
message: string;
|
|
46303
46877
|
is_access_code_error: true;
|
|
46878
|
+
created_at?: string | undefined;
|
|
46304
46879
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46305
46880
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
46306
46881
|
} | {
|
|
46307
46882
|
message: string;
|
|
46308
46883
|
is_access_code_error: true;
|
|
46884
|
+
created_at?: string | undefined;
|
|
46309
46885
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46310
46886
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
46311
46887
|
} | {
|
|
46312
46888
|
message: string;
|
|
46313
46889
|
is_access_code_error: true;
|
|
46890
|
+
created_at?: string | undefined;
|
|
46314
46891
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46315
46892
|
error_code: 'failed_to_set_on_device';
|
|
46316
46893
|
} | {
|
|
46317
46894
|
message: string;
|
|
46318
46895
|
is_access_code_error: true;
|
|
46896
|
+
created_at?: string | undefined;
|
|
46319
46897
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46320
46898
|
error_code: 'failed_to_remove_from_device';
|
|
46321
46899
|
} | {
|
|
46322
46900
|
message: string;
|
|
46323
46901
|
is_access_code_error: true;
|
|
46902
|
+
created_at?: string | undefined;
|
|
46324
46903
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46325
46904
|
error_code: 'duplicate_code_on_device';
|
|
46326
46905
|
} | {
|
|
46327
46906
|
message: string;
|
|
46328
46907
|
is_access_code_error: true;
|
|
46908
|
+
created_at?: string | undefined;
|
|
46329
46909
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46330
46910
|
error_code: 'duplicate_code_attempt_prevented';
|
|
46331
46911
|
} | {
|
|
46332
46912
|
message: string;
|
|
46333
46913
|
is_access_code_error: true;
|
|
46914
|
+
created_at?: string | undefined;
|
|
46334
46915
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46335
46916
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
46336
46917
|
} | {
|
|
46337
46918
|
message: string;
|
|
46338
46919
|
is_access_code_error: true;
|
|
46920
|
+
created_at?: string | undefined;
|
|
46339
46921
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46340
46922
|
error_code: 'igloohome_bridge_offline';
|
|
46341
46923
|
} | {
|
|
46342
46924
|
message: string;
|
|
46343
46925
|
is_access_code_error: true;
|
|
46926
|
+
created_at?: string | undefined;
|
|
46344
46927
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46345
46928
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
46346
46929
|
} | {
|
|
46347
46930
|
message: string;
|
|
46348
46931
|
is_access_code_error: true;
|
|
46932
|
+
created_at?: string | undefined;
|
|
46349
46933
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46350
46934
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
46351
46935
|
} | {
|
|
46352
46936
|
message: string;
|
|
46353
46937
|
is_access_code_error: true;
|
|
46938
|
+
created_at?: string | undefined;
|
|
46354
46939
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46355
46940
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
46356
46941
|
} | {
|
|
46357
46942
|
message: string;
|
|
46358
46943
|
is_access_code_error: true;
|
|
46944
|
+
created_at?: string | undefined;
|
|
46359
46945
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46360
46946
|
error_code: 'code_modified_external_to_seam';
|
|
46361
46947
|
} | {
|
|
46362
46948
|
message: string;
|
|
46363
46949
|
is_access_code_error: true;
|
|
46950
|
+
created_at?: string | undefined;
|
|
46364
46951
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46365
46952
|
error_code: 'august_lock_invalid_code_length';
|
|
46366
46953
|
} | {
|
|
46367
46954
|
message: string;
|
|
46368
46955
|
is_access_code_error: true;
|
|
46956
|
+
created_at?: string | undefined;
|
|
46369
46957
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46370
46958
|
error_code: 'august_device_programming_delay';
|
|
46371
46959
|
} | {
|
|
46372
46960
|
message: string;
|
|
46373
46961
|
is_access_code_error: true;
|
|
46962
|
+
created_at?: string | undefined;
|
|
46374
46963
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46375
46964
|
error_code: 'august_device_slots_full';
|
|
46376
46965
|
} | {
|
|
46377
46966
|
message: string;
|
|
46378
46967
|
is_access_code_error: true;
|
|
46968
|
+
created_at?: string | undefined;
|
|
46379
46969
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46380
46970
|
error_code: 'august_lock_missing_keypad';
|
|
46381
46971
|
} | {
|
|
46382
46972
|
message: string;
|
|
46383
46973
|
is_access_code_error: true;
|
|
46974
|
+
created_at?: string | undefined;
|
|
46384
46975
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46385
46976
|
error_code: 'salto_site_user_not_subscribed';
|
|
46386
46977
|
} | {
|
|
46387
46978
|
message: string;
|
|
46388
46979
|
is_access_code_error: true;
|
|
46980
|
+
created_at?: string | undefined;
|
|
46389
46981
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46390
46982
|
error_code: 'hubitat_device_programming_delay';
|
|
46391
46983
|
} | {
|
|
46392
46984
|
message: string;
|
|
46393
46985
|
is_access_code_error: true;
|
|
46986
|
+
created_at?: string | undefined;
|
|
46394
46987
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46395
46988
|
error_code: 'hubitat_no_free_positions_available';
|
|
46396
46989
|
} | {
|
|
@@ -46484,50 +47077,62 @@ interface Routes {
|
|
|
46484
47077
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
46485
47078
|
warnings: Array<{
|
|
46486
47079
|
message: string;
|
|
47080
|
+
created_at?: string | undefined;
|
|
46487
47081
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46488
47082
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
46489
47083
|
} | {
|
|
46490
47084
|
message: string;
|
|
47085
|
+
created_at?: string | undefined;
|
|
46491
47086
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46492
47087
|
warning_code: 'schlage_detected_duplicate';
|
|
46493
47088
|
} | {
|
|
46494
47089
|
message: string;
|
|
47090
|
+
created_at?: string | undefined;
|
|
46495
47091
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46496
47092
|
warning_code: 'schlage_creation_outage';
|
|
46497
47093
|
} | {
|
|
46498
47094
|
message: string;
|
|
47095
|
+
created_at?: string | undefined;
|
|
46499
47096
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46500
47097
|
warning_code: 'salto_office_mode';
|
|
46501
47098
|
} | {
|
|
46502
47099
|
message: string;
|
|
47100
|
+
created_at?: string | undefined;
|
|
46503
47101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46504
47102
|
warning_code: 'code_modified_external_to_seam';
|
|
46505
47103
|
} | {
|
|
46506
47104
|
message: string;
|
|
47105
|
+
created_at?: string | undefined;
|
|
46507
47106
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46508
47107
|
warning_code: 'delay_in_setting_on_device';
|
|
46509
47108
|
} | {
|
|
46510
47109
|
message: string;
|
|
47110
|
+
created_at?: string | undefined;
|
|
46511
47111
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46512
47112
|
warning_code: 'delay_in_removing_from_device';
|
|
46513
47113
|
} | {
|
|
46514
47114
|
message: string;
|
|
47115
|
+
created_at?: string | undefined;
|
|
46515
47116
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46516
47117
|
warning_code: 'third_party_integration_detected';
|
|
46517
47118
|
} | {
|
|
46518
47119
|
message: string;
|
|
47120
|
+
created_at?: string | undefined;
|
|
46519
47121
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46520
47122
|
warning_code: 'august_device_programming_delay';
|
|
46521
47123
|
} | {
|
|
46522
47124
|
message: string;
|
|
47125
|
+
created_at?: string | undefined;
|
|
46523
47126
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46524
47127
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
46525
47128
|
} | {
|
|
46526
47129
|
message: string;
|
|
47130
|
+
created_at?: string | undefined;
|
|
46527
47131
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46528
47132
|
warning_code: 'management_transferred';
|
|
46529
47133
|
} | {
|
|
46530
47134
|
message: string;
|
|
47135
|
+
created_at?: string | undefined;
|
|
46531
47136
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46532
47137
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
46533
47138
|
}>;
|
|
@@ -46586,96 +47191,115 @@ interface Routes {
|
|
|
46586
47191
|
errors: Array<{
|
|
46587
47192
|
message: string;
|
|
46588
47193
|
is_access_code_error: true;
|
|
47194
|
+
created_at?: string | undefined;
|
|
46589
47195
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46590
47196
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
46591
47197
|
} | {
|
|
46592
47198
|
message: string;
|
|
46593
47199
|
is_access_code_error: true;
|
|
47200
|
+
created_at?: string | undefined;
|
|
46594
47201
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46595
47202
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
46596
47203
|
} | {
|
|
46597
47204
|
message: string;
|
|
46598
47205
|
is_access_code_error: true;
|
|
47206
|
+
created_at?: string | undefined;
|
|
46599
47207
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46600
47208
|
error_code: 'failed_to_set_on_device';
|
|
46601
47209
|
} | {
|
|
46602
47210
|
message: string;
|
|
46603
47211
|
is_access_code_error: true;
|
|
47212
|
+
created_at?: string | undefined;
|
|
46604
47213
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46605
47214
|
error_code: 'failed_to_remove_from_device';
|
|
46606
47215
|
} | {
|
|
46607
47216
|
message: string;
|
|
46608
47217
|
is_access_code_error: true;
|
|
47218
|
+
created_at?: string | undefined;
|
|
46609
47219
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46610
47220
|
error_code: 'duplicate_code_on_device';
|
|
46611
47221
|
} | {
|
|
46612
47222
|
message: string;
|
|
46613
47223
|
is_access_code_error: true;
|
|
47224
|
+
created_at?: string | undefined;
|
|
46614
47225
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46615
47226
|
error_code: 'duplicate_code_attempt_prevented';
|
|
46616
47227
|
} | {
|
|
46617
47228
|
message: string;
|
|
46618
47229
|
is_access_code_error: true;
|
|
47230
|
+
created_at?: string | undefined;
|
|
46619
47231
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46620
47232
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
46621
47233
|
} | {
|
|
46622
47234
|
message: string;
|
|
46623
47235
|
is_access_code_error: true;
|
|
47236
|
+
created_at?: string | undefined;
|
|
46624
47237
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46625
47238
|
error_code: 'igloohome_bridge_offline';
|
|
46626
47239
|
} | {
|
|
46627
47240
|
message: string;
|
|
46628
47241
|
is_access_code_error: true;
|
|
47242
|
+
created_at?: string | undefined;
|
|
46629
47243
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46630
47244
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
46631
47245
|
} | {
|
|
46632
47246
|
message: string;
|
|
46633
47247
|
is_access_code_error: true;
|
|
47248
|
+
created_at?: string | undefined;
|
|
46634
47249
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46635
47250
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
46636
47251
|
} | {
|
|
46637
47252
|
message: string;
|
|
46638
47253
|
is_access_code_error: true;
|
|
47254
|
+
created_at?: string | undefined;
|
|
46639
47255
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46640
47256
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
46641
47257
|
} | {
|
|
46642
47258
|
message: string;
|
|
46643
47259
|
is_access_code_error: true;
|
|
47260
|
+
created_at?: string | undefined;
|
|
46644
47261
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46645
47262
|
error_code: 'code_modified_external_to_seam';
|
|
46646
47263
|
} | {
|
|
46647
47264
|
message: string;
|
|
46648
47265
|
is_access_code_error: true;
|
|
47266
|
+
created_at?: string | undefined;
|
|
46649
47267
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46650
47268
|
error_code: 'august_lock_invalid_code_length';
|
|
46651
47269
|
} | {
|
|
46652
47270
|
message: string;
|
|
46653
47271
|
is_access_code_error: true;
|
|
47272
|
+
created_at?: string | undefined;
|
|
46654
47273
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46655
47274
|
error_code: 'august_device_programming_delay';
|
|
46656
47275
|
} | {
|
|
46657
47276
|
message: string;
|
|
46658
47277
|
is_access_code_error: true;
|
|
47278
|
+
created_at?: string | undefined;
|
|
46659
47279
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46660
47280
|
error_code: 'august_device_slots_full';
|
|
46661
47281
|
} | {
|
|
46662
47282
|
message: string;
|
|
46663
47283
|
is_access_code_error: true;
|
|
47284
|
+
created_at?: string | undefined;
|
|
46664
47285
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46665
47286
|
error_code: 'august_lock_missing_keypad';
|
|
46666
47287
|
} | {
|
|
46667
47288
|
message: string;
|
|
46668
47289
|
is_access_code_error: true;
|
|
47290
|
+
created_at?: string | undefined;
|
|
46669
47291
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46670
47292
|
error_code: 'salto_site_user_not_subscribed';
|
|
46671
47293
|
} | {
|
|
46672
47294
|
message: string;
|
|
46673
47295
|
is_access_code_error: true;
|
|
47296
|
+
created_at?: string | undefined;
|
|
46674
47297
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46675
47298
|
error_code: 'hubitat_device_programming_delay';
|
|
46676
47299
|
} | {
|
|
46677
47300
|
message: string;
|
|
46678
47301
|
is_access_code_error: true;
|
|
47302
|
+
created_at?: string | undefined;
|
|
46679
47303
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46680
47304
|
error_code: 'hubitat_no_free_positions_available';
|
|
46681
47305
|
} | {
|
|
@@ -46769,50 +47393,62 @@ interface Routes {
|
|
|
46769
47393
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
46770
47394
|
warnings: Array<{
|
|
46771
47395
|
message: string;
|
|
47396
|
+
created_at?: string | undefined;
|
|
46772
47397
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46773
47398
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
46774
47399
|
} | {
|
|
46775
47400
|
message: string;
|
|
47401
|
+
created_at?: string | undefined;
|
|
46776
47402
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46777
47403
|
warning_code: 'schlage_detected_duplicate';
|
|
46778
47404
|
} | {
|
|
46779
47405
|
message: string;
|
|
47406
|
+
created_at?: string | undefined;
|
|
46780
47407
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46781
47408
|
warning_code: 'schlage_creation_outage';
|
|
46782
47409
|
} | {
|
|
46783
47410
|
message: string;
|
|
47411
|
+
created_at?: string | undefined;
|
|
46784
47412
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46785
47413
|
warning_code: 'salto_office_mode';
|
|
46786
47414
|
} | {
|
|
46787
47415
|
message: string;
|
|
47416
|
+
created_at?: string | undefined;
|
|
46788
47417
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46789
47418
|
warning_code: 'code_modified_external_to_seam';
|
|
46790
47419
|
} | {
|
|
46791
47420
|
message: string;
|
|
47421
|
+
created_at?: string | undefined;
|
|
46792
47422
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46793
47423
|
warning_code: 'delay_in_setting_on_device';
|
|
46794
47424
|
} | {
|
|
46795
47425
|
message: string;
|
|
47426
|
+
created_at?: string | undefined;
|
|
46796
47427
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46797
47428
|
warning_code: 'delay_in_removing_from_device';
|
|
46798
47429
|
} | {
|
|
46799
47430
|
message: string;
|
|
47431
|
+
created_at?: string | undefined;
|
|
46800
47432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46801
47433
|
warning_code: 'third_party_integration_detected';
|
|
46802
47434
|
} | {
|
|
46803
47435
|
message: string;
|
|
47436
|
+
created_at?: string | undefined;
|
|
46804
47437
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46805
47438
|
warning_code: 'august_device_programming_delay';
|
|
46806
47439
|
} | {
|
|
46807
47440
|
message: string;
|
|
47441
|
+
created_at?: string | undefined;
|
|
46808
47442
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46809
47443
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
46810
47444
|
} | {
|
|
46811
47445
|
message: string;
|
|
47446
|
+
created_at?: string | undefined;
|
|
46812
47447
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46813
47448
|
warning_code: 'management_transferred';
|
|
46814
47449
|
} | {
|
|
46815
47450
|
message: string;
|
|
47451
|
+
created_at?: string | undefined;
|
|
46816
47452
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46817
47453
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
46818
47454
|
}>;
|
|
@@ -47762,96 +48398,115 @@ interface Routes {
|
|
|
47762
48398
|
errors: Array<{
|
|
47763
48399
|
message: string;
|
|
47764
48400
|
is_access_code_error: true;
|
|
48401
|
+
created_at?: string | undefined;
|
|
47765
48402
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47766
48403
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
47767
48404
|
} | {
|
|
47768
48405
|
message: string;
|
|
47769
48406
|
is_access_code_error: true;
|
|
48407
|
+
created_at?: string | undefined;
|
|
47770
48408
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47771
48409
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
47772
48410
|
} | {
|
|
47773
48411
|
message: string;
|
|
47774
48412
|
is_access_code_error: true;
|
|
48413
|
+
created_at?: string | undefined;
|
|
47775
48414
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47776
48415
|
error_code: 'failed_to_set_on_device';
|
|
47777
48416
|
} | {
|
|
47778
48417
|
message: string;
|
|
47779
48418
|
is_access_code_error: true;
|
|
48419
|
+
created_at?: string | undefined;
|
|
47780
48420
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47781
48421
|
error_code: 'failed_to_remove_from_device';
|
|
47782
48422
|
} | {
|
|
47783
48423
|
message: string;
|
|
47784
48424
|
is_access_code_error: true;
|
|
48425
|
+
created_at?: string | undefined;
|
|
47785
48426
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47786
48427
|
error_code: 'duplicate_code_on_device';
|
|
47787
48428
|
} | {
|
|
47788
48429
|
message: string;
|
|
47789
48430
|
is_access_code_error: true;
|
|
48431
|
+
created_at?: string | undefined;
|
|
47790
48432
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47791
48433
|
error_code: 'duplicate_code_attempt_prevented';
|
|
47792
48434
|
} | {
|
|
47793
48435
|
message: string;
|
|
47794
48436
|
is_access_code_error: true;
|
|
48437
|
+
created_at?: string | undefined;
|
|
47795
48438
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47796
48439
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
47797
48440
|
} | {
|
|
47798
48441
|
message: string;
|
|
47799
48442
|
is_access_code_error: true;
|
|
48443
|
+
created_at?: string | undefined;
|
|
47800
48444
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47801
48445
|
error_code: 'igloohome_bridge_offline';
|
|
47802
48446
|
} | {
|
|
47803
48447
|
message: string;
|
|
47804
48448
|
is_access_code_error: true;
|
|
48449
|
+
created_at?: string | undefined;
|
|
47805
48450
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47806
48451
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
47807
48452
|
} | {
|
|
47808
48453
|
message: string;
|
|
47809
48454
|
is_access_code_error: true;
|
|
48455
|
+
created_at?: string | undefined;
|
|
47810
48456
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47811
48457
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
47812
48458
|
} | {
|
|
47813
48459
|
message: string;
|
|
47814
48460
|
is_access_code_error: true;
|
|
48461
|
+
created_at?: string | undefined;
|
|
47815
48462
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47816
48463
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
47817
48464
|
} | {
|
|
47818
48465
|
message: string;
|
|
47819
48466
|
is_access_code_error: true;
|
|
48467
|
+
created_at?: string | undefined;
|
|
47820
48468
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47821
48469
|
error_code: 'code_modified_external_to_seam';
|
|
47822
48470
|
} | {
|
|
47823
48471
|
message: string;
|
|
47824
48472
|
is_access_code_error: true;
|
|
48473
|
+
created_at?: string | undefined;
|
|
47825
48474
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47826
48475
|
error_code: 'august_lock_invalid_code_length';
|
|
47827
48476
|
} | {
|
|
47828
48477
|
message: string;
|
|
47829
48478
|
is_access_code_error: true;
|
|
48479
|
+
created_at?: string | undefined;
|
|
47830
48480
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47831
48481
|
error_code: 'august_device_programming_delay';
|
|
47832
48482
|
} | {
|
|
47833
48483
|
message: string;
|
|
47834
48484
|
is_access_code_error: true;
|
|
48485
|
+
created_at?: string | undefined;
|
|
47835
48486
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47836
48487
|
error_code: 'august_device_slots_full';
|
|
47837
48488
|
} | {
|
|
47838
48489
|
message: string;
|
|
47839
48490
|
is_access_code_error: true;
|
|
48491
|
+
created_at?: string | undefined;
|
|
47840
48492
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47841
48493
|
error_code: 'august_lock_missing_keypad';
|
|
47842
48494
|
} | {
|
|
47843
48495
|
message: string;
|
|
47844
48496
|
is_access_code_error: true;
|
|
48497
|
+
created_at?: string | undefined;
|
|
47845
48498
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47846
48499
|
error_code: 'salto_site_user_not_subscribed';
|
|
47847
48500
|
} | {
|
|
47848
48501
|
message: string;
|
|
47849
48502
|
is_access_code_error: true;
|
|
48503
|
+
created_at?: string | undefined;
|
|
47850
48504
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47851
48505
|
error_code: 'hubitat_device_programming_delay';
|
|
47852
48506
|
} | {
|
|
47853
48507
|
message: string;
|
|
47854
48508
|
is_access_code_error: true;
|
|
48509
|
+
created_at?: string | undefined;
|
|
47855
48510
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47856
48511
|
error_code: 'hubitat_no_free_positions_available';
|
|
47857
48512
|
} | {
|
|
@@ -47945,50 +48600,62 @@ interface Routes {
|
|
|
47945
48600
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
47946
48601
|
warnings: Array<{
|
|
47947
48602
|
message: string;
|
|
48603
|
+
created_at?: string | undefined;
|
|
47948
48604
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47949
48605
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
47950
48606
|
} | {
|
|
47951
48607
|
message: string;
|
|
48608
|
+
created_at?: string | undefined;
|
|
47952
48609
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47953
48610
|
warning_code: 'schlage_detected_duplicate';
|
|
47954
48611
|
} | {
|
|
47955
48612
|
message: string;
|
|
48613
|
+
created_at?: string | undefined;
|
|
47956
48614
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47957
48615
|
warning_code: 'schlage_creation_outage';
|
|
47958
48616
|
} | {
|
|
47959
48617
|
message: string;
|
|
48618
|
+
created_at?: string | undefined;
|
|
47960
48619
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47961
48620
|
warning_code: 'salto_office_mode';
|
|
47962
48621
|
} | {
|
|
47963
48622
|
message: string;
|
|
48623
|
+
created_at?: string | undefined;
|
|
47964
48624
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47965
48625
|
warning_code: 'code_modified_external_to_seam';
|
|
47966
48626
|
} | {
|
|
47967
48627
|
message: string;
|
|
48628
|
+
created_at?: string | undefined;
|
|
47968
48629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47969
48630
|
warning_code: 'delay_in_setting_on_device';
|
|
47970
48631
|
} | {
|
|
47971
48632
|
message: string;
|
|
48633
|
+
created_at?: string | undefined;
|
|
47972
48634
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47973
48635
|
warning_code: 'delay_in_removing_from_device';
|
|
47974
48636
|
} | {
|
|
47975
48637
|
message: string;
|
|
48638
|
+
created_at?: string | undefined;
|
|
47976
48639
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47977
48640
|
warning_code: 'third_party_integration_detected';
|
|
47978
48641
|
} | {
|
|
47979
48642
|
message: string;
|
|
48643
|
+
created_at?: string | undefined;
|
|
47980
48644
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47981
48645
|
warning_code: 'august_device_programming_delay';
|
|
47982
48646
|
} | {
|
|
47983
48647
|
message: string;
|
|
48648
|
+
created_at?: string | undefined;
|
|
47984
48649
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47985
48650
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
47986
48651
|
} | {
|
|
47987
48652
|
message: string;
|
|
48653
|
+
created_at?: string | undefined;
|
|
47988
48654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47989
48655
|
warning_code: 'management_transferred';
|
|
47990
48656
|
} | {
|
|
47991
48657
|
message: string;
|
|
48658
|
+
created_at?: string | undefined;
|
|
47992
48659
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47993
48660
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
47994
48661
|
}>;
|
|
@@ -48029,96 +48696,115 @@ interface Routes {
|
|
|
48029
48696
|
errors: Array<{
|
|
48030
48697
|
message: string;
|
|
48031
48698
|
is_access_code_error: true;
|
|
48699
|
+
created_at?: string | undefined;
|
|
48032
48700
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48033
48701
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
48034
48702
|
} | {
|
|
48035
48703
|
message: string;
|
|
48036
48704
|
is_access_code_error: true;
|
|
48705
|
+
created_at?: string | undefined;
|
|
48037
48706
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48038
48707
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
48039
48708
|
} | {
|
|
48040
48709
|
message: string;
|
|
48041
48710
|
is_access_code_error: true;
|
|
48711
|
+
created_at?: string | undefined;
|
|
48042
48712
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48043
48713
|
error_code: 'failed_to_set_on_device';
|
|
48044
48714
|
} | {
|
|
48045
48715
|
message: string;
|
|
48046
48716
|
is_access_code_error: true;
|
|
48717
|
+
created_at?: string | undefined;
|
|
48047
48718
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48048
48719
|
error_code: 'failed_to_remove_from_device';
|
|
48049
48720
|
} | {
|
|
48050
48721
|
message: string;
|
|
48051
48722
|
is_access_code_error: true;
|
|
48723
|
+
created_at?: string | undefined;
|
|
48052
48724
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48053
48725
|
error_code: 'duplicate_code_on_device';
|
|
48054
48726
|
} | {
|
|
48055
48727
|
message: string;
|
|
48056
48728
|
is_access_code_error: true;
|
|
48729
|
+
created_at?: string | undefined;
|
|
48057
48730
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48058
48731
|
error_code: 'duplicate_code_attempt_prevented';
|
|
48059
48732
|
} | {
|
|
48060
48733
|
message: string;
|
|
48061
48734
|
is_access_code_error: true;
|
|
48735
|
+
created_at?: string | undefined;
|
|
48062
48736
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48063
48737
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
48064
48738
|
} | {
|
|
48065
48739
|
message: string;
|
|
48066
48740
|
is_access_code_error: true;
|
|
48741
|
+
created_at?: string | undefined;
|
|
48067
48742
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48068
48743
|
error_code: 'igloohome_bridge_offline';
|
|
48069
48744
|
} | {
|
|
48070
48745
|
message: string;
|
|
48071
48746
|
is_access_code_error: true;
|
|
48747
|
+
created_at?: string | undefined;
|
|
48072
48748
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48073
48749
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
48074
48750
|
} | {
|
|
48075
48751
|
message: string;
|
|
48076
48752
|
is_access_code_error: true;
|
|
48753
|
+
created_at?: string | undefined;
|
|
48077
48754
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48078
48755
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
48079
48756
|
} | {
|
|
48080
48757
|
message: string;
|
|
48081
48758
|
is_access_code_error: true;
|
|
48759
|
+
created_at?: string | undefined;
|
|
48082
48760
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48083
48761
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
48084
48762
|
} | {
|
|
48085
48763
|
message: string;
|
|
48086
48764
|
is_access_code_error: true;
|
|
48765
|
+
created_at?: string | undefined;
|
|
48087
48766
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48088
48767
|
error_code: 'code_modified_external_to_seam';
|
|
48089
48768
|
} | {
|
|
48090
48769
|
message: string;
|
|
48091
48770
|
is_access_code_error: true;
|
|
48771
|
+
created_at?: string | undefined;
|
|
48092
48772
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48093
48773
|
error_code: 'august_lock_invalid_code_length';
|
|
48094
48774
|
} | {
|
|
48095
48775
|
message: string;
|
|
48096
48776
|
is_access_code_error: true;
|
|
48777
|
+
created_at?: string | undefined;
|
|
48097
48778
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48098
48779
|
error_code: 'august_device_programming_delay';
|
|
48099
48780
|
} | {
|
|
48100
48781
|
message: string;
|
|
48101
48782
|
is_access_code_error: true;
|
|
48783
|
+
created_at?: string | undefined;
|
|
48102
48784
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48103
48785
|
error_code: 'august_device_slots_full';
|
|
48104
48786
|
} | {
|
|
48105
48787
|
message: string;
|
|
48106
48788
|
is_access_code_error: true;
|
|
48789
|
+
created_at?: string | undefined;
|
|
48107
48790
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48108
48791
|
error_code: 'august_lock_missing_keypad';
|
|
48109
48792
|
} | {
|
|
48110
48793
|
message: string;
|
|
48111
48794
|
is_access_code_error: true;
|
|
48795
|
+
created_at?: string | undefined;
|
|
48112
48796
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48113
48797
|
error_code: 'salto_site_user_not_subscribed';
|
|
48114
48798
|
} | {
|
|
48115
48799
|
message: string;
|
|
48116
48800
|
is_access_code_error: true;
|
|
48801
|
+
created_at?: string | undefined;
|
|
48117
48802
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48118
48803
|
error_code: 'hubitat_device_programming_delay';
|
|
48119
48804
|
} | {
|
|
48120
48805
|
message: string;
|
|
48121
48806
|
is_access_code_error: true;
|
|
48807
|
+
created_at?: string | undefined;
|
|
48122
48808
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48123
48809
|
error_code: 'hubitat_no_free_positions_available';
|
|
48124
48810
|
} | {
|
|
@@ -48212,50 +48898,62 @@ interface Routes {
|
|
|
48212
48898
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
48213
48899
|
warnings: Array<{
|
|
48214
48900
|
message: string;
|
|
48901
|
+
created_at?: string | undefined;
|
|
48215
48902
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48216
48903
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
48217
48904
|
} | {
|
|
48218
48905
|
message: string;
|
|
48906
|
+
created_at?: string | undefined;
|
|
48219
48907
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48220
48908
|
warning_code: 'schlage_detected_duplicate';
|
|
48221
48909
|
} | {
|
|
48222
48910
|
message: string;
|
|
48911
|
+
created_at?: string | undefined;
|
|
48223
48912
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48224
48913
|
warning_code: 'schlage_creation_outage';
|
|
48225
48914
|
} | {
|
|
48226
48915
|
message: string;
|
|
48916
|
+
created_at?: string | undefined;
|
|
48227
48917
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48228
48918
|
warning_code: 'salto_office_mode';
|
|
48229
48919
|
} | {
|
|
48230
48920
|
message: string;
|
|
48921
|
+
created_at?: string | undefined;
|
|
48231
48922
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48232
48923
|
warning_code: 'code_modified_external_to_seam';
|
|
48233
48924
|
} | {
|
|
48234
48925
|
message: string;
|
|
48926
|
+
created_at?: string | undefined;
|
|
48235
48927
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48236
48928
|
warning_code: 'delay_in_setting_on_device';
|
|
48237
48929
|
} | {
|
|
48238
48930
|
message: string;
|
|
48931
|
+
created_at?: string | undefined;
|
|
48239
48932
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48240
48933
|
warning_code: 'delay_in_removing_from_device';
|
|
48241
48934
|
} | {
|
|
48242
48935
|
message: string;
|
|
48936
|
+
created_at?: string | undefined;
|
|
48243
48937
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48244
48938
|
warning_code: 'third_party_integration_detected';
|
|
48245
48939
|
} | {
|
|
48246
48940
|
message: string;
|
|
48941
|
+
created_at?: string | undefined;
|
|
48247
48942
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48248
48943
|
warning_code: 'august_device_programming_delay';
|
|
48249
48944
|
} | {
|
|
48250
48945
|
message: string;
|
|
48946
|
+
created_at?: string | undefined;
|
|
48251
48947
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48252
48948
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
48253
48949
|
} | {
|
|
48254
48950
|
message: string;
|
|
48951
|
+
created_at?: string | undefined;
|
|
48255
48952
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48256
48953
|
warning_code: 'management_transferred';
|
|
48257
48954
|
} | {
|
|
48258
48955
|
message: string;
|
|
48956
|
+
created_at?: string | undefined;
|
|
48259
48957
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48260
48958
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
48261
48959
|
}>;
|