@seamapi/types 1.362.0 → 1.363.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +228 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +940 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1097 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +67 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +155 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +125 -0
- package/lib/seam/connect/models/events/acs/entrances.js +28 -0
- package/lib/seam/connect/models/events/acs/entrances.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +60 -0
- package/lib/seam/connect/models/events/acs/index.js +2 -0
- package/lib/seam/connect/models/events/acs/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +61 -1
- package/lib/seam/connect/openapi.d.ts +136 -2
- package/lib/seam/connect/openapi.js +162 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +79 -0
- package/src/lib/seam/connect/models/events/acs/entrances.ts +36 -0
- package/src/lib/seam/connect/models/events/acs/index.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +170 -0
- package/src/lib/seam/connect/route-types.ts +347 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3,372 +3,465 @@ import { z } from 'zod';
|
|
|
3
3
|
declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
4
4
|
message: z.ZodString;
|
|
5
5
|
is_access_code_error: z.ZodLiteral<true>;
|
|
6
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
6
7
|
}, {
|
|
7
8
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
8
9
|
}>, "strip", z.ZodTypeAny, {
|
|
9
10
|
message: string;
|
|
10
11
|
error_code: "smartthings_failed_to_set_access_code";
|
|
11
12
|
is_access_code_error: true;
|
|
13
|
+
created_at?: string | undefined;
|
|
12
14
|
}, {
|
|
13
15
|
message: string;
|
|
14
16
|
error_code: "smartthings_failed_to_set_access_code";
|
|
15
17
|
is_access_code_error: true;
|
|
18
|
+
created_at?: string | undefined;
|
|
16
19
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17
20
|
message: z.ZodString;
|
|
18
21
|
is_access_code_error: z.ZodLiteral<true>;
|
|
22
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
19
23
|
}, {
|
|
20
24
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
21
25
|
}>, "strip", z.ZodTypeAny, {
|
|
22
26
|
message: string;
|
|
23
27
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
24
28
|
is_access_code_error: true;
|
|
29
|
+
created_at?: string | undefined;
|
|
25
30
|
}, {
|
|
26
31
|
message: string;
|
|
27
32
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
28
33
|
is_access_code_error: true;
|
|
34
|
+
created_at?: string | undefined;
|
|
29
35
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
30
36
|
message: z.ZodString;
|
|
31
37
|
is_access_code_error: z.ZodLiteral<true>;
|
|
38
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
32
39
|
}, {
|
|
33
40
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
34
41
|
}>, "strip", z.ZodTypeAny, {
|
|
35
42
|
message: string;
|
|
36
43
|
error_code: "failed_to_set_on_device";
|
|
37
44
|
is_access_code_error: true;
|
|
45
|
+
created_at?: string | undefined;
|
|
38
46
|
}, {
|
|
39
47
|
message: string;
|
|
40
48
|
error_code: "failed_to_set_on_device";
|
|
41
49
|
is_access_code_error: true;
|
|
50
|
+
created_at?: string | undefined;
|
|
42
51
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
43
52
|
message: z.ZodString;
|
|
44
53
|
is_access_code_error: z.ZodLiteral<true>;
|
|
54
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
45
55
|
}, {
|
|
46
56
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
47
57
|
}>, "strip", z.ZodTypeAny, {
|
|
48
58
|
message: string;
|
|
49
59
|
error_code: "failed_to_remove_from_device";
|
|
50
60
|
is_access_code_error: true;
|
|
61
|
+
created_at?: string | undefined;
|
|
51
62
|
}, {
|
|
52
63
|
message: string;
|
|
53
64
|
error_code: "failed_to_remove_from_device";
|
|
54
65
|
is_access_code_error: true;
|
|
66
|
+
created_at?: string | undefined;
|
|
55
67
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
56
68
|
message: z.ZodString;
|
|
57
69
|
is_access_code_error: z.ZodLiteral<true>;
|
|
70
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
58
71
|
}, {
|
|
59
72
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
60
73
|
}>, "strip", z.ZodTypeAny, {
|
|
61
74
|
message: string;
|
|
62
75
|
error_code: "duplicate_code_on_device";
|
|
63
76
|
is_access_code_error: true;
|
|
77
|
+
created_at?: string | undefined;
|
|
64
78
|
}, {
|
|
65
79
|
message: string;
|
|
66
80
|
error_code: "duplicate_code_on_device";
|
|
67
81
|
is_access_code_error: true;
|
|
82
|
+
created_at?: string | undefined;
|
|
68
83
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
69
84
|
message: z.ZodString;
|
|
70
85
|
is_access_code_error: z.ZodLiteral<true>;
|
|
86
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
71
87
|
}, {
|
|
72
88
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
73
89
|
}>, "strip", z.ZodTypeAny, {
|
|
74
90
|
message: string;
|
|
75
91
|
error_code: "duplicate_code_attempt_prevented";
|
|
76
92
|
is_access_code_error: true;
|
|
93
|
+
created_at?: string | undefined;
|
|
77
94
|
}, {
|
|
78
95
|
message: string;
|
|
79
96
|
error_code: "duplicate_code_attempt_prevented";
|
|
80
97
|
is_access_code_error: true;
|
|
98
|
+
created_at?: string | undefined;
|
|
81
99
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
82
100
|
message: z.ZodString;
|
|
83
101
|
is_access_code_error: z.ZodLiteral<true>;
|
|
102
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
84
103
|
}, {
|
|
85
104
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
86
105
|
}>, "strip", z.ZodTypeAny, {
|
|
87
106
|
message: string;
|
|
88
107
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
89
108
|
is_access_code_error: true;
|
|
109
|
+
created_at?: string | undefined;
|
|
90
110
|
}, {
|
|
91
111
|
message: string;
|
|
92
112
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
93
113
|
is_access_code_error: true;
|
|
114
|
+
created_at?: string | undefined;
|
|
94
115
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
95
116
|
message: z.ZodString;
|
|
96
117
|
is_access_code_error: z.ZodLiteral<true>;
|
|
118
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
97
119
|
}, {
|
|
98
120
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
99
121
|
}>, "strip", z.ZodTypeAny, {
|
|
100
122
|
message: string;
|
|
101
123
|
error_code: "igloohome_bridge_offline";
|
|
102
124
|
is_access_code_error: true;
|
|
125
|
+
created_at?: string | undefined;
|
|
103
126
|
}, {
|
|
104
127
|
message: string;
|
|
105
128
|
error_code: "igloohome_bridge_offline";
|
|
106
129
|
is_access_code_error: true;
|
|
130
|
+
created_at?: string | undefined;
|
|
107
131
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
108
132
|
message: z.ZodString;
|
|
109
133
|
is_access_code_error: z.ZodLiteral<true>;
|
|
134
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
110
135
|
}, {
|
|
111
136
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
112
137
|
}>, "strip", z.ZodTypeAny, {
|
|
113
138
|
message: string;
|
|
114
139
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
115
140
|
is_access_code_error: true;
|
|
141
|
+
created_at?: string | undefined;
|
|
116
142
|
}, {
|
|
117
143
|
message: string;
|
|
118
144
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
119
145
|
is_access_code_error: true;
|
|
146
|
+
created_at?: string | undefined;
|
|
120
147
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
121
148
|
message: z.ZodString;
|
|
122
149
|
is_access_code_error: z.ZodLiteral<true>;
|
|
150
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
123
151
|
}, {
|
|
124
152
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
125
153
|
}>, "strip", z.ZodTypeAny, {
|
|
126
154
|
message: string;
|
|
127
155
|
error_code: "kwikset_unable_to_confirm_code";
|
|
128
156
|
is_access_code_error: true;
|
|
157
|
+
created_at?: string | undefined;
|
|
129
158
|
}, {
|
|
130
159
|
message: string;
|
|
131
160
|
error_code: "kwikset_unable_to_confirm_code";
|
|
132
161
|
is_access_code_error: true;
|
|
162
|
+
created_at?: string | undefined;
|
|
133
163
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
134
164
|
message: z.ZodString;
|
|
135
165
|
is_access_code_error: z.ZodLiteral<true>;
|
|
166
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
136
167
|
}, {
|
|
137
168
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
138
169
|
}>, "strip", z.ZodTypeAny, {
|
|
139
170
|
message: string;
|
|
140
171
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
141
172
|
is_access_code_error: true;
|
|
173
|
+
created_at?: string | undefined;
|
|
142
174
|
}, {
|
|
143
175
|
message: string;
|
|
144
176
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
145
177
|
is_access_code_error: true;
|
|
178
|
+
created_at?: string | undefined;
|
|
146
179
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
147
180
|
message: z.ZodString;
|
|
148
181
|
is_access_code_error: z.ZodLiteral<true>;
|
|
182
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
149
183
|
}, {
|
|
150
184
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
151
185
|
}>, "strip", z.ZodTypeAny, {
|
|
152
186
|
message: string;
|
|
153
187
|
error_code: "code_modified_external_to_seam";
|
|
154
188
|
is_access_code_error: true;
|
|
189
|
+
created_at?: string | undefined;
|
|
155
190
|
}, {
|
|
156
191
|
message: string;
|
|
157
192
|
error_code: "code_modified_external_to_seam";
|
|
158
193
|
is_access_code_error: true;
|
|
194
|
+
created_at?: string | undefined;
|
|
159
195
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
160
196
|
message: z.ZodString;
|
|
161
197
|
is_access_code_error: z.ZodLiteral<true>;
|
|
198
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
162
199
|
}, {
|
|
163
200
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
164
201
|
}>, "strip", z.ZodTypeAny, {
|
|
165
202
|
message: string;
|
|
166
203
|
error_code: "august_lock_invalid_code_length";
|
|
167
204
|
is_access_code_error: true;
|
|
205
|
+
created_at?: string | undefined;
|
|
168
206
|
}, {
|
|
169
207
|
message: string;
|
|
170
208
|
error_code: "august_lock_invalid_code_length";
|
|
171
209
|
is_access_code_error: true;
|
|
210
|
+
created_at?: string | undefined;
|
|
172
211
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
173
212
|
message: z.ZodString;
|
|
174
213
|
is_access_code_error: z.ZodLiteral<true>;
|
|
214
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
175
215
|
}, {
|
|
176
216
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
177
217
|
}>, "strip", z.ZodTypeAny, {
|
|
178
218
|
message: string;
|
|
179
219
|
error_code: "august_device_programming_delay";
|
|
180
220
|
is_access_code_error: true;
|
|
221
|
+
created_at?: string | undefined;
|
|
181
222
|
}, {
|
|
182
223
|
message: string;
|
|
183
224
|
error_code: "august_device_programming_delay";
|
|
184
225
|
is_access_code_error: true;
|
|
226
|
+
created_at?: string | undefined;
|
|
185
227
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
186
228
|
message: z.ZodString;
|
|
187
229
|
is_access_code_error: z.ZodLiteral<true>;
|
|
230
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
188
231
|
}, {
|
|
189
232
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
190
233
|
}>, "strip", z.ZodTypeAny, {
|
|
191
234
|
message: string;
|
|
192
235
|
error_code: "august_device_slots_full";
|
|
193
236
|
is_access_code_error: true;
|
|
237
|
+
created_at?: string | undefined;
|
|
194
238
|
}, {
|
|
195
239
|
message: string;
|
|
196
240
|
error_code: "august_device_slots_full";
|
|
197
241
|
is_access_code_error: true;
|
|
242
|
+
created_at?: string | undefined;
|
|
198
243
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
199
244
|
message: z.ZodString;
|
|
200
245
|
is_access_code_error: z.ZodLiteral<true>;
|
|
246
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
201
247
|
}, {
|
|
202
248
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
203
249
|
}>, "strip", z.ZodTypeAny, {
|
|
204
250
|
message: string;
|
|
205
251
|
error_code: "august_lock_missing_keypad";
|
|
206
252
|
is_access_code_error: true;
|
|
253
|
+
created_at?: string | undefined;
|
|
207
254
|
}, {
|
|
208
255
|
message: string;
|
|
209
256
|
error_code: "august_lock_missing_keypad";
|
|
210
257
|
is_access_code_error: true;
|
|
258
|
+
created_at?: string | undefined;
|
|
211
259
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
212
260
|
message: z.ZodString;
|
|
213
261
|
is_access_code_error: z.ZodLiteral<true>;
|
|
262
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
214
263
|
}, {
|
|
215
264
|
error_code: z.ZodLiteral<"salto_site_user_not_subscribed">;
|
|
216
265
|
}>, "strip", z.ZodTypeAny, {
|
|
217
266
|
message: string;
|
|
218
267
|
error_code: "salto_site_user_not_subscribed";
|
|
219
268
|
is_access_code_error: true;
|
|
269
|
+
created_at?: string | undefined;
|
|
220
270
|
}, {
|
|
221
271
|
message: string;
|
|
222
272
|
error_code: "salto_site_user_not_subscribed";
|
|
223
273
|
is_access_code_error: true;
|
|
274
|
+
created_at?: string | undefined;
|
|
224
275
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
225
276
|
message: z.ZodString;
|
|
226
277
|
is_access_code_error: z.ZodLiteral<true>;
|
|
278
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
227
279
|
}, {
|
|
228
280
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
229
281
|
}>, "strip", z.ZodTypeAny, {
|
|
230
282
|
message: string;
|
|
231
283
|
error_code: "hubitat_device_programming_delay";
|
|
232
284
|
is_access_code_error: true;
|
|
285
|
+
created_at?: string | undefined;
|
|
233
286
|
}, {
|
|
234
287
|
message: string;
|
|
235
288
|
error_code: "hubitat_device_programming_delay";
|
|
236
289
|
is_access_code_error: true;
|
|
290
|
+
created_at?: string | undefined;
|
|
237
291
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
238
292
|
message: z.ZodString;
|
|
239
293
|
is_access_code_error: z.ZodLiteral<true>;
|
|
294
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
240
295
|
}, {
|
|
241
296
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
242
297
|
}>, "strip", z.ZodTypeAny, {
|
|
243
298
|
message: string;
|
|
244
299
|
error_code: "hubitat_no_free_positions_available";
|
|
245
300
|
is_access_code_error: true;
|
|
301
|
+
created_at?: string | undefined;
|
|
246
302
|
}, {
|
|
247
303
|
message: string;
|
|
248
304
|
error_code: "hubitat_no_free_positions_available";
|
|
249
305
|
is_access_code_error: true;
|
|
306
|
+
created_at?: string | undefined;
|
|
250
307
|
}>]>;
|
|
251
308
|
type AccessCodeError = z.infer<typeof access_code_error>;
|
|
252
309
|
declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
253
310
|
message: z.ZodString;
|
|
311
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
254
312
|
}, {
|
|
255
313
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
256
314
|
}>, "strip", z.ZodTypeAny, {
|
|
257
315
|
message: string;
|
|
258
316
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
317
|
+
created_at?: string | undefined;
|
|
259
318
|
}, {
|
|
260
319
|
message: string;
|
|
261
320
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
321
|
+
created_at?: string | undefined;
|
|
262
322
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
263
323
|
message: z.ZodString;
|
|
324
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
264
325
|
}, {
|
|
265
326
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
266
327
|
}>, "strip", z.ZodTypeAny, {
|
|
267
328
|
message: string;
|
|
268
329
|
warning_code: "schlage_detected_duplicate";
|
|
330
|
+
created_at?: string | undefined;
|
|
269
331
|
}, {
|
|
270
332
|
message: string;
|
|
271
333
|
warning_code: "schlage_detected_duplicate";
|
|
334
|
+
created_at?: string | undefined;
|
|
272
335
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
273
336
|
message: z.ZodString;
|
|
337
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
274
338
|
}, {
|
|
275
339
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
276
340
|
}>, "strip", z.ZodTypeAny, {
|
|
277
341
|
message: string;
|
|
278
342
|
warning_code: "schlage_creation_outage";
|
|
343
|
+
created_at?: string | undefined;
|
|
279
344
|
}, {
|
|
280
345
|
message: string;
|
|
281
346
|
warning_code: "schlage_creation_outage";
|
|
347
|
+
created_at?: string | undefined;
|
|
282
348
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
283
349
|
message: z.ZodString;
|
|
350
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
284
351
|
}, {
|
|
285
352
|
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
286
353
|
}>, "strip", z.ZodTypeAny, {
|
|
287
354
|
message: string;
|
|
288
355
|
warning_code: "salto_office_mode";
|
|
356
|
+
created_at?: string | undefined;
|
|
289
357
|
}, {
|
|
290
358
|
message: string;
|
|
291
359
|
warning_code: "salto_office_mode";
|
|
360
|
+
created_at?: string | undefined;
|
|
292
361
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
293
362
|
message: z.ZodString;
|
|
363
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
294
364
|
}, {
|
|
295
365
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
296
366
|
}>, "strip", z.ZodTypeAny, {
|
|
297
367
|
message: string;
|
|
298
368
|
warning_code: "code_modified_external_to_seam";
|
|
369
|
+
created_at?: string | undefined;
|
|
299
370
|
}, {
|
|
300
371
|
message: string;
|
|
301
372
|
warning_code: "code_modified_external_to_seam";
|
|
373
|
+
created_at?: string | undefined;
|
|
302
374
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
303
375
|
message: z.ZodString;
|
|
376
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
304
377
|
}, {
|
|
305
378
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
306
379
|
}>, "strip", z.ZodTypeAny, {
|
|
307
380
|
message: string;
|
|
308
381
|
warning_code: "delay_in_setting_on_device";
|
|
382
|
+
created_at?: string | undefined;
|
|
309
383
|
}, {
|
|
310
384
|
message: string;
|
|
311
385
|
warning_code: "delay_in_setting_on_device";
|
|
386
|
+
created_at?: string | undefined;
|
|
312
387
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
313
388
|
message: z.ZodString;
|
|
389
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
314
390
|
}, {
|
|
315
391
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
316
392
|
}>, "strip", z.ZodTypeAny, {
|
|
317
393
|
message: string;
|
|
318
394
|
warning_code: "delay_in_removing_from_device";
|
|
395
|
+
created_at?: string | undefined;
|
|
319
396
|
}, {
|
|
320
397
|
message: string;
|
|
321
398
|
warning_code: "delay_in_removing_from_device";
|
|
399
|
+
created_at?: string | undefined;
|
|
322
400
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
323
401
|
message: z.ZodString;
|
|
402
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
324
403
|
}, {
|
|
325
404
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
326
405
|
}>, "strip", z.ZodTypeAny, {
|
|
327
406
|
message: string;
|
|
328
407
|
warning_code: "third_party_integration_detected";
|
|
408
|
+
created_at?: string | undefined;
|
|
329
409
|
}, {
|
|
330
410
|
message: string;
|
|
331
411
|
warning_code: "third_party_integration_detected";
|
|
412
|
+
created_at?: string | undefined;
|
|
332
413
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
333
414
|
message: z.ZodString;
|
|
415
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
334
416
|
}, {
|
|
335
417
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
336
418
|
}>, "strip", z.ZodTypeAny, {
|
|
337
419
|
message: string;
|
|
338
420
|
warning_code: "august_device_programming_delay";
|
|
421
|
+
created_at?: string | undefined;
|
|
339
422
|
}, {
|
|
340
423
|
message: string;
|
|
341
424
|
warning_code: "august_device_programming_delay";
|
|
425
|
+
created_at?: string | undefined;
|
|
342
426
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
343
427
|
message: z.ZodString;
|
|
428
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
344
429
|
}, {
|
|
345
430
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
346
431
|
}>, "strip", z.ZodTypeAny, {
|
|
347
432
|
message: string;
|
|
348
433
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
434
|
+
created_at?: string | undefined;
|
|
349
435
|
}, {
|
|
350
436
|
message: string;
|
|
351
437
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
438
|
+
created_at?: string | undefined;
|
|
352
439
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
353
440
|
message: z.ZodString;
|
|
441
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
354
442
|
}, {
|
|
355
443
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
356
444
|
}>, "strip", z.ZodTypeAny, {
|
|
357
445
|
message: string;
|
|
358
446
|
warning_code: "management_transferred";
|
|
447
|
+
created_at?: string | undefined;
|
|
359
448
|
}, {
|
|
360
449
|
message: string;
|
|
361
450
|
warning_code: "management_transferred";
|
|
451
|
+
created_at?: string | undefined;
|
|
362
452
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
363
453
|
message: z.ZodString;
|
|
454
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
364
455
|
}, {
|
|
365
456
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
366
457
|
}>, "strip", z.ZodTypeAny, {
|
|
367
458
|
message: string;
|
|
368
459
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
460
|
+
created_at?: string | undefined;
|
|
369
461
|
}, {
|
|
370
462
|
message: string;
|
|
371
463
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
464
|
+
created_at?: string | undefined;
|
|
372
465
|
}>]>;
|
|
373
466
|
type AccessCodeWarning = z.infer<typeof access_code_warning>;
|
|
374
467
|
declare const access_code: z.ZodObject<{
|
|
@@ -384,250 +477,307 @@ declare const access_code: z.ZodObject<{
|
|
|
384
477
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
385
478
|
message: z.ZodString;
|
|
386
479
|
is_access_code_error: z.ZodLiteral<true>;
|
|
480
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
387
481
|
}, {
|
|
388
482
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
389
483
|
}>, "strip", z.ZodTypeAny, {
|
|
390
484
|
message: string;
|
|
391
485
|
error_code: "smartthings_failed_to_set_access_code";
|
|
392
486
|
is_access_code_error: true;
|
|
487
|
+
created_at?: string | undefined;
|
|
393
488
|
}, {
|
|
394
489
|
message: string;
|
|
395
490
|
error_code: "smartthings_failed_to_set_access_code";
|
|
396
491
|
is_access_code_error: true;
|
|
492
|
+
created_at?: string | undefined;
|
|
397
493
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
398
494
|
message: z.ZodString;
|
|
399
495
|
is_access_code_error: z.ZodLiteral<true>;
|
|
496
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
400
497
|
}, {
|
|
401
498
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
402
499
|
}>, "strip", z.ZodTypeAny, {
|
|
403
500
|
message: string;
|
|
404
501
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
405
502
|
is_access_code_error: true;
|
|
503
|
+
created_at?: string | undefined;
|
|
406
504
|
}, {
|
|
407
505
|
message: string;
|
|
408
506
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
409
507
|
is_access_code_error: true;
|
|
508
|
+
created_at?: string | undefined;
|
|
410
509
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
411
510
|
message: z.ZodString;
|
|
412
511
|
is_access_code_error: z.ZodLiteral<true>;
|
|
512
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
413
513
|
}, {
|
|
414
514
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
415
515
|
}>, "strip", z.ZodTypeAny, {
|
|
416
516
|
message: string;
|
|
417
517
|
error_code: "failed_to_set_on_device";
|
|
418
518
|
is_access_code_error: true;
|
|
519
|
+
created_at?: string | undefined;
|
|
419
520
|
}, {
|
|
420
521
|
message: string;
|
|
421
522
|
error_code: "failed_to_set_on_device";
|
|
422
523
|
is_access_code_error: true;
|
|
524
|
+
created_at?: string | undefined;
|
|
423
525
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
424
526
|
message: z.ZodString;
|
|
425
527
|
is_access_code_error: z.ZodLiteral<true>;
|
|
528
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
426
529
|
}, {
|
|
427
530
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
428
531
|
}>, "strip", z.ZodTypeAny, {
|
|
429
532
|
message: string;
|
|
430
533
|
error_code: "failed_to_remove_from_device";
|
|
431
534
|
is_access_code_error: true;
|
|
535
|
+
created_at?: string | undefined;
|
|
432
536
|
}, {
|
|
433
537
|
message: string;
|
|
434
538
|
error_code: "failed_to_remove_from_device";
|
|
435
539
|
is_access_code_error: true;
|
|
540
|
+
created_at?: string | undefined;
|
|
436
541
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
437
542
|
message: z.ZodString;
|
|
438
543
|
is_access_code_error: z.ZodLiteral<true>;
|
|
544
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
439
545
|
}, {
|
|
440
546
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
441
547
|
}>, "strip", z.ZodTypeAny, {
|
|
442
548
|
message: string;
|
|
443
549
|
error_code: "duplicate_code_on_device";
|
|
444
550
|
is_access_code_error: true;
|
|
551
|
+
created_at?: string | undefined;
|
|
445
552
|
}, {
|
|
446
553
|
message: string;
|
|
447
554
|
error_code: "duplicate_code_on_device";
|
|
448
555
|
is_access_code_error: true;
|
|
556
|
+
created_at?: string | undefined;
|
|
449
557
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
450
558
|
message: z.ZodString;
|
|
451
559
|
is_access_code_error: z.ZodLiteral<true>;
|
|
560
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
452
561
|
}, {
|
|
453
562
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
454
563
|
}>, "strip", z.ZodTypeAny, {
|
|
455
564
|
message: string;
|
|
456
565
|
error_code: "duplicate_code_attempt_prevented";
|
|
457
566
|
is_access_code_error: true;
|
|
567
|
+
created_at?: string | undefined;
|
|
458
568
|
}, {
|
|
459
569
|
message: string;
|
|
460
570
|
error_code: "duplicate_code_attempt_prevented";
|
|
461
571
|
is_access_code_error: true;
|
|
572
|
+
created_at?: string | undefined;
|
|
462
573
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
463
574
|
message: z.ZodString;
|
|
464
575
|
is_access_code_error: z.ZodLiteral<true>;
|
|
576
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
465
577
|
}, {
|
|
466
578
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
467
579
|
}>, "strip", z.ZodTypeAny, {
|
|
468
580
|
message: string;
|
|
469
581
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
470
582
|
is_access_code_error: true;
|
|
583
|
+
created_at?: string | undefined;
|
|
471
584
|
}, {
|
|
472
585
|
message: string;
|
|
473
586
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
474
587
|
is_access_code_error: true;
|
|
588
|
+
created_at?: string | undefined;
|
|
475
589
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
476
590
|
message: z.ZodString;
|
|
477
591
|
is_access_code_error: z.ZodLiteral<true>;
|
|
592
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
478
593
|
}, {
|
|
479
594
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
480
595
|
}>, "strip", z.ZodTypeAny, {
|
|
481
596
|
message: string;
|
|
482
597
|
error_code: "igloohome_bridge_offline";
|
|
483
598
|
is_access_code_error: true;
|
|
599
|
+
created_at?: string | undefined;
|
|
484
600
|
}, {
|
|
485
601
|
message: string;
|
|
486
602
|
error_code: "igloohome_bridge_offline";
|
|
487
603
|
is_access_code_error: true;
|
|
604
|
+
created_at?: string | undefined;
|
|
488
605
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
489
606
|
message: z.ZodString;
|
|
490
607
|
is_access_code_error: z.ZodLiteral<true>;
|
|
608
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
491
609
|
}, {
|
|
492
610
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
493
611
|
}>, "strip", z.ZodTypeAny, {
|
|
494
612
|
message: string;
|
|
495
613
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
496
614
|
is_access_code_error: true;
|
|
615
|
+
created_at?: string | undefined;
|
|
497
616
|
}, {
|
|
498
617
|
message: string;
|
|
499
618
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
500
619
|
is_access_code_error: true;
|
|
620
|
+
created_at?: string | undefined;
|
|
501
621
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
502
622
|
message: z.ZodString;
|
|
503
623
|
is_access_code_error: z.ZodLiteral<true>;
|
|
624
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
504
625
|
}, {
|
|
505
626
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
506
627
|
}>, "strip", z.ZodTypeAny, {
|
|
507
628
|
message: string;
|
|
508
629
|
error_code: "kwikset_unable_to_confirm_code";
|
|
509
630
|
is_access_code_error: true;
|
|
631
|
+
created_at?: string | undefined;
|
|
510
632
|
}, {
|
|
511
633
|
message: string;
|
|
512
634
|
error_code: "kwikset_unable_to_confirm_code";
|
|
513
635
|
is_access_code_error: true;
|
|
636
|
+
created_at?: string | undefined;
|
|
514
637
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
515
638
|
message: z.ZodString;
|
|
516
639
|
is_access_code_error: z.ZodLiteral<true>;
|
|
640
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
517
641
|
}, {
|
|
518
642
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
519
643
|
}>, "strip", z.ZodTypeAny, {
|
|
520
644
|
message: string;
|
|
521
645
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
522
646
|
is_access_code_error: true;
|
|
647
|
+
created_at?: string | undefined;
|
|
523
648
|
}, {
|
|
524
649
|
message: string;
|
|
525
650
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
526
651
|
is_access_code_error: true;
|
|
652
|
+
created_at?: string | undefined;
|
|
527
653
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
528
654
|
message: z.ZodString;
|
|
529
655
|
is_access_code_error: z.ZodLiteral<true>;
|
|
656
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
530
657
|
}, {
|
|
531
658
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
532
659
|
}>, "strip", z.ZodTypeAny, {
|
|
533
660
|
message: string;
|
|
534
661
|
error_code: "code_modified_external_to_seam";
|
|
535
662
|
is_access_code_error: true;
|
|
663
|
+
created_at?: string | undefined;
|
|
536
664
|
}, {
|
|
537
665
|
message: string;
|
|
538
666
|
error_code: "code_modified_external_to_seam";
|
|
539
667
|
is_access_code_error: true;
|
|
668
|
+
created_at?: string | undefined;
|
|
540
669
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
541
670
|
message: z.ZodString;
|
|
542
671
|
is_access_code_error: z.ZodLiteral<true>;
|
|
672
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
543
673
|
}, {
|
|
544
674
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
545
675
|
}>, "strip", z.ZodTypeAny, {
|
|
546
676
|
message: string;
|
|
547
677
|
error_code: "august_lock_invalid_code_length";
|
|
548
678
|
is_access_code_error: true;
|
|
679
|
+
created_at?: string | undefined;
|
|
549
680
|
}, {
|
|
550
681
|
message: string;
|
|
551
682
|
error_code: "august_lock_invalid_code_length";
|
|
552
683
|
is_access_code_error: true;
|
|
684
|
+
created_at?: string | undefined;
|
|
553
685
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
554
686
|
message: z.ZodString;
|
|
555
687
|
is_access_code_error: z.ZodLiteral<true>;
|
|
688
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
556
689
|
}, {
|
|
557
690
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
558
691
|
}>, "strip", z.ZodTypeAny, {
|
|
559
692
|
message: string;
|
|
560
693
|
error_code: "august_device_programming_delay";
|
|
561
694
|
is_access_code_error: true;
|
|
695
|
+
created_at?: string | undefined;
|
|
562
696
|
}, {
|
|
563
697
|
message: string;
|
|
564
698
|
error_code: "august_device_programming_delay";
|
|
565
699
|
is_access_code_error: true;
|
|
700
|
+
created_at?: string | undefined;
|
|
566
701
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
567
702
|
message: z.ZodString;
|
|
568
703
|
is_access_code_error: z.ZodLiteral<true>;
|
|
704
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
569
705
|
}, {
|
|
570
706
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
571
707
|
}>, "strip", z.ZodTypeAny, {
|
|
572
708
|
message: string;
|
|
573
709
|
error_code: "august_device_slots_full";
|
|
574
710
|
is_access_code_error: true;
|
|
711
|
+
created_at?: string | undefined;
|
|
575
712
|
}, {
|
|
576
713
|
message: string;
|
|
577
714
|
error_code: "august_device_slots_full";
|
|
578
715
|
is_access_code_error: true;
|
|
716
|
+
created_at?: string | undefined;
|
|
579
717
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
580
718
|
message: z.ZodString;
|
|
581
719
|
is_access_code_error: z.ZodLiteral<true>;
|
|
720
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
582
721
|
}, {
|
|
583
722
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
584
723
|
}>, "strip", z.ZodTypeAny, {
|
|
585
724
|
message: string;
|
|
586
725
|
error_code: "august_lock_missing_keypad";
|
|
587
726
|
is_access_code_error: true;
|
|
727
|
+
created_at?: string | undefined;
|
|
588
728
|
}, {
|
|
589
729
|
message: string;
|
|
590
730
|
error_code: "august_lock_missing_keypad";
|
|
591
731
|
is_access_code_error: true;
|
|
732
|
+
created_at?: string | undefined;
|
|
592
733
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
593
734
|
message: z.ZodString;
|
|
594
735
|
is_access_code_error: z.ZodLiteral<true>;
|
|
736
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
595
737
|
}, {
|
|
596
738
|
error_code: z.ZodLiteral<"salto_site_user_not_subscribed">;
|
|
597
739
|
}>, "strip", z.ZodTypeAny, {
|
|
598
740
|
message: string;
|
|
599
741
|
error_code: "salto_site_user_not_subscribed";
|
|
600
742
|
is_access_code_error: true;
|
|
743
|
+
created_at?: string | undefined;
|
|
601
744
|
}, {
|
|
602
745
|
message: string;
|
|
603
746
|
error_code: "salto_site_user_not_subscribed";
|
|
604
747
|
is_access_code_error: true;
|
|
748
|
+
created_at?: string | undefined;
|
|
605
749
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
606
750
|
message: z.ZodString;
|
|
607
751
|
is_access_code_error: z.ZodLiteral<true>;
|
|
752
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
608
753
|
}, {
|
|
609
754
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
610
755
|
}>, "strip", z.ZodTypeAny, {
|
|
611
756
|
message: string;
|
|
612
757
|
error_code: "hubitat_device_programming_delay";
|
|
613
758
|
is_access_code_error: true;
|
|
759
|
+
created_at?: string | undefined;
|
|
614
760
|
}, {
|
|
615
761
|
message: string;
|
|
616
762
|
error_code: "hubitat_device_programming_delay";
|
|
617
763
|
is_access_code_error: true;
|
|
764
|
+
created_at?: string | undefined;
|
|
618
765
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
619
766
|
message: z.ZodString;
|
|
620
767
|
is_access_code_error: z.ZodLiteral<true>;
|
|
768
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
621
769
|
}, {
|
|
622
770
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
623
771
|
}>, "strip", z.ZodTypeAny, {
|
|
624
772
|
message: string;
|
|
625
773
|
error_code: "hubitat_no_free_positions_available";
|
|
626
774
|
is_access_code_error: true;
|
|
775
|
+
created_at?: string | undefined;
|
|
627
776
|
}, {
|
|
628
777
|
message: string;
|
|
629
778
|
error_code: "hubitat_no_free_positions_available";
|
|
630
779
|
is_access_code_error: true;
|
|
780
|
+
created_at?: string | undefined;
|
|
631
781
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
632
782
|
created_at: z.ZodString;
|
|
633
783
|
message: z.ZodString;
|
|
@@ -923,124 +1073,160 @@ declare const access_code: z.ZodObject<{
|
|
|
923
1073
|
}>)[]]>, "many">;
|
|
924
1074
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
925
1075
|
message: z.ZodString;
|
|
1076
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
926
1077
|
}, {
|
|
927
1078
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
928
1079
|
}>, "strip", z.ZodTypeAny, {
|
|
929
1080
|
message: string;
|
|
930
1081
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1082
|
+
created_at?: string | undefined;
|
|
931
1083
|
}, {
|
|
932
1084
|
message: string;
|
|
933
1085
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1086
|
+
created_at?: string | undefined;
|
|
934
1087
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
935
1088
|
message: z.ZodString;
|
|
1089
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
936
1090
|
}, {
|
|
937
1091
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
938
1092
|
}>, "strip", z.ZodTypeAny, {
|
|
939
1093
|
message: string;
|
|
940
1094
|
warning_code: "schlage_detected_duplicate";
|
|
1095
|
+
created_at?: string | undefined;
|
|
941
1096
|
}, {
|
|
942
1097
|
message: string;
|
|
943
1098
|
warning_code: "schlage_detected_duplicate";
|
|
1099
|
+
created_at?: string | undefined;
|
|
944
1100
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
945
1101
|
message: z.ZodString;
|
|
1102
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
946
1103
|
}, {
|
|
947
1104
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
948
1105
|
}>, "strip", z.ZodTypeAny, {
|
|
949
1106
|
message: string;
|
|
950
1107
|
warning_code: "schlage_creation_outage";
|
|
1108
|
+
created_at?: string | undefined;
|
|
951
1109
|
}, {
|
|
952
1110
|
message: string;
|
|
953
1111
|
warning_code: "schlage_creation_outage";
|
|
1112
|
+
created_at?: string | undefined;
|
|
954
1113
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
955
1114
|
message: z.ZodString;
|
|
1115
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
956
1116
|
}, {
|
|
957
1117
|
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
958
1118
|
}>, "strip", z.ZodTypeAny, {
|
|
959
1119
|
message: string;
|
|
960
1120
|
warning_code: "salto_office_mode";
|
|
1121
|
+
created_at?: string | undefined;
|
|
961
1122
|
}, {
|
|
962
1123
|
message: string;
|
|
963
1124
|
warning_code: "salto_office_mode";
|
|
1125
|
+
created_at?: string | undefined;
|
|
964
1126
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
965
1127
|
message: z.ZodString;
|
|
1128
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
966
1129
|
}, {
|
|
967
1130
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
968
1131
|
}>, "strip", z.ZodTypeAny, {
|
|
969
1132
|
message: string;
|
|
970
1133
|
warning_code: "code_modified_external_to_seam";
|
|
1134
|
+
created_at?: string | undefined;
|
|
971
1135
|
}, {
|
|
972
1136
|
message: string;
|
|
973
1137
|
warning_code: "code_modified_external_to_seam";
|
|
1138
|
+
created_at?: string | undefined;
|
|
974
1139
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
975
1140
|
message: z.ZodString;
|
|
1141
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
976
1142
|
}, {
|
|
977
1143
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
978
1144
|
}>, "strip", z.ZodTypeAny, {
|
|
979
1145
|
message: string;
|
|
980
1146
|
warning_code: "delay_in_setting_on_device";
|
|
1147
|
+
created_at?: string | undefined;
|
|
981
1148
|
}, {
|
|
982
1149
|
message: string;
|
|
983
1150
|
warning_code: "delay_in_setting_on_device";
|
|
1151
|
+
created_at?: string | undefined;
|
|
984
1152
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
985
1153
|
message: z.ZodString;
|
|
1154
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
986
1155
|
}, {
|
|
987
1156
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
988
1157
|
}>, "strip", z.ZodTypeAny, {
|
|
989
1158
|
message: string;
|
|
990
1159
|
warning_code: "delay_in_removing_from_device";
|
|
1160
|
+
created_at?: string | undefined;
|
|
991
1161
|
}, {
|
|
992
1162
|
message: string;
|
|
993
1163
|
warning_code: "delay_in_removing_from_device";
|
|
1164
|
+
created_at?: string | undefined;
|
|
994
1165
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
995
1166
|
message: z.ZodString;
|
|
1167
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
996
1168
|
}, {
|
|
997
1169
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
998
1170
|
}>, "strip", z.ZodTypeAny, {
|
|
999
1171
|
message: string;
|
|
1000
1172
|
warning_code: "third_party_integration_detected";
|
|
1173
|
+
created_at?: string | undefined;
|
|
1001
1174
|
}, {
|
|
1002
1175
|
message: string;
|
|
1003
1176
|
warning_code: "third_party_integration_detected";
|
|
1177
|
+
created_at?: string | undefined;
|
|
1004
1178
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1005
1179
|
message: z.ZodString;
|
|
1180
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1006
1181
|
}, {
|
|
1007
1182
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
1008
1183
|
}>, "strip", z.ZodTypeAny, {
|
|
1009
1184
|
message: string;
|
|
1010
1185
|
warning_code: "august_device_programming_delay";
|
|
1186
|
+
created_at?: string | undefined;
|
|
1011
1187
|
}, {
|
|
1012
1188
|
message: string;
|
|
1013
1189
|
warning_code: "august_device_programming_delay";
|
|
1190
|
+
created_at?: string | undefined;
|
|
1014
1191
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1015
1192
|
message: z.ZodString;
|
|
1193
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1016
1194
|
}, {
|
|
1017
1195
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
1018
1196
|
}>, "strip", z.ZodTypeAny, {
|
|
1019
1197
|
message: string;
|
|
1020
1198
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1199
|
+
created_at?: string | undefined;
|
|
1021
1200
|
}, {
|
|
1022
1201
|
message: string;
|
|
1023
1202
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1203
|
+
created_at?: string | undefined;
|
|
1024
1204
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1025
1205
|
message: z.ZodString;
|
|
1206
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1026
1207
|
}, {
|
|
1027
1208
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
1028
1209
|
}>, "strip", z.ZodTypeAny, {
|
|
1029
1210
|
message: string;
|
|
1030
1211
|
warning_code: "management_transferred";
|
|
1212
|
+
created_at?: string | undefined;
|
|
1031
1213
|
}, {
|
|
1032
1214
|
message: string;
|
|
1033
1215
|
warning_code: "management_transferred";
|
|
1216
|
+
created_at?: string | undefined;
|
|
1034
1217
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1035
1218
|
message: z.ZodString;
|
|
1219
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1036
1220
|
}, {
|
|
1037
1221
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
1038
1222
|
}>, "strip", z.ZodTypeAny, {
|
|
1039
1223
|
message: string;
|
|
1040
1224
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1225
|
+
created_at?: string | undefined;
|
|
1041
1226
|
}, {
|
|
1042
1227
|
message: string;
|
|
1043
1228
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1229
|
+
created_at?: string | undefined;
|
|
1044
1230
|
}>]>, "many">;
|
|
1045
1231
|
is_managed: z.ZodLiteral<true>;
|
|
1046
1232
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1147,115 +1333,146 @@ declare const access_code: z.ZodObject<{
|
|
|
1147
1333
|
message: string;
|
|
1148
1334
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1149
1335
|
is_access_code_error: true;
|
|
1336
|
+
created_at?: string | undefined;
|
|
1150
1337
|
} | {
|
|
1151
1338
|
message: string;
|
|
1152
1339
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1153
1340
|
is_access_code_error: true;
|
|
1341
|
+
created_at?: string | undefined;
|
|
1154
1342
|
} | {
|
|
1155
1343
|
message: string;
|
|
1156
1344
|
error_code: "code_modified_external_to_seam";
|
|
1157
1345
|
is_access_code_error: true;
|
|
1346
|
+
created_at?: string | undefined;
|
|
1158
1347
|
} | {
|
|
1159
1348
|
message: string;
|
|
1160
1349
|
error_code: "failed_to_set_on_device";
|
|
1161
1350
|
is_access_code_error: true;
|
|
1351
|
+
created_at?: string | undefined;
|
|
1162
1352
|
} | {
|
|
1163
1353
|
message: string;
|
|
1164
1354
|
error_code: "failed_to_remove_from_device";
|
|
1165
1355
|
is_access_code_error: true;
|
|
1356
|
+
created_at?: string | undefined;
|
|
1166
1357
|
} | {
|
|
1167
1358
|
message: string;
|
|
1168
1359
|
error_code: "duplicate_code_on_device";
|
|
1169
1360
|
is_access_code_error: true;
|
|
1361
|
+
created_at?: string | undefined;
|
|
1170
1362
|
} | {
|
|
1171
1363
|
message: string;
|
|
1172
1364
|
error_code: "duplicate_code_attempt_prevented";
|
|
1173
1365
|
is_access_code_error: true;
|
|
1366
|
+
created_at?: string | undefined;
|
|
1174
1367
|
} | {
|
|
1175
1368
|
message: string;
|
|
1176
1369
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1177
1370
|
is_access_code_error: true;
|
|
1371
|
+
created_at?: string | undefined;
|
|
1178
1372
|
} | {
|
|
1179
1373
|
message: string;
|
|
1180
1374
|
error_code: "igloohome_bridge_offline";
|
|
1181
1375
|
is_access_code_error: true;
|
|
1376
|
+
created_at?: string | undefined;
|
|
1182
1377
|
} | {
|
|
1183
1378
|
message: string;
|
|
1184
1379
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1185
1380
|
is_access_code_error: true;
|
|
1381
|
+
created_at?: string | undefined;
|
|
1186
1382
|
} | {
|
|
1187
1383
|
message: string;
|
|
1188
1384
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1189
1385
|
is_access_code_error: true;
|
|
1386
|
+
created_at?: string | undefined;
|
|
1190
1387
|
} | {
|
|
1191
1388
|
message: string;
|
|
1192
1389
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1193
1390
|
is_access_code_error: true;
|
|
1391
|
+
created_at?: string | undefined;
|
|
1194
1392
|
} | {
|
|
1195
1393
|
message: string;
|
|
1196
1394
|
error_code: "august_lock_invalid_code_length";
|
|
1197
1395
|
is_access_code_error: true;
|
|
1396
|
+
created_at?: string | undefined;
|
|
1198
1397
|
} | {
|
|
1199
1398
|
message: string;
|
|
1200
1399
|
error_code: "august_device_programming_delay";
|
|
1201
1400
|
is_access_code_error: true;
|
|
1401
|
+
created_at?: string | undefined;
|
|
1202
1402
|
} | {
|
|
1203
1403
|
message: string;
|
|
1204
1404
|
error_code: "august_device_slots_full";
|
|
1205
1405
|
is_access_code_error: true;
|
|
1406
|
+
created_at?: string | undefined;
|
|
1206
1407
|
} | {
|
|
1207
1408
|
message: string;
|
|
1208
1409
|
error_code: "august_lock_missing_keypad";
|
|
1209
1410
|
is_access_code_error: true;
|
|
1411
|
+
created_at?: string | undefined;
|
|
1210
1412
|
} | {
|
|
1211
1413
|
message: string;
|
|
1212
1414
|
error_code: "salto_site_user_not_subscribed";
|
|
1213
1415
|
is_access_code_error: true;
|
|
1416
|
+
created_at?: string | undefined;
|
|
1214
1417
|
} | {
|
|
1215
1418
|
message: string;
|
|
1216
1419
|
error_code: "hubitat_device_programming_delay";
|
|
1217
1420
|
is_access_code_error: true;
|
|
1421
|
+
created_at?: string | undefined;
|
|
1218
1422
|
} | {
|
|
1219
1423
|
message: string;
|
|
1220
1424
|
error_code: "hubitat_no_free_positions_available";
|
|
1221
1425
|
is_access_code_error: true;
|
|
1426
|
+
created_at?: string | undefined;
|
|
1222
1427
|
})[];
|
|
1223
1428
|
warnings: ({
|
|
1224
1429
|
message: string;
|
|
1225
1430
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1431
|
+
created_at?: string | undefined;
|
|
1226
1432
|
} | {
|
|
1227
1433
|
message: string;
|
|
1228
1434
|
warning_code: "august_device_programming_delay";
|
|
1435
|
+
created_at?: string | undefined;
|
|
1229
1436
|
} | {
|
|
1230
1437
|
message: string;
|
|
1231
1438
|
warning_code: "code_modified_external_to_seam";
|
|
1439
|
+
created_at?: string | undefined;
|
|
1232
1440
|
} | {
|
|
1233
1441
|
message: string;
|
|
1234
1442
|
warning_code: "schlage_detected_duplicate";
|
|
1443
|
+
created_at?: string | undefined;
|
|
1235
1444
|
} | {
|
|
1236
1445
|
message: string;
|
|
1237
1446
|
warning_code: "schlage_creation_outage";
|
|
1447
|
+
created_at?: string | undefined;
|
|
1238
1448
|
} | {
|
|
1239
1449
|
message: string;
|
|
1240
1450
|
warning_code: "salto_office_mode";
|
|
1451
|
+
created_at?: string | undefined;
|
|
1241
1452
|
} | {
|
|
1242
1453
|
message: string;
|
|
1243
1454
|
warning_code: "delay_in_setting_on_device";
|
|
1455
|
+
created_at?: string | undefined;
|
|
1244
1456
|
} | {
|
|
1245
1457
|
message: string;
|
|
1246
1458
|
warning_code: "delay_in_removing_from_device";
|
|
1459
|
+
created_at?: string | undefined;
|
|
1247
1460
|
} | {
|
|
1248
1461
|
message: string;
|
|
1249
1462
|
warning_code: "third_party_integration_detected";
|
|
1463
|
+
created_at?: string | undefined;
|
|
1250
1464
|
} | {
|
|
1251
1465
|
message: string;
|
|
1252
1466
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1467
|
+
created_at?: string | undefined;
|
|
1253
1468
|
} | {
|
|
1254
1469
|
message: string;
|
|
1255
1470
|
warning_code: "management_transferred";
|
|
1471
|
+
created_at?: string | undefined;
|
|
1256
1472
|
} | {
|
|
1257
1473
|
message: string;
|
|
1258
1474
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1475
|
+
created_at?: string | undefined;
|
|
1259
1476
|
})[];
|
|
1260
1477
|
is_managed: true;
|
|
1261
1478
|
common_code_key: string | null;
|
|
@@ -1365,115 +1582,146 @@ declare const access_code: z.ZodObject<{
|
|
|
1365
1582
|
message: string;
|
|
1366
1583
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1367
1584
|
is_access_code_error: true;
|
|
1585
|
+
created_at?: string | undefined;
|
|
1368
1586
|
} | {
|
|
1369
1587
|
message: string;
|
|
1370
1588
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1371
1589
|
is_access_code_error: true;
|
|
1590
|
+
created_at?: string | undefined;
|
|
1372
1591
|
} | {
|
|
1373
1592
|
message: string;
|
|
1374
1593
|
error_code: "code_modified_external_to_seam";
|
|
1375
1594
|
is_access_code_error: true;
|
|
1595
|
+
created_at?: string | undefined;
|
|
1376
1596
|
} | {
|
|
1377
1597
|
message: string;
|
|
1378
1598
|
error_code: "failed_to_set_on_device";
|
|
1379
1599
|
is_access_code_error: true;
|
|
1600
|
+
created_at?: string | undefined;
|
|
1380
1601
|
} | {
|
|
1381
1602
|
message: string;
|
|
1382
1603
|
error_code: "failed_to_remove_from_device";
|
|
1383
1604
|
is_access_code_error: true;
|
|
1605
|
+
created_at?: string | undefined;
|
|
1384
1606
|
} | {
|
|
1385
1607
|
message: string;
|
|
1386
1608
|
error_code: "duplicate_code_on_device";
|
|
1387
1609
|
is_access_code_error: true;
|
|
1610
|
+
created_at?: string | undefined;
|
|
1388
1611
|
} | {
|
|
1389
1612
|
message: string;
|
|
1390
1613
|
error_code: "duplicate_code_attempt_prevented";
|
|
1391
1614
|
is_access_code_error: true;
|
|
1615
|
+
created_at?: string | undefined;
|
|
1392
1616
|
} | {
|
|
1393
1617
|
message: string;
|
|
1394
1618
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1395
1619
|
is_access_code_error: true;
|
|
1620
|
+
created_at?: string | undefined;
|
|
1396
1621
|
} | {
|
|
1397
1622
|
message: string;
|
|
1398
1623
|
error_code: "igloohome_bridge_offline";
|
|
1399
1624
|
is_access_code_error: true;
|
|
1625
|
+
created_at?: string | undefined;
|
|
1400
1626
|
} | {
|
|
1401
1627
|
message: string;
|
|
1402
1628
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1403
1629
|
is_access_code_error: true;
|
|
1630
|
+
created_at?: string | undefined;
|
|
1404
1631
|
} | {
|
|
1405
1632
|
message: string;
|
|
1406
1633
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1407
1634
|
is_access_code_error: true;
|
|
1635
|
+
created_at?: string | undefined;
|
|
1408
1636
|
} | {
|
|
1409
1637
|
message: string;
|
|
1410
1638
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1411
1639
|
is_access_code_error: true;
|
|
1640
|
+
created_at?: string | undefined;
|
|
1412
1641
|
} | {
|
|
1413
1642
|
message: string;
|
|
1414
1643
|
error_code: "august_lock_invalid_code_length";
|
|
1415
1644
|
is_access_code_error: true;
|
|
1645
|
+
created_at?: string | undefined;
|
|
1416
1646
|
} | {
|
|
1417
1647
|
message: string;
|
|
1418
1648
|
error_code: "august_device_programming_delay";
|
|
1419
1649
|
is_access_code_error: true;
|
|
1650
|
+
created_at?: string | undefined;
|
|
1420
1651
|
} | {
|
|
1421
1652
|
message: string;
|
|
1422
1653
|
error_code: "august_device_slots_full";
|
|
1423
1654
|
is_access_code_error: true;
|
|
1655
|
+
created_at?: string | undefined;
|
|
1424
1656
|
} | {
|
|
1425
1657
|
message: string;
|
|
1426
1658
|
error_code: "august_lock_missing_keypad";
|
|
1427
1659
|
is_access_code_error: true;
|
|
1660
|
+
created_at?: string | undefined;
|
|
1428
1661
|
} | {
|
|
1429
1662
|
message: string;
|
|
1430
1663
|
error_code: "salto_site_user_not_subscribed";
|
|
1431
1664
|
is_access_code_error: true;
|
|
1665
|
+
created_at?: string | undefined;
|
|
1432
1666
|
} | {
|
|
1433
1667
|
message: string;
|
|
1434
1668
|
error_code: "hubitat_device_programming_delay";
|
|
1435
1669
|
is_access_code_error: true;
|
|
1670
|
+
created_at?: string | undefined;
|
|
1436
1671
|
} | {
|
|
1437
1672
|
message: string;
|
|
1438
1673
|
error_code: "hubitat_no_free_positions_available";
|
|
1439
1674
|
is_access_code_error: true;
|
|
1675
|
+
created_at?: string | undefined;
|
|
1440
1676
|
})[];
|
|
1441
1677
|
warnings: ({
|
|
1442
1678
|
message: string;
|
|
1443
1679
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
1680
|
+
created_at?: string | undefined;
|
|
1444
1681
|
} | {
|
|
1445
1682
|
message: string;
|
|
1446
1683
|
warning_code: "august_device_programming_delay";
|
|
1684
|
+
created_at?: string | undefined;
|
|
1447
1685
|
} | {
|
|
1448
1686
|
message: string;
|
|
1449
1687
|
warning_code: "code_modified_external_to_seam";
|
|
1688
|
+
created_at?: string | undefined;
|
|
1450
1689
|
} | {
|
|
1451
1690
|
message: string;
|
|
1452
1691
|
warning_code: "schlage_detected_duplicate";
|
|
1692
|
+
created_at?: string | undefined;
|
|
1453
1693
|
} | {
|
|
1454
1694
|
message: string;
|
|
1455
1695
|
warning_code: "schlage_creation_outage";
|
|
1696
|
+
created_at?: string | undefined;
|
|
1456
1697
|
} | {
|
|
1457
1698
|
message: string;
|
|
1458
1699
|
warning_code: "salto_office_mode";
|
|
1700
|
+
created_at?: string | undefined;
|
|
1459
1701
|
} | {
|
|
1460
1702
|
message: string;
|
|
1461
1703
|
warning_code: "delay_in_setting_on_device";
|
|
1704
|
+
created_at?: string | undefined;
|
|
1462
1705
|
} | {
|
|
1463
1706
|
message: string;
|
|
1464
1707
|
warning_code: "delay_in_removing_from_device";
|
|
1708
|
+
created_at?: string | undefined;
|
|
1465
1709
|
} | {
|
|
1466
1710
|
message: string;
|
|
1467
1711
|
warning_code: "third_party_integration_detected";
|
|
1712
|
+
created_at?: string | undefined;
|
|
1468
1713
|
} | {
|
|
1469
1714
|
message: string;
|
|
1470
1715
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
1716
|
+
created_at?: string | undefined;
|
|
1471
1717
|
} | {
|
|
1472
1718
|
message: string;
|
|
1473
1719
|
warning_code: "management_transferred";
|
|
1720
|
+
created_at?: string | undefined;
|
|
1474
1721
|
} | {
|
|
1475
1722
|
message: string;
|
|
1476
1723
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
1724
|
+
created_at?: string | undefined;
|
|
1477
1725
|
})[];
|
|
1478
1726
|
is_managed: true;
|
|
1479
1727
|
common_code_key: string | null;
|
|
@@ -1504,250 +1752,307 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
1504
1752
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
1505
1753
|
message: z.ZodString;
|
|
1506
1754
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1755
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1507
1756
|
}, {
|
|
1508
1757
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
1509
1758
|
}>, "strip", z.ZodTypeAny, {
|
|
1510
1759
|
message: string;
|
|
1511
1760
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1512
1761
|
is_access_code_error: true;
|
|
1762
|
+
created_at?: string | undefined;
|
|
1513
1763
|
}, {
|
|
1514
1764
|
message: string;
|
|
1515
1765
|
error_code: "smartthings_failed_to_set_access_code";
|
|
1516
1766
|
is_access_code_error: true;
|
|
1767
|
+
created_at?: string | undefined;
|
|
1517
1768
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1518
1769
|
message: z.ZodString;
|
|
1519
1770
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1771
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1520
1772
|
}, {
|
|
1521
1773
|
error_code: z.ZodLiteral<"smartthings_failed_to_set_after_multiple_retries">;
|
|
1522
1774
|
}>, "strip", z.ZodTypeAny, {
|
|
1523
1775
|
message: string;
|
|
1524
1776
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1525
1777
|
is_access_code_error: true;
|
|
1778
|
+
created_at?: string | undefined;
|
|
1526
1779
|
}, {
|
|
1527
1780
|
message: string;
|
|
1528
1781
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
1529
1782
|
is_access_code_error: true;
|
|
1783
|
+
created_at?: string | undefined;
|
|
1530
1784
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1531
1785
|
message: z.ZodString;
|
|
1532
1786
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1787
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1533
1788
|
}, {
|
|
1534
1789
|
error_code: z.ZodLiteral<"failed_to_set_on_device">;
|
|
1535
1790
|
}>, "strip", z.ZodTypeAny, {
|
|
1536
1791
|
message: string;
|
|
1537
1792
|
error_code: "failed_to_set_on_device";
|
|
1538
1793
|
is_access_code_error: true;
|
|
1794
|
+
created_at?: string | undefined;
|
|
1539
1795
|
}, {
|
|
1540
1796
|
message: string;
|
|
1541
1797
|
error_code: "failed_to_set_on_device";
|
|
1542
1798
|
is_access_code_error: true;
|
|
1799
|
+
created_at?: string | undefined;
|
|
1543
1800
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1544
1801
|
message: z.ZodString;
|
|
1545
1802
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1803
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1546
1804
|
}, {
|
|
1547
1805
|
error_code: z.ZodLiteral<"failed_to_remove_from_device">;
|
|
1548
1806
|
}>, "strip", z.ZodTypeAny, {
|
|
1549
1807
|
message: string;
|
|
1550
1808
|
error_code: "failed_to_remove_from_device";
|
|
1551
1809
|
is_access_code_error: true;
|
|
1810
|
+
created_at?: string | undefined;
|
|
1552
1811
|
}, {
|
|
1553
1812
|
message: string;
|
|
1554
1813
|
error_code: "failed_to_remove_from_device";
|
|
1555
1814
|
is_access_code_error: true;
|
|
1815
|
+
created_at?: string | undefined;
|
|
1556
1816
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1557
1817
|
message: z.ZodString;
|
|
1558
1818
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1819
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1559
1820
|
}, {
|
|
1560
1821
|
error_code: z.ZodLiteral<"duplicate_code_on_device">;
|
|
1561
1822
|
}>, "strip", z.ZodTypeAny, {
|
|
1562
1823
|
message: string;
|
|
1563
1824
|
error_code: "duplicate_code_on_device";
|
|
1564
1825
|
is_access_code_error: true;
|
|
1826
|
+
created_at?: string | undefined;
|
|
1565
1827
|
}, {
|
|
1566
1828
|
message: string;
|
|
1567
1829
|
error_code: "duplicate_code_on_device";
|
|
1568
1830
|
is_access_code_error: true;
|
|
1831
|
+
created_at?: string | undefined;
|
|
1569
1832
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1570
1833
|
message: z.ZodString;
|
|
1571
1834
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1835
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1572
1836
|
}, {
|
|
1573
1837
|
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
1574
1838
|
}>, "strip", z.ZodTypeAny, {
|
|
1575
1839
|
message: string;
|
|
1576
1840
|
error_code: "duplicate_code_attempt_prevented";
|
|
1577
1841
|
is_access_code_error: true;
|
|
1842
|
+
created_at?: string | undefined;
|
|
1578
1843
|
}, {
|
|
1579
1844
|
message: string;
|
|
1580
1845
|
error_code: "duplicate_code_attempt_prevented";
|
|
1581
1846
|
is_access_code_error: true;
|
|
1847
|
+
created_at?: string | undefined;
|
|
1582
1848
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1583
1849
|
message: z.ZodString;
|
|
1584
1850
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1851
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1585
1852
|
}, {
|
|
1586
1853
|
error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
|
|
1587
1854
|
}>, "strip", z.ZodTypeAny, {
|
|
1588
1855
|
message: string;
|
|
1589
1856
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1590
1857
|
is_access_code_error: true;
|
|
1858
|
+
created_at?: string | undefined;
|
|
1591
1859
|
}, {
|
|
1592
1860
|
message: string;
|
|
1593
1861
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
1594
1862
|
is_access_code_error: true;
|
|
1863
|
+
created_at?: string | undefined;
|
|
1595
1864
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1596
1865
|
message: z.ZodString;
|
|
1597
1866
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1867
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1598
1868
|
}, {
|
|
1599
1869
|
error_code: z.ZodLiteral<"igloohome_bridge_offline">;
|
|
1600
1870
|
}>, "strip", z.ZodTypeAny, {
|
|
1601
1871
|
message: string;
|
|
1602
1872
|
error_code: "igloohome_bridge_offline";
|
|
1603
1873
|
is_access_code_error: true;
|
|
1874
|
+
created_at?: string | undefined;
|
|
1604
1875
|
}, {
|
|
1605
1876
|
message: string;
|
|
1606
1877
|
error_code: "igloohome_bridge_offline";
|
|
1607
1878
|
is_access_code_error: true;
|
|
1879
|
+
created_at?: string | undefined;
|
|
1608
1880
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1609
1881
|
message: z.ZodString;
|
|
1610
1882
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1883
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1611
1884
|
}, {
|
|
1612
1885
|
error_code: z.ZodLiteral<"igloohome_offline_access_code_no_variance_available">;
|
|
1613
1886
|
}>, "strip", z.ZodTypeAny, {
|
|
1614
1887
|
message: string;
|
|
1615
1888
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1616
1889
|
is_access_code_error: true;
|
|
1890
|
+
created_at?: string | undefined;
|
|
1617
1891
|
}, {
|
|
1618
1892
|
message: string;
|
|
1619
1893
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
1620
1894
|
is_access_code_error: true;
|
|
1895
|
+
created_at?: string | undefined;
|
|
1621
1896
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1622
1897
|
message: z.ZodString;
|
|
1623
1898
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1899
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1624
1900
|
}, {
|
|
1625
1901
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
1626
1902
|
}>, "strip", z.ZodTypeAny, {
|
|
1627
1903
|
message: string;
|
|
1628
1904
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1629
1905
|
is_access_code_error: true;
|
|
1906
|
+
created_at?: string | undefined;
|
|
1630
1907
|
}, {
|
|
1631
1908
|
message: string;
|
|
1632
1909
|
error_code: "kwikset_unable_to_confirm_code";
|
|
1633
1910
|
is_access_code_error: true;
|
|
1911
|
+
created_at?: string | undefined;
|
|
1634
1912
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1635
1913
|
message: z.ZodString;
|
|
1636
1914
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1915
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1637
1916
|
}, {
|
|
1638
1917
|
error_code: z.ZodLiteral<"kwikset_unable_to_confirm_deletion">;
|
|
1639
1918
|
}>, "strip", z.ZodTypeAny, {
|
|
1640
1919
|
message: string;
|
|
1641
1920
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1642
1921
|
is_access_code_error: true;
|
|
1922
|
+
created_at?: string | undefined;
|
|
1643
1923
|
}, {
|
|
1644
1924
|
message: string;
|
|
1645
1925
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
1646
1926
|
is_access_code_error: true;
|
|
1927
|
+
created_at?: string | undefined;
|
|
1647
1928
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1648
1929
|
message: z.ZodString;
|
|
1649
1930
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1931
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1650
1932
|
}, {
|
|
1651
1933
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
1652
1934
|
}>, "strip", z.ZodTypeAny, {
|
|
1653
1935
|
message: string;
|
|
1654
1936
|
error_code: "code_modified_external_to_seam";
|
|
1655
1937
|
is_access_code_error: true;
|
|
1938
|
+
created_at?: string | undefined;
|
|
1656
1939
|
}, {
|
|
1657
1940
|
message: string;
|
|
1658
1941
|
error_code: "code_modified_external_to_seam";
|
|
1659
1942
|
is_access_code_error: true;
|
|
1943
|
+
created_at?: string | undefined;
|
|
1660
1944
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1661
1945
|
message: z.ZodString;
|
|
1662
1946
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1947
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1663
1948
|
}, {
|
|
1664
1949
|
error_code: z.ZodLiteral<"august_lock_invalid_code_length">;
|
|
1665
1950
|
}>, "strip", z.ZodTypeAny, {
|
|
1666
1951
|
message: string;
|
|
1667
1952
|
error_code: "august_lock_invalid_code_length";
|
|
1668
1953
|
is_access_code_error: true;
|
|
1954
|
+
created_at?: string | undefined;
|
|
1669
1955
|
}, {
|
|
1670
1956
|
message: string;
|
|
1671
1957
|
error_code: "august_lock_invalid_code_length";
|
|
1672
1958
|
is_access_code_error: true;
|
|
1959
|
+
created_at?: string | undefined;
|
|
1673
1960
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1674
1961
|
message: z.ZodString;
|
|
1675
1962
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1963
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1676
1964
|
}, {
|
|
1677
1965
|
error_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
1678
1966
|
}>, "strip", z.ZodTypeAny, {
|
|
1679
1967
|
message: string;
|
|
1680
1968
|
error_code: "august_device_programming_delay";
|
|
1681
1969
|
is_access_code_error: true;
|
|
1970
|
+
created_at?: string | undefined;
|
|
1682
1971
|
}, {
|
|
1683
1972
|
message: string;
|
|
1684
1973
|
error_code: "august_device_programming_delay";
|
|
1685
1974
|
is_access_code_error: true;
|
|
1975
|
+
created_at?: string | undefined;
|
|
1686
1976
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1687
1977
|
message: z.ZodString;
|
|
1688
1978
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1979
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1689
1980
|
}, {
|
|
1690
1981
|
error_code: z.ZodLiteral<"august_device_slots_full">;
|
|
1691
1982
|
}>, "strip", z.ZodTypeAny, {
|
|
1692
1983
|
message: string;
|
|
1693
1984
|
error_code: "august_device_slots_full";
|
|
1694
1985
|
is_access_code_error: true;
|
|
1986
|
+
created_at?: string | undefined;
|
|
1695
1987
|
}, {
|
|
1696
1988
|
message: string;
|
|
1697
1989
|
error_code: "august_device_slots_full";
|
|
1698
1990
|
is_access_code_error: true;
|
|
1991
|
+
created_at?: string | undefined;
|
|
1699
1992
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1700
1993
|
message: z.ZodString;
|
|
1701
1994
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1995
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1702
1996
|
}, {
|
|
1703
1997
|
error_code: z.ZodLiteral<"august_lock_missing_keypad">;
|
|
1704
1998
|
}>, "strip", z.ZodTypeAny, {
|
|
1705
1999
|
message: string;
|
|
1706
2000
|
error_code: "august_lock_missing_keypad";
|
|
1707
2001
|
is_access_code_error: true;
|
|
2002
|
+
created_at?: string | undefined;
|
|
1708
2003
|
}, {
|
|
1709
2004
|
message: string;
|
|
1710
2005
|
error_code: "august_lock_missing_keypad";
|
|
1711
2006
|
is_access_code_error: true;
|
|
2007
|
+
created_at?: string | undefined;
|
|
1712
2008
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1713
2009
|
message: z.ZodString;
|
|
1714
2010
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2011
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1715
2012
|
}, {
|
|
1716
2013
|
error_code: z.ZodLiteral<"salto_site_user_not_subscribed">;
|
|
1717
2014
|
}>, "strip", z.ZodTypeAny, {
|
|
1718
2015
|
message: string;
|
|
1719
2016
|
error_code: "salto_site_user_not_subscribed";
|
|
1720
2017
|
is_access_code_error: true;
|
|
2018
|
+
created_at?: string | undefined;
|
|
1721
2019
|
}, {
|
|
1722
2020
|
message: string;
|
|
1723
2021
|
error_code: "salto_site_user_not_subscribed";
|
|
1724
2022
|
is_access_code_error: true;
|
|
2023
|
+
created_at?: string | undefined;
|
|
1725
2024
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1726
2025
|
message: z.ZodString;
|
|
1727
2026
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2027
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1728
2028
|
}, {
|
|
1729
2029
|
error_code: z.ZodLiteral<"hubitat_device_programming_delay">;
|
|
1730
2030
|
}>, "strip", z.ZodTypeAny, {
|
|
1731
2031
|
message: string;
|
|
1732
2032
|
error_code: "hubitat_device_programming_delay";
|
|
1733
2033
|
is_access_code_error: true;
|
|
2034
|
+
created_at?: string | undefined;
|
|
1734
2035
|
}, {
|
|
1735
2036
|
message: string;
|
|
1736
2037
|
error_code: "hubitat_device_programming_delay";
|
|
1737
2038
|
is_access_code_error: true;
|
|
2039
|
+
created_at?: string | undefined;
|
|
1738
2040
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1739
2041
|
message: z.ZodString;
|
|
1740
2042
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2043
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1741
2044
|
}, {
|
|
1742
2045
|
error_code: z.ZodLiteral<"hubitat_no_free_positions_available">;
|
|
1743
2046
|
}>, "strip", z.ZodTypeAny, {
|
|
1744
2047
|
message: string;
|
|
1745
2048
|
error_code: "hubitat_no_free_positions_available";
|
|
1746
2049
|
is_access_code_error: true;
|
|
2050
|
+
created_at?: string | undefined;
|
|
1747
2051
|
}, {
|
|
1748
2052
|
message: string;
|
|
1749
2053
|
error_code: "hubitat_no_free_positions_available";
|
|
1750
2054
|
is_access_code_error: true;
|
|
2055
|
+
created_at?: string | undefined;
|
|
1751
2056
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
1752
2057
|
created_at: z.ZodString;
|
|
1753
2058
|
message: z.ZodString;
|
|
@@ -2043,124 +2348,160 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2043
2348
|
}>)[]]>, "many">;
|
|
2044
2349
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
2045
2350
|
message: z.ZodString;
|
|
2351
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2046
2352
|
}, {
|
|
2047
2353
|
warning_code: z.ZodLiteral<"smartthings_failed_to_set_access_code">;
|
|
2048
2354
|
}>, "strip", z.ZodTypeAny, {
|
|
2049
2355
|
message: string;
|
|
2050
2356
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2357
|
+
created_at?: string | undefined;
|
|
2051
2358
|
}, {
|
|
2052
2359
|
message: string;
|
|
2053
2360
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2361
|
+
created_at?: string | undefined;
|
|
2054
2362
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2055
2363
|
message: z.ZodString;
|
|
2364
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2056
2365
|
}, {
|
|
2057
2366
|
warning_code: z.ZodLiteral<"schlage_detected_duplicate">;
|
|
2058
2367
|
}>, "strip", z.ZodTypeAny, {
|
|
2059
2368
|
message: string;
|
|
2060
2369
|
warning_code: "schlage_detected_duplicate";
|
|
2370
|
+
created_at?: string | undefined;
|
|
2061
2371
|
}, {
|
|
2062
2372
|
message: string;
|
|
2063
2373
|
warning_code: "schlage_detected_duplicate";
|
|
2374
|
+
created_at?: string | undefined;
|
|
2064
2375
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2065
2376
|
message: z.ZodString;
|
|
2377
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2066
2378
|
}, {
|
|
2067
2379
|
warning_code: z.ZodLiteral<"schlage_creation_outage">;
|
|
2068
2380
|
}>, "strip", z.ZodTypeAny, {
|
|
2069
2381
|
message: string;
|
|
2070
2382
|
warning_code: "schlage_creation_outage";
|
|
2383
|
+
created_at?: string | undefined;
|
|
2071
2384
|
}, {
|
|
2072
2385
|
message: string;
|
|
2073
2386
|
warning_code: "schlage_creation_outage";
|
|
2387
|
+
created_at?: string | undefined;
|
|
2074
2388
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2075
2389
|
message: z.ZodString;
|
|
2390
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2076
2391
|
}, {
|
|
2077
2392
|
warning_code: z.ZodLiteral<"salto_office_mode">;
|
|
2078
2393
|
}>, "strip", z.ZodTypeAny, {
|
|
2079
2394
|
message: string;
|
|
2080
2395
|
warning_code: "salto_office_mode";
|
|
2396
|
+
created_at?: string | undefined;
|
|
2081
2397
|
}, {
|
|
2082
2398
|
message: string;
|
|
2083
2399
|
warning_code: "salto_office_mode";
|
|
2400
|
+
created_at?: string | undefined;
|
|
2084
2401
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2085
2402
|
message: z.ZodString;
|
|
2403
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2086
2404
|
}, {
|
|
2087
2405
|
warning_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
2088
2406
|
}>, "strip", z.ZodTypeAny, {
|
|
2089
2407
|
message: string;
|
|
2090
2408
|
warning_code: "code_modified_external_to_seam";
|
|
2409
|
+
created_at?: string | undefined;
|
|
2091
2410
|
}, {
|
|
2092
2411
|
message: string;
|
|
2093
2412
|
warning_code: "code_modified_external_to_seam";
|
|
2413
|
+
created_at?: string | undefined;
|
|
2094
2414
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2095
2415
|
message: z.ZodString;
|
|
2416
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2096
2417
|
}, {
|
|
2097
2418
|
warning_code: z.ZodLiteral<"delay_in_setting_on_device">;
|
|
2098
2419
|
}>, "strip", z.ZodTypeAny, {
|
|
2099
2420
|
message: string;
|
|
2100
2421
|
warning_code: "delay_in_setting_on_device";
|
|
2422
|
+
created_at?: string | undefined;
|
|
2101
2423
|
}, {
|
|
2102
2424
|
message: string;
|
|
2103
2425
|
warning_code: "delay_in_setting_on_device";
|
|
2426
|
+
created_at?: string | undefined;
|
|
2104
2427
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2105
2428
|
message: z.ZodString;
|
|
2429
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2106
2430
|
}, {
|
|
2107
2431
|
warning_code: z.ZodLiteral<"delay_in_removing_from_device">;
|
|
2108
2432
|
}>, "strip", z.ZodTypeAny, {
|
|
2109
2433
|
message: string;
|
|
2110
2434
|
warning_code: "delay_in_removing_from_device";
|
|
2435
|
+
created_at?: string | undefined;
|
|
2111
2436
|
}, {
|
|
2112
2437
|
message: string;
|
|
2113
2438
|
warning_code: "delay_in_removing_from_device";
|
|
2439
|
+
created_at?: string | undefined;
|
|
2114
2440
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2115
2441
|
message: z.ZodString;
|
|
2442
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2116
2443
|
}, {
|
|
2117
2444
|
warning_code: z.ZodLiteral<"third_party_integration_detected">;
|
|
2118
2445
|
}>, "strip", z.ZodTypeAny, {
|
|
2119
2446
|
message: string;
|
|
2120
2447
|
warning_code: "third_party_integration_detected";
|
|
2448
|
+
created_at?: string | undefined;
|
|
2121
2449
|
}, {
|
|
2122
2450
|
message: string;
|
|
2123
2451
|
warning_code: "third_party_integration_detected";
|
|
2452
|
+
created_at?: string | undefined;
|
|
2124
2453
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2125
2454
|
message: z.ZodString;
|
|
2455
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2126
2456
|
}, {
|
|
2127
2457
|
warning_code: z.ZodLiteral<"august_device_programming_delay">;
|
|
2128
2458
|
}>, "strip", z.ZodTypeAny, {
|
|
2129
2459
|
message: string;
|
|
2130
2460
|
warning_code: "august_device_programming_delay";
|
|
2461
|
+
created_at?: string | undefined;
|
|
2131
2462
|
}, {
|
|
2132
2463
|
message: string;
|
|
2133
2464
|
warning_code: "august_device_programming_delay";
|
|
2465
|
+
created_at?: string | undefined;
|
|
2134
2466
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2135
2467
|
message: z.ZodString;
|
|
2468
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2136
2469
|
}, {
|
|
2137
2470
|
warning_code: z.ZodLiteral<"igloo_algopin_must_be_used_within_24_hours">;
|
|
2138
2471
|
}>, "strip", z.ZodTypeAny, {
|
|
2139
2472
|
message: string;
|
|
2140
2473
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2474
|
+
created_at?: string | undefined;
|
|
2141
2475
|
}, {
|
|
2142
2476
|
message: string;
|
|
2143
2477
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2478
|
+
created_at?: string | undefined;
|
|
2144
2479
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2145
2480
|
message: z.ZodString;
|
|
2481
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2146
2482
|
}, {
|
|
2147
2483
|
warning_code: z.ZodLiteral<"management_transferred">;
|
|
2148
2484
|
}>, "strip", z.ZodTypeAny, {
|
|
2149
2485
|
message: string;
|
|
2150
2486
|
warning_code: "management_transferred";
|
|
2487
|
+
created_at?: string | undefined;
|
|
2151
2488
|
}, {
|
|
2152
2489
|
message: string;
|
|
2153
2490
|
warning_code: "management_transferred";
|
|
2491
|
+
created_at?: string | undefined;
|
|
2154
2492
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2155
2493
|
message: z.ZodString;
|
|
2494
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2156
2495
|
}, {
|
|
2157
2496
|
warning_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
|
|
2158
2497
|
}>, "strip", z.ZodTypeAny, {
|
|
2159
2498
|
message: string;
|
|
2160
2499
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2500
|
+
created_at?: string | undefined;
|
|
2161
2501
|
}, {
|
|
2162
2502
|
message: string;
|
|
2163
2503
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2504
|
+
created_at?: string | undefined;
|
|
2164
2505
|
}>]>, "many">;
|
|
2165
2506
|
is_managed: z.ZodLiteral<true>;
|
|
2166
2507
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2270,115 +2611,146 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2270
2611
|
message: string;
|
|
2271
2612
|
error_code: "smartthings_failed_to_set_access_code";
|
|
2272
2613
|
is_access_code_error: true;
|
|
2614
|
+
created_at?: string | undefined;
|
|
2273
2615
|
} | {
|
|
2274
2616
|
message: string;
|
|
2275
2617
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
2276
2618
|
is_access_code_error: true;
|
|
2619
|
+
created_at?: string | undefined;
|
|
2277
2620
|
} | {
|
|
2278
2621
|
message: string;
|
|
2279
2622
|
error_code: "code_modified_external_to_seam";
|
|
2280
2623
|
is_access_code_error: true;
|
|
2624
|
+
created_at?: string | undefined;
|
|
2281
2625
|
} | {
|
|
2282
2626
|
message: string;
|
|
2283
2627
|
error_code: "failed_to_set_on_device";
|
|
2284
2628
|
is_access_code_error: true;
|
|
2629
|
+
created_at?: string | undefined;
|
|
2285
2630
|
} | {
|
|
2286
2631
|
message: string;
|
|
2287
2632
|
error_code: "failed_to_remove_from_device";
|
|
2288
2633
|
is_access_code_error: true;
|
|
2634
|
+
created_at?: string | undefined;
|
|
2289
2635
|
} | {
|
|
2290
2636
|
message: string;
|
|
2291
2637
|
error_code: "duplicate_code_on_device";
|
|
2292
2638
|
is_access_code_error: true;
|
|
2639
|
+
created_at?: string | undefined;
|
|
2293
2640
|
} | {
|
|
2294
2641
|
message: string;
|
|
2295
2642
|
error_code: "duplicate_code_attempt_prevented";
|
|
2296
2643
|
is_access_code_error: true;
|
|
2644
|
+
created_at?: string | undefined;
|
|
2297
2645
|
} | {
|
|
2298
2646
|
message: string;
|
|
2299
2647
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
2300
2648
|
is_access_code_error: true;
|
|
2649
|
+
created_at?: string | undefined;
|
|
2301
2650
|
} | {
|
|
2302
2651
|
message: string;
|
|
2303
2652
|
error_code: "igloohome_bridge_offline";
|
|
2304
2653
|
is_access_code_error: true;
|
|
2654
|
+
created_at?: string | undefined;
|
|
2305
2655
|
} | {
|
|
2306
2656
|
message: string;
|
|
2307
2657
|
error_code: "kwikset_unable_to_confirm_code";
|
|
2308
2658
|
is_access_code_error: true;
|
|
2659
|
+
created_at?: string | undefined;
|
|
2309
2660
|
} | {
|
|
2310
2661
|
message: string;
|
|
2311
2662
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
2312
2663
|
is_access_code_error: true;
|
|
2664
|
+
created_at?: string | undefined;
|
|
2313
2665
|
} | {
|
|
2314
2666
|
message: string;
|
|
2315
2667
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
2316
2668
|
is_access_code_error: true;
|
|
2669
|
+
created_at?: string | undefined;
|
|
2317
2670
|
} | {
|
|
2318
2671
|
message: string;
|
|
2319
2672
|
error_code: "august_lock_invalid_code_length";
|
|
2320
2673
|
is_access_code_error: true;
|
|
2674
|
+
created_at?: string | undefined;
|
|
2321
2675
|
} | {
|
|
2322
2676
|
message: string;
|
|
2323
2677
|
error_code: "august_device_programming_delay";
|
|
2324
2678
|
is_access_code_error: true;
|
|
2679
|
+
created_at?: string | undefined;
|
|
2325
2680
|
} | {
|
|
2326
2681
|
message: string;
|
|
2327
2682
|
error_code: "august_device_slots_full";
|
|
2328
2683
|
is_access_code_error: true;
|
|
2684
|
+
created_at?: string | undefined;
|
|
2329
2685
|
} | {
|
|
2330
2686
|
message: string;
|
|
2331
2687
|
error_code: "august_lock_missing_keypad";
|
|
2332
2688
|
is_access_code_error: true;
|
|
2689
|
+
created_at?: string | undefined;
|
|
2333
2690
|
} | {
|
|
2334
2691
|
message: string;
|
|
2335
2692
|
error_code: "salto_site_user_not_subscribed";
|
|
2336
2693
|
is_access_code_error: true;
|
|
2694
|
+
created_at?: string | undefined;
|
|
2337
2695
|
} | {
|
|
2338
2696
|
message: string;
|
|
2339
2697
|
error_code: "hubitat_device_programming_delay";
|
|
2340
2698
|
is_access_code_error: true;
|
|
2699
|
+
created_at?: string | undefined;
|
|
2341
2700
|
} | {
|
|
2342
2701
|
message: string;
|
|
2343
2702
|
error_code: "hubitat_no_free_positions_available";
|
|
2344
2703
|
is_access_code_error: true;
|
|
2704
|
+
created_at?: string | undefined;
|
|
2345
2705
|
})[];
|
|
2346
2706
|
warnings: ({
|
|
2347
2707
|
message: string;
|
|
2348
2708
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2709
|
+
created_at?: string | undefined;
|
|
2349
2710
|
} | {
|
|
2350
2711
|
message: string;
|
|
2351
2712
|
warning_code: "august_device_programming_delay";
|
|
2713
|
+
created_at?: string | undefined;
|
|
2352
2714
|
} | {
|
|
2353
2715
|
message: string;
|
|
2354
2716
|
warning_code: "code_modified_external_to_seam";
|
|
2717
|
+
created_at?: string | undefined;
|
|
2355
2718
|
} | {
|
|
2356
2719
|
message: string;
|
|
2357
2720
|
warning_code: "schlage_detected_duplicate";
|
|
2721
|
+
created_at?: string | undefined;
|
|
2358
2722
|
} | {
|
|
2359
2723
|
message: string;
|
|
2360
2724
|
warning_code: "schlage_creation_outage";
|
|
2725
|
+
created_at?: string | undefined;
|
|
2361
2726
|
} | {
|
|
2362
2727
|
message: string;
|
|
2363
2728
|
warning_code: "salto_office_mode";
|
|
2729
|
+
created_at?: string | undefined;
|
|
2364
2730
|
} | {
|
|
2365
2731
|
message: string;
|
|
2366
2732
|
warning_code: "delay_in_setting_on_device";
|
|
2733
|
+
created_at?: string | undefined;
|
|
2367
2734
|
} | {
|
|
2368
2735
|
message: string;
|
|
2369
2736
|
warning_code: "delay_in_removing_from_device";
|
|
2737
|
+
created_at?: string | undefined;
|
|
2370
2738
|
} | {
|
|
2371
2739
|
message: string;
|
|
2372
2740
|
warning_code: "third_party_integration_detected";
|
|
2741
|
+
created_at?: string | undefined;
|
|
2373
2742
|
} | {
|
|
2374
2743
|
message: string;
|
|
2375
2744
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2745
|
+
created_at?: string | undefined;
|
|
2376
2746
|
} | {
|
|
2377
2747
|
message: string;
|
|
2378
2748
|
warning_code: "management_transferred";
|
|
2749
|
+
created_at?: string | undefined;
|
|
2379
2750
|
} | {
|
|
2380
2751
|
message: string;
|
|
2381
2752
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2753
|
+
created_at?: string | undefined;
|
|
2382
2754
|
})[];
|
|
2383
2755
|
is_managed: false;
|
|
2384
2756
|
access_code_id: string;
|
|
@@ -2479,115 +2851,146 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2479
2851
|
message: string;
|
|
2480
2852
|
error_code: "smartthings_failed_to_set_access_code";
|
|
2481
2853
|
is_access_code_error: true;
|
|
2854
|
+
created_at?: string | undefined;
|
|
2482
2855
|
} | {
|
|
2483
2856
|
message: string;
|
|
2484
2857
|
error_code: "smartthings_failed_to_set_after_multiple_retries";
|
|
2485
2858
|
is_access_code_error: true;
|
|
2859
|
+
created_at?: string | undefined;
|
|
2486
2860
|
} | {
|
|
2487
2861
|
message: string;
|
|
2488
2862
|
error_code: "code_modified_external_to_seam";
|
|
2489
2863
|
is_access_code_error: true;
|
|
2864
|
+
created_at?: string | undefined;
|
|
2490
2865
|
} | {
|
|
2491
2866
|
message: string;
|
|
2492
2867
|
error_code: "failed_to_set_on_device";
|
|
2493
2868
|
is_access_code_error: true;
|
|
2869
|
+
created_at?: string | undefined;
|
|
2494
2870
|
} | {
|
|
2495
2871
|
message: string;
|
|
2496
2872
|
error_code: "failed_to_remove_from_device";
|
|
2497
2873
|
is_access_code_error: true;
|
|
2874
|
+
created_at?: string | undefined;
|
|
2498
2875
|
} | {
|
|
2499
2876
|
message: string;
|
|
2500
2877
|
error_code: "duplicate_code_on_device";
|
|
2501
2878
|
is_access_code_error: true;
|
|
2879
|
+
created_at?: string | undefined;
|
|
2502
2880
|
} | {
|
|
2503
2881
|
message: string;
|
|
2504
2882
|
error_code: "duplicate_code_attempt_prevented";
|
|
2505
2883
|
is_access_code_error: true;
|
|
2884
|
+
created_at?: string | undefined;
|
|
2506
2885
|
} | {
|
|
2507
2886
|
message: string;
|
|
2508
2887
|
error_code: "igloohome_bridge_too_many_pending_jobs";
|
|
2509
2888
|
is_access_code_error: true;
|
|
2889
|
+
created_at?: string | undefined;
|
|
2510
2890
|
} | {
|
|
2511
2891
|
message: string;
|
|
2512
2892
|
error_code: "igloohome_bridge_offline";
|
|
2513
2893
|
is_access_code_error: true;
|
|
2894
|
+
created_at?: string | undefined;
|
|
2514
2895
|
} | {
|
|
2515
2896
|
message: string;
|
|
2516
2897
|
error_code: "kwikset_unable_to_confirm_code";
|
|
2517
2898
|
is_access_code_error: true;
|
|
2899
|
+
created_at?: string | undefined;
|
|
2518
2900
|
} | {
|
|
2519
2901
|
message: string;
|
|
2520
2902
|
error_code: "kwikset_unable_to_confirm_deletion";
|
|
2521
2903
|
is_access_code_error: true;
|
|
2904
|
+
created_at?: string | undefined;
|
|
2522
2905
|
} | {
|
|
2523
2906
|
message: string;
|
|
2524
2907
|
error_code: "igloohome_offline_access_code_no_variance_available";
|
|
2525
2908
|
is_access_code_error: true;
|
|
2909
|
+
created_at?: string | undefined;
|
|
2526
2910
|
} | {
|
|
2527
2911
|
message: string;
|
|
2528
2912
|
error_code: "august_lock_invalid_code_length";
|
|
2529
2913
|
is_access_code_error: true;
|
|
2914
|
+
created_at?: string | undefined;
|
|
2530
2915
|
} | {
|
|
2531
2916
|
message: string;
|
|
2532
2917
|
error_code: "august_device_programming_delay";
|
|
2533
2918
|
is_access_code_error: true;
|
|
2919
|
+
created_at?: string | undefined;
|
|
2534
2920
|
} | {
|
|
2535
2921
|
message: string;
|
|
2536
2922
|
error_code: "august_device_slots_full";
|
|
2537
2923
|
is_access_code_error: true;
|
|
2924
|
+
created_at?: string | undefined;
|
|
2538
2925
|
} | {
|
|
2539
2926
|
message: string;
|
|
2540
2927
|
error_code: "august_lock_missing_keypad";
|
|
2541
2928
|
is_access_code_error: true;
|
|
2929
|
+
created_at?: string | undefined;
|
|
2542
2930
|
} | {
|
|
2543
2931
|
message: string;
|
|
2544
2932
|
error_code: "salto_site_user_not_subscribed";
|
|
2545
2933
|
is_access_code_error: true;
|
|
2934
|
+
created_at?: string | undefined;
|
|
2546
2935
|
} | {
|
|
2547
2936
|
message: string;
|
|
2548
2937
|
error_code: "hubitat_device_programming_delay";
|
|
2549
2938
|
is_access_code_error: true;
|
|
2939
|
+
created_at?: string | undefined;
|
|
2550
2940
|
} | {
|
|
2551
2941
|
message: string;
|
|
2552
2942
|
error_code: "hubitat_no_free_positions_available";
|
|
2553
2943
|
is_access_code_error: true;
|
|
2944
|
+
created_at?: string | undefined;
|
|
2554
2945
|
})[];
|
|
2555
2946
|
warnings: ({
|
|
2556
2947
|
message: string;
|
|
2557
2948
|
warning_code: "smartthings_failed_to_set_access_code";
|
|
2949
|
+
created_at?: string | undefined;
|
|
2558
2950
|
} | {
|
|
2559
2951
|
message: string;
|
|
2560
2952
|
warning_code: "august_device_programming_delay";
|
|
2953
|
+
created_at?: string | undefined;
|
|
2561
2954
|
} | {
|
|
2562
2955
|
message: string;
|
|
2563
2956
|
warning_code: "code_modified_external_to_seam";
|
|
2957
|
+
created_at?: string | undefined;
|
|
2564
2958
|
} | {
|
|
2565
2959
|
message: string;
|
|
2566
2960
|
warning_code: "schlage_detected_duplicate";
|
|
2961
|
+
created_at?: string | undefined;
|
|
2567
2962
|
} | {
|
|
2568
2963
|
message: string;
|
|
2569
2964
|
warning_code: "schlage_creation_outage";
|
|
2965
|
+
created_at?: string | undefined;
|
|
2570
2966
|
} | {
|
|
2571
2967
|
message: string;
|
|
2572
2968
|
warning_code: "salto_office_mode";
|
|
2969
|
+
created_at?: string | undefined;
|
|
2573
2970
|
} | {
|
|
2574
2971
|
message: string;
|
|
2575
2972
|
warning_code: "delay_in_setting_on_device";
|
|
2973
|
+
created_at?: string | undefined;
|
|
2576
2974
|
} | {
|
|
2577
2975
|
message: string;
|
|
2578
2976
|
warning_code: "delay_in_removing_from_device";
|
|
2977
|
+
created_at?: string | undefined;
|
|
2579
2978
|
} | {
|
|
2580
2979
|
message: string;
|
|
2581
2980
|
warning_code: "third_party_integration_detected";
|
|
2981
|
+
created_at?: string | undefined;
|
|
2582
2982
|
} | {
|
|
2583
2983
|
message: string;
|
|
2584
2984
|
warning_code: "igloo_algopin_must_be_used_within_24_hours";
|
|
2985
|
+
created_at?: string | undefined;
|
|
2585
2986
|
} | {
|
|
2586
2987
|
message: string;
|
|
2587
2988
|
warning_code: "management_transferred";
|
|
2989
|
+
created_at?: string | undefined;
|
|
2588
2990
|
} | {
|
|
2589
2991
|
message: string;
|
|
2590
2992
|
warning_code: "kwikset_unable_to_confirm_code";
|
|
2993
|
+
created_at?: string | undefined;
|
|
2591
2994
|
})[];
|
|
2592
2995
|
is_managed: false;
|
|
2593
2996
|
access_code_id: string;
|
|
@@ -16252,6 +16655,66 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
16252
16655
|
occurred_at: string;
|
|
16253
16656
|
event_type: "acs_access_group.deleted";
|
|
16254
16657
|
connected_account_id?: string | undefined;
|
|
16658
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
16659
|
+
event_id: z.ZodString;
|
|
16660
|
+
workspace_id: z.ZodString;
|
|
16661
|
+
created_at: z.ZodString;
|
|
16662
|
+
occurred_at: z.ZodString;
|
|
16663
|
+
}, {
|
|
16664
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
16665
|
+
acs_system_id: z.ZodString;
|
|
16666
|
+
}>, {
|
|
16667
|
+
acs_entrance_id: z.ZodString;
|
|
16668
|
+
}>, {
|
|
16669
|
+
event_type: z.ZodLiteral<"acs_entrance.added">;
|
|
16670
|
+
}>, "strip", z.ZodTypeAny, {
|
|
16671
|
+
created_at: string;
|
|
16672
|
+
workspace_id: string;
|
|
16673
|
+
acs_system_id: string;
|
|
16674
|
+
acs_entrance_id: string;
|
|
16675
|
+
event_id: string;
|
|
16676
|
+
occurred_at: string;
|
|
16677
|
+
event_type: "acs_entrance.added";
|
|
16678
|
+
connected_account_id?: string | undefined;
|
|
16679
|
+
}, {
|
|
16680
|
+
created_at: string;
|
|
16681
|
+
workspace_id: string;
|
|
16682
|
+
acs_system_id: string;
|
|
16683
|
+
acs_entrance_id: string;
|
|
16684
|
+
event_id: string;
|
|
16685
|
+
occurred_at: string;
|
|
16686
|
+
event_type: "acs_entrance.added";
|
|
16687
|
+
connected_account_id?: string | undefined;
|
|
16688
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
16689
|
+
event_id: z.ZodString;
|
|
16690
|
+
workspace_id: z.ZodString;
|
|
16691
|
+
created_at: z.ZodString;
|
|
16692
|
+
occurred_at: z.ZodString;
|
|
16693
|
+
}, {
|
|
16694
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
16695
|
+
acs_system_id: z.ZodString;
|
|
16696
|
+
}>, {
|
|
16697
|
+
acs_entrance_id: z.ZodString;
|
|
16698
|
+
}>, {
|
|
16699
|
+
event_type: z.ZodLiteral<"acs_entrance.removed">;
|
|
16700
|
+
}>, "strip", z.ZodTypeAny, {
|
|
16701
|
+
created_at: string;
|
|
16702
|
+
workspace_id: string;
|
|
16703
|
+
acs_system_id: string;
|
|
16704
|
+
acs_entrance_id: string;
|
|
16705
|
+
event_id: string;
|
|
16706
|
+
occurred_at: string;
|
|
16707
|
+
event_type: "acs_entrance.removed";
|
|
16708
|
+
connected_account_id?: string | undefined;
|
|
16709
|
+
}, {
|
|
16710
|
+
created_at: string;
|
|
16711
|
+
workspace_id: string;
|
|
16712
|
+
acs_system_id: string;
|
|
16713
|
+
acs_entrance_id: string;
|
|
16714
|
+
event_id: string;
|
|
16715
|
+
occurred_at: string;
|
|
16716
|
+
event_type: "acs_entrance.removed";
|
|
16717
|
+
connected_account_id?: string | undefined;
|
|
16255
16718
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
16256
16719
|
event_id: z.ZodString;
|
|
16257
16720
|
workspace_id: z.ZodString;
|
|
@@ -17910,6 +18373,11 @@ declare const _default: {
|
|
|
17910
18373
|
oneOf: ({
|
|
17911
18374
|
description: string;
|
|
17912
18375
|
properties: {
|
|
18376
|
+
created_at: {
|
|
18377
|
+
format: string;
|
|
18378
|
+
type: string;
|
|
18379
|
+
description?: never;
|
|
18380
|
+
};
|
|
17913
18381
|
error_code: {
|
|
17914
18382
|
description: string;
|
|
17915
18383
|
enum: string[];
|
|
@@ -17922,7 +18390,6 @@ declare const _default: {
|
|
|
17922
18390
|
message: {
|
|
17923
18391
|
type: string;
|
|
17924
18392
|
};
|
|
17925
|
-
created_at?: never;
|
|
17926
18393
|
is_connected_account_error?: never;
|
|
17927
18394
|
is_device_error?: never;
|
|
17928
18395
|
};
|
|
@@ -18079,6 +18546,10 @@ declare const _default: {
|
|
|
18079
18546
|
oneOf: {
|
|
18080
18547
|
description: string;
|
|
18081
18548
|
properties: {
|
|
18549
|
+
created_at: {
|
|
18550
|
+
format: string;
|
|
18551
|
+
type: string;
|
|
18552
|
+
};
|
|
18082
18553
|
message: {
|
|
18083
18554
|
type: string;
|
|
18084
18555
|
};
|
|
@@ -22337,6 +22808,7 @@ declare const _default: {
|
|
|
22337
22808
|
acs_user_id?: never;
|
|
22338
22809
|
acs_encoder_id?: never;
|
|
22339
22810
|
acs_access_group_id?: never;
|
|
22811
|
+
acs_entrance_id?: never;
|
|
22340
22812
|
client_session_id?: never;
|
|
22341
22813
|
connect_webview_id?: never;
|
|
22342
22814
|
action_attempt_id?: never;
|
|
@@ -22430,6 +22902,7 @@ declare const _default: {
|
|
|
22430
22902
|
acs_user_id?: never;
|
|
22431
22903
|
acs_encoder_id?: never;
|
|
22432
22904
|
acs_access_group_id?: never;
|
|
22905
|
+
acs_entrance_id?: never;
|
|
22433
22906
|
client_session_id?: never;
|
|
22434
22907
|
connect_webview_id?: never;
|
|
22435
22908
|
action_attempt_id?: never;
|
|
@@ -22523,6 +22996,7 @@ declare const _default: {
|
|
|
22523
22996
|
acs_user_id?: never;
|
|
22524
22997
|
acs_encoder_id?: never;
|
|
22525
22998
|
acs_access_group_id?: never;
|
|
22999
|
+
acs_entrance_id?: never;
|
|
22526
23000
|
client_session_id?: never;
|
|
22527
23001
|
connect_webview_id?: never;
|
|
22528
23002
|
action_attempt_id?: never;
|
|
@@ -22614,6 +23088,7 @@ declare const _default: {
|
|
|
22614
23088
|
acs_user_id?: never;
|
|
22615
23089
|
acs_encoder_id?: never;
|
|
22616
23090
|
acs_access_group_id?: never;
|
|
23091
|
+
acs_entrance_id?: never;
|
|
22617
23092
|
client_session_id?: never;
|
|
22618
23093
|
connect_webview_id?: never;
|
|
22619
23094
|
action_attempt_id?: never;
|
|
@@ -22699,6 +23174,7 @@ declare const _default: {
|
|
|
22699
23174
|
acs_user_id?: never;
|
|
22700
23175
|
acs_encoder_id?: never;
|
|
22701
23176
|
acs_access_group_id?: never;
|
|
23177
|
+
acs_entrance_id?: never;
|
|
22702
23178
|
client_session_id?: never;
|
|
22703
23179
|
connect_webview_id?: never;
|
|
22704
23180
|
action_attempt_id?: never;
|
|
@@ -22787,6 +23263,7 @@ declare const _default: {
|
|
|
22787
23263
|
acs_user_id?: never;
|
|
22788
23264
|
acs_encoder_id?: never;
|
|
22789
23265
|
acs_access_group_id?: never;
|
|
23266
|
+
acs_entrance_id?: never;
|
|
22790
23267
|
client_session_id?: never;
|
|
22791
23268
|
connect_webview_id?: never;
|
|
22792
23269
|
action_attempt_id?: never;
|
|
@@ -22875,6 +23352,7 @@ declare const _default: {
|
|
|
22875
23352
|
acs_credential_id?: never;
|
|
22876
23353
|
acs_encoder_id?: never;
|
|
22877
23354
|
acs_access_group_id?: never;
|
|
23355
|
+
acs_entrance_id?: never;
|
|
22878
23356
|
client_session_id?: never;
|
|
22879
23357
|
connect_webview_id?: never;
|
|
22880
23358
|
action_attempt_id?: never;
|
|
@@ -22964,6 +23442,7 @@ declare const _default: {
|
|
|
22964
23442
|
acs_credential_id?: never;
|
|
22965
23443
|
acs_user_id?: never;
|
|
22966
23444
|
acs_access_group_id?: never;
|
|
23445
|
+
acs_entrance_id?: never;
|
|
22967
23446
|
client_session_id?: never;
|
|
22968
23447
|
connect_webview_id?: never;
|
|
22969
23448
|
action_attempt_id?: never;
|
|
@@ -23052,6 +23531,96 @@ declare const _default: {
|
|
|
23052
23531
|
acs_credential_id?: never;
|
|
23053
23532
|
acs_user_id?: never;
|
|
23054
23533
|
acs_encoder_id?: never;
|
|
23534
|
+
acs_entrance_id?: never;
|
|
23535
|
+
client_session_id?: never;
|
|
23536
|
+
connect_webview_id?: never;
|
|
23537
|
+
action_attempt_id?: never;
|
|
23538
|
+
action_type?: never;
|
|
23539
|
+
status?: never;
|
|
23540
|
+
error_code?: never;
|
|
23541
|
+
battery_level?: never;
|
|
23542
|
+
battery_status?: never;
|
|
23543
|
+
minut_metadata?: never;
|
|
23544
|
+
noise_level_decibels?: never;
|
|
23545
|
+
noise_level_nrs?: never;
|
|
23546
|
+
noise_threshold_id?: never;
|
|
23547
|
+
noise_threshold_name?: never;
|
|
23548
|
+
noiseaware_metadata?: never;
|
|
23549
|
+
method?: never;
|
|
23550
|
+
climate_preset_key?: never;
|
|
23551
|
+
is_fallback_climate_preset?: never;
|
|
23552
|
+
thermostat_schedule_id?: never;
|
|
23553
|
+
cooling_set_point_celsius?: never;
|
|
23554
|
+
cooling_set_point_fahrenheit?: never;
|
|
23555
|
+
fan_mode_setting?: never;
|
|
23556
|
+
heating_set_point_celsius?: never;
|
|
23557
|
+
heating_set_point_fahrenheit?: never;
|
|
23558
|
+
hvac_mode_setting?: never;
|
|
23559
|
+
lower_limit_celsius?: never;
|
|
23560
|
+
lower_limit_fahrenheit?: never;
|
|
23561
|
+
temperature_celsius?: never;
|
|
23562
|
+
temperature_fahrenheit?: never;
|
|
23563
|
+
upper_limit_celsius?: never;
|
|
23564
|
+
upper_limit_fahrenheit?: never;
|
|
23565
|
+
desired_temperature_celsius?: never;
|
|
23566
|
+
desired_temperature_fahrenheit?: never;
|
|
23567
|
+
device_name?: never;
|
|
23568
|
+
enrollment_automation_id?: never;
|
|
23569
|
+
};
|
|
23570
|
+
required: string[];
|
|
23571
|
+
type: string;
|
|
23572
|
+
'x-route-path': string;
|
|
23573
|
+
deprecated?: never;
|
|
23574
|
+
'x-deprecated'?: never;
|
|
23575
|
+
} | {
|
|
23576
|
+
description: string;
|
|
23577
|
+
properties: {
|
|
23578
|
+
acs_entrance_id: {
|
|
23579
|
+
format: string;
|
|
23580
|
+
type: string;
|
|
23581
|
+
};
|
|
23582
|
+
acs_system_id: {
|
|
23583
|
+
description: string;
|
|
23584
|
+
format: string;
|
|
23585
|
+
type: string;
|
|
23586
|
+
};
|
|
23587
|
+
connected_account_id: {
|
|
23588
|
+
description: string;
|
|
23589
|
+
format: string;
|
|
23590
|
+
type: string;
|
|
23591
|
+
};
|
|
23592
|
+
created_at: {
|
|
23593
|
+
description: string;
|
|
23594
|
+
format: string;
|
|
23595
|
+
type: string;
|
|
23596
|
+
};
|
|
23597
|
+
event_id: {
|
|
23598
|
+
description: string;
|
|
23599
|
+
format: string;
|
|
23600
|
+
type: string;
|
|
23601
|
+
};
|
|
23602
|
+
event_type: {
|
|
23603
|
+
enum: string[];
|
|
23604
|
+
type: string;
|
|
23605
|
+
};
|
|
23606
|
+
occurred_at: {
|
|
23607
|
+
description: string;
|
|
23608
|
+
format: string;
|
|
23609
|
+
type: string;
|
|
23610
|
+
};
|
|
23611
|
+
workspace_id: {
|
|
23612
|
+
description: string;
|
|
23613
|
+
format: string;
|
|
23614
|
+
type: string;
|
|
23615
|
+
};
|
|
23616
|
+
access_code_id?: never;
|
|
23617
|
+
device_id?: never;
|
|
23618
|
+
code?: never;
|
|
23619
|
+
backup_access_code_id?: never;
|
|
23620
|
+
acs_credential_id?: never;
|
|
23621
|
+
acs_user_id?: never;
|
|
23622
|
+
acs_encoder_id?: never;
|
|
23623
|
+
acs_access_group_id?: never;
|
|
23055
23624
|
client_session_id?: never;
|
|
23056
23625
|
connect_webview_id?: never;
|
|
23057
23626
|
action_attempt_id?: never;
|
|
@@ -23134,6 +23703,7 @@ declare const _default: {
|
|
|
23134
23703
|
acs_user_id?: never;
|
|
23135
23704
|
acs_encoder_id?: never;
|
|
23136
23705
|
acs_access_group_id?: never;
|
|
23706
|
+
acs_entrance_id?: never;
|
|
23137
23707
|
connect_webview_id?: never;
|
|
23138
23708
|
action_attempt_id?: never;
|
|
23139
23709
|
action_type?: never;
|
|
@@ -23219,6 +23789,7 @@ declare const _default: {
|
|
|
23219
23789
|
acs_user_id?: never;
|
|
23220
23790
|
acs_encoder_id?: never;
|
|
23221
23791
|
acs_access_group_id?: never;
|
|
23792
|
+
acs_entrance_id?: never;
|
|
23222
23793
|
client_session_id?: never;
|
|
23223
23794
|
action_attempt_id?: never;
|
|
23224
23795
|
action_type?: never;
|
|
@@ -23305,6 +23876,7 @@ declare const _default: {
|
|
|
23305
23876
|
acs_user_id?: never;
|
|
23306
23877
|
acs_encoder_id?: never;
|
|
23307
23878
|
acs_access_group_id?: never;
|
|
23879
|
+
acs_entrance_id?: never;
|
|
23308
23880
|
client_session_id?: never;
|
|
23309
23881
|
action_attempt_id?: never;
|
|
23310
23882
|
action_type?: never;
|
|
@@ -23384,6 +23956,7 @@ declare const _default: {
|
|
|
23384
23956
|
acs_user_id?: never;
|
|
23385
23957
|
acs_encoder_id?: never;
|
|
23386
23958
|
acs_access_group_id?: never;
|
|
23959
|
+
acs_entrance_id?: never;
|
|
23387
23960
|
client_session_id?: never;
|
|
23388
23961
|
connect_webview_id?: never;
|
|
23389
23962
|
action_attempt_id?: never;
|
|
@@ -23474,6 +24047,7 @@ declare const _default: {
|
|
|
23474
24047
|
acs_user_id?: never;
|
|
23475
24048
|
acs_encoder_id?: never;
|
|
23476
24049
|
acs_access_group_id?: never;
|
|
24050
|
+
acs_entrance_id?: never;
|
|
23477
24051
|
client_session_id?: never;
|
|
23478
24052
|
connect_webview_id?: never;
|
|
23479
24053
|
error_code?: never;
|
|
@@ -23553,6 +24127,7 @@ declare const _default: {
|
|
|
23553
24127
|
acs_user_id?: never;
|
|
23554
24128
|
acs_encoder_id?: never;
|
|
23555
24129
|
acs_access_group_id?: never;
|
|
24130
|
+
acs_entrance_id?: never;
|
|
23556
24131
|
client_session_id?: never;
|
|
23557
24132
|
action_attempt_id?: never;
|
|
23558
24133
|
action_type?: never;
|
|
@@ -23637,6 +24212,7 @@ declare const _default: {
|
|
|
23637
24212
|
acs_user_id?: never;
|
|
23638
24213
|
acs_encoder_id?: never;
|
|
23639
24214
|
acs_access_group_id?: never;
|
|
24215
|
+
acs_entrance_id?: never;
|
|
23640
24216
|
client_session_id?: never;
|
|
23641
24217
|
connect_webview_id?: never;
|
|
23642
24218
|
action_attempt_id?: never;
|
|
@@ -23727,6 +24303,7 @@ declare const _default: {
|
|
|
23727
24303
|
acs_user_id?: never;
|
|
23728
24304
|
acs_encoder_id?: never;
|
|
23729
24305
|
acs_access_group_id?: never;
|
|
24306
|
+
acs_entrance_id?: never;
|
|
23730
24307
|
client_session_id?: never;
|
|
23731
24308
|
connect_webview_id?: never;
|
|
23732
24309
|
action_attempt_id?: never;
|
|
@@ -23818,6 +24395,7 @@ declare const _default: {
|
|
|
23818
24395
|
acs_user_id?: never;
|
|
23819
24396
|
acs_encoder_id?: never;
|
|
23820
24397
|
acs_access_group_id?: never;
|
|
24398
|
+
acs_entrance_id?: never;
|
|
23821
24399
|
client_session_id?: never;
|
|
23822
24400
|
connect_webview_id?: never;
|
|
23823
24401
|
action_attempt_id?: never;
|
|
@@ -23914,6 +24492,7 @@ declare const _default: {
|
|
|
23914
24492
|
acs_user_id?: never;
|
|
23915
24493
|
acs_encoder_id?: never;
|
|
23916
24494
|
acs_access_group_id?: never;
|
|
24495
|
+
acs_entrance_id?: never;
|
|
23917
24496
|
client_session_id?: never;
|
|
23918
24497
|
connect_webview_id?: never;
|
|
23919
24498
|
action_attempt_id?: never;
|
|
@@ -24026,6 +24605,7 @@ declare const _default: {
|
|
|
24026
24605
|
acs_user_id?: never;
|
|
24027
24606
|
acs_encoder_id?: never;
|
|
24028
24607
|
acs_access_group_id?: never;
|
|
24608
|
+
acs_entrance_id?: never;
|
|
24029
24609
|
client_session_id?: never;
|
|
24030
24610
|
connect_webview_id?: never;
|
|
24031
24611
|
action_attempt_id?: never;
|
|
@@ -24119,6 +24699,7 @@ declare const _default: {
|
|
|
24119
24699
|
acs_user_id?: never;
|
|
24120
24700
|
acs_encoder_id?: never;
|
|
24121
24701
|
acs_access_group_id?: never;
|
|
24702
|
+
acs_entrance_id?: never;
|
|
24122
24703
|
client_session_id?: never;
|
|
24123
24704
|
connect_webview_id?: never;
|
|
24124
24705
|
action_type?: never;
|
|
@@ -24216,6 +24797,7 @@ declare const _default: {
|
|
|
24216
24797
|
acs_user_id?: never;
|
|
24217
24798
|
acs_encoder_id?: never;
|
|
24218
24799
|
acs_access_group_id?: never;
|
|
24800
|
+
acs_entrance_id?: never;
|
|
24219
24801
|
client_session_id?: never;
|
|
24220
24802
|
connect_webview_id?: never;
|
|
24221
24803
|
action_attempt_id?: never;
|
|
@@ -24333,6 +24915,7 @@ declare const _default: {
|
|
|
24333
24915
|
acs_user_id?: never;
|
|
24334
24916
|
acs_encoder_id?: never;
|
|
24335
24917
|
acs_access_group_id?: never;
|
|
24918
|
+
acs_entrance_id?: never;
|
|
24336
24919
|
client_session_id?: never;
|
|
24337
24920
|
connect_webview_id?: never;
|
|
24338
24921
|
action_attempt_id?: never;
|
|
@@ -24445,6 +25028,7 @@ declare const _default: {
|
|
|
24445
25028
|
acs_user_id?: never;
|
|
24446
25029
|
acs_encoder_id?: never;
|
|
24447
25030
|
acs_access_group_id?: never;
|
|
25031
|
+
acs_entrance_id?: never;
|
|
24448
25032
|
client_session_id?: never;
|
|
24449
25033
|
connect_webview_id?: never;
|
|
24450
25034
|
action_attempt_id?: never;
|
|
@@ -24544,6 +25128,7 @@ declare const _default: {
|
|
|
24544
25128
|
acs_user_id?: never;
|
|
24545
25129
|
acs_encoder_id?: never;
|
|
24546
25130
|
acs_access_group_id?: never;
|
|
25131
|
+
acs_entrance_id?: never;
|
|
24547
25132
|
client_session_id?: never;
|
|
24548
25133
|
connect_webview_id?: never;
|
|
24549
25134
|
action_attempt_id?: never;
|
|
@@ -24635,6 +25220,7 @@ declare const _default: {
|
|
|
24635
25220
|
acs_user_id?: never;
|
|
24636
25221
|
acs_encoder_id?: never;
|
|
24637
25222
|
acs_access_group_id?: never;
|
|
25223
|
+
acs_entrance_id?: never;
|
|
24638
25224
|
client_session_id?: never;
|
|
24639
25225
|
connect_webview_id?: never;
|
|
24640
25226
|
action_attempt_id?: never;
|
|
@@ -24722,6 +25308,7 @@ declare const _default: {
|
|
|
24722
25308
|
acs_user_id?: never;
|
|
24723
25309
|
acs_encoder_id?: never;
|
|
24724
25310
|
acs_access_group_id?: never;
|
|
25311
|
+
acs_entrance_id?: never;
|
|
24725
25312
|
client_session_id?: never;
|
|
24726
25313
|
connect_webview_id?: never;
|
|
24727
25314
|
action_attempt_id?: never;
|
|
@@ -24803,6 +25390,7 @@ declare const _default: {
|
|
|
24803
25390
|
acs_user_id?: never;
|
|
24804
25391
|
acs_encoder_id?: never;
|
|
24805
25392
|
acs_access_group_id?: never;
|
|
25393
|
+
acs_entrance_id?: never;
|
|
24806
25394
|
client_session_id?: never;
|
|
24807
25395
|
connect_webview_id?: never;
|
|
24808
25396
|
action_attempt_id?: never;
|
|
@@ -24883,6 +25471,7 @@ declare const _default: {
|
|
|
24883
25471
|
acs_user_id?: never;
|
|
24884
25472
|
acs_encoder_id?: never;
|
|
24885
25473
|
acs_access_group_id?: never;
|
|
25474
|
+
acs_entrance_id?: never;
|
|
24886
25475
|
client_session_id?: never;
|
|
24887
25476
|
connect_webview_id?: never;
|
|
24888
25477
|
action_attempt_id?: never;
|
|
@@ -25231,6 +25820,11 @@ declare const _default: {
|
|
|
25231
25820
|
oneOf: ({
|
|
25232
25821
|
description: string;
|
|
25233
25822
|
properties: {
|
|
25823
|
+
created_at: {
|
|
25824
|
+
format: string;
|
|
25825
|
+
type: string;
|
|
25826
|
+
description?: never;
|
|
25827
|
+
};
|
|
25234
25828
|
error_code: {
|
|
25235
25829
|
description: string;
|
|
25236
25830
|
enum: string[];
|
|
@@ -25243,7 +25837,6 @@ declare const _default: {
|
|
|
25243
25837
|
message: {
|
|
25244
25838
|
type: string;
|
|
25245
25839
|
};
|
|
25246
|
-
created_at?: never;
|
|
25247
25840
|
is_connected_account_error?: never;
|
|
25248
25841
|
is_device_error?: never;
|
|
25249
25842
|
};
|
|
@@ -25364,6 +25957,10 @@ declare const _default: {
|
|
|
25364
25957
|
oneOf: {
|
|
25365
25958
|
description: string;
|
|
25366
25959
|
properties: {
|
|
25960
|
+
created_at: {
|
|
25961
|
+
format: string;
|
|
25962
|
+
type: string;
|
|
25963
|
+
};
|
|
25367
25964
|
message: {
|
|
25368
25965
|
type: string;
|
|
25369
25966
|
};
|
|
@@ -43764,96 +44361,115 @@ interface Routes {
|
|
|
43764
44361
|
errors: Array<{
|
|
43765
44362
|
message: string;
|
|
43766
44363
|
is_access_code_error: true;
|
|
44364
|
+
created_at?: string | undefined;
|
|
43767
44365
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43768
44366
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
43769
44367
|
} | {
|
|
43770
44368
|
message: string;
|
|
43771
44369
|
is_access_code_error: true;
|
|
44370
|
+
created_at?: string | undefined;
|
|
43772
44371
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43773
44372
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
43774
44373
|
} | {
|
|
43775
44374
|
message: string;
|
|
43776
44375
|
is_access_code_error: true;
|
|
44376
|
+
created_at?: string | undefined;
|
|
43777
44377
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43778
44378
|
error_code: 'failed_to_set_on_device';
|
|
43779
44379
|
} | {
|
|
43780
44380
|
message: string;
|
|
43781
44381
|
is_access_code_error: true;
|
|
44382
|
+
created_at?: string | undefined;
|
|
43782
44383
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43783
44384
|
error_code: 'failed_to_remove_from_device';
|
|
43784
44385
|
} | {
|
|
43785
44386
|
message: string;
|
|
43786
44387
|
is_access_code_error: true;
|
|
44388
|
+
created_at?: string | undefined;
|
|
43787
44389
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43788
44390
|
error_code: 'duplicate_code_on_device';
|
|
43789
44391
|
} | {
|
|
43790
44392
|
message: string;
|
|
43791
44393
|
is_access_code_error: true;
|
|
44394
|
+
created_at?: string | undefined;
|
|
43792
44395
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43793
44396
|
error_code: 'duplicate_code_attempt_prevented';
|
|
43794
44397
|
} | {
|
|
43795
44398
|
message: string;
|
|
43796
44399
|
is_access_code_error: true;
|
|
44400
|
+
created_at?: string | undefined;
|
|
43797
44401
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43798
44402
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
43799
44403
|
} | {
|
|
43800
44404
|
message: string;
|
|
43801
44405
|
is_access_code_error: true;
|
|
44406
|
+
created_at?: string | undefined;
|
|
43802
44407
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43803
44408
|
error_code: 'igloohome_bridge_offline';
|
|
43804
44409
|
} | {
|
|
43805
44410
|
message: string;
|
|
43806
44411
|
is_access_code_error: true;
|
|
44412
|
+
created_at?: string | undefined;
|
|
43807
44413
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43808
44414
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
43809
44415
|
} | {
|
|
43810
44416
|
message: string;
|
|
43811
44417
|
is_access_code_error: true;
|
|
44418
|
+
created_at?: string | undefined;
|
|
43812
44419
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43813
44420
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
43814
44421
|
} | {
|
|
43815
44422
|
message: string;
|
|
43816
44423
|
is_access_code_error: true;
|
|
44424
|
+
created_at?: string | undefined;
|
|
43817
44425
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43818
44426
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
43819
44427
|
} | {
|
|
43820
44428
|
message: string;
|
|
43821
44429
|
is_access_code_error: true;
|
|
44430
|
+
created_at?: string | undefined;
|
|
43822
44431
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43823
44432
|
error_code: 'code_modified_external_to_seam';
|
|
43824
44433
|
} | {
|
|
43825
44434
|
message: string;
|
|
43826
44435
|
is_access_code_error: true;
|
|
44436
|
+
created_at?: string | undefined;
|
|
43827
44437
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43828
44438
|
error_code: 'august_lock_invalid_code_length';
|
|
43829
44439
|
} | {
|
|
43830
44440
|
message: string;
|
|
43831
44441
|
is_access_code_error: true;
|
|
44442
|
+
created_at?: string | undefined;
|
|
43832
44443
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43833
44444
|
error_code: 'august_device_programming_delay';
|
|
43834
44445
|
} | {
|
|
43835
44446
|
message: string;
|
|
43836
44447
|
is_access_code_error: true;
|
|
44448
|
+
created_at?: string | undefined;
|
|
43837
44449
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43838
44450
|
error_code: 'august_device_slots_full';
|
|
43839
44451
|
} | {
|
|
43840
44452
|
message: string;
|
|
43841
44453
|
is_access_code_error: true;
|
|
44454
|
+
created_at?: string | undefined;
|
|
43842
44455
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43843
44456
|
error_code: 'august_lock_missing_keypad';
|
|
43844
44457
|
} | {
|
|
43845
44458
|
message: string;
|
|
43846
44459
|
is_access_code_error: true;
|
|
44460
|
+
created_at?: string | undefined;
|
|
43847
44461
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43848
44462
|
error_code: 'salto_site_user_not_subscribed';
|
|
43849
44463
|
} | {
|
|
43850
44464
|
message: string;
|
|
43851
44465
|
is_access_code_error: true;
|
|
44466
|
+
created_at?: string | undefined;
|
|
43852
44467
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43853
44468
|
error_code: 'hubitat_device_programming_delay';
|
|
43854
44469
|
} | {
|
|
43855
44470
|
message: string;
|
|
43856
44471
|
is_access_code_error: true;
|
|
44472
|
+
created_at?: string | undefined;
|
|
43857
44473
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43858
44474
|
error_code: 'hubitat_no_free_positions_available';
|
|
43859
44475
|
} | {
|
|
@@ -43947,50 +44563,62 @@ interface Routes {
|
|
|
43947
44563
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
43948
44564
|
warnings: Array<{
|
|
43949
44565
|
message: string;
|
|
44566
|
+
created_at?: string | undefined;
|
|
43950
44567
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43951
44568
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
43952
44569
|
} | {
|
|
43953
44570
|
message: string;
|
|
44571
|
+
created_at?: string | undefined;
|
|
43954
44572
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43955
44573
|
warning_code: 'schlage_detected_duplicate';
|
|
43956
44574
|
} | {
|
|
43957
44575
|
message: string;
|
|
44576
|
+
created_at?: string | undefined;
|
|
43958
44577
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43959
44578
|
warning_code: 'schlage_creation_outage';
|
|
43960
44579
|
} | {
|
|
43961
44580
|
message: string;
|
|
44581
|
+
created_at?: string | undefined;
|
|
43962
44582
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43963
44583
|
warning_code: 'salto_office_mode';
|
|
43964
44584
|
} | {
|
|
43965
44585
|
message: string;
|
|
44586
|
+
created_at?: string | undefined;
|
|
43966
44587
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43967
44588
|
warning_code: 'code_modified_external_to_seam';
|
|
43968
44589
|
} | {
|
|
43969
44590
|
message: string;
|
|
44591
|
+
created_at?: string | undefined;
|
|
43970
44592
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43971
44593
|
warning_code: 'delay_in_setting_on_device';
|
|
43972
44594
|
} | {
|
|
43973
44595
|
message: string;
|
|
44596
|
+
created_at?: string | undefined;
|
|
43974
44597
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43975
44598
|
warning_code: 'delay_in_removing_from_device';
|
|
43976
44599
|
} | {
|
|
43977
44600
|
message: string;
|
|
44601
|
+
created_at?: string | undefined;
|
|
43978
44602
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43979
44603
|
warning_code: 'third_party_integration_detected';
|
|
43980
44604
|
} | {
|
|
43981
44605
|
message: string;
|
|
44606
|
+
created_at?: string | undefined;
|
|
43982
44607
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43983
44608
|
warning_code: 'august_device_programming_delay';
|
|
43984
44609
|
} | {
|
|
43985
44610
|
message: string;
|
|
44611
|
+
created_at?: string | undefined;
|
|
43986
44612
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43987
44613
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
43988
44614
|
} | {
|
|
43989
44615
|
message: string;
|
|
44616
|
+
created_at?: string | undefined;
|
|
43990
44617
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43991
44618
|
warning_code: 'management_transferred';
|
|
43992
44619
|
} | {
|
|
43993
44620
|
message: string;
|
|
44621
|
+
created_at?: string | undefined;
|
|
43994
44622
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43995
44623
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
43996
44624
|
}>;
|
|
@@ -44067,96 +44695,115 @@ interface Routes {
|
|
|
44067
44695
|
errors: Array<{
|
|
44068
44696
|
message: string;
|
|
44069
44697
|
is_access_code_error: true;
|
|
44698
|
+
created_at?: string | undefined;
|
|
44070
44699
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44071
44700
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
44072
44701
|
} | {
|
|
44073
44702
|
message: string;
|
|
44074
44703
|
is_access_code_error: true;
|
|
44704
|
+
created_at?: string | undefined;
|
|
44075
44705
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44076
44706
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
44077
44707
|
} | {
|
|
44078
44708
|
message: string;
|
|
44079
44709
|
is_access_code_error: true;
|
|
44710
|
+
created_at?: string | undefined;
|
|
44080
44711
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44081
44712
|
error_code: 'failed_to_set_on_device';
|
|
44082
44713
|
} | {
|
|
44083
44714
|
message: string;
|
|
44084
44715
|
is_access_code_error: true;
|
|
44716
|
+
created_at?: string | undefined;
|
|
44085
44717
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44086
44718
|
error_code: 'failed_to_remove_from_device';
|
|
44087
44719
|
} | {
|
|
44088
44720
|
message: string;
|
|
44089
44721
|
is_access_code_error: true;
|
|
44722
|
+
created_at?: string | undefined;
|
|
44090
44723
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44091
44724
|
error_code: 'duplicate_code_on_device';
|
|
44092
44725
|
} | {
|
|
44093
44726
|
message: string;
|
|
44094
44727
|
is_access_code_error: true;
|
|
44728
|
+
created_at?: string | undefined;
|
|
44095
44729
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44096
44730
|
error_code: 'duplicate_code_attempt_prevented';
|
|
44097
44731
|
} | {
|
|
44098
44732
|
message: string;
|
|
44099
44733
|
is_access_code_error: true;
|
|
44734
|
+
created_at?: string | undefined;
|
|
44100
44735
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44101
44736
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
44102
44737
|
} | {
|
|
44103
44738
|
message: string;
|
|
44104
44739
|
is_access_code_error: true;
|
|
44740
|
+
created_at?: string | undefined;
|
|
44105
44741
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44106
44742
|
error_code: 'igloohome_bridge_offline';
|
|
44107
44743
|
} | {
|
|
44108
44744
|
message: string;
|
|
44109
44745
|
is_access_code_error: true;
|
|
44746
|
+
created_at?: string | undefined;
|
|
44110
44747
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44111
44748
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
44112
44749
|
} | {
|
|
44113
44750
|
message: string;
|
|
44114
44751
|
is_access_code_error: true;
|
|
44752
|
+
created_at?: string | undefined;
|
|
44115
44753
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44116
44754
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
44117
44755
|
} | {
|
|
44118
44756
|
message: string;
|
|
44119
44757
|
is_access_code_error: true;
|
|
44758
|
+
created_at?: string | undefined;
|
|
44120
44759
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44121
44760
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
44122
44761
|
} | {
|
|
44123
44762
|
message: string;
|
|
44124
44763
|
is_access_code_error: true;
|
|
44764
|
+
created_at?: string | undefined;
|
|
44125
44765
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44126
44766
|
error_code: 'code_modified_external_to_seam';
|
|
44127
44767
|
} | {
|
|
44128
44768
|
message: string;
|
|
44129
44769
|
is_access_code_error: true;
|
|
44770
|
+
created_at?: string | undefined;
|
|
44130
44771
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44131
44772
|
error_code: 'august_lock_invalid_code_length';
|
|
44132
44773
|
} | {
|
|
44133
44774
|
message: string;
|
|
44134
44775
|
is_access_code_error: true;
|
|
44776
|
+
created_at?: string | undefined;
|
|
44135
44777
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44136
44778
|
error_code: 'august_device_programming_delay';
|
|
44137
44779
|
} | {
|
|
44138
44780
|
message: string;
|
|
44139
44781
|
is_access_code_error: true;
|
|
44782
|
+
created_at?: string | undefined;
|
|
44140
44783
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44141
44784
|
error_code: 'august_device_slots_full';
|
|
44142
44785
|
} | {
|
|
44143
44786
|
message: string;
|
|
44144
44787
|
is_access_code_error: true;
|
|
44788
|
+
created_at?: string | undefined;
|
|
44145
44789
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44146
44790
|
error_code: 'august_lock_missing_keypad';
|
|
44147
44791
|
} | {
|
|
44148
44792
|
message: string;
|
|
44149
44793
|
is_access_code_error: true;
|
|
44794
|
+
created_at?: string | undefined;
|
|
44150
44795
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44151
44796
|
error_code: 'salto_site_user_not_subscribed';
|
|
44152
44797
|
} | {
|
|
44153
44798
|
message: string;
|
|
44154
44799
|
is_access_code_error: true;
|
|
44800
|
+
created_at?: string | undefined;
|
|
44155
44801
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44156
44802
|
error_code: 'hubitat_device_programming_delay';
|
|
44157
44803
|
} | {
|
|
44158
44804
|
message: string;
|
|
44159
44805
|
is_access_code_error: true;
|
|
44806
|
+
created_at?: string | undefined;
|
|
44160
44807
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44161
44808
|
error_code: 'hubitat_no_free_positions_available';
|
|
44162
44809
|
} | {
|
|
@@ -44250,50 +44897,62 @@ interface Routes {
|
|
|
44250
44897
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
44251
44898
|
warnings: Array<{
|
|
44252
44899
|
message: string;
|
|
44900
|
+
created_at?: string | undefined;
|
|
44253
44901
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44254
44902
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
44255
44903
|
} | {
|
|
44256
44904
|
message: string;
|
|
44905
|
+
created_at?: string | undefined;
|
|
44257
44906
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44258
44907
|
warning_code: 'schlage_detected_duplicate';
|
|
44259
44908
|
} | {
|
|
44260
44909
|
message: string;
|
|
44910
|
+
created_at?: string | undefined;
|
|
44261
44911
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44262
44912
|
warning_code: 'schlage_creation_outage';
|
|
44263
44913
|
} | {
|
|
44264
44914
|
message: string;
|
|
44915
|
+
created_at?: string | undefined;
|
|
44265
44916
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44266
44917
|
warning_code: 'salto_office_mode';
|
|
44267
44918
|
} | {
|
|
44268
44919
|
message: string;
|
|
44920
|
+
created_at?: string | undefined;
|
|
44269
44921
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44270
44922
|
warning_code: 'code_modified_external_to_seam';
|
|
44271
44923
|
} | {
|
|
44272
44924
|
message: string;
|
|
44925
|
+
created_at?: string | undefined;
|
|
44273
44926
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44274
44927
|
warning_code: 'delay_in_setting_on_device';
|
|
44275
44928
|
} | {
|
|
44276
44929
|
message: string;
|
|
44930
|
+
created_at?: string | undefined;
|
|
44277
44931
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44278
44932
|
warning_code: 'delay_in_removing_from_device';
|
|
44279
44933
|
} | {
|
|
44280
44934
|
message: string;
|
|
44935
|
+
created_at?: string | undefined;
|
|
44281
44936
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44282
44937
|
warning_code: 'third_party_integration_detected';
|
|
44283
44938
|
} | {
|
|
44284
44939
|
message: string;
|
|
44940
|
+
created_at?: string | undefined;
|
|
44285
44941
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44286
44942
|
warning_code: 'august_device_programming_delay';
|
|
44287
44943
|
} | {
|
|
44288
44944
|
message: string;
|
|
44945
|
+
created_at?: string | undefined;
|
|
44289
44946
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44290
44947
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
44291
44948
|
} | {
|
|
44292
44949
|
message: string;
|
|
44950
|
+
created_at?: string | undefined;
|
|
44293
44951
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44294
44952
|
warning_code: 'management_transferred';
|
|
44295
44953
|
} | {
|
|
44296
44954
|
message: string;
|
|
44955
|
+
created_at?: string | undefined;
|
|
44297
44956
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44298
44957
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
44299
44958
|
}>;
|
|
@@ -45267,96 +45926,115 @@ interface Routes {
|
|
|
45267
45926
|
errors: Array<{
|
|
45268
45927
|
message: string;
|
|
45269
45928
|
is_access_code_error: true;
|
|
45929
|
+
created_at?: string | undefined;
|
|
45270
45930
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45271
45931
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
45272
45932
|
} | {
|
|
45273
45933
|
message: string;
|
|
45274
45934
|
is_access_code_error: true;
|
|
45935
|
+
created_at?: string | undefined;
|
|
45275
45936
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45276
45937
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
45277
45938
|
} | {
|
|
45278
45939
|
message: string;
|
|
45279
45940
|
is_access_code_error: true;
|
|
45941
|
+
created_at?: string | undefined;
|
|
45280
45942
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45281
45943
|
error_code: 'failed_to_set_on_device';
|
|
45282
45944
|
} | {
|
|
45283
45945
|
message: string;
|
|
45284
45946
|
is_access_code_error: true;
|
|
45947
|
+
created_at?: string | undefined;
|
|
45285
45948
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45286
45949
|
error_code: 'failed_to_remove_from_device';
|
|
45287
45950
|
} | {
|
|
45288
45951
|
message: string;
|
|
45289
45952
|
is_access_code_error: true;
|
|
45953
|
+
created_at?: string | undefined;
|
|
45290
45954
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45291
45955
|
error_code: 'duplicate_code_on_device';
|
|
45292
45956
|
} | {
|
|
45293
45957
|
message: string;
|
|
45294
45958
|
is_access_code_error: true;
|
|
45959
|
+
created_at?: string | undefined;
|
|
45295
45960
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45296
45961
|
error_code: 'duplicate_code_attempt_prevented';
|
|
45297
45962
|
} | {
|
|
45298
45963
|
message: string;
|
|
45299
45964
|
is_access_code_error: true;
|
|
45965
|
+
created_at?: string | undefined;
|
|
45300
45966
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45301
45967
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
45302
45968
|
} | {
|
|
45303
45969
|
message: string;
|
|
45304
45970
|
is_access_code_error: true;
|
|
45971
|
+
created_at?: string | undefined;
|
|
45305
45972
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45306
45973
|
error_code: 'igloohome_bridge_offline';
|
|
45307
45974
|
} | {
|
|
45308
45975
|
message: string;
|
|
45309
45976
|
is_access_code_error: true;
|
|
45977
|
+
created_at?: string | undefined;
|
|
45310
45978
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45311
45979
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
45312
45980
|
} | {
|
|
45313
45981
|
message: string;
|
|
45314
45982
|
is_access_code_error: true;
|
|
45983
|
+
created_at?: string | undefined;
|
|
45315
45984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45316
45985
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
45317
45986
|
} | {
|
|
45318
45987
|
message: string;
|
|
45319
45988
|
is_access_code_error: true;
|
|
45989
|
+
created_at?: string | undefined;
|
|
45320
45990
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45321
45991
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
45322
45992
|
} | {
|
|
45323
45993
|
message: string;
|
|
45324
45994
|
is_access_code_error: true;
|
|
45995
|
+
created_at?: string | undefined;
|
|
45325
45996
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45326
45997
|
error_code: 'code_modified_external_to_seam';
|
|
45327
45998
|
} | {
|
|
45328
45999
|
message: string;
|
|
45329
46000
|
is_access_code_error: true;
|
|
46001
|
+
created_at?: string | undefined;
|
|
45330
46002
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45331
46003
|
error_code: 'august_lock_invalid_code_length';
|
|
45332
46004
|
} | {
|
|
45333
46005
|
message: string;
|
|
45334
46006
|
is_access_code_error: true;
|
|
46007
|
+
created_at?: string | undefined;
|
|
45335
46008
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45336
46009
|
error_code: 'august_device_programming_delay';
|
|
45337
46010
|
} | {
|
|
45338
46011
|
message: string;
|
|
45339
46012
|
is_access_code_error: true;
|
|
46013
|
+
created_at?: string | undefined;
|
|
45340
46014
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45341
46015
|
error_code: 'august_device_slots_full';
|
|
45342
46016
|
} | {
|
|
45343
46017
|
message: string;
|
|
45344
46018
|
is_access_code_error: true;
|
|
46019
|
+
created_at?: string | undefined;
|
|
45345
46020
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45346
46021
|
error_code: 'august_lock_missing_keypad';
|
|
45347
46022
|
} | {
|
|
45348
46023
|
message: string;
|
|
45349
46024
|
is_access_code_error: true;
|
|
46025
|
+
created_at?: string | undefined;
|
|
45350
46026
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45351
46027
|
error_code: 'salto_site_user_not_subscribed';
|
|
45352
46028
|
} | {
|
|
45353
46029
|
message: string;
|
|
45354
46030
|
is_access_code_error: true;
|
|
46031
|
+
created_at?: string | undefined;
|
|
45355
46032
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45356
46033
|
error_code: 'hubitat_device_programming_delay';
|
|
45357
46034
|
} | {
|
|
45358
46035
|
message: string;
|
|
45359
46036
|
is_access_code_error: true;
|
|
46037
|
+
created_at?: string | undefined;
|
|
45360
46038
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45361
46039
|
error_code: 'hubitat_no_free_positions_available';
|
|
45362
46040
|
} | {
|
|
@@ -45450,50 +46128,62 @@ interface Routes {
|
|
|
45450
46128
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
45451
46129
|
warnings: Array<{
|
|
45452
46130
|
message: string;
|
|
46131
|
+
created_at?: string | undefined;
|
|
45453
46132
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45454
46133
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
45455
46134
|
} | {
|
|
45456
46135
|
message: string;
|
|
46136
|
+
created_at?: string | undefined;
|
|
45457
46137
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45458
46138
|
warning_code: 'schlage_detected_duplicate';
|
|
45459
46139
|
} | {
|
|
45460
46140
|
message: string;
|
|
46141
|
+
created_at?: string | undefined;
|
|
45461
46142
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45462
46143
|
warning_code: 'schlage_creation_outage';
|
|
45463
46144
|
} | {
|
|
45464
46145
|
message: string;
|
|
46146
|
+
created_at?: string | undefined;
|
|
45465
46147
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45466
46148
|
warning_code: 'salto_office_mode';
|
|
45467
46149
|
} | {
|
|
45468
46150
|
message: string;
|
|
46151
|
+
created_at?: string | undefined;
|
|
45469
46152
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45470
46153
|
warning_code: 'code_modified_external_to_seam';
|
|
45471
46154
|
} | {
|
|
45472
46155
|
message: string;
|
|
46156
|
+
created_at?: string | undefined;
|
|
45473
46157
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45474
46158
|
warning_code: 'delay_in_setting_on_device';
|
|
45475
46159
|
} | {
|
|
45476
46160
|
message: string;
|
|
46161
|
+
created_at?: string | undefined;
|
|
45477
46162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45478
46163
|
warning_code: 'delay_in_removing_from_device';
|
|
45479
46164
|
} | {
|
|
45480
46165
|
message: string;
|
|
46166
|
+
created_at?: string | undefined;
|
|
45481
46167
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45482
46168
|
warning_code: 'third_party_integration_detected';
|
|
45483
46169
|
} | {
|
|
45484
46170
|
message: string;
|
|
46171
|
+
created_at?: string | undefined;
|
|
45485
46172
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45486
46173
|
warning_code: 'august_device_programming_delay';
|
|
45487
46174
|
} | {
|
|
45488
46175
|
message: string;
|
|
46176
|
+
created_at?: string | undefined;
|
|
45489
46177
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45490
46178
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
45491
46179
|
} | {
|
|
45492
46180
|
message: string;
|
|
46181
|
+
created_at?: string | undefined;
|
|
45493
46182
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45494
46183
|
warning_code: 'management_transferred';
|
|
45495
46184
|
} | {
|
|
45496
46185
|
message: string;
|
|
46186
|
+
created_at?: string | undefined;
|
|
45497
46187
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45498
46188
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
45499
46189
|
}>;
|
|
@@ -45557,96 +46247,115 @@ interface Routes {
|
|
|
45557
46247
|
errors: Array<{
|
|
45558
46248
|
message: string;
|
|
45559
46249
|
is_access_code_error: true;
|
|
46250
|
+
created_at?: string | undefined;
|
|
45560
46251
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45561
46252
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
45562
46253
|
} | {
|
|
45563
46254
|
message: string;
|
|
45564
46255
|
is_access_code_error: true;
|
|
46256
|
+
created_at?: string | undefined;
|
|
45565
46257
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45566
46258
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
45567
46259
|
} | {
|
|
45568
46260
|
message: string;
|
|
45569
46261
|
is_access_code_error: true;
|
|
46262
|
+
created_at?: string | undefined;
|
|
45570
46263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45571
46264
|
error_code: 'failed_to_set_on_device';
|
|
45572
46265
|
} | {
|
|
45573
46266
|
message: string;
|
|
45574
46267
|
is_access_code_error: true;
|
|
46268
|
+
created_at?: string | undefined;
|
|
45575
46269
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45576
46270
|
error_code: 'failed_to_remove_from_device';
|
|
45577
46271
|
} | {
|
|
45578
46272
|
message: string;
|
|
45579
46273
|
is_access_code_error: true;
|
|
46274
|
+
created_at?: string | undefined;
|
|
45580
46275
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45581
46276
|
error_code: 'duplicate_code_on_device';
|
|
45582
46277
|
} | {
|
|
45583
46278
|
message: string;
|
|
45584
46279
|
is_access_code_error: true;
|
|
46280
|
+
created_at?: string | undefined;
|
|
45585
46281
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45586
46282
|
error_code: 'duplicate_code_attempt_prevented';
|
|
45587
46283
|
} | {
|
|
45588
46284
|
message: string;
|
|
45589
46285
|
is_access_code_error: true;
|
|
46286
|
+
created_at?: string | undefined;
|
|
45590
46287
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45591
46288
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
45592
46289
|
} | {
|
|
45593
46290
|
message: string;
|
|
45594
46291
|
is_access_code_error: true;
|
|
46292
|
+
created_at?: string | undefined;
|
|
45595
46293
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45596
46294
|
error_code: 'igloohome_bridge_offline';
|
|
45597
46295
|
} | {
|
|
45598
46296
|
message: string;
|
|
45599
46297
|
is_access_code_error: true;
|
|
46298
|
+
created_at?: string | undefined;
|
|
45600
46299
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45601
46300
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
45602
46301
|
} | {
|
|
45603
46302
|
message: string;
|
|
45604
46303
|
is_access_code_error: true;
|
|
46304
|
+
created_at?: string | undefined;
|
|
45605
46305
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45606
46306
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
45607
46307
|
} | {
|
|
45608
46308
|
message: string;
|
|
45609
46309
|
is_access_code_error: true;
|
|
46310
|
+
created_at?: string | undefined;
|
|
45610
46311
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45611
46312
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
45612
46313
|
} | {
|
|
45613
46314
|
message: string;
|
|
45614
46315
|
is_access_code_error: true;
|
|
46316
|
+
created_at?: string | undefined;
|
|
45615
46317
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45616
46318
|
error_code: 'code_modified_external_to_seam';
|
|
45617
46319
|
} | {
|
|
45618
46320
|
message: string;
|
|
45619
46321
|
is_access_code_error: true;
|
|
46322
|
+
created_at?: string | undefined;
|
|
45620
46323
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45621
46324
|
error_code: 'august_lock_invalid_code_length';
|
|
45622
46325
|
} | {
|
|
45623
46326
|
message: string;
|
|
45624
46327
|
is_access_code_error: true;
|
|
46328
|
+
created_at?: string | undefined;
|
|
45625
46329
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45626
46330
|
error_code: 'august_device_programming_delay';
|
|
45627
46331
|
} | {
|
|
45628
46332
|
message: string;
|
|
45629
46333
|
is_access_code_error: true;
|
|
46334
|
+
created_at?: string | undefined;
|
|
45630
46335
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45631
46336
|
error_code: 'august_device_slots_full';
|
|
45632
46337
|
} | {
|
|
45633
46338
|
message: string;
|
|
45634
46339
|
is_access_code_error: true;
|
|
46340
|
+
created_at?: string | undefined;
|
|
45635
46341
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45636
46342
|
error_code: 'august_lock_missing_keypad';
|
|
45637
46343
|
} | {
|
|
45638
46344
|
message: string;
|
|
45639
46345
|
is_access_code_error: true;
|
|
46346
|
+
created_at?: string | undefined;
|
|
45640
46347
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45641
46348
|
error_code: 'salto_site_user_not_subscribed';
|
|
45642
46349
|
} | {
|
|
45643
46350
|
message: string;
|
|
45644
46351
|
is_access_code_error: true;
|
|
46352
|
+
created_at?: string | undefined;
|
|
45645
46353
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45646
46354
|
error_code: 'hubitat_device_programming_delay';
|
|
45647
46355
|
} | {
|
|
45648
46356
|
message: string;
|
|
45649
46357
|
is_access_code_error: true;
|
|
46358
|
+
created_at?: string | undefined;
|
|
45650
46359
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45651
46360
|
error_code: 'hubitat_no_free_positions_available';
|
|
45652
46361
|
} | {
|
|
@@ -45740,50 +46449,62 @@ interface Routes {
|
|
|
45740
46449
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
45741
46450
|
warnings: Array<{
|
|
45742
46451
|
message: string;
|
|
46452
|
+
created_at?: string | undefined;
|
|
45743
46453
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45744
46454
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
45745
46455
|
} | {
|
|
45746
46456
|
message: string;
|
|
46457
|
+
created_at?: string | undefined;
|
|
45747
46458
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45748
46459
|
warning_code: 'schlage_detected_duplicate';
|
|
45749
46460
|
} | {
|
|
45750
46461
|
message: string;
|
|
46462
|
+
created_at?: string | undefined;
|
|
45751
46463
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45752
46464
|
warning_code: 'schlage_creation_outage';
|
|
45753
46465
|
} | {
|
|
45754
46466
|
message: string;
|
|
46467
|
+
created_at?: string | undefined;
|
|
45755
46468
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45756
46469
|
warning_code: 'salto_office_mode';
|
|
45757
46470
|
} | {
|
|
45758
46471
|
message: string;
|
|
46472
|
+
created_at?: string | undefined;
|
|
45759
46473
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45760
46474
|
warning_code: 'code_modified_external_to_seam';
|
|
45761
46475
|
} | {
|
|
45762
46476
|
message: string;
|
|
46477
|
+
created_at?: string | undefined;
|
|
45763
46478
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45764
46479
|
warning_code: 'delay_in_setting_on_device';
|
|
45765
46480
|
} | {
|
|
45766
46481
|
message: string;
|
|
46482
|
+
created_at?: string | undefined;
|
|
45767
46483
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45768
46484
|
warning_code: 'delay_in_removing_from_device';
|
|
45769
46485
|
} | {
|
|
45770
46486
|
message: string;
|
|
46487
|
+
created_at?: string | undefined;
|
|
45771
46488
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45772
46489
|
warning_code: 'third_party_integration_detected';
|
|
45773
46490
|
} | {
|
|
45774
46491
|
message: string;
|
|
46492
|
+
created_at?: string | undefined;
|
|
45775
46493
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45776
46494
|
warning_code: 'august_device_programming_delay';
|
|
45777
46495
|
} | {
|
|
45778
46496
|
message: string;
|
|
46497
|
+
created_at?: string | undefined;
|
|
45779
46498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45780
46499
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
45781
46500
|
} | {
|
|
45782
46501
|
message: string;
|
|
46502
|
+
created_at?: string | undefined;
|
|
45783
46503
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45784
46504
|
warning_code: 'management_transferred';
|
|
45785
46505
|
} | {
|
|
45786
46506
|
message: string;
|
|
46507
|
+
created_at?: string | undefined;
|
|
45787
46508
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45788
46509
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
45789
46510
|
}>;
|
|
@@ -45846,96 +46567,115 @@ interface Routes {
|
|
|
45846
46567
|
errors: Array<{
|
|
45847
46568
|
message: string;
|
|
45848
46569
|
is_access_code_error: true;
|
|
46570
|
+
created_at?: string | undefined;
|
|
45849
46571
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45850
46572
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
45851
46573
|
} | {
|
|
45852
46574
|
message: string;
|
|
45853
46575
|
is_access_code_error: true;
|
|
46576
|
+
created_at?: string | undefined;
|
|
45854
46577
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45855
46578
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
45856
46579
|
} | {
|
|
45857
46580
|
message: string;
|
|
45858
46581
|
is_access_code_error: true;
|
|
46582
|
+
created_at?: string | undefined;
|
|
45859
46583
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45860
46584
|
error_code: 'failed_to_set_on_device';
|
|
45861
46585
|
} | {
|
|
45862
46586
|
message: string;
|
|
45863
46587
|
is_access_code_error: true;
|
|
46588
|
+
created_at?: string | undefined;
|
|
45864
46589
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45865
46590
|
error_code: 'failed_to_remove_from_device';
|
|
45866
46591
|
} | {
|
|
45867
46592
|
message: string;
|
|
45868
46593
|
is_access_code_error: true;
|
|
46594
|
+
created_at?: string | undefined;
|
|
45869
46595
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45870
46596
|
error_code: 'duplicate_code_on_device';
|
|
45871
46597
|
} | {
|
|
45872
46598
|
message: string;
|
|
45873
46599
|
is_access_code_error: true;
|
|
46600
|
+
created_at?: string | undefined;
|
|
45874
46601
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45875
46602
|
error_code: 'duplicate_code_attempt_prevented';
|
|
45876
46603
|
} | {
|
|
45877
46604
|
message: string;
|
|
45878
46605
|
is_access_code_error: true;
|
|
46606
|
+
created_at?: string | undefined;
|
|
45879
46607
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45880
46608
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
45881
46609
|
} | {
|
|
45882
46610
|
message: string;
|
|
45883
46611
|
is_access_code_error: true;
|
|
46612
|
+
created_at?: string | undefined;
|
|
45884
46613
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45885
46614
|
error_code: 'igloohome_bridge_offline';
|
|
45886
46615
|
} | {
|
|
45887
46616
|
message: string;
|
|
45888
46617
|
is_access_code_error: true;
|
|
46618
|
+
created_at?: string | undefined;
|
|
45889
46619
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45890
46620
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
45891
46621
|
} | {
|
|
45892
46622
|
message: string;
|
|
45893
46623
|
is_access_code_error: true;
|
|
46624
|
+
created_at?: string | undefined;
|
|
45894
46625
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45895
46626
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
45896
46627
|
} | {
|
|
45897
46628
|
message: string;
|
|
45898
46629
|
is_access_code_error: true;
|
|
46630
|
+
created_at?: string | undefined;
|
|
45899
46631
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45900
46632
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
45901
46633
|
} | {
|
|
45902
46634
|
message: string;
|
|
45903
46635
|
is_access_code_error: true;
|
|
46636
|
+
created_at?: string | undefined;
|
|
45904
46637
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45905
46638
|
error_code: 'code_modified_external_to_seam';
|
|
45906
46639
|
} | {
|
|
45907
46640
|
message: string;
|
|
45908
46641
|
is_access_code_error: true;
|
|
46642
|
+
created_at?: string | undefined;
|
|
45909
46643
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45910
46644
|
error_code: 'august_lock_invalid_code_length';
|
|
45911
46645
|
} | {
|
|
45912
46646
|
message: string;
|
|
45913
46647
|
is_access_code_error: true;
|
|
46648
|
+
created_at?: string | undefined;
|
|
45914
46649
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45915
46650
|
error_code: 'august_device_programming_delay';
|
|
45916
46651
|
} | {
|
|
45917
46652
|
message: string;
|
|
45918
46653
|
is_access_code_error: true;
|
|
46654
|
+
created_at?: string | undefined;
|
|
45919
46655
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45920
46656
|
error_code: 'august_device_slots_full';
|
|
45921
46657
|
} | {
|
|
45922
46658
|
message: string;
|
|
45923
46659
|
is_access_code_error: true;
|
|
46660
|
+
created_at?: string | undefined;
|
|
45924
46661
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45925
46662
|
error_code: 'august_lock_missing_keypad';
|
|
45926
46663
|
} | {
|
|
45927
46664
|
message: string;
|
|
45928
46665
|
is_access_code_error: true;
|
|
46666
|
+
created_at?: string | undefined;
|
|
45929
46667
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45930
46668
|
error_code: 'salto_site_user_not_subscribed';
|
|
45931
46669
|
} | {
|
|
45932
46670
|
message: string;
|
|
45933
46671
|
is_access_code_error: true;
|
|
46672
|
+
created_at?: string | undefined;
|
|
45934
46673
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45935
46674
|
error_code: 'hubitat_device_programming_delay';
|
|
45936
46675
|
} | {
|
|
45937
46676
|
message: string;
|
|
45938
46677
|
is_access_code_error: true;
|
|
46678
|
+
created_at?: string | undefined;
|
|
45939
46679
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45940
46680
|
error_code: 'hubitat_no_free_positions_available';
|
|
45941
46681
|
} | {
|
|
@@ -46029,50 +46769,62 @@ interface Routes {
|
|
|
46029
46769
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
46030
46770
|
warnings: Array<{
|
|
46031
46771
|
message: string;
|
|
46772
|
+
created_at?: string | undefined;
|
|
46032
46773
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46033
46774
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
46034
46775
|
} | {
|
|
46035
46776
|
message: string;
|
|
46777
|
+
created_at?: string | undefined;
|
|
46036
46778
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46037
46779
|
warning_code: 'schlage_detected_duplicate';
|
|
46038
46780
|
} | {
|
|
46039
46781
|
message: string;
|
|
46782
|
+
created_at?: string | undefined;
|
|
46040
46783
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46041
46784
|
warning_code: 'schlage_creation_outage';
|
|
46042
46785
|
} | {
|
|
46043
46786
|
message: string;
|
|
46787
|
+
created_at?: string | undefined;
|
|
46044
46788
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46045
46789
|
warning_code: 'salto_office_mode';
|
|
46046
46790
|
} | {
|
|
46047
46791
|
message: string;
|
|
46792
|
+
created_at?: string | undefined;
|
|
46048
46793
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46049
46794
|
warning_code: 'code_modified_external_to_seam';
|
|
46050
46795
|
} | {
|
|
46051
46796
|
message: string;
|
|
46797
|
+
created_at?: string | undefined;
|
|
46052
46798
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46053
46799
|
warning_code: 'delay_in_setting_on_device';
|
|
46054
46800
|
} | {
|
|
46055
46801
|
message: string;
|
|
46802
|
+
created_at?: string | undefined;
|
|
46056
46803
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46057
46804
|
warning_code: 'delay_in_removing_from_device';
|
|
46058
46805
|
} | {
|
|
46059
46806
|
message: string;
|
|
46807
|
+
created_at?: string | undefined;
|
|
46060
46808
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46061
46809
|
warning_code: 'third_party_integration_detected';
|
|
46062
46810
|
} | {
|
|
46063
46811
|
message: string;
|
|
46812
|
+
created_at?: string | undefined;
|
|
46064
46813
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46065
46814
|
warning_code: 'august_device_programming_delay';
|
|
46066
46815
|
} | {
|
|
46067
46816
|
message: string;
|
|
46817
|
+
created_at?: string | undefined;
|
|
46068
46818
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46069
46819
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
46070
46820
|
} | {
|
|
46071
46821
|
message: string;
|
|
46822
|
+
created_at?: string | undefined;
|
|
46072
46823
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46073
46824
|
warning_code: 'management_transferred';
|
|
46074
46825
|
} | {
|
|
46075
46826
|
message: string;
|
|
46827
|
+
created_at?: string | undefined;
|
|
46076
46828
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46077
46829
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
46078
46830
|
}>;
|
|
@@ -46123,96 +46875,115 @@ interface Routes {
|
|
|
46123
46875
|
errors: Array<{
|
|
46124
46876
|
message: string;
|
|
46125
46877
|
is_access_code_error: true;
|
|
46878
|
+
created_at?: string | undefined;
|
|
46126
46879
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46127
46880
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
46128
46881
|
} | {
|
|
46129
46882
|
message: string;
|
|
46130
46883
|
is_access_code_error: true;
|
|
46884
|
+
created_at?: string | undefined;
|
|
46131
46885
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46132
46886
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
46133
46887
|
} | {
|
|
46134
46888
|
message: string;
|
|
46135
46889
|
is_access_code_error: true;
|
|
46890
|
+
created_at?: string | undefined;
|
|
46136
46891
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46137
46892
|
error_code: 'failed_to_set_on_device';
|
|
46138
46893
|
} | {
|
|
46139
46894
|
message: string;
|
|
46140
46895
|
is_access_code_error: true;
|
|
46896
|
+
created_at?: string | undefined;
|
|
46141
46897
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46142
46898
|
error_code: 'failed_to_remove_from_device';
|
|
46143
46899
|
} | {
|
|
46144
46900
|
message: string;
|
|
46145
46901
|
is_access_code_error: true;
|
|
46902
|
+
created_at?: string | undefined;
|
|
46146
46903
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46147
46904
|
error_code: 'duplicate_code_on_device';
|
|
46148
46905
|
} | {
|
|
46149
46906
|
message: string;
|
|
46150
46907
|
is_access_code_error: true;
|
|
46908
|
+
created_at?: string | undefined;
|
|
46151
46909
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46152
46910
|
error_code: 'duplicate_code_attempt_prevented';
|
|
46153
46911
|
} | {
|
|
46154
46912
|
message: string;
|
|
46155
46913
|
is_access_code_error: true;
|
|
46914
|
+
created_at?: string | undefined;
|
|
46156
46915
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46157
46916
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
46158
46917
|
} | {
|
|
46159
46918
|
message: string;
|
|
46160
46919
|
is_access_code_error: true;
|
|
46920
|
+
created_at?: string | undefined;
|
|
46161
46921
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46162
46922
|
error_code: 'igloohome_bridge_offline';
|
|
46163
46923
|
} | {
|
|
46164
46924
|
message: string;
|
|
46165
46925
|
is_access_code_error: true;
|
|
46926
|
+
created_at?: string | undefined;
|
|
46166
46927
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46167
46928
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
46168
46929
|
} | {
|
|
46169
46930
|
message: string;
|
|
46170
46931
|
is_access_code_error: true;
|
|
46932
|
+
created_at?: string | undefined;
|
|
46171
46933
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46172
46934
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
46173
46935
|
} | {
|
|
46174
46936
|
message: string;
|
|
46175
46937
|
is_access_code_error: true;
|
|
46938
|
+
created_at?: string | undefined;
|
|
46176
46939
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46177
46940
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
46178
46941
|
} | {
|
|
46179
46942
|
message: string;
|
|
46180
46943
|
is_access_code_error: true;
|
|
46944
|
+
created_at?: string | undefined;
|
|
46181
46945
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46182
46946
|
error_code: 'code_modified_external_to_seam';
|
|
46183
46947
|
} | {
|
|
46184
46948
|
message: string;
|
|
46185
46949
|
is_access_code_error: true;
|
|
46950
|
+
created_at?: string | undefined;
|
|
46186
46951
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46187
46952
|
error_code: 'august_lock_invalid_code_length';
|
|
46188
46953
|
} | {
|
|
46189
46954
|
message: string;
|
|
46190
46955
|
is_access_code_error: true;
|
|
46956
|
+
created_at?: string | undefined;
|
|
46191
46957
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46192
46958
|
error_code: 'august_device_programming_delay';
|
|
46193
46959
|
} | {
|
|
46194
46960
|
message: string;
|
|
46195
46961
|
is_access_code_error: true;
|
|
46962
|
+
created_at?: string | undefined;
|
|
46196
46963
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46197
46964
|
error_code: 'august_device_slots_full';
|
|
46198
46965
|
} | {
|
|
46199
46966
|
message: string;
|
|
46200
46967
|
is_access_code_error: true;
|
|
46968
|
+
created_at?: string | undefined;
|
|
46201
46969
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46202
46970
|
error_code: 'august_lock_missing_keypad';
|
|
46203
46971
|
} | {
|
|
46204
46972
|
message: string;
|
|
46205
46973
|
is_access_code_error: true;
|
|
46974
|
+
created_at?: string | undefined;
|
|
46206
46975
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46207
46976
|
error_code: 'salto_site_user_not_subscribed';
|
|
46208
46977
|
} | {
|
|
46209
46978
|
message: string;
|
|
46210
46979
|
is_access_code_error: true;
|
|
46980
|
+
created_at?: string | undefined;
|
|
46211
46981
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46212
46982
|
error_code: 'hubitat_device_programming_delay';
|
|
46213
46983
|
} | {
|
|
46214
46984
|
message: string;
|
|
46215
46985
|
is_access_code_error: true;
|
|
46986
|
+
created_at?: string | undefined;
|
|
46216
46987
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46217
46988
|
error_code: 'hubitat_no_free_positions_available';
|
|
46218
46989
|
} | {
|
|
@@ -46306,50 +47077,62 @@ interface Routes {
|
|
|
46306
47077
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
46307
47078
|
warnings: Array<{
|
|
46308
47079
|
message: string;
|
|
47080
|
+
created_at?: string | undefined;
|
|
46309
47081
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46310
47082
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
46311
47083
|
} | {
|
|
46312
47084
|
message: string;
|
|
47085
|
+
created_at?: string | undefined;
|
|
46313
47086
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46314
47087
|
warning_code: 'schlage_detected_duplicate';
|
|
46315
47088
|
} | {
|
|
46316
47089
|
message: string;
|
|
47090
|
+
created_at?: string | undefined;
|
|
46317
47091
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46318
47092
|
warning_code: 'schlage_creation_outage';
|
|
46319
47093
|
} | {
|
|
46320
47094
|
message: string;
|
|
47095
|
+
created_at?: string | undefined;
|
|
46321
47096
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46322
47097
|
warning_code: 'salto_office_mode';
|
|
46323
47098
|
} | {
|
|
46324
47099
|
message: string;
|
|
47100
|
+
created_at?: string | undefined;
|
|
46325
47101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46326
47102
|
warning_code: 'code_modified_external_to_seam';
|
|
46327
47103
|
} | {
|
|
46328
47104
|
message: string;
|
|
47105
|
+
created_at?: string | undefined;
|
|
46329
47106
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46330
47107
|
warning_code: 'delay_in_setting_on_device';
|
|
46331
47108
|
} | {
|
|
46332
47109
|
message: string;
|
|
47110
|
+
created_at?: string | undefined;
|
|
46333
47111
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46334
47112
|
warning_code: 'delay_in_removing_from_device';
|
|
46335
47113
|
} | {
|
|
46336
47114
|
message: string;
|
|
47115
|
+
created_at?: string | undefined;
|
|
46337
47116
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46338
47117
|
warning_code: 'third_party_integration_detected';
|
|
46339
47118
|
} | {
|
|
46340
47119
|
message: string;
|
|
47120
|
+
created_at?: string | undefined;
|
|
46341
47121
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46342
47122
|
warning_code: 'august_device_programming_delay';
|
|
46343
47123
|
} | {
|
|
46344
47124
|
message: string;
|
|
47125
|
+
created_at?: string | undefined;
|
|
46345
47126
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46346
47127
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
46347
47128
|
} | {
|
|
46348
47129
|
message: string;
|
|
47130
|
+
created_at?: string | undefined;
|
|
46349
47131
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46350
47132
|
warning_code: 'management_transferred';
|
|
46351
47133
|
} | {
|
|
46352
47134
|
message: string;
|
|
47135
|
+
created_at?: string | undefined;
|
|
46353
47136
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46354
47137
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
46355
47138
|
}>;
|
|
@@ -46408,96 +47191,115 @@ interface Routes {
|
|
|
46408
47191
|
errors: Array<{
|
|
46409
47192
|
message: string;
|
|
46410
47193
|
is_access_code_error: true;
|
|
47194
|
+
created_at?: string | undefined;
|
|
46411
47195
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46412
47196
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
46413
47197
|
} | {
|
|
46414
47198
|
message: string;
|
|
46415
47199
|
is_access_code_error: true;
|
|
47200
|
+
created_at?: string | undefined;
|
|
46416
47201
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46417
47202
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
46418
47203
|
} | {
|
|
46419
47204
|
message: string;
|
|
46420
47205
|
is_access_code_error: true;
|
|
47206
|
+
created_at?: string | undefined;
|
|
46421
47207
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46422
47208
|
error_code: 'failed_to_set_on_device';
|
|
46423
47209
|
} | {
|
|
46424
47210
|
message: string;
|
|
46425
47211
|
is_access_code_error: true;
|
|
47212
|
+
created_at?: string | undefined;
|
|
46426
47213
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46427
47214
|
error_code: 'failed_to_remove_from_device';
|
|
46428
47215
|
} | {
|
|
46429
47216
|
message: string;
|
|
46430
47217
|
is_access_code_error: true;
|
|
47218
|
+
created_at?: string | undefined;
|
|
46431
47219
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46432
47220
|
error_code: 'duplicate_code_on_device';
|
|
46433
47221
|
} | {
|
|
46434
47222
|
message: string;
|
|
46435
47223
|
is_access_code_error: true;
|
|
47224
|
+
created_at?: string | undefined;
|
|
46436
47225
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46437
47226
|
error_code: 'duplicate_code_attempt_prevented';
|
|
46438
47227
|
} | {
|
|
46439
47228
|
message: string;
|
|
46440
47229
|
is_access_code_error: true;
|
|
47230
|
+
created_at?: string | undefined;
|
|
46441
47231
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46442
47232
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
46443
47233
|
} | {
|
|
46444
47234
|
message: string;
|
|
46445
47235
|
is_access_code_error: true;
|
|
47236
|
+
created_at?: string | undefined;
|
|
46446
47237
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46447
47238
|
error_code: 'igloohome_bridge_offline';
|
|
46448
47239
|
} | {
|
|
46449
47240
|
message: string;
|
|
46450
47241
|
is_access_code_error: true;
|
|
47242
|
+
created_at?: string | undefined;
|
|
46451
47243
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46452
47244
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
46453
47245
|
} | {
|
|
46454
47246
|
message: string;
|
|
46455
47247
|
is_access_code_error: true;
|
|
47248
|
+
created_at?: string | undefined;
|
|
46456
47249
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46457
47250
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
46458
47251
|
} | {
|
|
46459
47252
|
message: string;
|
|
46460
47253
|
is_access_code_error: true;
|
|
47254
|
+
created_at?: string | undefined;
|
|
46461
47255
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46462
47256
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
46463
47257
|
} | {
|
|
46464
47258
|
message: string;
|
|
46465
47259
|
is_access_code_error: true;
|
|
47260
|
+
created_at?: string | undefined;
|
|
46466
47261
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46467
47262
|
error_code: 'code_modified_external_to_seam';
|
|
46468
47263
|
} | {
|
|
46469
47264
|
message: string;
|
|
46470
47265
|
is_access_code_error: true;
|
|
47266
|
+
created_at?: string | undefined;
|
|
46471
47267
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46472
47268
|
error_code: 'august_lock_invalid_code_length';
|
|
46473
47269
|
} | {
|
|
46474
47270
|
message: string;
|
|
46475
47271
|
is_access_code_error: true;
|
|
47272
|
+
created_at?: string | undefined;
|
|
46476
47273
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46477
47274
|
error_code: 'august_device_programming_delay';
|
|
46478
47275
|
} | {
|
|
46479
47276
|
message: string;
|
|
46480
47277
|
is_access_code_error: true;
|
|
47278
|
+
created_at?: string | undefined;
|
|
46481
47279
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46482
47280
|
error_code: 'august_device_slots_full';
|
|
46483
47281
|
} | {
|
|
46484
47282
|
message: string;
|
|
46485
47283
|
is_access_code_error: true;
|
|
47284
|
+
created_at?: string | undefined;
|
|
46486
47285
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46487
47286
|
error_code: 'august_lock_missing_keypad';
|
|
46488
47287
|
} | {
|
|
46489
47288
|
message: string;
|
|
46490
47289
|
is_access_code_error: true;
|
|
47290
|
+
created_at?: string | undefined;
|
|
46491
47291
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46492
47292
|
error_code: 'salto_site_user_not_subscribed';
|
|
46493
47293
|
} | {
|
|
46494
47294
|
message: string;
|
|
46495
47295
|
is_access_code_error: true;
|
|
47296
|
+
created_at?: string | undefined;
|
|
46496
47297
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46497
47298
|
error_code: 'hubitat_device_programming_delay';
|
|
46498
47299
|
} | {
|
|
46499
47300
|
message: string;
|
|
46500
47301
|
is_access_code_error: true;
|
|
47302
|
+
created_at?: string | undefined;
|
|
46501
47303
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
46502
47304
|
error_code: 'hubitat_no_free_positions_available';
|
|
46503
47305
|
} | {
|
|
@@ -46591,50 +47393,62 @@ interface Routes {
|
|
|
46591
47393
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
46592
47394
|
warnings: Array<{
|
|
46593
47395
|
message: string;
|
|
47396
|
+
created_at?: string | undefined;
|
|
46594
47397
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46595
47398
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
46596
47399
|
} | {
|
|
46597
47400
|
message: string;
|
|
47401
|
+
created_at?: string | undefined;
|
|
46598
47402
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46599
47403
|
warning_code: 'schlage_detected_duplicate';
|
|
46600
47404
|
} | {
|
|
46601
47405
|
message: string;
|
|
47406
|
+
created_at?: string | undefined;
|
|
46602
47407
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46603
47408
|
warning_code: 'schlage_creation_outage';
|
|
46604
47409
|
} | {
|
|
46605
47410
|
message: string;
|
|
47411
|
+
created_at?: string | undefined;
|
|
46606
47412
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46607
47413
|
warning_code: 'salto_office_mode';
|
|
46608
47414
|
} | {
|
|
46609
47415
|
message: string;
|
|
47416
|
+
created_at?: string | undefined;
|
|
46610
47417
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46611
47418
|
warning_code: 'code_modified_external_to_seam';
|
|
46612
47419
|
} | {
|
|
46613
47420
|
message: string;
|
|
47421
|
+
created_at?: string | undefined;
|
|
46614
47422
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46615
47423
|
warning_code: 'delay_in_setting_on_device';
|
|
46616
47424
|
} | {
|
|
46617
47425
|
message: string;
|
|
47426
|
+
created_at?: string | undefined;
|
|
46618
47427
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46619
47428
|
warning_code: 'delay_in_removing_from_device';
|
|
46620
47429
|
} | {
|
|
46621
47430
|
message: string;
|
|
47431
|
+
created_at?: string | undefined;
|
|
46622
47432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46623
47433
|
warning_code: 'third_party_integration_detected';
|
|
46624
47434
|
} | {
|
|
46625
47435
|
message: string;
|
|
47436
|
+
created_at?: string | undefined;
|
|
46626
47437
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46627
47438
|
warning_code: 'august_device_programming_delay';
|
|
46628
47439
|
} | {
|
|
46629
47440
|
message: string;
|
|
47441
|
+
created_at?: string | undefined;
|
|
46630
47442
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46631
47443
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
46632
47444
|
} | {
|
|
46633
47445
|
message: string;
|
|
47446
|
+
created_at?: string | undefined;
|
|
46634
47447
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46635
47448
|
warning_code: 'management_transferred';
|
|
46636
47449
|
} | {
|
|
46637
47450
|
message: string;
|
|
47451
|
+
created_at?: string | undefined;
|
|
46638
47452
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46639
47453
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
46640
47454
|
}>;
|
|
@@ -47584,96 +48398,115 @@ interface Routes {
|
|
|
47584
48398
|
errors: Array<{
|
|
47585
48399
|
message: string;
|
|
47586
48400
|
is_access_code_error: true;
|
|
48401
|
+
created_at?: string | undefined;
|
|
47587
48402
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47588
48403
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
47589
48404
|
} | {
|
|
47590
48405
|
message: string;
|
|
47591
48406
|
is_access_code_error: true;
|
|
48407
|
+
created_at?: string | undefined;
|
|
47592
48408
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47593
48409
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
47594
48410
|
} | {
|
|
47595
48411
|
message: string;
|
|
47596
48412
|
is_access_code_error: true;
|
|
48413
|
+
created_at?: string | undefined;
|
|
47597
48414
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47598
48415
|
error_code: 'failed_to_set_on_device';
|
|
47599
48416
|
} | {
|
|
47600
48417
|
message: string;
|
|
47601
48418
|
is_access_code_error: true;
|
|
48419
|
+
created_at?: string | undefined;
|
|
47602
48420
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47603
48421
|
error_code: 'failed_to_remove_from_device';
|
|
47604
48422
|
} | {
|
|
47605
48423
|
message: string;
|
|
47606
48424
|
is_access_code_error: true;
|
|
48425
|
+
created_at?: string | undefined;
|
|
47607
48426
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47608
48427
|
error_code: 'duplicate_code_on_device';
|
|
47609
48428
|
} | {
|
|
47610
48429
|
message: string;
|
|
47611
48430
|
is_access_code_error: true;
|
|
48431
|
+
created_at?: string | undefined;
|
|
47612
48432
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47613
48433
|
error_code: 'duplicate_code_attempt_prevented';
|
|
47614
48434
|
} | {
|
|
47615
48435
|
message: string;
|
|
47616
48436
|
is_access_code_error: true;
|
|
48437
|
+
created_at?: string | undefined;
|
|
47617
48438
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47618
48439
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
47619
48440
|
} | {
|
|
47620
48441
|
message: string;
|
|
47621
48442
|
is_access_code_error: true;
|
|
48443
|
+
created_at?: string | undefined;
|
|
47622
48444
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47623
48445
|
error_code: 'igloohome_bridge_offline';
|
|
47624
48446
|
} | {
|
|
47625
48447
|
message: string;
|
|
47626
48448
|
is_access_code_error: true;
|
|
48449
|
+
created_at?: string | undefined;
|
|
47627
48450
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47628
48451
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
47629
48452
|
} | {
|
|
47630
48453
|
message: string;
|
|
47631
48454
|
is_access_code_error: true;
|
|
48455
|
+
created_at?: string | undefined;
|
|
47632
48456
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47633
48457
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
47634
48458
|
} | {
|
|
47635
48459
|
message: string;
|
|
47636
48460
|
is_access_code_error: true;
|
|
48461
|
+
created_at?: string | undefined;
|
|
47637
48462
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47638
48463
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
47639
48464
|
} | {
|
|
47640
48465
|
message: string;
|
|
47641
48466
|
is_access_code_error: true;
|
|
48467
|
+
created_at?: string | undefined;
|
|
47642
48468
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47643
48469
|
error_code: 'code_modified_external_to_seam';
|
|
47644
48470
|
} | {
|
|
47645
48471
|
message: string;
|
|
47646
48472
|
is_access_code_error: true;
|
|
48473
|
+
created_at?: string | undefined;
|
|
47647
48474
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47648
48475
|
error_code: 'august_lock_invalid_code_length';
|
|
47649
48476
|
} | {
|
|
47650
48477
|
message: string;
|
|
47651
48478
|
is_access_code_error: true;
|
|
48479
|
+
created_at?: string | undefined;
|
|
47652
48480
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47653
48481
|
error_code: 'august_device_programming_delay';
|
|
47654
48482
|
} | {
|
|
47655
48483
|
message: string;
|
|
47656
48484
|
is_access_code_error: true;
|
|
48485
|
+
created_at?: string | undefined;
|
|
47657
48486
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47658
48487
|
error_code: 'august_device_slots_full';
|
|
47659
48488
|
} | {
|
|
47660
48489
|
message: string;
|
|
47661
48490
|
is_access_code_error: true;
|
|
48491
|
+
created_at?: string | undefined;
|
|
47662
48492
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47663
48493
|
error_code: 'august_lock_missing_keypad';
|
|
47664
48494
|
} | {
|
|
47665
48495
|
message: string;
|
|
47666
48496
|
is_access_code_error: true;
|
|
48497
|
+
created_at?: string | undefined;
|
|
47667
48498
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47668
48499
|
error_code: 'salto_site_user_not_subscribed';
|
|
47669
48500
|
} | {
|
|
47670
48501
|
message: string;
|
|
47671
48502
|
is_access_code_error: true;
|
|
48503
|
+
created_at?: string | undefined;
|
|
47672
48504
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47673
48505
|
error_code: 'hubitat_device_programming_delay';
|
|
47674
48506
|
} | {
|
|
47675
48507
|
message: string;
|
|
47676
48508
|
is_access_code_error: true;
|
|
48509
|
+
created_at?: string | undefined;
|
|
47677
48510
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47678
48511
|
error_code: 'hubitat_no_free_positions_available';
|
|
47679
48512
|
} | {
|
|
@@ -47767,50 +48600,62 @@ interface Routes {
|
|
|
47767
48600
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
47768
48601
|
warnings: Array<{
|
|
47769
48602
|
message: string;
|
|
48603
|
+
created_at?: string | undefined;
|
|
47770
48604
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47771
48605
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
47772
48606
|
} | {
|
|
47773
48607
|
message: string;
|
|
48608
|
+
created_at?: string | undefined;
|
|
47774
48609
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47775
48610
|
warning_code: 'schlage_detected_duplicate';
|
|
47776
48611
|
} | {
|
|
47777
48612
|
message: string;
|
|
48613
|
+
created_at?: string | undefined;
|
|
47778
48614
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47779
48615
|
warning_code: 'schlage_creation_outage';
|
|
47780
48616
|
} | {
|
|
47781
48617
|
message: string;
|
|
48618
|
+
created_at?: string | undefined;
|
|
47782
48619
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47783
48620
|
warning_code: 'salto_office_mode';
|
|
47784
48621
|
} | {
|
|
47785
48622
|
message: string;
|
|
48623
|
+
created_at?: string | undefined;
|
|
47786
48624
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47787
48625
|
warning_code: 'code_modified_external_to_seam';
|
|
47788
48626
|
} | {
|
|
47789
48627
|
message: string;
|
|
48628
|
+
created_at?: string | undefined;
|
|
47790
48629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47791
48630
|
warning_code: 'delay_in_setting_on_device';
|
|
47792
48631
|
} | {
|
|
47793
48632
|
message: string;
|
|
48633
|
+
created_at?: string | undefined;
|
|
47794
48634
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47795
48635
|
warning_code: 'delay_in_removing_from_device';
|
|
47796
48636
|
} | {
|
|
47797
48637
|
message: string;
|
|
48638
|
+
created_at?: string | undefined;
|
|
47798
48639
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47799
48640
|
warning_code: 'third_party_integration_detected';
|
|
47800
48641
|
} | {
|
|
47801
48642
|
message: string;
|
|
48643
|
+
created_at?: string | undefined;
|
|
47802
48644
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47803
48645
|
warning_code: 'august_device_programming_delay';
|
|
47804
48646
|
} | {
|
|
47805
48647
|
message: string;
|
|
48648
|
+
created_at?: string | undefined;
|
|
47806
48649
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47807
48650
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
47808
48651
|
} | {
|
|
47809
48652
|
message: string;
|
|
48653
|
+
created_at?: string | undefined;
|
|
47810
48654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47811
48655
|
warning_code: 'management_transferred';
|
|
47812
48656
|
} | {
|
|
47813
48657
|
message: string;
|
|
48658
|
+
created_at?: string | undefined;
|
|
47814
48659
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47815
48660
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
47816
48661
|
}>;
|
|
@@ -47851,96 +48696,115 @@ interface Routes {
|
|
|
47851
48696
|
errors: Array<{
|
|
47852
48697
|
message: string;
|
|
47853
48698
|
is_access_code_error: true;
|
|
48699
|
+
created_at?: string | undefined;
|
|
47854
48700
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47855
48701
|
error_code: 'smartthings_failed_to_set_access_code';
|
|
47856
48702
|
} | {
|
|
47857
48703
|
message: string;
|
|
47858
48704
|
is_access_code_error: true;
|
|
48705
|
+
created_at?: string | undefined;
|
|
47859
48706
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47860
48707
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
47861
48708
|
} | {
|
|
47862
48709
|
message: string;
|
|
47863
48710
|
is_access_code_error: true;
|
|
48711
|
+
created_at?: string | undefined;
|
|
47864
48712
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47865
48713
|
error_code: 'failed_to_set_on_device';
|
|
47866
48714
|
} | {
|
|
47867
48715
|
message: string;
|
|
47868
48716
|
is_access_code_error: true;
|
|
48717
|
+
created_at?: string | undefined;
|
|
47869
48718
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47870
48719
|
error_code: 'failed_to_remove_from_device';
|
|
47871
48720
|
} | {
|
|
47872
48721
|
message: string;
|
|
47873
48722
|
is_access_code_error: true;
|
|
48723
|
+
created_at?: string | undefined;
|
|
47874
48724
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47875
48725
|
error_code: 'duplicate_code_on_device';
|
|
47876
48726
|
} | {
|
|
47877
48727
|
message: string;
|
|
47878
48728
|
is_access_code_error: true;
|
|
48729
|
+
created_at?: string | undefined;
|
|
47879
48730
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47880
48731
|
error_code: 'duplicate_code_attempt_prevented';
|
|
47881
48732
|
} | {
|
|
47882
48733
|
message: string;
|
|
47883
48734
|
is_access_code_error: true;
|
|
48735
|
+
created_at?: string | undefined;
|
|
47884
48736
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47885
48737
|
error_code: 'igloohome_bridge_too_many_pending_jobs';
|
|
47886
48738
|
} | {
|
|
47887
48739
|
message: string;
|
|
47888
48740
|
is_access_code_error: true;
|
|
48741
|
+
created_at?: string | undefined;
|
|
47889
48742
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47890
48743
|
error_code: 'igloohome_bridge_offline';
|
|
47891
48744
|
} | {
|
|
47892
48745
|
message: string;
|
|
47893
48746
|
is_access_code_error: true;
|
|
48747
|
+
created_at?: string | undefined;
|
|
47894
48748
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47895
48749
|
error_code: 'igloohome_offline_access_code_no_variance_available';
|
|
47896
48750
|
} | {
|
|
47897
48751
|
message: string;
|
|
47898
48752
|
is_access_code_error: true;
|
|
48753
|
+
created_at?: string | undefined;
|
|
47899
48754
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47900
48755
|
error_code: 'kwikset_unable_to_confirm_code';
|
|
47901
48756
|
} | {
|
|
47902
48757
|
message: string;
|
|
47903
48758
|
is_access_code_error: true;
|
|
48759
|
+
created_at?: string | undefined;
|
|
47904
48760
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47905
48761
|
error_code: 'kwikset_unable_to_confirm_deletion';
|
|
47906
48762
|
} | {
|
|
47907
48763
|
message: string;
|
|
47908
48764
|
is_access_code_error: true;
|
|
48765
|
+
created_at?: string | undefined;
|
|
47909
48766
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47910
48767
|
error_code: 'code_modified_external_to_seam';
|
|
47911
48768
|
} | {
|
|
47912
48769
|
message: string;
|
|
47913
48770
|
is_access_code_error: true;
|
|
48771
|
+
created_at?: string | undefined;
|
|
47914
48772
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47915
48773
|
error_code: 'august_lock_invalid_code_length';
|
|
47916
48774
|
} | {
|
|
47917
48775
|
message: string;
|
|
47918
48776
|
is_access_code_error: true;
|
|
48777
|
+
created_at?: string | undefined;
|
|
47919
48778
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47920
48779
|
error_code: 'august_device_programming_delay';
|
|
47921
48780
|
} | {
|
|
47922
48781
|
message: string;
|
|
47923
48782
|
is_access_code_error: true;
|
|
48783
|
+
created_at?: string | undefined;
|
|
47924
48784
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47925
48785
|
error_code: 'august_device_slots_full';
|
|
47926
48786
|
} | {
|
|
47927
48787
|
message: string;
|
|
47928
48788
|
is_access_code_error: true;
|
|
48789
|
+
created_at?: string | undefined;
|
|
47929
48790
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47930
48791
|
error_code: 'august_lock_missing_keypad';
|
|
47931
48792
|
} | {
|
|
47932
48793
|
message: string;
|
|
47933
48794
|
is_access_code_error: true;
|
|
48795
|
+
created_at?: string | undefined;
|
|
47934
48796
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47935
48797
|
error_code: 'salto_site_user_not_subscribed';
|
|
47936
48798
|
} | {
|
|
47937
48799
|
message: string;
|
|
47938
48800
|
is_access_code_error: true;
|
|
48801
|
+
created_at?: string | undefined;
|
|
47939
48802
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47940
48803
|
error_code: 'hubitat_device_programming_delay';
|
|
47941
48804
|
} | {
|
|
47942
48805
|
message: string;
|
|
47943
48806
|
is_access_code_error: true;
|
|
48807
|
+
created_at?: string | undefined;
|
|
47944
48808
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47945
48809
|
error_code: 'hubitat_no_free_positions_available';
|
|
47946
48810
|
} | {
|
|
@@ -48034,50 +48898,62 @@ interface Routes {
|
|
|
48034
48898
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
48035
48899
|
warnings: Array<{
|
|
48036
48900
|
message: string;
|
|
48901
|
+
created_at?: string | undefined;
|
|
48037
48902
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48038
48903
|
warning_code: 'smartthings_failed_to_set_access_code';
|
|
48039
48904
|
} | {
|
|
48040
48905
|
message: string;
|
|
48906
|
+
created_at?: string | undefined;
|
|
48041
48907
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48042
48908
|
warning_code: 'schlage_detected_duplicate';
|
|
48043
48909
|
} | {
|
|
48044
48910
|
message: string;
|
|
48911
|
+
created_at?: string | undefined;
|
|
48045
48912
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48046
48913
|
warning_code: 'schlage_creation_outage';
|
|
48047
48914
|
} | {
|
|
48048
48915
|
message: string;
|
|
48916
|
+
created_at?: string | undefined;
|
|
48049
48917
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48050
48918
|
warning_code: 'salto_office_mode';
|
|
48051
48919
|
} | {
|
|
48052
48920
|
message: string;
|
|
48921
|
+
created_at?: string | undefined;
|
|
48053
48922
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48054
48923
|
warning_code: 'code_modified_external_to_seam';
|
|
48055
48924
|
} | {
|
|
48056
48925
|
message: string;
|
|
48926
|
+
created_at?: string | undefined;
|
|
48057
48927
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48058
48928
|
warning_code: 'delay_in_setting_on_device';
|
|
48059
48929
|
} | {
|
|
48060
48930
|
message: string;
|
|
48931
|
+
created_at?: string | undefined;
|
|
48061
48932
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48062
48933
|
warning_code: 'delay_in_removing_from_device';
|
|
48063
48934
|
} | {
|
|
48064
48935
|
message: string;
|
|
48936
|
+
created_at?: string | undefined;
|
|
48065
48937
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48066
48938
|
warning_code: 'third_party_integration_detected';
|
|
48067
48939
|
} | {
|
|
48068
48940
|
message: string;
|
|
48941
|
+
created_at?: string | undefined;
|
|
48069
48942
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48070
48943
|
warning_code: 'august_device_programming_delay';
|
|
48071
48944
|
} | {
|
|
48072
48945
|
message: string;
|
|
48946
|
+
created_at?: string | undefined;
|
|
48073
48947
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48074
48948
|
warning_code: 'igloo_algopin_must_be_used_within_24_hours';
|
|
48075
48949
|
} | {
|
|
48076
48950
|
message: string;
|
|
48951
|
+
created_at?: string | undefined;
|
|
48077
48952
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48078
48953
|
warning_code: 'management_transferred';
|
|
48079
48954
|
} | {
|
|
48080
48955
|
message: string;
|
|
48956
|
+
created_at?: string | undefined;
|
|
48081
48957
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48082
48958
|
warning_code: 'kwikset_unable_to_confirm_code';
|
|
48083
48959
|
}>;
|
|
@@ -59065,6 +59941,36 @@ interface Routes {
|
|
|
59065
59941
|
acs_system_id: string;
|
|
59066
59942
|
acs_access_group_id: string;
|
|
59067
59943
|
event_type: 'acs_access_group.deleted';
|
|
59944
|
+
} | {
|
|
59945
|
+
/** ID of the event. */
|
|
59946
|
+
event_id: string;
|
|
59947
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
59948
|
+
workspace_id: string;
|
|
59949
|
+
/** Date and time at which the event was created. */
|
|
59950
|
+
created_at: string;
|
|
59951
|
+
/** Date and time at which the event occurred. */
|
|
59952
|
+
occurred_at: string;
|
|
59953
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
59954
|
+
connected_account_id?: string | undefined;
|
|
59955
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
59956
|
+
acs_system_id: string;
|
|
59957
|
+
acs_entrance_id: string;
|
|
59958
|
+
event_type: 'acs_entrance.added';
|
|
59959
|
+
} | {
|
|
59960
|
+
/** ID of the event. */
|
|
59961
|
+
event_id: string;
|
|
59962
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
59963
|
+
workspace_id: string;
|
|
59964
|
+
/** Date and time at which the event was created. */
|
|
59965
|
+
created_at: string;
|
|
59966
|
+
/** Date and time at which the event occurred. */
|
|
59967
|
+
occurred_at: string;
|
|
59968
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
59969
|
+
connected_account_id?: string | undefined;
|
|
59970
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
59971
|
+
acs_system_id: string;
|
|
59972
|
+
acs_entrance_id: string;
|
|
59973
|
+
event_type: 'acs_entrance.removed';
|
|
59068
59974
|
} | {
|
|
59069
59975
|
/** ID of the event. */
|
|
59070
59976
|
event_id: string;
|
|
@@ -59856,8 +60762,8 @@ interface Routes {
|
|
|
59856
60762
|
acs_system_ids?: string[] | undefined;
|
|
59857
60763
|
access_code_id?: string | undefined;
|
|
59858
60764
|
access_code_ids?: string[] | undefined;
|
|
59859
|
-
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
|
|
59860
|
-
event_types?: Array<'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated'> | undefined;
|
|
60765
|
+
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
|
|
60766
|
+
event_types?: Array<'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated'> | undefined;
|
|
59861
60767
|
connected_account_id?: string | undefined;
|
|
59862
60768
|
connect_webview_id?: string | undefined;
|
|
59863
60769
|
limit?: number;
|
|
@@ -60293,6 +61199,36 @@ interface Routes {
|
|
|
60293
61199
|
acs_system_id: string;
|
|
60294
61200
|
acs_access_group_id: string;
|
|
60295
61201
|
event_type: 'acs_access_group.deleted';
|
|
61202
|
+
} | {
|
|
61203
|
+
/** ID of the event. */
|
|
61204
|
+
event_id: string;
|
|
61205
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
61206
|
+
workspace_id: string;
|
|
61207
|
+
/** Date and time at which the event was created. */
|
|
61208
|
+
created_at: string;
|
|
61209
|
+
/** Date and time at which the event occurred. */
|
|
61210
|
+
occurred_at: string;
|
|
61211
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
61212
|
+
connected_account_id?: string | undefined;
|
|
61213
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
61214
|
+
acs_system_id: string;
|
|
61215
|
+
acs_entrance_id: string;
|
|
61216
|
+
event_type: 'acs_entrance.added';
|
|
61217
|
+
} | {
|
|
61218
|
+
/** ID of the event. */
|
|
61219
|
+
event_id: string;
|
|
61220
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
61221
|
+
workspace_id: string;
|
|
61222
|
+
/** Date and time at which the event was created. */
|
|
61223
|
+
created_at: string;
|
|
61224
|
+
/** Date and time at which the event occurred. */
|
|
61225
|
+
occurred_at: string;
|
|
61226
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
61227
|
+
connected_account_id?: string | undefined;
|
|
61228
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
61229
|
+
acs_system_id: string;
|
|
61230
|
+
acs_entrance_id: string;
|
|
61231
|
+
event_type: 'acs_entrance.removed';
|
|
60296
61232
|
} | {
|
|
60297
61233
|
/** ID of the event. */
|
|
60298
61234
|
event_id: string;
|