@seamapi/types 1.363.0 → 1.364.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +312 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1410 -102
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1486 -34
- package/lib/seam/connect/models/access-codes/managed-access-code.js +135 -11
- 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 +306 -21
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +240 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +594 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +152 -12
- package/src/lib/seam/connect/openapi.ts +252 -32
- package/src/lib/seam/connect/route-types.ts +648 -54
|
@@ -2,374 +2,1541 @@ import { z } from 'zod';
|
|
|
2
2
|
declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
3
3
|
message: z.ZodString;
|
|
4
4
|
is_access_code_error: z.ZodLiteral<true>;
|
|
5
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
5
6
|
}, {
|
|
6
7
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
7
8
|
}>, "strip", z.ZodTypeAny, {
|
|
8
9
|
message: string;
|
|
9
10
|
error_code: "smartthings_failed_to_set_access_code";
|
|
10
11
|
is_access_code_error: true;
|
|
12
|
+
created_at?: string | undefined;
|
|
11
13
|
}, {
|
|
12
14
|
message: string;
|
|
13
15
|
error_code: "smartthings_failed_to_set_access_code";
|
|
14
16
|
is_access_code_error: true;
|
|
17
|
+
created_at?: string | undefined;
|
|
15
18
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
16
19
|
message: z.ZodString;
|
|
17
20
|
is_access_code_error: z.ZodLiteral<true>;
|
|
21
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
18
22
|
}, {
|
|
19
23
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
20
24
|
}>, "strip", z.ZodTypeAny, {
|
|
21
25
|
message: string;
|
|
22
26
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
23
27
|
is_access_code_error: true;
|
|
28
|
+
created_at?: string | undefined;
|
|
24
29
|
}, {
|
|
25
30
|
message: string;
|
|
26
31
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
27
32
|
is_access_code_error: true;
|
|
33
|
+
created_at?: string | undefined;
|
|
28
34
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
29
35
|
message: z.ZodString;
|
|
30
36
|
is_access_code_error: z.ZodLiteral<true>;
|
|
37
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
38
|
+
}, {
|
|
39
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
40
|
+
}>, "strip", z.ZodTypeAny, {
|
|
41
|
+
message: string;
|
|
42
|
+
error_code: "smartthings_no_free_slots_available";
|
|
43
|
+
is_access_code_error: true;
|
|
44
|
+
created_at?: string | undefined;
|
|
45
|
+
}, {
|
|
46
|
+
message: string;
|
|
47
|
+
error_code: "smartthings_no_free_slots_available";
|
|
48
|
+
is_access_code_error: true;
|
|
49
|
+
created_at?: string | undefined;
|
|
50
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
51
|
+
message: z.ZodString;
|
|
52
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
53
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
31
54
|
}, {
|
|
32
55
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
33
56
|
}>, "strip", z.ZodTypeAny, {
|
|
34
57
|
message: string;
|
|
35
58
|
error_code: "failed_to_set_on_device";
|
|
36
59
|
is_access_code_error: true;
|
|
60
|
+
created_at?: string | undefined;
|
|
37
61
|
}, {
|
|
38
62
|
message: string;
|
|
39
63
|
error_code: "failed_to_set_on_device";
|
|
40
64
|
is_access_code_error: true;
|
|
65
|
+
created_at?: string | undefined;
|
|
41
66
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
42
67
|
message: z.ZodString;
|
|
43
68
|
is_access_code_error: z.ZodLiteral<true>;
|
|
69
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
44
70
|
}, {
|
|
45
71
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
46
72
|
}>, "strip", z.ZodTypeAny, {
|
|
47
73
|
message: string;
|
|
48
74
|
error_code: "failed_to_remove_from_device";
|
|
49
75
|
is_access_code_error: true;
|
|
76
|
+
created_at?: string | undefined;
|
|
50
77
|
}, {
|
|
51
78
|
message: string;
|
|
52
79
|
error_code: "failed_to_remove_from_device";
|
|
53
80
|
is_access_code_error: true;
|
|
81
|
+
created_at?: string | undefined;
|
|
54
82
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
55
83
|
message: z.ZodString;
|
|
56
84
|
is_access_code_error: z.ZodLiteral<true>;
|
|
85
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
57
86
|
}, {
|
|
58
87
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
59
88
|
}>, "strip", z.ZodTypeAny, {
|
|
60
89
|
message: string;
|
|
61
90
|
error_code: "duplicate_code_on_device";
|
|
62
91
|
is_access_code_error: true;
|
|
92
|
+
created_at?: string | undefined;
|
|
63
93
|
}, {
|
|
64
94
|
message: string;
|
|
65
95
|
error_code: "duplicate_code_on_device";
|
|
66
96
|
is_access_code_error: true;
|
|
97
|
+
created_at?: string | undefined;
|
|
67
98
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
68
99
|
message: z.ZodString;
|
|
69
100
|
is_access_code_error: z.ZodLiteral<true>;
|
|
101
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
70
102
|
}, {
|
|
71
103
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
72
104
|
}>, "strip", z.ZodTypeAny, {
|
|
73
105
|
message: string;
|
|
74
106
|
error_code: "duplicate_code_attempt_prevented";
|
|
75
107
|
is_access_code_error: true;
|
|
108
|
+
created_at?: string | undefined;
|
|
76
109
|
}, {
|
|
77
110
|
message: string;
|
|
78
111
|
error_code: "duplicate_code_attempt_prevented";
|
|
79
112
|
is_access_code_error: true;
|
|
113
|
+
created_at?: string | undefined;
|
|
80
114
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
81
115
|
message: z.ZodString;
|
|
82
116
|
is_access_code_error: z.ZodLiteral<true>;
|
|
117
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
83
118
|
}, {
|
|
84
119
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
85
120
|
}>, "strip", z.ZodTypeAny, {
|
|
86
121
|
message: string;
|
|
87
122
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
88
123
|
is_access_code_error: true;
|
|
124
|
+
created_at?: string | undefined;
|
|
89
125
|
}, {
|
|
90
126
|
message: string;
|
|
91
127
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
92
128
|
is_access_code_error: true;
|
|
129
|
+
created_at?: string | undefined;
|
|
93
130
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
94
131
|
message: z.ZodString;
|
|
95
132
|
is_access_code_error: z.ZodLiteral<true>;
|
|
133
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
96
134
|
}, {
|
|
97
135
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
98
136
|
}>, "strip", z.ZodTypeAny, {
|
|
99
137
|
message: string;
|
|
100
138
|
error_code: "igloohome_bridge_offline";
|
|
101
139
|
is_access_code_error: true;
|
|
140
|
+
created_at?: string | undefined;
|
|
102
141
|
}, {
|
|
103
142
|
message: string;
|
|
104
143
|
error_code: "igloohome_bridge_offline";
|
|
105
144
|
is_access_code_error: true;
|
|
145
|
+
created_at?: string | undefined;
|
|
106
146
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
107
147
|
message: z.ZodString;
|
|
108
148
|
is_access_code_error: z.ZodLiteral<true>;
|
|
149
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
109
150
|
}, {
|
|
110
151
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
111
152
|
}>, "strip", z.ZodTypeAny, {
|
|
112
153
|
message: string;
|
|
113
154
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
114
155
|
is_access_code_error: true;
|
|
156
|
+
created_at?: string | undefined;
|
|
115
157
|
}, {
|
|
116
158
|
message: string;
|
|
117
159
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
118
160
|
is_access_code_error: true;
|
|
161
|
+
created_at?: string | undefined;
|
|
119
162
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
120
163
|
message: z.ZodString;
|
|
121
164
|
is_access_code_error: z.ZodLiteral<true>;
|
|
165
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
122
166
|
}, {
|
|
123
167
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
124
168
|
}>, "strip", z.ZodTypeAny, {
|
|
125
169
|
message: string;
|
|
126
170
|
error_code: "kwikset_unable_to_confirm_code";
|
|
127
171
|
is_access_code_error: true;
|
|
172
|
+
created_at?: string | undefined;
|
|
128
173
|
}, {
|
|
129
174
|
message: string;
|
|
130
175
|
error_code: "kwikset_unable_to_confirm_code";
|
|
131
176
|
is_access_code_error: true;
|
|
177
|
+
created_at?: string | undefined;
|
|
132
178
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
133
179
|
message: z.ZodString;
|
|
134
180
|
is_access_code_error: z.ZodLiteral<true>;
|
|
181
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
135
182
|
}, {
|
|
136
183
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
137
184
|
}>, "strip", z.ZodTypeAny, {
|
|
138
185
|
message: string;
|
|
139
186
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
140
187
|
is_access_code_error: true;
|
|
188
|
+
created_at?: string | undefined;
|
|
141
189
|
}, {
|
|
142
190
|
message: string;
|
|
143
191
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
144
192
|
is_access_code_error: true;
|
|
193
|
+
created_at?: string | undefined;
|
|
145
194
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
146
195
|
message: z.ZodString;
|
|
147
196
|
is_access_code_error: z.ZodLiteral<true>;
|
|
197
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
148
198
|
}, {
|
|
149
199
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
150
200
|
}>, "strip", z.ZodTypeAny, {
|
|
151
201
|
message: string;
|
|
152
202
|
error_code: "code_modified_external_to_seam";
|
|
153
203
|
is_access_code_error: true;
|
|
204
|
+
created_at?: string | undefined;
|
|
154
205
|
}, {
|
|
155
206
|
message: string;
|
|
156
207
|
error_code: "code_modified_external_to_seam";
|
|
157
208
|
is_access_code_error: true;
|
|
209
|
+
created_at?: string | undefined;
|
|
158
210
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
159
211
|
message: z.ZodString;
|
|
160
212
|
is_access_code_error: z.ZodLiteral<true>;
|
|
213
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
161
214
|
}, {
|
|
162
215
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
163
216
|
}>, "strip", z.ZodTypeAny, {
|
|
164
217
|
message: string;
|
|
165
218
|
error_code: "august_lock_invalid_code_length";
|
|
166
219
|
is_access_code_error: true;
|
|
220
|
+
created_at?: string | undefined;
|
|
167
221
|
}, {
|
|
168
222
|
message: string;
|
|
169
223
|
error_code: "august_lock_invalid_code_length";
|
|
170
224
|
is_access_code_error: true;
|
|
225
|
+
created_at?: string | undefined;
|
|
171
226
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
172
227
|
message: z.ZodString;
|
|
173
228
|
is_access_code_error: z.ZodLiteral<true>;
|
|
229
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
174
230
|
}, {
|
|
175
231
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
176
232
|
}>, "strip", z.ZodTypeAny, {
|
|
177
233
|
message: string;
|
|
178
234
|
error_code: "august_device_programming_delay";
|
|
179
235
|
is_access_code_error: true;
|
|
236
|
+
created_at?: string | undefined;
|
|
180
237
|
}, {
|
|
181
238
|
message: string;
|
|
182
239
|
error_code: "august_device_programming_delay";
|
|
183
240
|
is_access_code_error: true;
|
|
241
|
+
created_at?: string | undefined;
|
|
184
242
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
185
243
|
message: z.ZodString;
|
|
186
244
|
is_access_code_error: z.ZodLiteral<true>;
|
|
245
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
187
246
|
}, {
|
|
188
247
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
189
248
|
}>, "strip", z.ZodTypeAny, {
|
|
190
249
|
message: string;
|
|
191
250
|
error_code: "august_device_slots_full";
|
|
192
251
|
is_access_code_error: true;
|
|
252
|
+
created_at?: string | undefined;
|
|
193
253
|
}, {
|
|
194
254
|
message: string;
|
|
195
255
|
error_code: "august_device_slots_full";
|
|
196
256
|
is_access_code_error: true;
|
|
257
|
+
created_at?: string | undefined;
|
|
197
258
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
198
259
|
message: z.ZodString;
|
|
199
260
|
is_access_code_error: z.ZodLiteral<true>;
|
|
261
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
200
262
|
}, {
|
|
201
263
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
202
264
|
}>, "strip", z.ZodTypeAny, {
|
|
203
265
|
message: string;
|
|
204
266
|
error_code: "august_lock_missing_keypad";
|
|
205
267
|
is_access_code_error: true;
|
|
268
|
+
created_at?: string | undefined;
|
|
206
269
|
}, {
|
|
207
270
|
message: string;
|
|
208
271
|
error_code: "august_lock_missing_keypad";
|
|
209
272
|
is_access_code_error: true;
|
|
273
|
+
created_at?: string | undefined;
|
|
274
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
275
|
+
message: z.ZodString;
|
|
276
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
277
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
278
|
+
}, {
|
|
279
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
280
|
+
}>, "strip", z.ZodTypeAny, {
|
|
281
|
+
message: string;
|
|
282
|
+
error_code: "august_lock_temporarily_offline";
|
|
283
|
+
is_access_code_error: true;
|
|
284
|
+
created_at?: string | undefined;
|
|
285
|
+
}, {
|
|
286
|
+
message: string;
|
|
287
|
+
error_code: "august_lock_temporarily_offline";
|
|
288
|
+
is_access_code_error: true;
|
|
289
|
+
created_at?: string | undefined;
|
|
210
290
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
211
291
|
message: z.ZodString;
|
|
212
292
|
is_access_code_error: z.ZodLiteral<true>;
|
|
293
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
213
294
|
}, {
|
|
214
|
-
error_code: z.ZodLiteral<"
|
|
295
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
215
296
|
}>, "strip", z.ZodTypeAny, {
|
|
216
297
|
message: string;
|
|
217
|
-
error_code: "
|
|
298
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
218
299
|
is_access_code_error: true;
|
|
300
|
+
created_at?: string | undefined;
|
|
219
301
|
}, {
|
|
220
302
|
message: string;
|
|
221
|
-
error_code: "
|
|
303
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
222
304
|
is_access_code_error: true;
|
|
305
|
+
created_at?: string | undefined;
|
|
223
306
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
224
307
|
message: z.ZodString;
|
|
225
308
|
is_access_code_error: z.ZodLiteral<true>;
|
|
309
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
226
310
|
}, {
|
|
227
311
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
228
312
|
}>, "strip", z.ZodTypeAny, {
|
|
229
313
|
message: string;
|
|
230
314
|
error_code: "hubitat_device_programming_delay";
|
|
231
315
|
is_access_code_error: true;
|
|
316
|
+
created_at?: string | undefined;
|
|
232
317
|
}, {
|
|
233
318
|
message: string;
|
|
234
319
|
error_code: "hubitat_device_programming_delay";
|
|
235
320
|
is_access_code_error: true;
|
|
321
|
+
created_at?: string | undefined;
|
|
236
322
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
237
323
|
message: z.ZodString;
|
|
238
324
|
is_access_code_error: z.ZodLiteral<true>;
|
|
325
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
239
326
|
}, {
|
|
240
327
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
241
328
|
}>, "strip", z.ZodTypeAny, {
|
|
242
329
|
message: string;
|
|
243
330
|
error_code: "hubitat_no_free_positions_available";
|
|
244
331
|
is_access_code_error: true;
|
|
332
|
+
created_at?: string | undefined;
|
|
245
333
|
}, {
|
|
246
334
|
message: string;
|
|
247
335
|
error_code: "hubitat_no_free_positions_available";
|
|
248
336
|
is_access_code_error: true;
|
|
337
|
+
created_at?: string | undefined;
|
|
338
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
339
|
+
message: z.ZodString;
|
|
340
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
341
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
342
|
+
}, {
|
|
343
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
344
|
+
}>, "strip", z.ZodTypeAny, {
|
|
345
|
+
message: string;
|
|
346
|
+
error_code: "wyze_duplicate_code_name";
|
|
347
|
+
is_access_code_error: true;
|
|
348
|
+
created_at?: string | undefined;
|
|
349
|
+
}, {
|
|
350
|
+
message: string;
|
|
351
|
+
error_code: "wyze_duplicate_code_name";
|
|
352
|
+
is_access_code_error: true;
|
|
353
|
+
created_at?: string | undefined;
|
|
354
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
355
|
+
message: z.ZodString;
|
|
356
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
357
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
358
|
+
}, {
|
|
359
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
360
|
+
}>, "strip", z.ZodTypeAny, {
|
|
361
|
+
message: string;
|
|
362
|
+
error_code: "wyze_potential_duplicate_code";
|
|
363
|
+
is_access_code_error: true;
|
|
364
|
+
created_at?: string | undefined;
|
|
365
|
+
}, {
|
|
366
|
+
message: string;
|
|
367
|
+
error_code: "wyze_potential_duplicate_code";
|
|
368
|
+
is_access_code_error: true;
|
|
369
|
+
created_at?: string | undefined;
|
|
370
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
371
|
+
message: z.ZodString;
|
|
372
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
373
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
374
|
+
}, {
|
|
375
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
376
|
+
}>, "strip", z.ZodTypeAny, {
|
|
377
|
+
message: string;
|
|
378
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
379
|
+
is_access_code_error: true;
|
|
380
|
+
created_at?: string | undefined;
|
|
381
|
+
}, {
|
|
382
|
+
message: string;
|
|
383
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
384
|
+
is_access_code_error: true;
|
|
385
|
+
created_at?: string | undefined;
|
|
249
386
|
}>]>;
|
|
250
387
|
export type AccessCodeError = z.infer<typeof access_code_error>;
|
|
388
|
+
declare const access_code_error_map: z.ZodObject<{
|
|
389
|
+
smartthings_failed_to_set_access_code: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
390
|
+
message: z.ZodString;
|
|
391
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
392
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
393
|
+
}, {
|
|
394
|
+
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
395
|
+
}>, "strip", z.ZodTypeAny, {
|
|
396
|
+
message: string;
|
|
397
|
+
error_code: "smartthings_failed_to_set_access_code";
|
|
398
|
+
is_access_code_error: true;
|
|
399
|
+
created_at?: string | undefined;
|
|
400
|
+
}, {
|
|
401
|
+
message: string;
|
|
402
|
+
error_code: "smartthings_failed_to_set_access_code";
|
|
403
|
+
is_access_code_error: true;
|
|
404
|
+
created_at?: string | undefined;
|
|
405
|
+
}>>>;
|
|
406
|
+
smartthings_failed_to_set_after_multiple_retries: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
407
|
+
message: z.ZodString;
|
|
408
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
409
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
410
|
+
}, {
|
|
411
|
+
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
412
|
+
}>, "strip", z.ZodTypeAny, {
|
|
413
|
+
message: string;
|
|
414
|
+
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
415
|
+
is_access_code_error: true;
|
|
416
|
+
created_at?: string | undefined;
|
|
417
|
+
}, {
|
|
418
|
+
message: string;
|
|
419
|
+
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
420
|
+
is_access_code_error: true;
|
|
421
|
+
created_at?: string | undefined;
|
|
422
|
+
}>>>;
|
|
423
|
+
smartthings_no_free_slots_available: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
424
|
+
message: z.ZodString;
|
|
425
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
426
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
427
|
+
}, {
|
|
428
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
429
|
+
}>, "strip", z.ZodTypeAny, {
|
|
430
|
+
message: string;
|
|
431
|
+
error_code: "smartthings_no_free_slots_available";
|
|
432
|
+
is_access_code_error: true;
|
|
433
|
+
created_at?: string | undefined;
|
|
434
|
+
}, {
|
|
435
|
+
message: string;
|
|
436
|
+
error_code: "smartthings_no_free_slots_available";
|
|
437
|
+
is_access_code_error: true;
|
|
438
|
+
created_at?: string | undefined;
|
|
439
|
+
}>>>;
|
|
440
|
+
failed_to_set_on_device: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
441
|
+
message: z.ZodString;
|
|
442
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
443
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
444
|
+
}, {
|
|
445
|
+
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
446
|
+
}>, "strip", z.ZodTypeAny, {
|
|
447
|
+
message: string;
|
|
448
|
+
error_code: "failed_to_set_on_device";
|
|
449
|
+
is_access_code_error: true;
|
|
450
|
+
created_at?: string | undefined;
|
|
451
|
+
}, {
|
|
452
|
+
message: string;
|
|
453
|
+
error_code: "failed_to_set_on_device";
|
|
454
|
+
is_access_code_error: true;
|
|
455
|
+
created_at?: string | undefined;
|
|
456
|
+
}>>>;
|
|
457
|
+
failed_to_remove_from_device: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
458
|
+
message: z.ZodString;
|
|
459
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
460
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
461
|
+
}, {
|
|
462
|
+
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
463
|
+
}>, "strip", z.ZodTypeAny, {
|
|
464
|
+
message: string;
|
|
465
|
+
error_code: "failed_to_remove_from_device";
|
|
466
|
+
is_access_code_error: true;
|
|
467
|
+
created_at?: string | undefined;
|
|
468
|
+
}, {
|
|
469
|
+
message: string;
|
|
470
|
+
error_code: "failed_to_remove_from_device";
|
|
471
|
+
is_access_code_error: true;
|
|
472
|
+
created_at?: string | undefined;
|
|
473
|
+
}>>>;
|
|
474
|
+
duplicate_code_on_device: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
475
|
+
message: z.ZodString;
|
|
476
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
477
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
478
|
+
}, {
|
|
479
|
+
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
480
|
+
}>, "strip", z.ZodTypeAny, {
|
|
481
|
+
message: string;
|
|
482
|
+
error_code: "duplicate_code_on_device";
|
|
483
|
+
is_access_code_error: true;
|
|
484
|
+
created_at?: string | undefined;
|
|
485
|
+
}, {
|
|
486
|
+
message: string;
|
|
487
|
+
error_code: "duplicate_code_on_device";
|
|
488
|
+
is_access_code_error: true;
|
|
489
|
+
created_at?: string | undefined;
|
|
490
|
+
}>>>;
|
|
491
|
+
duplicate_code_attempt_prevented: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
492
|
+
message: z.ZodString;
|
|
493
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
494
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
495
|
+
}, {
|
|
496
|
+
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
497
|
+
}>, "strip", z.ZodTypeAny, {
|
|
498
|
+
message: string;
|
|
499
|
+
error_code: "duplicate_code_attempt_prevented";
|
|
500
|
+
is_access_code_error: true;
|
|
501
|
+
created_at?: string | undefined;
|
|
502
|
+
}, {
|
|
503
|
+
message: string;
|
|
504
|
+
error_code: "duplicate_code_attempt_prevented";
|
|
505
|
+
is_access_code_error: true;
|
|
506
|
+
created_at?: string | undefined;
|
|
507
|
+
}>>>;
|
|
508
|
+
igloohome_bridge_too_many_pending_jobs: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
509
|
+
message: z.ZodString;
|
|
510
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
511
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
512
|
+
}, {
|
|
513
|
+
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
514
|
+
}>, "strip", z.ZodTypeAny, {
|
|
515
|
+
message: string;
|
|
516
|
+
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
517
|
+
is_access_code_error: true;
|
|
518
|
+
created_at?: string | undefined;
|
|
519
|
+
}, {
|
|
520
|
+
message: string;
|
|
521
|
+
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
522
|
+
is_access_code_error: true;
|
|
523
|
+
created_at?: string | undefined;
|
|
524
|
+
}>>>;
|
|
525
|
+
igloohome_bridge_offline: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
526
|
+
message: z.ZodString;
|
|
527
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
528
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
529
|
+
}, {
|
|
530
|
+
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
531
|
+
}>, "strip", z.ZodTypeAny, {
|
|
532
|
+
message: string;
|
|
533
|
+
error_code: "igloohome_bridge_offline";
|
|
534
|
+
is_access_code_error: true;
|
|
535
|
+
created_at?: string | undefined;
|
|
536
|
+
}, {
|
|
537
|
+
message: string;
|
|
538
|
+
error_code: "igloohome_bridge_offline";
|
|
539
|
+
is_access_code_error: true;
|
|
540
|
+
created_at?: string | undefined;
|
|
541
|
+
}>>>;
|
|
542
|
+
igloohome_offline_access_code_no_variance_available: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
543
|
+
message: z.ZodString;
|
|
544
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
545
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
546
|
+
}, {
|
|
547
|
+
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
548
|
+
}>, "strip", z.ZodTypeAny, {
|
|
549
|
+
message: string;
|
|
550
|
+
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
551
|
+
is_access_code_error: true;
|
|
552
|
+
created_at?: string | undefined;
|
|
553
|
+
}, {
|
|
554
|
+
message: string;
|
|
555
|
+
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
556
|
+
is_access_code_error: true;
|
|
557
|
+
created_at?: string | undefined;
|
|
558
|
+
}>>>;
|
|
559
|
+
kwikset_unable_to_confirm_code: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
560
|
+
message: z.ZodString;
|
|
561
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
562
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
563
|
+
}, {
|
|
564
|
+
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
565
|
+
}>, "strip", z.ZodTypeAny, {
|
|
566
|
+
message: string;
|
|
567
|
+
error_code: "kwikset_unable_to_confirm_code";
|
|
568
|
+
is_access_code_error: true;
|
|
569
|
+
created_at?: string | undefined;
|
|
570
|
+
}, {
|
|
571
|
+
message: string;
|
|
572
|
+
error_code: "kwikset_unable_to_confirm_code";
|
|
573
|
+
is_access_code_error: true;
|
|
574
|
+
created_at?: string | undefined;
|
|
575
|
+
}>>>;
|
|
576
|
+
kwikset_unable_to_confirm_deletion: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
577
|
+
message: z.ZodString;
|
|
578
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
579
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
580
|
+
}, {
|
|
581
|
+
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
582
|
+
}>, "strip", z.ZodTypeAny, {
|
|
583
|
+
message: string;
|
|
584
|
+
error_code: "kwikset_unable_to_confirm_deletion";
|
|
585
|
+
is_access_code_error: true;
|
|
586
|
+
created_at?: string | undefined;
|
|
587
|
+
}, {
|
|
588
|
+
message: string;
|
|
589
|
+
error_code: "kwikset_unable_to_confirm_deletion";
|
|
590
|
+
is_access_code_error: true;
|
|
591
|
+
created_at?: string | undefined;
|
|
592
|
+
}>>>;
|
|
593
|
+
code_modified_external_to_seam_error: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
594
|
+
message: z.ZodString;
|
|
595
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
596
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
597
|
+
}, {
|
|
598
|
+
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
599
|
+
}>, "strip", z.ZodTypeAny, {
|
|
600
|
+
message: string;
|
|
601
|
+
error_code: "code_modified_external_to_seam";
|
|
602
|
+
is_access_code_error: true;
|
|
603
|
+
created_at?: string | undefined;
|
|
604
|
+
}, {
|
|
605
|
+
message: string;
|
|
606
|
+
error_code: "code_modified_external_to_seam";
|
|
607
|
+
is_access_code_error: true;
|
|
608
|
+
created_at?: string | undefined;
|
|
609
|
+
}>>>;
|
|
610
|
+
august_lock_invalid_code_length: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
611
|
+
message: z.ZodString;
|
|
612
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
613
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
614
|
+
}, {
|
|
615
|
+
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
616
|
+
}>, "strip", z.ZodTypeAny, {
|
|
617
|
+
message: string;
|
|
618
|
+
error_code: "august_lock_invalid_code_length";
|
|
619
|
+
is_access_code_error: true;
|
|
620
|
+
created_at?: string | undefined;
|
|
621
|
+
}, {
|
|
622
|
+
message: string;
|
|
623
|
+
error_code: "august_lock_invalid_code_length";
|
|
624
|
+
is_access_code_error: true;
|
|
625
|
+
created_at?: string | undefined;
|
|
626
|
+
}>>>;
|
|
627
|
+
august_device_programming_delay: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
628
|
+
message: z.ZodString;
|
|
629
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
630
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
631
|
+
}, {
|
|
632
|
+
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
633
|
+
}>, "strip", z.ZodTypeAny, {
|
|
634
|
+
message: string;
|
|
635
|
+
error_code: "august_device_programming_delay";
|
|
636
|
+
is_access_code_error: true;
|
|
637
|
+
created_at?: string | undefined;
|
|
638
|
+
}, {
|
|
639
|
+
message: string;
|
|
640
|
+
error_code: "august_device_programming_delay";
|
|
641
|
+
is_access_code_error: true;
|
|
642
|
+
created_at?: string | undefined;
|
|
643
|
+
}>>>;
|
|
644
|
+
august_lock_temporarily_offline: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
645
|
+
message: z.ZodString;
|
|
646
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
647
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
648
|
+
}, {
|
|
649
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
650
|
+
}>, "strip", z.ZodTypeAny, {
|
|
651
|
+
message: string;
|
|
652
|
+
error_code: "august_lock_temporarily_offline";
|
|
653
|
+
is_access_code_error: true;
|
|
654
|
+
created_at?: string | undefined;
|
|
655
|
+
}, {
|
|
656
|
+
message: string;
|
|
657
|
+
error_code: "august_lock_temporarily_offline";
|
|
658
|
+
is_access_code_error: true;
|
|
659
|
+
created_at?: string | undefined;
|
|
660
|
+
}>>>;
|
|
661
|
+
august_device_slots_full: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
662
|
+
message: z.ZodString;
|
|
663
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
664
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
665
|
+
}, {
|
|
666
|
+
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
667
|
+
}>, "strip", z.ZodTypeAny, {
|
|
668
|
+
message: string;
|
|
669
|
+
error_code: "august_device_slots_full";
|
|
670
|
+
is_access_code_error: true;
|
|
671
|
+
created_at?: string | undefined;
|
|
672
|
+
}, {
|
|
673
|
+
message: string;
|
|
674
|
+
error_code: "august_device_slots_full";
|
|
675
|
+
is_access_code_error: true;
|
|
676
|
+
created_at?: string | undefined;
|
|
677
|
+
}>>>;
|
|
678
|
+
august_lock_missing_keypad: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
679
|
+
message: z.ZodString;
|
|
680
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
681
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
682
|
+
}, {
|
|
683
|
+
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
684
|
+
}>, "strip", z.ZodTypeAny, {
|
|
685
|
+
message: string;
|
|
686
|
+
error_code: "august_lock_missing_keypad";
|
|
687
|
+
is_access_code_error: true;
|
|
688
|
+
created_at?: string | undefined;
|
|
689
|
+
}, {
|
|
690
|
+
message: string;
|
|
691
|
+
error_code: "august_lock_missing_keypad";
|
|
692
|
+
is_access_code_error: true;
|
|
693
|
+
created_at?: string | undefined;
|
|
694
|
+
}>>>;
|
|
695
|
+
salto_ks_user_not_subscribed: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
696
|
+
message: z.ZodString;
|
|
697
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
698
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
699
|
+
}, {
|
|
700
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
701
|
+
}>, "strip", z.ZodTypeAny, {
|
|
702
|
+
message: string;
|
|
703
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
704
|
+
is_access_code_error: true;
|
|
705
|
+
created_at?: string | undefined;
|
|
706
|
+
}, {
|
|
707
|
+
message: string;
|
|
708
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
709
|
+
is_access_code_error: true;
|
|
710
|
+
created_at?: string | undefined;
|
|
711
|
+
}>>>;
|
|
712
|
+
hubitat_device_programming_delay: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
713
|
+
message: z.ZodString;
|
|
714
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
715
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
716
|
+
}, {
|
|
717
|
+
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
718
|
+
}>, "strip", z.ZodTypeAny, {
|
|
719
|
+
message: string;
|
|
720
|
+
error_code: "hubitat_device_programming_delay";
|
|
721
|
+
is_access_code_error: true;
|
|
722
|
+
created_at?: string | undefined;
|
|
723
|
+
}, {
|
|
724
|
+
message: string;
|
|
725
|
+
error_code: "hubitat_device_programming_delay";
|
|
726
|
+
is_access_code_error: true;
|
|
727
|
+
created_at?: string | undefined;
|
|
728
|
+
}>>>;
|
|
729
|
+
hubitat_no_free_positions_available: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
730
|
+
message: z.ZodString;
|
|
731
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
732
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
733
|
+
}, {
|
|
734
|
+
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
735
|
+
}>, "strip", z.ZodTypeAny, {
|
|
736
|
+
message: string;
|
|
737
|
+
error_code: "hubitat_no_free_positions_available";
|
|
738
|
+
is_access_code_error: true;
|
|
739
|
+
created_at?: string | undefined;
|
|
740
|
+
}, {
|
|
741
|
+
message: string;
|
|
742
|
+
error_code: "hubitat_no_free_positions_available";
|
|
743
|
+
is_access_code_error: true;
|
|
744
|
+
created_at?: string | undefined;
|
|
745
|
+
}>>>;
|
|
746
|
+
wyze_duplicate_code_name: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
747
|
+
message: z.ZodString;
|
|
748
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
749
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
750
|
+
}, {
|
|
751
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
752
|
+
}>, "strip", z.ZodTypeAny, {
|
|
753
|
+
message: string;
|
|
754
|
+
error_code: "wyze_duplicate_code_name";
|
|
755
|
+
is_access_code_error: true;
|
|
756
|
+
created_at?: string | undefined;
|
|
757
|
+
}, {
|
|
758
|
+
message: string;
|
|
759
|
+
error_code: "wyze_duplicate_code_name";
|
|
760
|
+
is_access_code_error: true;
|
|
761
|
+
created_at?: string | undefined;
|
|
762
|
+
}>>>;
|
|
763
|
+
wyze_potential_duplicate_code: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
764
|
+
message: z.ZodString;
|
|
765
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
766
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
767
|
+
}, {
|
|
768
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
769
|
+
}>, "strip", z.ZodTypeAny, {
|
|
770
|
+
message: string;
|
|
771
|
+
error_code: "wyze_potential_duplicate_code";
|
|
772
|
+
is_access_code_error: true;
|
|
773
|
+
created_at?: string | undefined;
|
|
774
|
+
}, {
|
|
775
|
+
message: string;
|
|
776
|
+
error_code: "wyze_potential_duplicate_code";
|
|
777
|
+
is_access_code_error: true;
|
|
778
|
+
created_at?: string | undefined;
|
|
779
|
+
}>>>;
|
|
780
|
+
dormakaba_oracode_no_valid_user_level: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
781
|
+
message: z.ZodString;
|
|
782
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
783
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
784
|
+
}, {
|
|
785
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
786
|
+
}>, "strip", z.ZodTypeAny, {
|
|
787
|
+
message: string;
|
|
788
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
789
|
+
is_access_code_error: true;
|
|
790
|
+
created_at?: string | undefined;
|
|
791
|
+
}, {
|
|
792
|
+
message: string;
|
|
793
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
794
|
+
is_access_code_error: true;
|
|
795
|
+
created_at?: string | undefined;
|
|
796
|
+
}>>>;
|
|
797
|
+
}, "strip", z.ZodTypeAny, {
|
|
798
|
+
smartthings_failed_to_set_access_code?: {
|
|
799
|
+
message: string;
|
|
800
|
+
error_code: "smartthings_failed_to_set_access_code";
|
|
801
|
+
is_access_code_error: true;
|
|
802
|
+
created_at?: string | undefined;
|
|
803
|
+
} | null | undefined;
|
|
804
|
+
smartthings_failed_to_set_after_multiple_retries?: {
|
|
805
|
+
message: string;
|
|
806
|
+
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
807
|
+
is_access_code_error: true;
|
|
808
|
+
created_at?: string | undefined;
|
|
809
|
+
} | null | undefined;
|
|
810
|
+
failed_to_set_on_device?: {
|
|
811
|
+
message: string;
|
|
812
|
+
error_code: "failed_to_set_on_device";
|
|
813
|
+
is_access_code_error: true;
|
|
814
|
+
created_at?: string | undefined;
|
|
815
|
+
} | null | undefined;
|
|
816
|
+
failed_to_remove_from_device?: {
|
|
817
|
+
message: string;
|
|
818
|
+
error_code: "failed_to_remove_from_device";
|
|
819
|
+
is_access_code_error: true;
|
|
820
|
+
created_at?: string | undefined;
|
|
821
|
+
} | null | undefined;
|
|
822
|
+
duplicate_code_on_device?: {
|
|
823
|
+
message: string;
|
|
824
|
+
error_code: "duplicate_code_on_device";
|
|
825
|
+
is_access_code_error: true;
|
|
826
|
+
created_at?: string | undefined;
|
|
827
|
+
} | null | undefined;
|
|
828
|
+
duplicate_code_attempt_prevented?: {
|
|
829
|
+
message: string;
|
|
830
|
+
error_code: "duplicate_code_attempt_prevented";
|
|
831
|
+
is_access_code_error: true;
|
|
832
|
+
created_at?: string | undefined;
|
|
833
|
+
} | null | undefined;
|
|
834
|
+
igloohome_bridge_too_many_pending_jobs?: {
|
|
835
|
+
message: string;
|
|
836
|
+
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
837
|
+
is_access_code_error: true;
|
|
838
|
+
created_at?: string | undefined;
|
|
839
|
+
} | null | undefined;
|
|
840
|
+
igloohome_bridge_offline?: {
|
|
841
|
+
message: string;
|
|
842
|
+
error_code: "igloohome_bridge_offline";
|
|
843
|
+
is_access_code_error: true;
|
|
844
|
+
created_at?: string | undefined;
|
|
845
|
+
} | null | undefined;
|
|
846
|
+
kwikset_unable_to_confirm_code?: {
|
|
847
|
+
message: string;
|
|
848
|
+
error_code: "kwikset_unable_to_confirm_code";
|
|
849
|
+
is_access_code_error: true;
|
|
850
|
+
created_at?: string | undefined;
|
|
851
|
+
} | null | undefined;
|
|
852
|
+
kwikset_unable_to_confirm_deletion?: {
|
|
853
|
+
message: string;
|
|
854
|
+
error_code: "kwikset_unable_to_confirm_deletion";
|
|
855
|
+
is_access_code_error: true;
|
|
856
|
+
created_at?: string | undefined;
|
|
857
|
+
} | null | undefined;
|
|
858
|
+
igloohome_offline_access_code_no_variance_available?: {
|
|
859
|
+
message: string;
|
|
860
|
+
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
861
|
+
is_access_code_error: true;
|
|
862
|
+
created_at?: string | undefined;
|
|
863
|
+
} | null | undefined;
|
|
864
|
+
august_lock_invalid_code_length?: {
|
|
865
|
+
message: string;
|
|
866
|
+
error_code: "august_lock_invalid_code_length";
|
|
867
|
+
is_access_code_error: true;
|
|
868
|
+
created_at?: string | undefined;
|
|
869
|
+
} | null | undefined;
|
|
870
|
+
august_device_programming_delay?: {
|
|
871
|
+
message: string;
|
|
872
|
+
error_code: "august_device_programming_delay";
|
|
873
|
+
is_access_code_error: true;
|
|
874
|
+
created_at?: string | undefined;
|
|
875
|
+
} | null | undefined;
|
|
876
|
+
august_device_slots_full?: {
|
|
877
|
+
message: string;
|
|
878
|
+
error_code: "august_device_slots_full";
|
|
879
|
+
is_access_code_error: true;
|
|
880
|
+
created_at?: string | undefined;
|
|
881
|
+
} | null | undefined;
|
|
882
|
+
august_lock_temporarily_offline?: {
|
|
883
|
+
message: string;
|
|
884
|
+
error_code: "august_lock_temporarily_offline";
|
|
885
|
+
is_access_code_error: true;
|
|
886
|
+
created_at?: string | undefined;
|
|
887
|
+
} | null | undefined;
|
|
888
|
+
august_lock_missing_keypad?: {
|
|
889
|
+
message: string;
|
|
890
|
+
error_code: "august_lock_missing_keypad";
|
|
891
|
+
is_access_code_error: true;
|
|
892
|
+
created_at?: string | undefined;
|
|
893
|
+
} | null | undefined;
|
|
894
|
+
salto_ks_user_not_subscribed?: {
|
|
895
|
+
message: string;
|
|
896
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
897
|
+
is_access_code_error: true;
|
|
898
|
+
created_at?: string | undefined;
|
|
899
|
+
} | null | undefined;
|
|
900
|
+
hubitat_device_programming_delay?: {
|
|
901
|
+
message: string;
|
|
902
|
+
error_code: "hubitat_device_programming_delay";
|
|
903
|
+
is_access_code_error: true;
|
|
904
|
+
created_at?: string | undefined;
|
|
905
|
+
} | null | undefined;
|
|
906
|
+
hubitat_no_free_positions_available?: {
|
|
907
|
+
message: string;
|
|
908
|
+
error_code: "hubitat_no_free_positions_available";
|
|
909
|
+
is_access_code_error: true;
|
|
910
|
+
created_at?: string | undefined;
|
|
911
|
+
} | null | undefined;
|
|
912
|
+
smartthings_no_free_slots_available?: {
|
|
913
|
+
message: string;
|
|
914
|
+
error_code: "smartthings_no_free_slots_available";
|
|
915
|
+
is_access_code_error: true;
|
|
916
|
+
created_at?: string | undefined;
|
|
917
|
+
} | null | undefined;
|
|
918
|
+
wyze_duplicate_code_name?: {
|
|
919
|
+
message: string;
|
|
920
|
+
error_code: "wyze_duplicate_code_name";
|
|
921
|
+
is_access_code_error: true;
|
|
922
|
+
created_at?: string | undefined;
|
|
923
|
+
} | null | undefined;
|
|
924
|
+
wyze_potential_duplicate_code?: {
|
|
925
|
+
message: string;
|
|
926
|
+
error_code: "wyze_potential_duplicate_code";
|
|
927
|
+
is_access_code_error: true;
|
|
928
|
+
created_at?: string | undefined;
|
|
929
|
+
} | null | undefined;
|
|
930
|
+
dormakaba_oracode_no_valid_user_level?: {
|
|
931
|
+
message: string;
|
|
932
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
933
|
+
is_access_code_error: true;
|
|
934
|
+
created_at?: string | undefined;
|
|
935
|
+
} | null | undefined;
|
|
936
|
+
code_modified_external_to_seam_error?: {
|
|
937
|
+
message: string;
|
|
938
|
+
error_code: "code_modified_external_to_seam";
|
|
939
|
+
is_access_code_error: true;
|
|
940
|
+
created_at?: string | undefined;
|
|
941
|
+
} | null | undefined;
|
|
942
|
+
}, {
|
|
943
|
+
smartthings_failed_to_set_access_code?: {
|
|
944
|
+
message: string;
|
|
945
|
+
error_code: "smartthings_failed_to_set_access_code";
|
|
946
|
+
is_access_code_error: true;
|
|
947
|
+
created_at?: string | undefined;
|
|
948
|
+
} | null | undefined;
|
|
949
|
+
smartthings_failed_to_set_after_multiple_retries?: {
|
|
950
|
+
message: string;
|
|
951
|
+
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
952
|
+
is_access_code_error: true;
|
|
953
|
+
created_at?: string | undefined;
|
|
954
|
+
} | null | undefined;
|
|
955
|
+
failed_to_set_on_device?: {
|
|
956
|
+
message: string;
|
|
957
|
+
error_code: "failed_to_set_on_device";
|
|
958
|
+
is_access_code_error: true;
|
|
959
|
+
created_at?: string | undefined;
|
|
960
|
+
} | null | undefined;
|
|
961
|
+
failed_to_remove_from_device?: {
|
|
962
|
+
message: string;
|
|
963
|
+
error_code: "failed_to_remove_from_device";
|
|
964
|
+
is_access_code_error: true;
|
|
965
|
+
created_at?: string | undefined;
|
|
966
|
+
} | null | undefined;
|
|
967
|
+
duplicate_code_on_device?: {
|
|
968
|
+
message: string;
|
|
969
|
+
error_code: "duplicate_code_on_device";
|
|
970
|
+
is_access_code_error: true;
|
|
971
|
+
created_at?: string | undefined;
|
|
972
|
+
} | null | undefined;
|
|
973
|
+
duplicate_code_attempt_prevented?: {
|
|
974
|
+
message: string;
|
|
975
|
+
error_code: "duplicate_code_attempt_prevented";
|
|
976
|
+
is_access_code_error: true;
|
|
977
|
+
created_at?: string | undefined;
|
|
978
|
+
} | null | undefined;
|
|
979
|
+
igloohome_bridge_too_many_pending_jobs?: {
|
|
980
|
+
message: string;
|
|
981
|
+
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
982
|
+
is_access_code_error: true;
|
|
983
|
+
created_at?: string | undefined;
|
|
984
|
+
} | null | undefined;
|
|
985
|
+
igloohome_bridge_offline?: {
|
|
986
|
+
message: string;
|
|
987
|
+
error_code: "igloohome_bridge_offline";
|
|
988
|
+
is_access_code_error: true;
|
|
989
|
+
created_at?: string | undefined;
|
|
990
|
+
} | null | undefined;
|
|
991
|
+
kwikset_unable_to_confirm_code?: {
|
|
992
|
+
message: string;
|
|
993
|
+
error_code: "kwikset_unable_to_confirm_code";
|
|
994
|
+
is_access_code_error: true;
|
|
995
|
+
created_at?: string | undefined;
|
|
996
|
+
} | null | undefined;
|
|
997
|
+
kwikset_unable_to_confirm_deletion?: {
|
|
998
|
+
message: string;
|
|
999
|
+
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1000
|
+
is_access_code_error: true;
|
|
1001
|
+
created_at?: string | undefined;
|
|
1002
|
+
} | null | undefined;
|
|
1003
|
+
igloohome_offline_access_code_no_variance_available?: {
|
|
1004
|
+
message: string;
|
|
1005
|
+
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1006
|
+
is_access_code_error: true;
|
|
1007
|
+
created_at?: string | undefined;
|
|
1008
|
+
} | null | undefined;
|
|
1009
|
+
august_lock_invalid_code_length?: {
|
|
1010
|
+
message: string;
|
|
1011
|
+
error_code: "august_lock_invalid_code_length";
|
|
1012
|
+
is_access_code_error: true;
|
|
1013
|
+
created_at?: string | undefined;
|
|
1014
|
+
} | null | undefined;
|
|
1015
|
+
august_device_programming_delay?: {
|
|
1016
|
+
message: string;
|
|
1017
|
+
error_code: "august_device_programming_delay";
|
|
1018
|
+
is_access_code_error: true;
|
|
1019
|
+
created_at?: string | undefined;
|
|
1020
|
+
} | null | undefined;
|
|
1021
|
+
august_device_slots_full?: {
|
|
1022
|
+
message: string;
|
|
1023
|
+
error_code: "august_device_slots_full";
|
|
1024
|
+
is_access_code_error: true;
|
|
1025
|
+
created_at?: string | undefined;
|
|
1026
|
+
} | null | undefined;
|
|
1027
|
+
august_lock_temporarily_offline?: {
|
|
1028
|
+
message: string;
|
|
1029
|
+
error_code: "august_lock_temporarily_offline";
|
|
1030
|
+
is_access_code_error: true;
|
|
1031
|
+
created_at?: string | undefined;
|
|
1032
|
+
} | null | undefined;
|
|
1033
|
+
august_lock_missing_keypad?: {
|
|
1034
|
+
message: string;
|
|
1035
|
+
error_code: "august_lock_missing_keypad";
|
|
1036
|
+
is_access_code_error: true;
|
|
1037
|
+
created_at?: string | undefined;
|
|
1038
|
+
} | null | undefined;
|
|
1039
|
+
salto_ks_user_not_subscribed?: {
|
|
1040
|
+
message: string;
|
|
1041
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
1042
|
+
is_access_code_error: true;
|
|
1043
|
+
created_at?: string | undefined;
|
|
1044
|
+
} | null | undefined;
|
|
1045
|
+
hubitat_device_programming_delay?: {
|
|
1046
|
+
message: string;
|
|
1047
|
+
error_code: "hubitat_device_programming_delay";
|
|
1048
|
+
is_access_code_error: true;
|
|
1049
|
+
created_at?: string | undefined;
|
|
1050
|
+
} | null | undefined;
|
|
1051
|
+
hubitat_no_free_positions_available?: {
|
|
1052
|
+
message: string;
|
|
1053
|
+
error_code: "hubitat_no_free_positions_available";
|
|
1054
|
+
is_access_code_error: true;
|
|
1055
|
+
created_at?: string | undefined;
|
|
1056
|
+
} | null | undefined;
|
|
1057
|
+
smartthings_no_free_slots_available?: {
|
|
1058
|
+
message: string;
|
|
1059
|
+
error_code: "smartthings_no_free_slots_available";
|
|
1060
|
+
is_access_code_error: true;
|
|
1061
|
+
created_at?: string | undefined;
|
|
1062
|
+
} | null | undefined;
|
|
1063
|
+
wyze_duplicate_code_name?: {
|
|
1064
|
+
message: string;
|
|
1065
|
+
error_code: "wyze_duplicate_code_name";
|
|
1066
|
+
is_access_code_error: true;
|
|
1067
|
+
created_at?: string | undefined;
|
|
1068
|
+
} | null | undefined;
|
|
1069
|
+
wyze_potential_duplicate_code?: {
|
|
1070
|
+
message: string;
|
|
1071
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1072
|
+
is_access_code_error: true;
|
|
1073
|
+
created_at?: string | undefined;
|
|
1074
|
+
} | null | undefined;
|
|
1075
|
+
dormakaba_oracode_no_valid_user_level?: {
|
|
1076
|
+
message: string;
|
|
1077
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1078
|
+
is_access_code_error: true;
|
|
1079
|
+
created_at?: string | undefined;
|
|
1080
|
+
} | null | undefined;
|
|
1081
|
+
code_modified_external_to_seam_error?: {
|
|
1082
|
+
message: string;
|
|
1083
|
+
error_code: "code_modified_external_to_seam";
|
|
1084
|
+
is_access_code_error: true;
|
|
1085
|
+
created_at?: string | undefined;
|
|
1086
|
+
} | null | undefined;
|
|
1087
|
+
}>;
|
|
1088
|
+
export type AccessCodeErrorMap = z.infer<typeof access_code_error_map>;
|
|
251
1089
|
declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
252
1090
|
message: z.ZodString;
|
|
1091
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
253
1092
|
}, {
|
|
254
1093
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
255
1094
|
}>, "strip", z.ZodTypeAny, {
|
|
256
1095
|
message: string;
|
|
257
1096
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1097
|
+
created_at?: string | undefined;
|
|
258
1098
|
}, {
|
|
259
1099
|
message: string;
|
|
260
1100
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1101
|
+
created_at?: string | undefined;
|
|
261
1102
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
262
1103
|
message: z.ZodString;
|
|
1104
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
263
1105
|
}, {
|
|
264
1106
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
265
1107
|
}>, "strip", z.ZodTypeAny, {
|
|
266
1108
|
message: string;
|
|
267
1109
|
warning_code: "schlage_detected_duplicate";
|
|
1110
|
+
created_at?: string | undefined;
|
|
268
1111
|
}, {
|
|
269
1112
|
message: string;
|
|
270
1113
|
warning_code: "schlage_detected_duplicate";
|
|
1114
|
+
created_at?: string | undefined;
|
|
271
1115
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
272
1116
|
message: z.ZodString;
|
|
1117
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
273
1118
|
}, {
|
|
274
1119
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
275
1120
|
}>, "strip", z.ZodTypeAny, {
|
|
276
1121
|
message: string;
|
|
277
1122
|
warning_code: "schlage_creation_outage";
|
|
1123
|
+
created_at?: string | undefined;
|
|
278
1124
|
}, {
|
|
279
1125
|
message: string;
|
|
280
1126
|
warning_code: "schlage_creation_outage";
|
|
1127
|
+
created_at?: string | undefined;
|
|
281
1128
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
282
1129
|
message: z.ZodString;
|
|
283
|
-
|
|
284
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
285
|
-
}>, "strip", z.ZodTypeAny, {
|
|
286
|
-
message: string;
|
|
287
|
-
warning_code: "salto_office_mode";
|
|
288
|
-
}, {
|
|
289
|
-
message: string;
|
|
290
|
-
warning_code: "salto_office_mode";
|
|
291
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
292
|
-
message: z.ZodString;
|
|
1130
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
293
1131
|
}, {
|
|
294
1132
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
295
1133
|
}>, "strip", z.ZodTypeAny, {
|
|
296
1134
|
message: string;
|
|
297
1135
|
warning_code: "code_modified_external_to_seam";
|
|
1136
|
+
created_at?: string | undefined;
|
|
298
1137
|
}, {
|
|
299
1138
|
message: string;
|
|
300
1139
|
warning_code: "code_modified_external_to_seam";
|
|
1140
|
+
created_at?: string | undefined;
|
|
301
1141
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
302
1142
|
message: z.ZodString;
|
|
1143
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
303
1144
|
}, {
|
|
304
1145
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
305
1146
|
}>, "strip", z.ZodTypeAny, {
|
|
306
1147
|
message: string;
|
|
307
1148
|
warning_code: "delay_in_setting_on_device";
|
|
1149
|
+
created_at?: string | undefined;
|
|
308
1150
|
}, {
|
|
309
1151
|
message: string;
|
|
310
1152
|
warning_code: "delay_in_setting_on_device";
|
|
1153
|
+
created_at?: string | undefined;
|
|
311
1154
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
312
1155
|
message: z.ZodString;
|
|
1156
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
313
1157
|
}, {
|
|
314
1158
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
315
1159
|
}>, "strip", z.ZodTypeAny, {
|
|
316
1160
|
message: string;
|
|
317
1161
|
warning_code: "delay_in_removing_from_device";
|
|
1162
|
+
created_at?: string | undefined;
|
|
318
1163
|
}, {
|
|
319
1164
|
message: string;
|
|
320
1165
|
warning_code: "delay_in_removing_from_device";
|
|
1166
|
+
created_at?: string | undefined;
|
|
321
1167
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
322
1168
|
message: z.ZodString;
|
|
1169
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
323
1170
|
}, {
|
|
324
1171
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
325
1172
|
}>, "strip", z.ZodTypeAny, {
|
|
326
1173
|
message: string;
|
|
327
1174
|
warning_code: "third_party_integration_detected";
|
|
1175
|
+
created_at?: string | undefined;
|
|
328
1176
|
}, {
|
|
329
1177
|
message: string;
|
|
330
1178
|
warning_code: "third_party_integration_detected";
|
|
1179
|
+
created_at?: string | undefined;
|
|
331
1180
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
332
1181
|
message: z.ZodString;
|
|
1182
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
333
1183
|
}, {
|
|
334
1184
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
335
1185
|
}>, "strip", z.ZodTypeAny, {
|
|
336
1186
|
message: string;
|
|
337
1187
|
warning_code: "august_device_programming_delay";
|
|
1188
|
+
created_at?: string | undefined;
|
|
338
1189
|
}, {
|
|
339
1190
|
message: string;
|
|
340
1191
|
warning_code: "august_device_programming_delay";
|
|
1192
|
+
created_at?: string | undefined;
|
|
1193
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1194
|
+
message: z.ZodString;
|
|
1195
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
}, {
|
|
1197
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
1198
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1199
|
+
message: string;
|
|
1200
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1201
|
+
created_at?: string | undefined;
|
|
1202
|
+
}, {
|
|
1203
|
+
message: string;
|
|
1204
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1205
|
+
created_at?: string | undefined;
|
|
341
1206
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
342
1207
|
message: z.ZodString;
|
|
1208
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
343
1209
|
}, {
|
|
344
1210
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
345
1211
|
}>, "strip", z.ZodTypeAny, {
|
|
346
1212
|
message: string;
|
|
347
1213
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1214
|
+
created_at?: string | undefined;
|
|
348
1215
|
}, {
|
|
349
1216
|
message: string;
|
|
350
1217
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1218
|
+
created_at?: string | undefined;
|
|
351
1219
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
352
1220
|
message: z.ZodString;
|
|
1221
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
353
1222
|
}, {
|
|
354
1223
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
355
1224
|
}>, "strip", z.ZodTypeAny, {
|
|
356
1225
|
message: string;
|
|
357
1226
|
warning_code: "management_transferred";
|
|
1227
|
+
created_at?: string | undefined;
|
|
358
1228
|
}, {
|
|
359
1229
|
message: string;
|
|
360
1230
|
warning_code: "management_transferred";
|
|
1231
|
+
created_at?: string | undefined;
|
|
361
1232
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
362
1233
|
message: z.ZodString;
|
|
1234
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
363
1235
|
}, {
|
|
364
1236
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
365
1237
|
}>, "strip", z.ZodTypeAny, {
|
|
366
1238
|
message: string;
|
|
367
1239
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1240
|
+
created_at?: string | undefined;
|
|
368
1241
|
}, {
|
|
369
1242
|
message: string;
|
|
370
1243
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1244
|
+
created_at?: string | undefined;
|
|
371
1245
|
}>]>;
|
|
372
1246
|
export type AccessCodeWarning = z.infer<typeof access_code_warning>;
|
|
1247
|
+
declare const access_code_warning_map: z.ZodObject<{
|
|
1248
|
+
smartthings_failed_to_set_access_code: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1249
|
+
message: z.ZodString;
|
|
1250
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1251
|
+
}, {
|
|
1252
|
+
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
1253
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1254
|
+
message: string;
|
|
1255
|
+
warning_code: "smartthings_failed_to_set_access_code";
|
|
1256
|
+
created_at?: string | undefined;
|
|
1257
|
+
}, {
|
|
1258
|
+
message: string;
|
|
1259
|
+
warning_code: "smartthings_failed_to_set_access_code";
|
|
1260
|
+
created_at?: string | undefined;
|
|
1261
|
+
}>>>;
|
|
1262
|
+
schlage_detected_duplicate: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1263
|
+
message: z.ZodString;
|
|
1264
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1265
|
+
}, {
|
|
1266
|
+
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
1267
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1268
|
+
message: string;
|
|
1269
|
+
warning_code: "schlage_detected_duplicate";
|
|
1270
|
+
created_at?: string | undefined;
|
|
1271
|
+
}, {
|
|
1272
|
+
message: string;
|
|
1273
|
+
warning_code: "schlage_detected_duplicate";
|
|
1274
|
+
created_at?: string | undefined;
|
|
1275
|
+
}>>>;
|
|
1276
|
+
schlage_creation_outage: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1277
|
+
message: z.ZodString;
|
|
1278
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1279
|
+
}, {
|
|
1280
|
+
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
1281
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1282
|
+
message: string;
|
|
1283
|
+
warning_code: "schlage_creation_outage";
|
|
1284
|
+
created_at?: string | undefined;
|
|
1285
|
+
}, {
|
|
1286
|
+
message: string;
|
|
1287
|
+
warning_code: "schlage_creation_outage";
|
|
1288
|
+
created_at?: string | undefined;
|
|
1289
|
+
}>>>;
|
|
1290
|
+
code_modified_external_to_seam_warning: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1291
|
+
message: z.ZodString;
|
|
1292
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
}, {
|
|
1294
|
+
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
1295
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1296
|
+
message: string;
|
|
1297
|
+
warning_code: "code_modified_external_to_seam";
|
|
1298
|
+
created_at?: string | undefined;
|
|
1299
|
+
}, {
|
|
1300
|
+
message: string;
|
|
1301
|
+
warning_code: "code_modified_external_to_seam";
|
|
1302
|
+
created_at?: string | undefined;
|
|
1303
|
+
}>>>;
|
|
1304
|
+
delay_in_setting_on_device: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1305
|
+
message: z.ZodString;
|
|
1306
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1307
|
+
}, {
|
|
1308
|
+
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
1309
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1310
|
+
message: string;
|
|
1311
|
+
warning_code: "delay_in_setting_on_device";
|
|
1312
|
+
created_at?: string | undefined;
|
|
1313
|
+
}, {
|
|
1314
|
+
message: string;
|
|
1315
|
+
warning_code: "delay_in_setting_on_device";
|
|
1316
|
+
created_at?: string | undefined;
|
|
1317
|
+
}>>>;
|
|
1318
|
+
delay_in_removing_from_device: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1319
|
+
message: z.ZodString;
|
|
1320
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1321
|
+
}, {
|
|
1322
|
+
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
1323
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1324
|
+
message: string;
|
|
1325
|
+
warning_code: "delay_in_removing_from_device";
|
|
1326
|
+
created_at?: string | undefined;
|
|
1327
|
+
}, {
|
|
1328
|
+
message: string;
|
|
1329
|
+
warning_code: "delay_in_removing_from_device";
|
|
1330
|
+
created_at?: string | undefined;
|
|
1331
|
+
}>>>;
|
|
1332
|
+
third_party_integration_detected: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1333
|
+
message: z.ZodString;
|
|
1334
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1335
|
+
}, {
|
|
1336
|
+
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
1337
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1338
|
+
message: string;
|
|
1339
|
+
warning_code: "third_party_integration_detected";
|
|
1340
|
+
created_at?: string | undefined;
|
|
1341
|
+
}, {
|
|
1342
|
+
message: string;
|
|
1343
|
+
warning_code: "third_party_integration_detected";
|
|
1344
|
+
created_at?: string | undefined;
|
|
1345
|
+
}>>>;
|
|
1346
|
+
august_device_programming_delay: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1347
|
+
message: z.ZodString;
|
|
1348
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
}, {
|
|
1350
|
+
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
1351
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1352
|
+
message: string;
|
|
1353
|
+
warning_code: "august_device_programming_delay";
|
|
1354
|
+
created_at?: string | undefined;
|
|
1355
|
+
}, {
|
|
1356
|
+
message: string;
|
|
1357
|
+
warning_code: "august_device_programming_delay";
|
|
1358
|
+
created_at?: string | undefined;
|
|
1359
|
+
}>>>;
|
|
1360
|
+
august_lock_temporarily_offline: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1361
|
+
message: z.ZodString;
|
|
1362
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
}, {
|
|
1364
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
1365
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1366
|
+
message: string;
|
|
1367
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1368
|
+
created_at?: string | undefined;
|
|
1369
|
+
}, {
|
|
1370
|
+
message: string;
|
|
1371
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1372
|
+
created_at?: string | undefined;
|
|
1373
|
+
}>>>;
|
|
1374
|
+
igloo_algopin_must_be_used_within_24_hours: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1375
|
+
message: z.ZodString;
|
|
1376
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1377
|
+
}, {
|
|
1378
|
+
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
1379
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1380
|
+
message: string;
|
|
1381
|
+
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1382
|
+
created_at?: string | undefined;
|
|
1383
|
+
}, {
|
|
1384
|
+
message: string;
|
|
1385
|
+
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1386
|
+
created_at?: string | undefined;
|
|
1387
|
+
}>>>;
|
|
1388
|
+
management_transferred: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1389
|
+
message: z.ZodString;
|
|
1390
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1391
|
+
}, {
|
|
1392
|
+
warning_code: z.ZodLiteral<"management_transferred">;
|
|
1393
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1394
|
+
message: string;
|
|
1395
|
+
warning_code: "management_transferred";
|
|
1396
|
+
created_at?: string | undefined;
|
|
1397
|
+
}, {
|
|
1398
|
+
message: string;
|
|
1399
|
+
warning_code: "management_transferred";
|
|
1400
|
+
created_at?: string | undefined;
|
|
1401
|
+
}>>>;
|
|
1402
|
+
kwikset_unable_to_confirm_code_warning: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1403
|
+
message: z.ZodString;
|
|
1404
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1405
|
+
}, {
|
|
1406
|
+
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
1407
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1408
|
+
message: string;
|
|
1409
|
+
warning_code: "kwikset_unable_to_confirm_code";
|
|
1410
|
+
created_at?: string | undefined;
|
|
1411
|
+
}, {
|
|
1412
|
+
message: string;
|
|
1413
|
+
warning_code: "kwikset_unable_to_confirm_code";
|
|
1414
|
+
created_at?: string | undefined;
|
|
1415
|
+
}>>>;
|
|
1416
|
+
}, "strip", z.ZodTypeAny, {
|
|
1417
|
+
third_party_integration_detected?: {
|
|
1418
|
+
message: string;
|
|
1419
|
+
warning_code: "third_party_integration_detected";
|
|
1420
|
+
created_at?: string | undefined;
|
|
1421
|
+
} | null | undefined;
|
|
1422
|
+
smartthings_failed_to_set_access_code?: {
|
|
1423
|
+
message: string;
|
|
1424
|
+
warning_code: "smartthings_failed_to_set_access_code";
|
|
1425
|
+
created_at?: string | undefined;
|
|
1426
|
+
} | null | undefined;
|
|
1427
|
+
august_device_programming_delay?: {
|
|
1428
|
+
message: string;
|
|
1429
|
+
warning_code: "august_device_programming_delay";
|
|
1430
|
+
created_at?: string | undefined;
|
|
1431
|
+
} | null | undefined;
|
|
1432
|
+
august_lock_temporarily_offline?: {
|
|
1433
|
+
message: string;
|
|
1434
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1435
|
+
created_at?: string | undefined;
|
|
1436
|
+
} | null | undefined;
|
|
1437
|
+
schlage_detected_duplicate?: {
|
|
1438
|
+
message: string;
|
|
1439
|
+
warning_code: "schlage_detected_duplicate";
|
|
1440
|
+
created_at?: string | undefined;
|
|
1441
|
+
} | null | undefined;
|
|
1442
|
+
schlage_creation_outage?: {
|
|
1443
|
+
message: string;
|
|
1444
|
+
warning_code: "schlage_creation_outage";
|
|
1445
|
+
created_at?: string | undefined;
|
|
1446
|
+
} | null | undefined;
|
|
1447
|
+
delay_in_setting_on_device?: {
|
|
1448
|
+
message: string;
|
|
1449
|
+
warning_code: "delay_in_setting_on_device";
|
|
1450
|
+
created_at?: string | undefined;
|
|
1451
|
+
} | null | undefined;
|
|
1452
|
+
delay_in_removing_from_device?: {
|
|
1453
|
+
message: string;
|
|
1454
|
+
warning_code: "delay_in_removing_from_device";
|
|
1455
|
+
created_at?: string | undefined;
|
|
1456
|
+
} | null | undefined;
|
|
1457
|
+
igloo_algopin_must_be_used_within_24_hours?: {
|
|
1458
|
+
message: string;
|
|
1459
|
+
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1460
|
+
created_at?: string | undefined;
|
|
1461
|
+
} | null | undefined;
|
|
1462
|
+
management_transferred?: {
|
|
1463
|
+
message: string;
|
|
1464
|
+
warning_code: "management_transferred";
|
|
1465
|
+
created_at?: string | undefined;
|
|
1466
|
+
} | null | undefined;
|
|
1467
|
+
code_modified_external_to_seam_warning?: {
|
|
1468
|
+
message: string;
|
|
1469
|
+
warning_code: "code_modified_external_to_seam";
|
|
1470
|
+
created_at?: string | undefined;
|
|
1471
|
+
} | null | undefined;
|
|
1472
|
+
kwikset_unable_to_confirm_code_warning?: {
|
|
1473
|
+
message: string;
|
|
1474
|
+
warning_code: "kwikset_unable_to_confirm_code";
|
|
1475
|
+
created_at?: string | undefined;
|
|
1476
|
+
} | null | undefined;
|
|
1477
|
+
}, {
|
|
1478
|
+
third_party_integration_detected?: {
|
|
1479
|
+
message: string;
|
|
1480
|
+
warning_code: "third_party_integration_detected";
|
|
1481
|
+
created_at?: string | undefined;
|
|
1482
|
+
} | null | undefined;
|
|
1483
|
+
smartthings_failed_to_set_access_code?: {
|
|
1484
|
+
message: string;
|
|
1485
|
+
warning_code: "smartthings_failed_to_set_access_code";
|
|
1486
|
+
created_at?: string | undefined;
|
|
1487
|
+
} | null | undefined;
|
|
1488
|
+
august_device_programming_delay?: {
|
|
1489
|
+
message: string;
|
|
1490
|
+
warning_code: "august_device_programming_delay";
|
|
1491
|
+
created_at?: string | undefined;
|
|
1492
|
+
} | null | undefined;
|
|
1493
|
+
august_lock_temporarily_offline?: {
|
|
1494
|
+
message: string;
|
|
1495
|
+
warning_code: "august_lock_temporarily_offline";
|
|
1496
|
+
created_at?: string | undefined;
|
|
1497
|
+
} | null | undefined;
|
|
1498
|
+
schlage_detected_duplicate?: {
|
|
1499
|
+
message: string;
|
|
1500
|
+
warning_code: "schlage_detected_duplicate";
|
|
1501
|
+
created_at?: string | undefined;
|
|
1502
|
+
} | null | undefined;
|
|
1503
|
+
schlage_creation_outage?: {
|
|
1504
|
+
message: string;
|
|
1505
|
+
warning_code: "schlage_creation_outage";
|
|
1506
|
+
created_at?: string | undefined;
|
|
1507
|
+
} | null | undefined;
|
|
1508
|
+
delay_in_setting_on_device?: {
|
|
1509
|
+
message: string;
|
|
1510
|
+
warning_code: "delay_in_setting_on_device";
|
|
1511
|
+
created_at?: string | undefined;
|
|
1512
|
+
} | null | undefined;
|
|
1513
|
+
delay_in_removing_from_device?: {
|
|
1514
|
+
message: string;
|
|
1515
|
+
warning_code: "delay_in_removing_from_device";
|
|
1516
|
+
created_at?: string | undefined;
|
|
1517
|
+
} | null | undefined;
|
|
1518
|
+
igloo_algopin_must_be_used_within_24_hours?: {
|
|
1519
|
+
message: string;
|
|
1520
|
+
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1521
|
+
created_at?: string | undefined;
|
|
1522
|
+
} | null | undefined;
|
|
1523
|
+
management_transferred?: {
|
|
1524
|
+
message: string;
|
|
1525
|
+
warning_code: "management_transferred";
|
|
1526
|
+
created_at?: string | undefined;
|
|
1527
|
+
} | null | undefined;
|
|
1528
|
+
code_modified_external_to_seam_warning?: {
|
|
1529
|
+
message: string;
|
|
1530
|
+
warning_code: "code_modified_external_to_seam";
|
|
1531
|
+
created_at?: string | undefined;
|
|
1532
|
+
} | null | undefined;
|
|
1533
|
+
kwikset_unable_to_confirm_code_warning?: {
|
|
1534
|
+
message: string;
|
|
1535
|
+
warning_code: "kwikset_unable_to_confirm_code";
|
|
1536
|
+
created_at?: string | undefined;
|
|
1537
|
+
} | null | undefined;
|
|
1538
|
+
}>;
|
|
1539
|
+
export type AccessCodeWarningMap = z.infer<typeof access_code_warning_map>;
|
|
373
1540
|
export declare const access_code: z.ZodObject<{
|
|
374
1541
|
common_code_key: z.ZodNullable<z.ZodString>;
|
|
375
1542
|
is_scheduled_on_device: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -383,250 +1550,387 @@ export declare const access_code: z.ZodObject<{
|
|
|
383
1550
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
384
1551
|
message: z.ZodString;
|
|
385
1552
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1553
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
386
1554
|
}, {
|
|
387
1555
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
388
1556
|
}>, "strip", z.ZodTypeAny, {
|
|
389
1557
|
message: string;
|
|
390
1558
|
error_code: "smartthings_failed_to_set_access_code";
|
|
391
1559
|
is_access_code_error: true;
|
|
1560
|
+
created_at?: string | undefined;
|
|
392
1561
|
}, {
|
|
393
1562
|
message: string;
|
|
394
1563
|
error_code: "smartthings_failed_to_set_access_code";
|
|
395
1564
|
is_access_code_error: true;
|
|
1565
|
+
created_at?: string | undefined;
|
|
396
1566
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
397
1567
|
message: z.ZodString;
|
|
398
1568
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1569
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
399
1570
|
}, {
|
|
400
1571
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
401
1572
|
}>, "strip", z.ZodTypeAny, {
|
|
402
1573
|
message: string;
|
|
403
1574
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
404
1575
|
is_access_code_error: true;
|
|
1576
|
+
created_at?: string | undefined;
|
|
405
1577
|
}, {
|
|
406
1578
|
message: string;
|
|
407
1579
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
408
1580
|
is_access_code_error: true;
|
|
1581
|
+
created_at?: string | undefined;
|
|
1582
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1583
|
+
message: z.ZodString;
|
|
1584
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1585
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1586
|
+
}, {
|
|
1587
|
+
error_code: z.ZodLiteral<"smartthings_no_free_slots_available">;
|
|
1588
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1589
|
+
message: string;
|
|
1590
|
+
error_code: "smartthings_no_free_slots_available";
|
|
1591
|
+
is_access_code_error: true;
|
|
1592
|
+
created_at?: string | undefined;
|
|
1593
|
+
}, {
|
|
1594
|
+
message: string;
|
|
1595
|
+
error_code: "smartthings_no_free_slots_available";
|
|
1596
|
+
is_access_code_error: true;
|
|
1597
|
+
created_at?: string | undefined;
|
|
409
1598
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
410
1599
|
message: z.ZodString;
|
|
411
1600
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1601
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
412
1602
|
}, {
|
|
413
1603
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
414
1604
|
}>, "strip", z.ZodTypeAny, {
|
|
415
1605
|
message: string;
|
|
416
1606
|
error_code: "failed_to_set_on_device";
|
|
417
1607
|
is_access_code_error: true;
|
|
1608
|
+
created_at?: string | undefined;
|
|
418
1609
|
}, {
|
|
419
1610
|
message: string;
|
|
420
1611
|
error_code: "failed_to_set_on_device";
|
|
421
1612
|
is_access_code_error: true;
|
|
1613
|
+
created_at?: string | undefined;
|
|
422
1614
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
423
1615
|
message: z.ZodString;
|
|
424
1616
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1617
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
425
1618
|
}, {
|
|
426
1619
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
427
1620
|
}>, "strip", z.ZodTypeAny, {
|
|
428
1621
|
message: string;
|
|
429
1622
|
error_code: "failed_to_remove_from_device";
|
|
430
1623
|
is_access_code_error: true;
|
|
1624
|
+
created_at?: string | undefined;
|
|
431
1625
|
}, {
|
|
432
1626
|
message: string;
|
|
433
1627
|
error_code: "failed_to_remove_from_device";
|
|
434
1628
|
is_access_code_error: true;
|
|
1629
|
+
created_at?: string | undefined;
|
|
435
1630
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
436
1631
|
message: z.ZodString;
|
|
437
1632
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1633
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
438
1634
|
}, {
|
|
439
1635
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
440
1636
|
}>, "strip", z.ZodTypeAny, {
|
|
441
1637
|
message: string;
|
|
442
1638
|
error_code: "duplicate_code_on_device";
|
|
443
1639
|
is_access_code_error: true;
|
|
1640
|
+
created_at?: string | undefined;
|
|
444
1641
|
}, {
|
|
445
1642
|
message: string;
|
|
446
1643
|
error_code: "duplicate_code_on_device";
|
|
447
1644
|
is_access_code_error: true;
|
|
1645
|
+
created_at?: string | undefined;
|
|
448
1646
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
449
1647
|
message: z.ZodString;
|
|
450
1648
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1649
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
451
1650
|
}, {
|
|
452
1651
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
453
1652
|
}>, "strip", z.ZodTypeAny, {
|
|
454
1653
|
message: string;
|
|
455
1654
|
error_code: "duplicate_code_attempt_prevented";
|
|
456
1655
|
is_access_code_error: true;
|
|
1656
|
+
created_at?: string | undefined;
|
|
457
1657
|
}, {
|
|
458
1658
|
message: string;
|
|
459
1659
|
error_code: "duplicate_code_attempt_prevented";
|
|
460
1660
|
is_access_code_error: true;
|
|
1661
|
+
created_at?: string | undefined;
|
|
461
1662
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
462
1663
|
message: z.ZodString;
|
|
463
1664
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1665
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
464
1666
|
}, {
|
|
465
1667
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
466
1668
|
}>, "strip", z.ZodTypeAny, {
|
|
467
1669
|
message: string;
|
|
468
1670
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
469
1671
|
is_access_code_error: true;
|
|
1672
|
+
created_at?: string | undefined;
|
|
470
1673
|
}, {
|
|
471
1674
|
message: string;
|
|
472
1675
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
473
1676
|
is_access_code_error: true;
|
|
1677
|
+
created_at?: string | undefined;
|
|
474
1678
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
475
1679
|
message: z.ZodString;
|
|
476
1680
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1681
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
477
1682
|
}, {
|
|
478
1683
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
479
1684
|
}>, "strip", z.ZodTypeAny, {
|
|
480
1685
|
message: string;
|
|
481
1686
|
error_code: "igloohome_bridge_offline";
|
|
482
1687
|
is_access_code_error: true;
|
|
1688
|
+
created_at?: string | undefined;
|
|
483
1689
|
}, {
|
|
484
1690
|
message: string;
|
|
485
1691
|
error_code: "igloohome_bridge_offline";
|
|
486
1692
|
is_access_code_error: true;
|
|
1693
|
+
created_at?: string | undefined;
|
|
487
1694
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
488
1695
|
message: z.ZodString;
|
|
489
1696
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1697
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
490
1698
|
}, {
|
|
491
1699
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
492
1700
|
}>, "strip", z.ZodTypeAny, {
|
|
493
1701
|
message: string;
|
|
494
1702
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
495
1703
|
is_access_code_error: true;
|
|
1704
|
+
created_at?: string | undefined;
|
|
496
1705
|
}, {
|
|
497
1706
|
message: string;
|
|
498
1707
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
499
1708
|
is_access_code_error: true;
|
|
1709
|
+
created_at?: string | undefined;
|
|
500
1710
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
501
1711
|
message: z.ZodString;
|
|
502
1712
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1713
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
503
1714
|
}, {
|
|
504
1715
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
505
1716
|
}>, "strip", z.ZodTypeAny, {
|
|
506
1717
|
message: string;
|
|
507
1718
|
error_code: "kwikset_unable_to_confirm_code";
|
|
508
1719
|
is_access_code_error: true;
|
|
1720
|
+
created_at?: string | undefined;
|
|
509
1721
|
}, {
|
|
510
1722
|
message: string;
|
|
511
1723
|
error_code: "kwikset_unable_to_confirm_code";
|
|
512
1724
|
is_access_code_error: true;
|
|
1725
|
+
created_at?: string | undefined;
|
|
513
1726
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
514
1727
|
message: z.ZodString;
|
|
515
1728
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1729
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
516
1730
|
}, {
|
|
517
1731
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
518
1732
|
}>, "strip", z.ZodTypeAny, {
|
|
519
1733
|
message: string;
|
|
520
1734
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
521
1735
|
is_access_code_error: true;
|
|
1736
|
+
created_at?: string | undefined;
|
|
522
1737
|
}, {
|
|
523
1738
|
message: string;
|
|
524
1739
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
525
1740
|
is_access_code_error: true;
|
|
1741
|
+
created_at?: string | undefined;
|
|
526
1742
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
527
1743
|
message: z.ZodString;
|
|
528
1744
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1745
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
529
1746
|
}, {
|
|
530
1747
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
531
1748
|
}>, "strip", z.ZodTypeAny, {
|
|
532
1749
|
message: string;
|
|
533
1750
|
error_code: "code_modified_external_to_seam";
|
|
534
1751
|
is_access_code_error: true;
|
|
1752
|
+
created_at?: string | undefined;
|
|
535
1753
|
}, {
|
|
536
1754
|
message: string;
|
|
537
1755
|
error_code: "code_modified_external_to_seam";
|
|
538
1756
|
is_access_code_error: true;
|
|
1757
|
+
created_at?: string | undefined;
|
|
539
1758
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
540
1759
|
message: z.ZodString;
|
|
541
1760
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1761
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
542
1762
|
}, {
|
|
543
1763
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
544
1764
|
}>, "strip", z.ZodTypeAny, {
|
|
545
1765
|
message: string;
|
|
546
1766
|
error_code: "august_lock_invalid_code_length";
|
|
547
1767
|
is_access_code_error: true;
|
|
1768
|
+
created_at?: string | undefined;
|
|
548
1769
|
}, {
|
|
549
1770
|
message: string;
|
|
550
1771
|
error_code: "august_lock_invalid_code_length";
|
|
551
1772
|
is_access_code_error: true;
|
|
1773
|
+
created_at?: string | undefined;
|
|
552
1774
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
553
1775
|
message: z.ZodString;
|
|
554
1776
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1777
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
555
1778
|
}, {
|
|
556
1779
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
557
1780
|
}>, "strip", z.ZodTypeAny, {
|
|
558
1781
|
message: string;
|
|
559
1782
|
error_code: "august_device_programming_delay";
|
|
560
1783
|
is_access_code_error: true;
|
|
1784
|
+
created_at?: string | undefined;
|
|
561
1785
|
}, {
|
|
562
1786
|
message: string;
|
|
563
1787
|
error_code: "august_device_programming_delay";
|
|
564
1788
|
is_access_code_error: true;
|
|
1789
|
+
created_at?: string | undefined;
|
|
565
1790
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
566
1791
|
message: z.ZodString;
|
|
567
1792
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1793
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
568
1794
|
}, {
|
|
569
1795
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
570
1796
|
}>, "strip", z.ZodTypeAny, {
|
|
571
1797
|
message: string;
|
|
572
1798
|
error_code: "august_device_slots_full";
|
|
573
1799
|
is_access_code_error: true;
|
|
1800
|
+
created_at?: string | undefined;
|
|
574
1801
|
}, {
|
|
575
1802
|
message: string;
|
|
576
1803
|
error_code: "august_device_slots_full";
|
|
577
1804
|
is_access_code_error: true;
|
|
1805
|
+
created_at?: string | undefined;
|
|
578
1806
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
579
1807
|
message: z.ZodString;
|
|
580
1808
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1809
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
581
1810
|
}, {
|
|
582
1811
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
583
1812
|
}>, "strip", z.ZodTypeAny, {
|
|
584
1813
|
message: string;
|
|
585
1814
|
error_code: "august_lock_missing_keypad";
|
|
586
1815
|
is_access_code_error: true;
|
|
1816
|
+
created_at?: string | undefined;
|
|
587
1817
|
}, {
|
|
588
1818
|
message: string;
|
|
589
1819
|
error_code: "august_lock_missing_keypad";
|
|
590
1820
|
is_access_code_error: true;
|
|
1821
|
+
created_at?: string | undefined;
|
|
1822
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1823
|
+
message: z.ZodString;
|
|
1824
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1825
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1826
|
+
}, {
|
|
1827
|
+
error_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
1828
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1829
|
+
message: string;
|
|
1830
|
+
error_code: "august_lock_temporarily_offline";
|
|
1831
|
+
is_access_code_error: true;
|
|
1832
|
+
created_at?: string | undefined;
|
|
1833
|
+
}, {
|
|
1834
|
+
message: string;
|
|
1835
|
+
error_code: "august_lock_temporarily_offline";
|
|
1836
|
+
is_access_code_error: true;
|
|
1837
|
+
created_at?: string | undefined;
|
|
591
1838
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
592
1839
|
message: z.ZodString;
|
|
593
1840
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1841
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
594
1842
|
}, {
|
|
595
|
-
error_code: z.ZodLiteral<"
|
|
1843
|
+
error_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
596
1844
|
}>, "strip", z.ZodTypeAny, {
|
|
597
1845
|
message: string;
|
|
598
|
-
error_code: "
|
|
1846
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
599
1847
|
is_access_code_error: true;
|
|
1848
|
+
created_at?: string | undefined;
|
|
600
1849
|
}, {
|
|
601
1850
|
message: string;
|
|
602
|
-
error_code: "
|
|
1851
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
603
1852
|
is_access_code_error: true;
|
|
1853
|
+
created_at?: string | undefined;
|
|
604
1854
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
605
1855
|
message: z.ZodString;
|
|
606
1856
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1857
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
607
1858
|
}, {
|
|
608
1859
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
609
1860
|
}>, "strip", z.ZodTypeAny, {
|
|
610
1861
|
message: string;
|
|
611
1862
|
error_code: "hubitat_device_programming_delay";
|
|
612
1863
|
is_access_code_error: true;
|
|
1864
|
+
created_at?: string | undefined;
|
|
613
1865
|
}, {
|
|
614
1866
|
message: string;
|
|
615
1867
|
error_code: "hubitat_device_programming_delay";
|
|
616
1868
|
is_access_code_error: true;
|
|
1869
|
+
created_at?: string | undefined;
|
|
617
1870
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
618
1871
|
message: z.ZodString;
|
|
619
1872
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1873
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
620
1874
|
}, {
|
|
621
1875
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
622
1876
|
}>, "strip", z.ZodTypeAny, {
|
|
623
1877
|
message: string;
|
|
624
1878
|
error_code: "hubitat_no_free_positions_available";
|
|
625
1879
|
is_access_code_error: true;
|
|
1880
|
+
created_at?: string | undefined;
|
|
626
1881
|
}, {
|
|
627
1882
|
message: string;
|
|
628
1883
|
error_code: "hubitat_no_free_positions_available";
|
|
629
1884
|
is_access_code_error: true;
|
|
1885
|
+
created_at?: string | undefined;
|
|
1886
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1887
|
+
message: z.ZodString;
|
|
1888
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1889
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1890
|
+
}, {
|
|
1891
|
+
error_code: z.ZodLiteral<"wyze_duplicate_code_name">;
|
|
1892
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1893
|
+
message: string;
|
|
1894
|
+
error_code: "wyze_duplicate_code_name";
|
|
1895
|
+
is_access_code_error: true;
|
|
1896
|
+
created_at?: string | undefined;
|
|
1897
|
+
}, {
|
|
1898
|
+
message: string;
|
|
1899
|
+
error_code: "wyze_duplicate_code_name";
|
|
1900
|
+
is_access_code_error: true;
|
|
1901
|
+
created_at?: string | undefined;
|
|
1902
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1903
|
+
message: z.ZodString;
|
|
1904
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1905
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1906
|
+
}, {
|
|
1907
|
+
error_code: z.ZodLiteral<"wyze_potential_duplicate_code">;
|
|
1908
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1909
|
+
message: string;
|
|
1910
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1911
|
+
is_access_code_error: true;
|
|
1912
|
+
created_at?: string | undefined;
|
|
1913
|
+
}, {
|
|
1914
|
+
message: string;
|
|
1915
|
+
error_code: "wyze_potential_duplicate_code";
|
|
1916
|
+
is_access_code_error: true;
|
|
1917
|
+
created_at?: string | undefined;
|
|
1918
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1919
|
+
message: z.ZodString;
|
|
1920
|
+
is_access_code_error: z.ZodLiteral<true>;
|
|
1921
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
}, {
|
|
1923
|
+
error_code: z.ZodLiteral<"dormakaba_oracode_no_valid_user_level">;
|
|
1924
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1925
|
+
message: string;
|
|
1926
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1927
|
+
is_access_code_error: true;
|
|
1928
|
+
created_at?: string | undefined;
|
|
1929
|
+
}, {
|
|
1930
|
+
message: string;
|
|
1931
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
1932
|
+
is_access_code_error: true;
|
|
1933
|
+
created_at?: string | undefined;
|
|
630
1934
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
631
1935
|
created_at: z.ZodString;
|
|
632
1936
|
message: z.ZodString;
|
|
@@ -922,124 +2226,160 @@ export declare const access_code: z.ZodObject<{
|
|
|
922
2226
|
}>)[]]>, "many">;
|
|
923
2227
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
924
2228
|
message: z.ZodString;
|
|
2229
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
925
2230
|
}, {
|
|
926
2231
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
927
2232
|
}>, "strip", z.ZodTypeAny, {
|
|
928
2233
|
message: string;
|
|
929
2234
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2235
|
+
created_at?: string | undefined;
|
|
930
2236
|
}, {
|
|
931
2237
|
message: string;
|
|
932
2238
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2239
|
+
created_at?: string | undefined;
|
|
933
2240
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
934
2241
|
message: z.ZodString;
|
|
2242
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
935
2243
|
}, {
|
|
936
2244
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
937
2245
|
}>, "strip", z.ZodTypeAny, {
|
|
938
2246
|
message: string;
|
|
939
2247
|
warning_code: "schlage_detected_duplicate";
|
|
2248
|
+
created_at?: string | undefined;
|
|
940
2249
|
}, {
|
|
941
2250
|
message: string;
|
|
942
2251
|
warning_code: "schlage_detected_duplicate";
|
|
2252
|
+
created_at?: string | undefined;
|
|
943
2253
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
944
2254
|
message: z.ZodString;
|
|
2255
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
945
2256
|
}, {
|
|
946
2257
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
947
2258
|
}>, "strip", z.ZodTypeAny, {
|
|
948
2259
|
message: string;
|
|
949
2260
|
warning_code: "schlage_creation_outage";
|
|
2261
|
+
created_at?: string | undefined;
|
|
950
2262
|
}, {
|
|
951
2263
|
message: string;
|
|
952
2264
|
warning_code: "schlage_creation_outage";
|
|
2265
|
+
created_at?: string | undefined;
|
|
953
2266
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
954
2267
|
message: z.ZodString;
|
|
955
|
-
|
|
956
|
-
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
957
|
-
}>, "strip", z.ZodTypeAny, {
|
|
958
|
-
message: string;
|
|
959
|
-
warning_code: "salto_office_mode";
|
|
960
|
-
}, {
|
|
961
|
-
message: string;
|
|
962
|
-
warning_code: "salto_office_mode";
|
|
963
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
964
|
-
message: z.ZodString;
|
|
2268
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
965
2269
|
}, {
|
|
966
2270
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
967
2271
|
}>, "strip", z.ZodTypeAny, {
|
|
968
2272
|
message: string;
|
|
969
2273
|
warning_code: "code_modified_external_to_seam";
|
|
2274
|
+
created_at?: string | undefined;
|
|
970
2275
|
}, {
|
|
971
2276
|
message: string;
|
|
972
2277
|
warning_code: "code_modified_external_to_seam";
|
|
2278
|
+
created_at?: string | undefined;
|
|
973
2279
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
974
2280
|
message: z.ZodString;
|
|
2281
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
975
2282
|
}, {
|
|
976
2283
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
977
2284
|
}>, "strip", z.ZodTypeAny, {
|
|
978
2285
|
message: string;
|
|
979
2286
|
warning_code: "delay_in_setting_on_device";
|
|
2287
|
+
created_at?: string | undefined;
|
|
980
2288
|
}, {
|
|
981
2289
|
message: string;
|
|
982
2290
|
warning_code: "delay_in_setting_on_device";
|
|
2291
|
+
created_at?: string | undefined;
|
|
983
2292
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
984
2293
|
message: z.ZodString;
|
|
2294
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
985
2295
|
}, {
|
|
986
2296
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
987
2297
|
}>, "strip", z.ZodTypeAny, {
|
|
988
2298
|
message: string;
|
|
989
2299
|
warning_code: "delay_in_removing_from_device";
|
|
2300
|
+
created_at?: string | undefined;
|
|
990
2301
|
}, {
|
|
991
2302
|
message: string;
|
|
992
2303
|
warning_code: "delay_in_removing_from_device";
|
|
2304
|
+
created_at?: string | undefined;
|
|
993
2305
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
994
2306
|
message: z.ZodString;
|
|
2307
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
995
2308
|
}, {
|
|
996
2309
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
997
2310
|
}>, "strip", z.ZodTypeAny, {
|
|
998
2311
|
message: string;
|
|
999
2312
|
warning_code: "third_party_integration_detected";
|
|
2313
|
+
created_at?: string | undefined;
|
|
1000
2314
|
}, {
|
|
1001
2315
|
message: string;
|
|
1002
2316
|
warning_code: "third_party_integration_detected";
|
|
2317
|
+
created_at?: string | undefined;
|
|
1003
2318
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1004
2319
|
message: z.ZodString;
|
|
2320
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1005
2321
|
}, {
|
|
1006
2322
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
1007
2323
|
}>, "strip", z.ZodTypeAny, {
|
|
1008
2324
|
message: string;
|
|
1009
2325
|
warning_code: "august_device_programming_delay";
|
|
2326
|
+
created_at?: string | undefined;
|
|
1010
2327
|
}, {
|
|
1011
2328
|
message: string;
|
|
1012
2329
|
warning_code: "august_device_programming_delay";
|
|
2330
|
+
created_at?: string | undefined;
|
|
2331
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2332
|
+
message: z.ZodString;
|
|
2333
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2334
|
+
}, {
|
|
2335
|
+
warning_code: z.ZodLiteral<"august_lock_temporarily_offline">;
|
|
2336
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2337
|
+
message: string;
|
|
2338
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2339
|
+
created_at?: string | undefined;
|
|
2340
|
+
}, {
|
|
2341
|
+
message: string;
|
|
2342
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2343
|
+
created_at?: string | undefined;
|
|
1013
2344
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1014
2345
|
message: z.ZodString;
|
|
2346
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1015
2347
|
}, {
|
|
1016
2348
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
1017
2349
|
}>, "strip", z.ZodTypeAny, {
|
|
1018
2350
|
message: string;
|
|
1019
2351
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2352
|
+
created_at?: string | undefined;
|
|
1020
2353
|
}, {
|
|
1021
2354
|
message: string;
|
|
1022
2355
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2356
|
+
created_at?: string | undefined;
|
|
1023
2357
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1024
2358
|
message: z.ZodString;
|
|
2359
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1025
2360
|
}, {
|
|
1026
2361
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
1027
2362
|
}>, "strip", z.ZodTypeAny, {
|
|
1028
2363
|
message: string;
|
|
1029
2364
|
warning_code: "management_transferred";
|
|
2365
|
+
created_at?: string | undefined;
|
|
1030
2366
|
}, {
|
|
1031
2367
|
message: string;
|
|
1032
2368
|
warning_code: "management_transferred";
|
|
2369
|
+
created_at?: string | undefined;
|
|
1033
2370
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1034
2371
|
message: z.ZodString;
|
|
2372
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1035
2373
|
}, {
|
|
1036
2374
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
1037
2375
|
}>, "strip", z.ZodTypeAny, {
|
|
1038
2376
|
message: string;
|
|
1039
2377
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2378
|
+
created_at?: string | undefined;
|
|
1040
2379
|
}, {
|
|
1041
2380
|
message: string;
|
|
1042
2381
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2382
|
+
created_at?: string | undefined;
|
|
1043
2383
|
}>]>, "many">;
|
|
1044
2384
|
is_managed: z.ZodLiteral<true>;
|
|
1045
2385
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1146,115 +2486,171 @@ export declare const access_code: z.ZodObject<{
|
|
|
1146
2486
|
message: string;
|
|
1147
2487
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1148
2488
|
is_access_code_error: true;
|
|
2489
|
+
created_at?: string | undefined;
|
|
1149
2490
|
} | {
|
|
1150
2491
|
message: string;
|
|
1151
2492
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1152
2493
|
is_access_code_error: true;
|
|
2494
|
+
created_at?: string | undefined;
|
|
1153
2495
|
} | {
|
|
1154
2496
|
message: string;
|
|
1155
2497
|
error_code: "code_modified_external_to_seam";
|
|
1156
2498
|
is_access_code_error: true;
|
|
2499
|
+
created_at?: string | undefined;
|
|
1157
2500
|
} | {
|
|
1158
2501
|
message: string;
|
|
1159
2502
|
error_code: "failed_to_set_on_device";
|
|
1160
2503
|
is_access_code_error: true;
|
|
2504
|
+
created_at?: string | undefined;
|
|
1161
2505
|
} | {
|
|
1162
2506
|
message: string;
|
|
1163
2507
|
error_code: "failed_to_remove_from_device";
|
|
1164
2508
|
is_access_code_error: true;
|
|
2509
|
+
created_at?: string | undefined;
|
|
1165
2510
|
} | {
|
|
1166
2511
|
message: string;
|
|
1167
2512
|
error_code: "duplicate_code_on_device";
|
|
1168
2513
|
is_access_code_error: true;
|
|
2514
|
+
created_at?: string | undefined;
|
|
1169
2515
|
} | {
|
|
1170
2516
|
message: string;
|
|
1171
2517
|
error_code: "duplicate_code_attempt_prevented";
|
|
1172
2518
|
is_access_code_error: true;
|
|
2519
|
+
created_at?: string | undefined;
|
|
1173
2520
|
} | {
|
|
1174
2521
|
message: string;
|
|
1175
2522
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1176
2523
|
is_access_code_error: true;
|
|
2524
|
+
created_at?: string | undefined;
|
|
1177
2525
|
} | {
|
|
1178
2526
|
message: string;
|
|
1179
2527
|
error_code: "igloohome_bridge_offline";
|
|
1180
2528
|
is_access_code_error: true;
|
|
2529
|
+
created_at?: string | undefined;
|
|
1181
2530
|
} | {
|
|
1182
2531
|
message: string;
|
|
1183
2532
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1184
2533
|
is_access_code_error: true;
|
|
2534
|
+
created_at?: string | undefined;
|
|
1185
2535
|
} | {
|
|
1186
2536
|
message: string;
|
|
1187
2537
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1188
2538
|
is_access_code_error: true;
|
|
2539
|
+
created_at?: string | undefined;
|
|
1189
2540
|
} | {
|
|
1190
2541
|
message: string;
|
|
1191
2542
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1192
2543
|
is_access_code_error: true;
|
|
2544
|
+
created_at?: string | undefined;
|
|
1193
2545
|
} | {
|
|
1194
2546
|
message: string;
|
|
1195
2547
|
error_code: "august_lock_invalid_code_length";
|
|
1196
2548
|
is_access_code_error: true;
|
|
2549
|
+
created_at?: string | undefined;
|
|
1197
2550
|
} | {
|
|
1198
2551
|
message: string;
|
|
1199
2552
|
error_code: "august_device_programming_delay";
|
|
1200
2553
|
is_access_code_error: true;
|
|
2554
|
+
created_at?: string | undefined;
|
|
1201
2555
|
} | {
|
|
1202
2556
|
message: string;
|
|
1203
2557
|
error_code: "august_device_slots_full";
|
|
1204
2558
|
is_access_code_error: true;
|
|
2559
|
+
created_at?: string | undefined;
|
|
2560
|
+
} | {
|
|
2561
|
+
message: string;
|
|
2562
|
+
error_code: "august_lock_temporarily_offline";
|
|
2563
|
+
is_access_code_error: true;
|
|
2564
|
+
created_at?: string | undefined;
|
|
1205
2565
|
} | {
|
|
1206
2566
|
message: string;
|
|
1207
2567
|
error_code: "august_lock_missing_keypad";
|
|
1208
2568
|
is_access_code_error: true;
|
|
2569
|
+
created_at?: string | undefined;
|
|
1209
2570
|
} | {
|
|
1210
2571
|
message: string;
|
|
1211
|
-
error_code: "
|
|
2572
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
1212
2573
|
is_access_code_error: true;
|
|
2574
|
+
created_at?: string | undefined;
|
|
1213
2575
|
} | {
|
|
1214
2576
|
message: string;
|
|
1215
2577
|
error_code: "hubitat_device_programming_delay";
|
|
1216
2578
|
is_access_code_error: true;
|
|
2579
|
+
created_at?: string | undefined;
|
|
1217
2580
|
} | {
|
|
1218
2581
|
message: string;
|
|
1219
2582
|
error_code: "hubitat_no_free_positions_available";
|
|
1220
2583
|
is_access_code_error: true;
|
|
2584
|
+
created_at?: string | undefined;
|
|
2585
|
+
} | {
|
|
2586
|
+
message: string;
|
|
2587
|
+
error_code: "smartthings_no_free_slots_available";
|
|
2588
|
+
is_access_code_error: true;
|
|
2589
|
+
created_at?: string | undefined;
|
|
2590
|
+
} | {
|
|
2591
|
+
message: string;
|
|
2592
|
+
error_code: "wyze_duplicate_code_name";
|
|
2593
|
+
is_access_code_error: true;
|
|
2594
|
+
created_at?: string | undefined;
|
|
2595
|
+
} | {
|
|
2596
|
+
message: string;
|
|
2597
|
+
error_code: "wyze_potential_duplicate_code";
|
|
2598
|
+
is_access_code_error: true;
|
|
2599
|
+
created_at?: string | undefined;
|
|
2600
|
+
} | {
|
|
2601
|
+
message: string;
|
|
2602
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
2603
|
+
is_access_code_error: true;
|
|
2604
|
+
created_at?: string | undefined;
|
|
1221
2605
|
})[];
|
|
1222
2606
|
warnings: ({
|
|
1223
2607
|
message: string;
|
|
1224
2608
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2609
|
+
created_at?: string | undefined;
|
|
1225
2610
|
} | {
|
|
1226
2611
|
message: string;
|
|
1227
2612
|
warning_code: "august_device_programming_delay";
|
|
2613
|
+
created_at?: string | undefined;
|
|
2614
|
+
} | {
|
|
2615
|
+
message: string;
|
|
2616
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2617
|
+
created_at?: string | undefined;
|
|
1228
2618
|
} | {
|
|
1229
2619
|
message: string;
|
|
1230
2620
|
warning_code: "code_modified_external_to_seam";
|
|
2621
|
+
created_at?: string | undefined;
|
|
1231
2622
|
} | {
|
|
1232
2623
|
message: string;
|
|
1233
2624
|
warning_code: "schlage_detected_duplicate";
|
|
2625
|
+
created_at?: string | undefined;
|
|
1234
2626
|
} | {
|
|
1235
2627
|
message: string;
|
|
1236
2628
|
warning_code: "schlage_creation_outage";
|
|
1237
|
-
|
|
1238
|
-
message: string;
|
|
1239
|
-
warning_code: "salto_office_mode";
|
|
2629
|
+
created_at?: string | undefined;
|
|
1240
2630
|
} | {
|
|
1241
2631
|
message: string;
|
|
1242
2632
|
warning_code: "delay_in_setting_on_device";
|
|
2633
|
+
created_at?: string | undefined;
|
|
1243
2634
|
} | {
|
|
1244
2635
|
message: string;
|
|
1245
2636
|
warning_code: "delay_in_removing_from_device";
|
|
2637
|
+
created_at?: string | undefined;
|
|
1246
2638
|
} | {
|
|
1247
2639
|
message: string;
|
|
1248
2640
|
warning_code: "third_party_integration_detected";
|
|
2641
|
+
created_at?: string | undefined;
|
|
1249
2642
|
} | {
|
|
1250
2643
|
message: string;
|
|
1251
2644
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2645
|
+
created_at?: string | undefined;
|
|
1252
2646
|
} | {
|
|
1253
2647
|
message: string;
|
|
1254
2648
|
warning_code: "management_transferred";
|
|
2649
|
+
created_at?: string | undefined;
|
|
1255
2650
|
} | {
|
|
1256
2651
|
message: string;
|
|
1257
2652
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2653
|
+
created_at?: string | undefined;
|
|
1258
2654
|
})[];
|
|
1259
2655
|
is_managed: true;
|
|
1260
2656
|
common_code_key: string | null;
|
|
@@ -1364,115 +2760,171 @@ export declare const access_code: z.ZodObject<{
|
|
|
1364
2760
|
message: string;
|
|
1365
2761
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1366
2762
|
is_access_code_error: true;
|
|
2763
|
+
created_at?: string | undefined;
|
|
1367
2764
|
} | {
|
|
1368
2765
|
message: string;
|
|
1369
2766
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1370
2767
|
is_access_code_error: true;
|
|
2768
|
+
created_at?: string | undefined;
|
|
1371
2769
|
} | {
|
|
1372
2770
|
message: string;
|
|
1373
2771
|
error_code: "code_modified_external_to_seam";
|
|
1374
2772
|
is_access_code_error: true;
|
|
2773
|
+
created_at?: string | undefined;
|
|
1375
2774
|
} | {
|
|
1376
2775
|
message: string;
|
|
1377
2776
|
error_code: "failed_to_set_on_device";
|
|
1378
2777
|
is_access_code_error: true;
|
|
2778
|
+
created_at?: string | undefined;
|
|
1379
2779
|
} | {
|
|
1380
2780
|
message: string;
|
|
1381
2781
|
error_code: "failed_to_remove_from_device";
|
|
1382
2782
|
is_access_code_error: true;
|
|
2783
|
+
created_at?: string | undefined;
|
|
1383
2784
|
} | {
|
|
1384
2785
|
message: string;
|
|
1385
2786
|
error_code: "duplicate_code_on_device";
|
|
1386
2787
|
is_access_code_error: true;
|
|
2788
|
+
created_at?: string | undefined;
|
|
1387
2789
|
} | {
|
|
1388
2790
|
message: string;
|
|
1389
2791
|
error_code: "duplicate_code_attempt_prevented";
|
|
1390
2792
|
is_access_code_error: true;
|
|
2793
|
+
created_at?: string | undefined;
|
|
1391
2794
|
} | {
|
|
1392
2795
|
message: string;
|
|
1393
2796
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1394
2797
|
is_access_code_error: true;
|
|
2798
|
+
created_at?: string | undefined;
|
|
1395
2799
|
} | {
|
|
1396
2800
|
message: string;
|
|
1397
2801
|
error_code: "igloohome_bridge_offline";
|
|
1398
2802
|
is_access_code_error: true;
|
|
2803
|
+
created_at?: string | undefined;
|
|
1399
2804
|
} | {
|
|
1400
2805
|
message: string;
|
|
1401
2806
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1402
2807
|
is_access_code_error: true;
|
|
2808
|
+
created_at?: string | undefined;
|
|
1403
2809
|
} | {
|
|
1404
2810
|
message: string;
|
|
1405
2811
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1406
2812
|
is_access_code_error: true;
|
|
2813
|
+
created_at?: string | undefined;
|
|
1407
2814
|
} | {
|
|
1408
2815
|
message: string;
|
|
1409
2816
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1410
2817
|
is_access_code_error: true;
|
|
2818
|
+
created_at?: string | undefined;
|
|
1411
2819
|
} | {
|
|
1412
2820
|
message: string;
|
|
1413
2821
|
error_code: "august_lock_invalid_code_length";
|
|
1414
2822
|
is_access_code_error: true;
|
|
2823
|
+
created_at?: string | undefined;
|
|
1415
2824
|
} | {
|
|
1416
2825
|
message: string;
|
|
1417
2826
|
error_code: "august_device_programming_delay";
|
|
1418
2827
|
is_access_code_error: true;
|
|
2828
|
+
created_at?: string | undefined;
|
|
1419
2829
|
} | {
|
|
1420
2830
|
message: string;
|
|
1421
2831
|
error_code: "august_device_slots_full";
|
|
1422
2832
|
is_access_code_error: true;
|
|
2833
|
+
created_at?: string | undefined;
|
|
2834
|
+
} | {
|
|
2835
|
+
message: string;
|
|
2836
|
+
error_code: "august_lock_temporarily_offline";
|
|
2837
|
+
is_access_code_error: true;
|
|
2838
|
+
created_at?: string | undefined;
|
|
1423
2839
|
} | {
|
|
1424
2840
|
message: string;
|
|
1425
2841
|
error_code: "august_lock_missing_keypad";
|
|
1426
2842
|
is_access_code_error: true;
|
|
2843
|
+
created_at?: string | undefined;
|
|
1427
2844
|
} | {
|
|
1428
2845
|
message: string;
|
|
1429
|
-
error_code: "
|
|
2846
|
+
error_code: "salto_ks_user_not_subscribed";
|
|
1430
2847
|
is_access_code_error: true;
|
|
2848
|
+
created_at?: string | undefined;
|
|
1431
2849
|
} | {
|
|
1432
2850
|
message: string;
|
|
1433
2851
|
error_code: "hubitat_device_programming_delay";
|
|
1434
2852
|
is_access_code_error: true;
|
|
2853
|
+
created_at?: string | undefined;
|
|
1435
2854
|
} | {
|
|
1436
2855
|
message: string;
|
|
1437
2856
|
error_code: "hubitat_no_free_positions_available";
|
|
1438
2857
|
is_access_code_error: true;
|
|
2858
|
+
created_at?: string | undefined;
|
|
2859
|
+
} | {
|
|
2860
|
+
message: string;
|
|
2861
|
+
error_code: "smartthings_no_free_slots_available";
|
|
2862
|
+
is_access_code_error: true;
|
|
2863
|
+
created_at?: string | undefined;
|
|
2864
|
+
} | {
|
|
2865
|
+
message: string;
|
|
2866
|
+
error_code: "wyze_duplicate_code_name";
|
|
2867
|
+
is_access_code_error: true;
|
|
2868
|
+
created_at?: string | undefined;
|
|
2869
|
+
} | {
|
|
2870
|
+
message: string;
|
|
2871
|
+
error_code: "wyze_potential_duplicate_code";
|
|
2872
|
+
is_access_code_error: true;
|
|
2873
|
+
created_at?: string | undefined;
|
|
2874
|
+
} | {
|
|
2875
|
+
message: string;
|
|
2876
|
+
error_code: "dormakaba_oracode_no_valid_user_level";
|
|
2877
|
+
is_access_code_error: true;
|
|
2878
|
+
created_at?: string | undefined;
|
|
1439
2879
|
})[];
|
|
1440
2880
|
warnings: ({
|
|
1441
2881
|
message: string;
|
|
1442
2882
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2883
|
+
created_at?: string | undefined;
|
|
1443
2884
|
} | {
|
|
1444
2885
|
message: string;
|
|
1445
2886
|
warning_code: "august_device_programming_delay";
|
|
2887
|
+
created_at?: string | undefined;
|
|
2888
|
+
} | {
|
|
2889
|
+
message: string;
|
|
2890
|
+
warning_code: "august_lock_temporarily_offline";
|
|
2891
|
+
created_at?: string | undefined;
|
|
1446
2892
|
} | {
|
|
1447
2893
|
message: string;
|
|
1448
2894
|
warning_code: "code_modified_external_to_seam";
|
|
2895
|
+
created_at?: string | undefined;
|
|
1449
2896
|
} | {
|
|
1450
2897
|
message: string;
|
|
1451
2898
|
warning_code: "schlage_detected_duplicate";
|
|
2899
|
+
created_at?: string | undefined;
|
|
1452
2900
|
} | {
|
|
1453
2901
|
message: string;
|
|
1454
2902
|
warning_code: "schlage_creation_outage";
|
|
1455
|
-
|
|
1456
|
-
message: string;
|
|
1457
|
-
warning_code: "salto_office_mode";
|
|
2903
|
+
created_at?: string | undefined;
|
|
1458
2904
|
} | {
|
|
1459
2905
|
message: string;
|
|
1460
2906
|
warning_code: "delay_in_setting_on_device";
|
|
2907
|
+
created_at?: string | undefined;
|
|
1461
2908
|
} | {
|
|
1462
2909
|
message: string;
|
|
1463
2910
|
warning_code: "delay_in_removing_from_device";
|
|
2911
|
+
created_at?: string | undefined;
|
|
1464
2912
|
} | {
|
|
1465
2913
|
message: string;
|
|
1466
2914
|
warning_code: "third_party_integration_detected";
|
|
2915
|
+
created_at?: string | undefined;
|
|
1467
2916
|
} | {
|
|
1468
2917
|
message: string;
|
|
1469
2918
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2919
|
+
created_at?: string | undefined;
|
|
1470
2920
|
} | {
|
|
1471
2921
|
message: string;
|
|
1472
2922
|
warning_code: "management_transferred";
|
|
2923
|
+
created_at?: string | undefined;
|
|
1473
2924
|
} | {
|
|
1474
2925
|
message: string;
|
|
1475
2926
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2927
|
+
created_at?: string | undefined;
|
|
1476
2928
|
})[];
|
|
1477
2929
|
is_managed: true;
|
|
1478
2930
|
common_code_key: string | null;
|