@seamapi/types 1.363.0 → 1.364.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +312 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1410 -102
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1486 -34
- package/lib/seam/connect/models/access-codes/managed-access-code.js +135 -11
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +306 -21
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +240 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +594 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +152 -12
- package/src/lib/seam/connect/openapi.ts +252 -32
- package/src/lib/seam/connect/route-types.ts +648 -54
|
@@ -47,6 +47,7 @@ export default {
|
|
|
47
47
|
{
|
|
48
48
|
description: 'Failed to set code on Smart Things device.',
|
|
49
49
|
properties: {
|
|
50
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
50
51
|
error_code: {
|
|
51
52
|
description:
|
|
52
53
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -62,6 +63,7 @@ export default {
|
|
|
62
63
|
{
|
|
63
64
|
description: 'Failed to set code after multiple retries.',
|
|
64
65
|
properties: {
|
|
66
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
65
67
|
error_code: {
|
|
66
68
|
description:
|
|
67
69
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -76,9 +78,26 @@ export default {
|
|
|
76
78
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
77
79
|
type: 'object',
|
|
78
80
|
},
|
|
81
|
+
{
|
|
82
|
+
description: 'No free slots available on the device.',
|
|
83
|
+
properties: {
|
|
84
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
85
|
+
error_code: {
|
|
86
|
+
description:
|
|
87
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
88
|
+
enum: ['smartthings_no_free_slots_available'],
|
|
89
|
+
type: 'string',
|
|
90
|
+
},
|
|
91
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
92
|
+
message: { type: 'string' },
|
|
93
|
+
},
|
|
94
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
95
|
+
type: 'object',
|
|
96
|
+
},
|
|
79
97
|
{
|
|
80
98
|
description: 'Failed to set code on device.',
|
|
81
99
|
properties: {
|
|
100
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
82
101
|
error_code: {
|
|
83
102
|
description:
|
|
84
103
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -94,6 +113,7 @@ export default {
|
|
|
94
113
|
{
|
|
95
114
|
description: 'Failed to remove code from device.',
|
|
96
115
|
properties: {
|
|
116
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
97
117
|
error_code: {
|
|
98
118
|
description:
|
|
99
119
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -109,6 +129,7 @@ export default {
|
|
|
109
129
|
{
|
|
110
130
|
description: 'Duplicate access code detected on device.',
|
|
111
131
|
properties: {
|
|
132
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
112
133
|
error_code: {
|
|
113
134
|
description:
|
|
114
135
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -125,6 +146,7 @@ export default {
|
|
|
125
146
|
description:
|
|
126
147
|
'An attempt to modify this access code was prevented.',
|
|
127
148
|
properties: {
|
|
149
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
128
150
|
error_code: {
|
|
129
151
|
description:
|
|
130
152
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -141,6 +163,7 @@ export default {
|
|
|
141
163
|
description:
|
|
142
164
|
'Igloohome bridge has too many pending jobs in the queue.',
|
|
143
165
|
properties: {
|
|
166
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
144
167
|
error_code: {
|
|
145
168
|
description:
|
|
146
169
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -156,6 +179,7 @@ export default {
|
|
|
156
179
|
{
|
|
157
180
|
description: 'Igloohome bridge is offline.',
|
|
158
181
|
properties: {
|
|
182
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
159
183
|
error_code: {
|
|
160
184
|
description:
|
|
161
185
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -171,6 +195,7 @@ export default {
|
|
|
171
195
|
{
|
|
172
196
|
description: 'Lock as reached max amount of codes.',
|
|
173
197
|
properties: {
|
|
198
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
174
199
|
error_code: {
|
|
175
200
|
description:
|
|
176
201
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -189,6 +214,7 @@ export default {
|
|
|
189
214
|
description:
|
|
190
215
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
191
216
|
properties: {
|
|
217
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
192
218
|
error_code: {
|
|
193
219
|
description:
|
|
194
220
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -205,6 +231,7 @@ export default {
|
|
|
205
231
|
description:
|
|
206
232
|
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
207
233
|
properties: {
|
|
234
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
208
235
|
error_code: {
|
|
209
236
|
description:
|
|
210
237
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -221,6 +248,7 @@ export default {
|
|
|
221
248
|
description:
|
|
222
249
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
223
250
|
properties: {
|
|
251
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
224
252
|
error_code: {
|
|
225
253
|
description:
|
|
226
254
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -236,6 +264,7 @@ export default {
|
|
|
236
264
|
{
|
|
237
265
|
description: 'Invalid code length for August lock.',
|
|
238
266
|
properties: {
|
|
267
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
239
268
|
error_code: {
|
|
240
269
|
description:
|
|
241
270
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -252,6 +281,7 @@ export default {
|
|
|
252
281
|
description:
|
|
253
282
|
'Access code has not yet been fully moved to the device.',
|
|
254
283
|
properties: {
|
|
284
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
255
285
|
error_code: {
|
|
256
286
|
description:
|
|
257
287
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -267,6 +297,7 @@ export default {
|
|
|
267
297
|
{
|
|
268
298
|
description: 'All access code slots on the device are full.',
|
|
269
299
|
properties: {
|
|
300
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
270
301
|
error_code: {
|
|
271
302
|
description:
|
|
272
303
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -282,6 +313,7 @@ export default {
|
|
|
282
313
|
{
|
|
283
314
|
description: 'August lock is missing a keypad.',
|
|
284
315
|
properties: {
|
|
316
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
285
317
|
error_code: {
|
|
286
318
|
description:
|
|
287
319
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -294,13 +326,30 @@ export default {
|
|
|
294
326
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
295
327
|
type: 'object',
|
|
296
328
|
},
|
|
329
|
+
{
|
|
330
|
+
description: 'August lock is temporarily offline.',
|
|
331
|
+
properties: {
|
|
332
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
333
|
+
error_code: {
|
|
334
|
+
description:
|
|
335
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
336
|
+
enum: ['august_lock_temporarily_offline'],
|
|
337
|
+
type: 'string',
|
|
338
|
+
},
|
|
339
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
340
|
+
message: { type: 'string' },
|
|
341
|
+
},
|
|
342
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
343
|
+
type: 'object',
|
|
344
|
+
},
|
|
297
345
|
{
|
|
298
346
|
description: 'Salto site user is not subscribed.',
|
|
299
347
|
properties: {
|
|
348
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
300
349
|
error_code: {
|
|
301
350
|
description:
|
|
302
351
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
303
|
-
enum: ['
|
|
352
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
304
353
|
type: 'string',
|
|
305
354
|
},
|
|
306
355
|
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
@@ -313,6 +362,7 @@ export default {
|
|
|
313
362
|
description:
|
|
314
363
|
'Access code has not yet been fully moved to the device.',
|
|
315
364
|
properties: {
|
|
365
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
316
366
|
error_code: {
|
|
317
367
|
description:
|
|
318
368
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -328,6 +378,7 @@ export default {
|
|
|
328
378
|
{
|
|
329
379
|
description: 'No free positions available on the device.',
|
|
330
380
|
properties: {
|
|
381
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
331
382
|
error_code: {
|
|
332
383
|
description:
|
|
333
384
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -340,6 +391,54 @@ export default {
|
|
|
340
391
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
341
392
|
type: 'object',
|
|
342
393
|
},
|
|
394
|
+
{
|
|
395
|
+
description: 'Duplicate access code name detected.',
|
|
396
|
+
properties: {
|
|
397
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
398
|
+
error_code: {
|
|
399
|
+
description:
|
|
400
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
401
|
+
enum: ['wyze_duplicate_code_name'],
|
|
402
|
+
type: 'string',
|
|
403
|
+
},
|
|
404
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
405
|
+
message: { type: 'string' },
|
|
406
|
+
},
|
|
407
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
408
|
+
type: 'object',
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
description: 'Potential duplicate access code detected.',
|
|
412
|
+
properties: {
|
|
413
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
414
|
+
error_code: {
|
|
415
|
+
description:
|
|
416
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
417
|
+
enum: ['wyze_potential_duplicate_code'],
|
|
418
|
+
type: 'string',
|
|
419
|
+
},
|
|
420
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
421
|
+
message: { type: 'string' },
|
|
422
|
+
},
|
|
423
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
424
|
+
type: 'object',
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
description: 'No valid user level for Oracode.',
|
|
428
|
+
properties: {
|
|
429
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
430
|
+
error_code: {
|
|
431
|
+
description:
|
|
432
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
433
|
+
enum: ['dormakaba_oracode_no_valid_user_level'],
|
|
434
|
+
type: 'string',
|
|
435
|
+
},
|
|
436
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
437
|
+
message: { type: 'string' },
|
|
438
|
+
},
|
|
439
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
440
|
+
type: 'object',
|
|
441
|
+
},
|
|
343
442
|
{
|
|
344
443
|
description: 'Account is disconnected',
|
|
345
444
|
properties: {
|
|
@@ -736,6 +835,7 @@ export default {
|
|
|
736
835
|
{
|
|
737
836
|
description: 'Failed to set code on Smart Things device.',
|
|
738
837
|
properties: {
|
|
838
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
739
839
|
message: { type: 'string' },
|
|
740
840
|
warning_code: {
|
|
741
841
|
description:
|
|
@@ -750,6 +850,7 @@ export default {
|
|
|
750
850
|
{
|
|
751
851
|
description: 'Duplicate access code detected.',
|
|
752
852
|
properties: {
|
|
853
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
753
854
|
message: { type: 'string' },
|
|
754
855
|
warning_code: {
|
|
755
856
|
description:
|
|
@@ -765,6 +866,7 @@ export default {
|
|
|
765
866
|
description:
|
|
766
867
|
'Received an error when attempting to create this code.',
|
|
767
868
|
properties: {
|
|
869
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
768
870
|
message: { type: 'string' },
|
|
769
871
|
warning_code: {
|
|
770
872
|
description:
|
|
@@ -776,25 +878,11 @@ export default {
|
|
|
776
878
|
required: ['message', 'warning_code'],
|
|
777
879
|
type: 'object',
|
|
778
880
|
},
|
|
779
|
-
{
|
|
780
|
-
description:
|
|
781
|
-
'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
782
|
-
properties: {
|
|
783
|
-
message: { type: 'string' },
|
|
784
|
-
warning_code: {
|
|
785
|
-
description:
|
|
786
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
787
|
-
enum: ['salto_office_mode'],
|
|
788
|
-
type: 'string',
|
|
789
|
-
},
|
|
790
|
-
},
|
|
791
|
-
required: ['message', 'warning_code'],
|
|
792
|
-
type: 'object',
|
|
793
|
-
},
|
|
794
881
|
{
|
|
795
882
|
description:
|
|
796
883
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
797
884
|
properties: {
|
|
885
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
798
886
|
message: { type: 'string' },
|
|
799
887
|
warning_code: {
|
|
800
888
|
description:
|
|
@@ -809,6 +897,7 @@ export default {
|
|
|
809
897
|
{
|
|
810
898
|
description: 'Delay in setting code on device.',
|
|
811
899
|
properties: {
|
|
900
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
812
901
|
message: { type: 'string' },
|
|
813
902
|
warning_code: {
|
|
814
903
|
description:
|
|
@@ -823,6 +912,7 @@ export default {
|
|
|
823
912
|
{
|
|
824
913
|
description: 'Delay in removing code from device.',
|
|
825
914
|
properties: {
|
|
915
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
826
916
|
message: { type: 'string' },
|
|
827
917
|
warning_code: {
|
|
828
918
|
description:
|
|
@@ -838,6 +928,7 @@ export default {
|
|
|
838
928
|
description:
|
|
839
929
|
'Third party integration detected that may cause access codes to fail.',
|
|
840
930
|
properties: {
|
|
931
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
841
932
|
message: { type: 'string' },
|
|
842
933
|
warning_code: {
|
|
843
934
|
description:
|
|
@@ -853,6 +944,7 @@ export default {
|
|
|
853
944
|
description:
|
|
854
945
|
'Access code has not yet been fully moved to the device.',
|
|
855
946
|
properties: {
|
|
947
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
856
948
|
message: { type: 'string' },
|
|
857
949
|
warning_code: {
|
|
858
950
|
description:
|
|
@@ -864,9 +956,25 @@ export default {
|
|
|
864
956
|
required: ['message', 'warning_code'],
|
|
865
957
|
type: 'object',
|
|
866
958
|
},
|
|
959
|
+
{
|
|
960
|
+
description: 'August lock is temporarily offline.',
|
|
961
|
+
properties: {
|
|
962
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
963
|
+
message: { type: 'string' },
|
|
964
|
+
warning_code: {
|
|
965
|
+
description:
|
|
966
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
967
|
+
enum: ['august_lock_temporarily_offline'],
|
|
968
|
+
type: 'string',
|
|
969
|
+
},
|
|
970
|
+
},
|
|
971
|
+
required: ['message', 'warning_code'],
|
|
972
|
+
type: 'object',
|
|
973
|
+
},
|
|
867
974
|
{
|
|
868
975
|
description: 'Algopins must be used within 24 hours.',
|
|
869
976
|
properties: {
|
|
977
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
870
978
|
message: { type: 'string' },
|
|
871
979
|
warning_code: {
|
|
872
980
|
description:
|
|
@@ -882,6 +990,7 @@ export default {
|
|
|
882
990
|
description:
|
|
883
991
|
'Management was transferred to another workspace.',
|
|
884
992
|
properties: {
|
|
993
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
885
994
|
message: { type: 'string' },
|
|
886
995
|
warning_code: {
|
|
887
996
|
description:
|
|
@@ -897,6 +1006,7 @@ export default {
|
|
|
897
1006
|
description:
|
|
898
1007
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
899
1008
|
properties: {
|
|
1009
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
900
1010
|
message: { type: 'string' },
|
|
901
1011
|
warning_code: {
|
|
902
1012
|
description:
|
|
@@ -12810,6 +12920,7 @@ export default {
|
|
|
12810
12920
|
{
|
|
12811
12921
|
description: 'Failed to set code on Smart Things device.',
|
|
12812
12922
|
properties: {
|
|
12923
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12813
12924
|
error_code: {
|
|
12814
12925
|
description:
|
|
12815
12926
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12825,6 +12936,7 @@ export default {
|
|
|
12825
12936
|
{
|
|
12826
12937
|
description: 'Failed to set code after multiple retries.',
|
|
12827
12938
|
properties: {
|
|
12939
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12828
12940
|
error_code: {
|
|
12829
12941
|
description:
|
|
12830
12942
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12839,9 +12951,26 @@ export default {
|
|
|
12839
12951
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12840
12952
|
type: 'object',
|
|
12841
12953
|
},
|
|
12954
|
+
{
|
|
12955
|
+
description: 'No free slots available on the device.',
|
|
12956
|
+
properties: {
|
|
12957
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12958
|
+
error_code: {
|
|
12959
|
+
description:
|
|
12960
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12961
|
+
enum: ['smartthings_no_free_slots_available'],
|
|
12962
|
+
type: 'string',
|
|
12963
|
+
},
|
|
12964
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12965
|
+
message: { type: 'string' },
|
|
12966
|
+
},
|
|
12967
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12968
|
+
type: 'object',
|
|
12969
|
+
},
|
|
12842
12970
|
{
|
|
12843
12971
|
description: 'Failed to set code on device.',
|
|
12844
12972
|
properties: {
|
|
12973
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12845
12974
|
error_code: {
|
|
12846
12975
|
description:
|
|
12847
12976
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12857,6 +12986,7 @@ export default {
|
|
|
12857
12986
|
{
|
|
12858
12987
|
description: 'Failed to remove code from device.',
|
|
12859
12988
|
properties: {
|
|
12989
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12860
12990
|
error_code: {
|
|
12861
12991
|
description:
|
|
12862
12992
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12872,6 +13002,7 @@ export default {
|
|
|
12872
13002
|
{
|
|
12873
13003
|
description: 'Duplicate access code detected on device.',
|
|
12874
13004
|
properties: {
|
|
13005
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12875
13006
|
error_code: {
|
|
12876
13007
|
description:
|
|
12877
13008
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12888,6 +13019,7 @@ export default {
|
|
|
12888
13019
|
description:
|
|
12889
13020
|
'An attempt to modify this access code was prevented.',
|
|
12890
13021
|
properties: {
|
|
13022
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12891
13023
|
error_code: {
|
|
12892
13024
|
description:
|
|
12893
13025
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12904,6 +13036,7 @@ export default {
|
|
|
12904
13036
|
description:
|
|
12905
13037
|
'Igloohome bridge has too many pending jobs in the queue.',
|
|
12906
13038
|
properties: {
|
|
13039
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12907
13040
|
error_code: {
|
|
12908
13041
|
description:
|
|
12909
13042
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12919,6 +13052,7 @@ export default {
|
|
|
12919
13052
|
{
|
|
12920
13053
|
description: 'Igloohome bridge is offline.',
|
|
12921
13054
|
properties: {
|
|
13055
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12922
13056
|
error_code: {
|
|
12923
13057
|
description:
|
|
12924
13058
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12934,6 +13068,7 @@ export default {
|
|
|
12934
13068
|
{
|
|
12935
13069
|
description: 'Lock as reached max amount of codes.',
|
|
12936
13070
|
properties: {
|
|
13071
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12937
13072
|
error_code: {
|
|
12938
13073
|
description:
|
|
12939
13074
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12952,6 +13087,7 @@ export default {
|
|
|
12952
13087
|
description:
|
|
12953
13088
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
12954
13089
|
properties: {
|
|
13090
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12955
13091
|
error_code: {
|
|
12956
13092
|
description:
|
|
12957
13093
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12968,6 +13104,7 @@ export default {
|
|
|
12968
13104
|
description:
|
|
12969
13105
|
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
12970
13106
|
properties: {
|
|
13107
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12971
13108
|
error_code: {
|
|
12972
13109
|
description:
|
|
12973
13110
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12984,6 +13121,7 @@ export default {
|
|
|
12984
13121
|
description:
|
|
12985
13122
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
12986
13123
|
properties: {
|
|
13124
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12987
13125
|
error_code: {
|
|
12988
13126
|
description:
|
|
12989
13127
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12999,6 +13137,7 @@ export default {
|
|
|
12999
13137
|
{
|
|
13000
13138
|
description: 'Invalid code length for August lock.',
|
|
13001
13139
|
properties: {
|
|
13140
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13002
13141
|
error_code: {
|
|
13003
13142
|
description:
|
|
13004
13143
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13015,6 +13154,7 @@ export default {
|
|
|
13015
13154
|
description:
|
|
13016
13155
|
'Access code has not yet been fully moved to the device.',
|
|
13017
13156
|
properties: {
|
|
13157
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13018
13158
|
error_code: {
|
|
13019
13159
|
description:
|
|
13020
13160
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13030,6 +13170,7 @@ export default {
|
|
|
13030
13170
|
{
|
|
13031
13171
|
description: 'All access code slots on the device are full.',
|
|
13032
13172
|
properties: {
|
|
13173
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13033
13174
|
error_code: {
|
|
13034
13175
|
description:
|
|
13035
13176
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13045,6 +13186,7 @@ export default {
|
|
|
13045
13186
|
{
|
|
13046
13187
|
description: 'August lock is missing a keypad.',
|
|
13047
13188
|
properties: {
|
|
13189
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13048
13190
|
error_code: {
|
|
13049
13191
|
description:
|
|
13050
13192
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13057,13 +13199,30 @@ export default {
|
|
|
13057
13199
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
13058
13200
|
type: 'object',
|
|
13059
13201
|
},
|
|
13202
|
+
{
|
|
13203
|
+
description: 'August lock is temporarily offline.',
|
|
13204
|
+
properties: {
|
|
13205
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13206
|
+
error_code: {
|
|
13207
|
+
description:
|
|
13208
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13209
|
+
enum: ['august_lock_temporarily_offline'],
|
|
13210
|
+
type: 'string',
|
|
13211
|
+
},
|
|
13212
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
13213
|
+
message: { type: 'string' },
|
|
13214
|
+
},
|
|
13215
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
13216
|
+
type: 'object',
|
|
13217
|
+
},
|
|
13060
13218
|
{
|
|
13061
13219
|
description: 'Salto site user is not subscribed.',
|
|
13062
13220
|
properties: {
|
|
13221
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13063
13222
|
error_code: {
|
|
13064
13223
|
description:
|
|
13065
13224
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13066
|
-
enum: ['
|
|
13225
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
13067
13226
|
type: 'string',
|
|
13068
13227
|
},
|
|
13069
13228
|
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
@@ -13076,6 +13235,7 @@ export default {
|
|
|
13076
13235
|
description:
|
|
13077
13236
|
'Access code has not yet been fully moved to the device.',
|
|
13078
13237
|
properties: {
|
|
13238
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13079
13239
|
error_code: {
|
|
13080
13240
|
description:
|
|
13081
13241
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13091,6 +13251,7 @@ export default {
|
|
|
13091
13251
|
{
|
|
13092
13252
|
description: 'No free positions available on the device.',
|
|
13093
13253
|
properties: {
|
|
13254
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13094
13255
|
error_code: {
|
|
13095
13256
|
description:
|
|
13096
13257
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13103,6 +13264,54 @@ export default {
|
|
|
13103
13264
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
13104
13265
|
type: 'object',
|
|
13105
13266
|
},
|
|
13267
|
+
{
|
|
13268
|
+
description: 'Duplicate access code name detected.',
|
|
13269
|
+
properties: {
|
|
13270
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13271
|
+
error_code: {
|
|
13272
|
+
description:
|
|
13273
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13274
|
+
enum: ['wyze_duplicate_code_name'],
|
|
13275
|
+
type: 'string',
|
|
13276
|
+
},
|
|
13277
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
13278
|
+
message: { type: 'string' },
|
|
13279
|
+
},
|
|
13280
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
13281
|
+
type: 'object',
|
|
13282
|
+
},
|
|
13283
|
+
{
|
|
13284
|
+
description: 'Potential duplicate access code detected.',
|
|
13285
|
+
properties: {
|
|
13286
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13287
|
+
error_code: {
|
|
13288
|
+
description:
|
|
13289
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13290
|
+
enum: ['wyze_potential_duplicate_code'],
|
|
13291
|
+
type: 'string',
|
|
13292
|
+
},
|
|
13293
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
13294
|
+
message: { type: 'string' },
|
|
13295
|
+
},
|
|
13296
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
13297
|
+
type: 'object',
|
|
13298
|
+
},
|
|
13299
|
+
{
|
|
13300
|
+
description: 'No valid user level for Oracode.',
|
|
13301
|
+
properties: {
|
|
13302
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13303
|
+
error_code: {
|
|
13304
|
+
description:
|
|
13305
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13306
|
+
enum: ['dormakaba_oracode_no_valid_user_level'],
|
|
13307
|
+
type: 'string',
|
|
13308
|
+
},
|
|
13309
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
13310
|
+
message: { type: 'string' },
|
|
13311
|
+
},
|
|
13312
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
13313
|
+
type: 'object',
|
|
13314
|
+
},
|
|
13106
13315
|
{
|
|
13107
13316
|
description: 'Account is disconnected',
|
|
13108
13317
|
properties: {
|
|
@@ -13449,6 +13658,7 @@ export default {
|
|
|
13449
13658
|
{
|
|
13450
13659
|
description: 'Failed to set code on Smart Things device.',
|
|
13451
13660
|
properties: {
|
|
13661
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13452
13662
|
message: { type: 'string' },
|
|
13453
13663
|
warning_code: {
|
|
13454
13664
|
description:
|
|
@@ -13463,6 +13673,7 @@ export default {
|
|
|
13463
13673
|
{
|
|
13464
13674
|
description: 'Duplicate access code detected.',
|
|
13465
13675
|
properties: {
|
|
13676
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13466
13677
|
message: { type: 'string' },
|
|
13467
13678
|
warning_code: {
|
|
13468
13679
|
description:
|
|
@@ -13478,6 +13689,7 @@ export default {
|
|
|
13478
13689
|
description:
|
|
13479
13690
|
'Received an error when attempting to create this code.',
|
|
13480
13691
|
properties: {
|
|
13692
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13481
13693
|
message: { type: 'string' },
|
|
13482
13694
|
warning_code: {
|
|
13483
13695
|
description:
|
|
@@ -13489,25 +13701,11 @@ export default {
|
|
|
13489
13701
|
required: ['message', 'warning_code'],
|
|
13490
13702
|
type: 'object',
|
|
13491
13703
|
},
|
|
13492
|
-
{
|
|
13493
|
-
description:
|
|
13494
|
-
'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
13495
|
-
properties: {
|
|
13496
|
-
message: { type: 'string' },
|
|
13497
|
-
warning_code: {
|
|
13498
|
-
description:
|
|
13499
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13500
|
-
enum: ['salto_office_mode'],
|
|
13501
|
-
type: 'string',
|
|
13502
|
-
},
|
|
13503
|
-
},
|
|
13504
|
-
required: ['message', 'warning_code'],
|
|
13505
|
-
type: 'object',
|
|
13506
|
-
},
|
|
13507
13704
|
{
|
|
13508
13705
|
description:
|
|
13509
13706
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
13510
13707
|
properties: {
|
|
13708
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13511
13709
|
message: { type: 'string' },
|
|
13512
13710
|
warning_code: {
|
|
13513
13711
|
description:
|
|
@@ -13522,6 +13720,7 @@ export default {
|
|
|
13522
13720
|
{
|
|
13523
13721
|
description: 'Delay in setting code on device.',
|
|
13524
13722
|
properties: {
|
|
13723
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13525
13724
|
message: { type: 'string' },
|
|
13526
13725
|
warning_code: {
|
|
13527
13726
|
description:
|
|
@@ -13536,6 +13735,7 @@ export default {
|
|
|
13536
13735
|
{
|
|
13537
13736
|
description: 'Delay in removing code from device.',
|
|
13538
13737
|
properties: {
|
|
13738
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13539
13739
|
message: { type: 'string' },
|
|
13540
13740
|
warning_code: {
|
|
13541
13741
|
description:
|
|
@@ -13551,6 +13751,7 @@ export default {
|
|
|
13551
13751
|
description:
|
|
13552
13752
|
'Third party integration detected that may cause access codes to fail.',
|
|
13553
13753
|
properties: {
|
|
13754
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13554
13755
|
message: { type: 'string' },
|
|
13555
13756
|
warning_code: {
|
|
13556
13757
|
description:
|
|
@@ -13566,6 +13767,7 @@ export default {
|
|
|
13566
13767
|
description:
|
|
13567
13768
|
'Access code has not yet been fully moved to the device.',
|
|
13568
13769
|
properties: {
|
|
13770
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13569
13771
|
message: { type: 'string' },
|
|
13570
13772
|
warning_code: {
|
|
13571
13773
|
description:
|
|
@@ -13577,9 +13779,25 @@ export default {
|
|
|
13577
13779
|
required: ['message', 'warning_code'],
|
|
13578
13780
|
type: 'object',
|
|
13579
13781
|
},
|
|
13782
|
+
{
|
|
13783
|
+
description: 'August lock is temporarily offline.',
|
|
13784
|
+
properties: {
|
|
13785
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13786
|
+
message: { type: 'string' },
|
|
13787
|
+
warning_code: {
|
|
13788
|
+
description:
|
|
13789
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13790
|
+
enum: ['august_lock_temporarily_offline'],
|
|
13791
|
+
type: 'string',
|
|
13792
|
+
},
|
|
13793
|
+
},
|
|
13794
|
+
required: ['message', 'warning_code'],
|
|
13795
|
+
type: 'object',
|
|
13796
|
+
},
|
|
13580
13797
|
{
|
|
13581
13798
|
description: 'Algopins must be used within 24 hours.',
|
|
13582
13799
|
properties: {
|
|
13800
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13583
13801
|
message: { type: 'string' },
|
|
13584
13802
|
warning_code: {
|
|
13585
13803
|
description:
|
|
@@ -13595,6 +13813,7 @@ export default {
|
|
|
13595
13813
|
description:
|
|
13596
13814
|
'Management was transferred to another workspace.',
|
|
13597
13815
|
properties: {
|
|
13816
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13598
13817
|
message: { type: 'string' },
|
|
13599
13818
|
warning_code: {
|
|
13600
13819
|
description:
|
|
@@ -13610,6 +13829,7 @@ export default {
|
|
|
13610
13829
|
description:
|
|
13611
13830
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
13612
13831
|
properties: {
|
|
13832
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13613
13833
|
message: { type: 'string' },
|
|
13614
13834
|
warning_code: {
|
|
13615
13835
|
description:
|