@seamapi/types 1.363.0 → 1.363.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +101 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +700 -2
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1097 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +67 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +155 -0
- package/lib/seam/connect/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +62 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +279 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +79 -0
- package/src/lib/seam/connect/openapi.ts +62 -0
- package/src/lib/seam/connect/route-types.ts +279 -0
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ import { device_and_connected_account_error_options } from '../devices/index.js'
|
|
|
5
5
|
const common_access_code_error = z.object({
|
|
6
6
|
message: z.string(),
|
|
7
7
|
is_access_code_error: z.literal(true),
|
|
8
|
+
created_at: z.string().datetime().optional(),
|
|
8
9
|
})
|
|
9
10
|
|
|
10
11
|
const error_code_description =
|
|
@@ -192,8 +193,58 @@ const access_code_error = z.discriminatedUnion('error_code', [
|
|
|
192
193
|
|
|
193
194
|
export type AccessCodeError = z.infer<typeof access_code_error>
|
|
194
195
|
|
|
196
|
+
const access_code_error_map = z.object({
|
|
197
|
+
smartthings_failed_to_set_access_code_error:
|
|
198
|
+
smartthings_failed_to_set_access_code_error.optional().nullable(),
|
|
199
|
+
smartthings_failed_to_set_after_multiple_retries:
|
|
200
|
+
smartthings_failed_to_set_after_multiple_retries.optional().nullable(),
|
|
201
|
+
failed_to_set_on_device: failed_to_set_on_device.optional().nullable(),
|
|
202
|
+
failed_to_remove_from_device: failed_to_remove_from_device
|
|
203
|
+
.optional()
|
|
204
|
+
.nullable(),
|
|
205
|
+
duplicate_code_on_device: duplicate_code_on_device.optional().nullable(),
|
|
206
|
+
duplicate_code_attempt_prevented: duplicate_code_attempt_prevented
|
|
207
|
+
.optional()
|
|
208
|
+
.nullable(),
|
|
209
|
+
igloohome_bridge_too_many_pending_jobs: igloohome_bridge_too_many_pending_jobs
|
|
210
|
+
.optional()
|
|
211
|
+
.nullable(),
|
|
212
|
+
igloohome_bridge_offline: igloohome_bridge_offline.optional().nullable(),
|
|
213
|
+
igloohome_offline_access_code_no_variance_available:
|
|
214
|
+
igloohome_offline_access_code_no_variance_available.optional().nullable(),
|
|
215
|
+
kwikset_unable_to_confirm_code: kwikset_unable_to_confirm_code
|
|
216
|
+
.optional()
|
|
217
|
+
.nullable(),
|
|
218
|
+
kwikset_unable_to_confirm_deletion: kwikset_unable_to_confirm_deletion
|
|
219
|
+
.optional()
|
|
220
|
+
.nullable(),
|
|
221
|
+
code_modified_external_to_seam_error: code_modified_external_to_seam_error
|
|
222
|
+
.optional()
|
|
223
|
+
.nullable(),
|
|
224
|
+
august_lock_invalid_code_length: august_lock_invalid_code_length
|
|
225
|
+
.optional()
|
|
226
|
+
.nullable(),
|
|
227
|
+
august_device_programming_delay_error: august_device_programming_delay_error
|
|
228
|
+
.optional()
|
|
229
|
+
.nullable(),
|
|
230
|
+
august_device_slots_full: august_device_slots_full.optional().nullable(),
|
|
231
|
+
august_lock_missing_keypad: august_lock_missing_keypad.optional().nullable(),
|
|
232
|
+
salto_site_user_not_subscribed: salto_site_user_not_subscribed
|
|
233
|
+
.optional()
|
|
234
|
+
.nullable(),
|
|
235
|
+
hubitat_device_programming_delay: hubitat_device_programming_delay
|
|
236
|
+
.optional()
|
|
237
|
+
.nullable(),
|
|
238
|
+
hubitat_no_free_positions_available: hubitat_no_free_positions_available
|
|
239
|
+
.optional()
|
|
240
|
+
.nullable(),
|
|
241
|
+
})
|
|
242
|
+
|
|
243
|
+
export type AccessCodeErrorMap = z.infer<typeof access_code_error_map>
|
|
244
|
+
|
|
195
245
|
const common_access_code_warning = z.object({
|
|
196
246
|
message: z.string(),
|
|
247
|
+
created_at: z.string().datetime().optional(),
|
|
197
248
|
})
|
|
198
249
|
|
|
199
250
|
const warning_code_description =
|
|
@@ -316,6 +367,34 @@ const access_code_warning = z.discriminatedUnion('warning_code', [
|
|
|
316
367
|
|
|
317
368
|
export type AccessCodeWarning = z.infer<typeof access_code_warning>
|
|
318
369
|
|
|
370
|
+
const access_code_warning_map = z.object({
|
|
371
|
+
smartthings_failed_to_set_access_code_warning:
|
|
372
|
+
smartthings_failed_to_set_access_code_warning.optional().nullable(),
|
|
373
|
+
schlage_detected_duplicate: schlage_detected_duplicate.optional().nullable(),
|
|
374
|
+
schlage_creation_outage: schlage_creation_outage.optional().nullable(),
|
|
375
|
+
salto_office_mode: salto_office_mode.optional().nullable(),
|
|
376
|
+
code_modified_external_to_seam_warning: code_modified_external_to_seam_warning
|
|
377
|
+
.optional()
|
|
378
|
+
.nullable(),
|
|
379
|
+
delay_in_setting_on_device: delay_in_setting_on_device.optional().nullable(),
|
|
380
|
+
delay_in_removing_from_device: delay_in_removing_from_device
|
|
381
|
+
.optional()
|
|
382
|
+
.nullable(),
|
|
383
|
+
third_party_integration_detected: third_party_integration_detected
|
|
384
|
+
.optional()
|
|
385
|
+
.nullable(),
|
|
386
|
+
august_device_programming_delay_warning:
|
|
387
|
+
august_device_programming_delay_warning.optional().nullable(),
|
|
388
|
+
igloo_algopin_must_be_used_within_24_hours:
|
|
389
|
+
igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
|
|
390
|
+
management_transferred: management_transferred.optional().nullable(),
|
|
391
|
+
kwikset_unable_to_confirm_code_warning: kwikset_unable_to_confirm_code_warning
|
|
392
|
+
.optional()
|
|
393
|
+
.nullable(),
|
|
394
|
+
})
|
|
395
|
+
|
|
396
|
+
export type AccessCodeWarningMap = z.infer<typeof access_code_warning_map>
|
|
397
|
+
|
|
319
398
|
export const access_code = z.object({
|
|
320
399
|
common_code_key: z
|
|
321
400
|
.string()
|
|
@@ -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.',
|
|
@@ -79,6 +81,7 @@ export default {
|
|
|
79
81
|
{
|
|
80
82
|
description: 'Failed to set code on device.',
|
|
81
83
|
properties: {
|
|
84
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
82
85
|
error_code: {
|
|
83
86
|
description:
|
|
84
87
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -94,6 +97,7 @@ export default {
|
|
|
94
97
|
{
|
|
95
98
|
description: 'Failed to remove code from device.',
|
|
96
99
|
properties: {
|
|
100
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
97
101
|
error_code: {
|
|
98
102
|
description:
|
|
99
103
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -109,6 +113,7 @@ export default {
|
|
|
109
113
|
{
|
|
110
114
|
description: 'Duplicate access code detected on device.',
|
|
111
115
|
properties: {
|
|
116
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
112
117
|
error_code: {
|
|
113
118
|
description:
|
|
114
119
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -125,6 +130,7 @@ export default {
|
|
|
125
130
|
description:
|
|
126
131
|
'An attempt to modify this access code was prevented.',
|
|
127
132
|
properties: {
|
|
133
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
128
134
|
error_code: {
|
|
129
135
|
description:
|
|
130
136
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -141,6 +147,7 @@ export default {
|
|
|
141
147
|
description:
|
|
142
148
|
'Igloohome bridge has too many pending jobs in the queue.',
|
|
143
149
|
properties: {
|
|
150
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
144
151
|
error_code: {
|
|
145
152
|
description:
|
|
146
153
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -156,6 +163,7 @@ export default {
|
|
|
156
163
|
{
|
|
157
164
|
description: 'Igloohome bridge is offline.',
|
|
158
165
|
properties: {
|
|
166
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
159
167
|
error_code: {
|
|
160
168
|
description:
|
|
161
169
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -171,6 +179,7 @@ export default {
|
|
|
171
179
|
{
|
|
172
180
|
description: 'Lock as reached max amount of codes.',
|
|
173
181
|
properties: {
|
|
182
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
174
183
|
error_code: {
|
|
175
184
|
description:
|
|
176
185
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -189,6 +198,7 @@ export default {
|
|
|
189
198
|
description:
|
|
190
199
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
191
200
|
properties: {
|
|
201
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
192
202
|
error_code: {
|
|
193
203
|
description:
|
|
194
204
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -205,6 +215,7 @@ export default {
|
|
|
205
215
|
description:
|
|
206
216
|
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
207
217
|
properties: {
|
|
218
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
208
219
|
error_code: {
|
|
209
220
|
description:
|
|
210
221
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -221,6 +232,7 @@ export default {
|
|
|
221
232
|
description:
|
|
222
233
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
223
234
|
properties: {
|
|
235
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
224
236
|
error_code: {
|
|
225
237
|
description:
|
|
226
238
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -236,6 +248,7 @@ export default {
|
|
|
236
248
|
{
|
|
237
249
|
description: 'Invalid code length for August lock.',
|
|
238
250
|
properties: {
|
|
251
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
239
252
|
error_code: {
|
|
240
253
|
description:
|
|
241
254
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -252,6 +265,7 @@ export default {
|
|
|
252
265
|
description:
|
|
253
266
|
'Access code has not yet been fully moved to the device.',
|
|
254
267
|
properties: {
|
|
268
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
255
269
|
error_code: {
|
|
256
270
|
description:
|
|
257
271
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -267,6 +281,7 @@ export default {
|
|
|
267
281
|
{
|
|
268
282
|
description: 'All access code slots on the device are full.',
|
|
269
283
|
properties: {
|
|
284
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
270
285
|
error_code: {
|
|
271
286
|
description:
|
|
272
287
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -282,6 +297,7 @@ export default {
|
|
|
282
297
|
{
|
|
283
298
|
description: 'August lock is missing a keypad.',
|
|
284
299
|
properties: {
|
|
300
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
285
301
|
error_code: {
|
|
286
302
|
description:
|
|
287
303
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -297,6 +313,7 @@ export default {
|
|
|
297
313
|
{
|
|
298
314
|
description: 'Salto site user is not subscribed.',
|
|
299
315
|
properties: {
|
|
316
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
300
317
|
error_code: {
|
|
301
318
|
description:
|
|
302
319
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -313,6 +330,7 @@ export default {
|
|
|
313
330
|
description:
|
|
314
331
|
'Access code has not yet been fully moved to the device.',
|
|
315
332
|
properties: {
|
|
333
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
316
334
|
error_code: {
|
|
317
335
|
description:
|
|
318
336
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -328,6 +346,7 @@ export default {
|
|
|
328
346
|
{
|
|
329
347
|
description: 'No free positions available on the device.',
|
|
330
348
|
properties: {
|
|
349
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
331
350
|
error_code: {
|
|
332
351
|
description:
|
|
333
352
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -736,6 +755,7 @@ export default {
|
|
|
736
755
|
{
|
|
737
756
|
description: 'Failed to set code on Smart Things device.',
|
|
738
757
|
properties: {
|
|
758
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
739
759
|
message: { type: 'string' },
|
|
740
760
|
warning_code: {
|
|
741
761
|
description:
|
|
@@ -750,6 +770,7 @@ export default {
|
|
|
750
770
|
{
|
|
751
771
|
description: 'Duplicate access code detected.',
|
|
752
772
|
properties: {
|
|
773
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
753
774
|
message: { type: 'string' },
|
|
754
775
|
warning_code: {
|
|
755
776
|
description:
|
|
@@ -765,6 +786,7 @@ export default {
|
|
|
765
786
|
description:
|
|
766
787
|
'Received an error when attempting to create this code.',
|
|
767
788
|
properties: {
|
|
789
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
768
790
|
message: { type: 'string' },
|
|
769
791
|
warning_code: {
|
|
770
792
|
description:
|
|
@@ -780,6 +802,7 @@ export default {
|
|
|
780
802
|
description:
|
|
781
803
|
'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
782
804
|
properties: {
|
|
805
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
783
806
|
message: { type: 'string' },
|
|
784
807
|
warning_code: {
|
|
785
808
|
description:
|
|
@@ -795,6 +818,7 @@ export default {
|
|
|
795
818
|
description:
|
|
796
819
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
797
820
|
properties: {
|
|
821
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
798
822
|
message: { type: 'string' },
|
|
799
823
|
warning_code: {
|
|
800
824
|
description:
|
|
@@ -809,6 +833,7 @@ export default {
|
|
|
809
833
|
{
|
|
810
834
|
description: 'Delay in setting code on device.',
|
|
811
835
|
properties: {
|
|
836
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
812
837
|
message: { type: 'string' },
|
|
813
838
|
warning_code: {
|
|
814
839
|
description:
|
|
@@ -823,6 +848,7 @@ export default {
|
|
|
823
848
|
{
|
|
824
849
|
description: 'Delay in removing code from device.',
|
|
825
850
|
properties: {
|
|
851
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
826
852
|
message: { type: 'string' },
|
|
827
853
|
warning_code: {
|
|
828
854
|
description:
|
|
@@ -838,6 +864,7 @@ export default {
|
|
|
838
864
|
description:
|
|
839
865
|
'Third party integration detected that may cause access codes to fail.',
|
|
840
866
|
properties: {
|
|
867
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
841
868
|
message: { type: 'string' },
|
|
842
869
|
warning_code: {
|
|
843
870
|
description:
|
|
@@ -853,6 +880,7 @@ export default {
|
|
|
853
880
|
description:
|
|
854
881
|
'Access code has not yet been fully moved to the device.',
|
|
855
882
|
properties: {
|
|
883
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
856
884
|
message: { type: 'string' },
|
|
857
885
|
warning_code: {
|
|
858
886
|
description:
|
|
@@ -867,6 +895,7 @@ export default {
|
|
|
867
895
|
{
|
|
868
896
|
description: 'Algopins must be used within 24 hours.',
|
|
869
897
|
properties: {
|
|
898
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
870
899
|
message: { type: 'string' },
|
|
871
900
|
warning_code: {
|
|
872
901
|
description:
|
|
@@ -882,6 +911,7 @@ export default {
|
|
|
882
911
|
description:
|
|
883
912
|
'Management was transferred to another workspace.',
|
|
884
913
|
properties: {
|
|
914
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
885
915
|
message: { type: 'string' },
|
|
886
916
|
warning_code: {
|
|
887
917
|
description:
|
|
@@ -897,6 +927,7 @@ export default {
|
|
|
897
927
|
description:
|
|
898
928
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
899
929
|
properties: {
|
|
930
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
900
931
|
message: { type: 'string' },
|
|
901
932
|
warning_code: {
|
|
902
933
|
description:
|
|
@@ -12810,6 +12841,7 @@ export default {
|
|
|
12810
12841
|
{
|
|
12811
12842
|
description: 'Failed to set code on Smart Things device.',
|
|
12812
12843
|
properties: {
|
|
12844
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12813
12845
|
error_code: {
|
|
12814
12846
|
description:
|
|
12815
12847
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12825,6 +12857,7 @@ export default {
|
|
|
12825
12857
|
{
|
|
12826
12858
|
description: 'Failed to set code after multiple retries.',
|
|
12827
12859
|
properties: {
|
|
12860
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12828
12861
|
error_code: {
|
|
12829
12862
|
description:
|
|
12830
12863
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12842,6 +12875,7 @@ export default {
|
|
|
12842
12875
|
{
|
|
12843
12876
|
description: 'Failed to set code on device.',
|
|
12844
12877
|
properties: {
|
|
12878
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12845
12879
|
error_code: {
|
|
12846
12880
|
description:
|
|
12847
12881
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12857,6 +12891,7 @@ export default {
|
|
|
12857
12891
|
{
|
|
12858
12892
|
description: 'Failed to remove code from device.',
|
|
12859
12893
|
properties: {
|
|
12894
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12860
12895
|
error_code: {
|
|
12861
12896
|
description:
|
|
12862
12897
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12872,6 +12907,7 @@ export default {
|
|
|
12872
12907
|
{
|
|
12873
12908
|
description: 'Duplicate access code detected on device.',
|
|
12874
12909
|
properties: {
|
|
12910
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12875
12911
|
error_code: {
|
|
12876
12912
|
description:
|
|
12877
12913
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12888,6 +12924,7 @@ export default {
|
|
|
12888
12924
|
description:
|
|
12889
12925
|
'An attempt to modify this access code was prevented.',
|
|
12890
12926
|
properties: {
|
|
12927
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12891
12928
|
error_code: {
|
|
12892
12929
|
description:
|
|
12893
12930
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12904,6 +12941,7 @@ export default {
|
|
|
12904
12941
|
description:
|
|
12905
12942
|
'Igloohome bridge has too many pending jobs in the queue.',
|
|
12906
12943
|
properties: {
|
|
12944
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12907
12945
|
error_code: {
|
|
12908
12946
|
description:
|
|
12909
12947
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12919,6 +12957,7 @@ export default {
|
|
|
12919
12957
|
{
|
|
12920
12958
|
description: 'Igloohome bridge is offline.',
|
|
12921
12959
|
properties: {
|
|
12960
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12922
12961
|
error_code: {
|
|
12923
12962
|
description:
|
|
12924
12963
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12934,6 +12973,7 @@ export default {
|
|
|
12934
12973
|
{
|
|
12935
12974
|
description: 'Lock as reached max amount of codes.',
|
|
12936
12975
|
properties: {
|
|
12976
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12937
12977
|
error_code: {
|
|
12938
12978
|
description:
|
|
12939
12979
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12952,6 +12992,7 @@ export default {
|
|
|
12952
12992
|
description:
|
|
12953
12993
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
12954
12994
|
properties: {
|
|
12995
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12955
12996
|
error_code: {
|
|
12956
12997
|
description:
|
|
12957
12998
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12968,6 +13009,7 @@ export default {
|
|
|
12968
13009
|
description:
|
|
12969
13010
|
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
12970
13011
|
properties: {
|
|
13012
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12971
13013
|
error_code: {
|
|
12972
13014
|
description:
|
|
12973
13015
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12984,6 +13026,7 @@ export default {
|
|
|
12984
13026
|
description:
|
|
12985
13027
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
12986
13028
|
properties: {
|
|
13029
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12987
13030
|
error_code: {
|
|
12988
13031
|
description:
|
|
12989
13032
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12999,6 +13042,7 @@ export default {
|
|
|
12999
13042
|
{
|
|
13000
13043
|
description: 'Invalid code length for August lock.',
|
|
13001
13044
|
properties: {
|
|
13045
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13002
13046
|
error_code: {
|
|
13003
13047
|
description:
|
|
13004
13048
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13015,6 +13059,7 @@ export default {
|
|
|
13015
13059
|
description:
|
|
13016
13060
|
'Access code has not yet been fully moved to the device.',
|
|
13017
13061
|
properties: {
|
|
13062
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13018
13063
|
error_code: {
|
|
13019
13064
|
description:
|
|
13020
13065
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13030,6 +13075,7 @@ export default {
|
|
|
13030
13075
|
{
|
|
13031
13076
|
description: 'All access code slots on the device are full.',
|
|
13032
13077
|
properties: {
|
|
13078
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13033
13079
|
error_code: {
|
|
13034
13080
|
description:
|
|
13035
13081
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13045,6 +13091,7 @@ export default {
|
|
|
13045
13091
|
{
|
|
13046
13092
|
description: 'August lock is missing a keypad.',
|
|
13047
13093
|
properties: {
|
|
13094
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13048
13095
|
error_code: {
|
|
13049
13096
|
description:
|
|
13050
13097
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13060,6 +13107,7 @@ export default {
|
|
|
13060
13107
|
{
|
|
13061
13108
|
description: 'Salto site user is not subscribed.',
|
|
13062
13109
|
properties: {
|
|
13110
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13063
13111
|
error_code: {
|
|
13064
13112
|
description:
|
|
13065
13113
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13076,6 +13124,7 @@ export default {
|
|
|
13076
13124
|
description:
|
|
13077
13125
|
'Access code has not yet been fully moved to the device.',
|
|
13078
13126
|
properties: {
|
|
13127
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13079
13128
|
error_code: {
|
|
13080
13129
|
description:
|
|
13081
13130
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13091,6 +13140,7 @@ export default {
|
|
|
13091
13140
|
{
|
|
13092
13141
|
description: 'No free positions available on the device.',
|
|
13093
13142
|
properties: {
|
|
13143
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13094
13144
|
error_code: {
|
|
13095
13145
|
description:
|
|
13096
13146
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13449,6 +13499,7 @@ export default {
|
|
|
13449
13499
|
{
|
|
13450
13500
|
description: 'Failed to set code on Smart Things device.',
|
|
13451
13501
|
properties: {
|
|
13502
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13452
13503
|
message: { type: 'string' },
|
|
13453
13504
|
warning_code: {
|
|
13454
13505
|
description:
|
|
@@ -13463,6 +13514,7 @@ export default {
|
|
|
13463
13514
|
{
|
|
13464
13515
|
description: 'Duplicate access code detected.',
|
|
13465
13516
|
properties: {
|
|
13517
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13466
13518
|
message: { type: 'string' },
|
|
13467
13519
|
warning_code: {
|
|
13468
13520
|
description:
|
|
@@ -13478,6 +13530,7 @@ export default {
|
|
|
13478
13530
|
description:
|
|
13479
13531
|
'Received an error when attempting to create this code.',
|
|
13480
13532
|
properties: {
|
|
13533
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13481
13534
|
message: { type: 'string' },
|
|
13482
13535
|
warning_code: {
|
|
13483
13536
|
description:
|
|
@@ -13493,6 +13546,7 @@ export default {
|
|
|
13493
13546
|
description:
|
|
13494
13547
|
'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
13495
13548
|
properties: {
|
|
13549
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13496
13550
|
message: { type: 'string' },
|
|
13497
13551
|
warning_code: {
|
|
13498
13552
|
description:
|
|
@@ -13508,6 +13562,7 @@ export default {
|
|
|
13508
13562
|
description:
|
|
13509
13563
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
13510
13564
|
properties: {
|
|
13565
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13511
13566
|
message: { type: 'string' },
|
|
13512
13567
|
warning_code: {
|
|
13513
13568
|
description:
|
|
@@ -13522,6 +13577,7 @@ export default {
|
|
|
13522
13577
|
{
|
|
13523
13578
|
description: 'Delay in setting code on device.',
|
|
13524
13579
|
properties: {
|
|
13580
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13525
13581
|
message: { type: 'string' },
|
|
13526
13582
|
warning_code: {
|
|
13527
13583
|
description:
|
|
@@ -13536,6 +13592,7 @@ export default {
|
|
|
13536
13592
|
{
|
|
13537
13593
|
description: 'Delay in removing code from device.',
|
|
13538
13594
|
properties: {
|
|
13595
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13539
13596
|
message: { type: 'string' },
|
|
13540
13597
|
warning_code: {
|
|
13541
13598
|
description:
|
|
@@ -13551,6 +13608,7 @@ export default {
|
|
|
13551
13608
|
description:
|
|
13552
13609
|
'Third party integration detected that may cause access codes to fail.',
|
|
13553
13610
|
properties: {
|
|
13611
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13554
13612
|
message: { type: 'string' },
|
|
13555
13613
|
warning_code: {
|
|
13556
13614
|
description:
|
|
@@ -13566,6 +13624,7 @@ export default {
|
|
|
13566
13624
|
description:
|
|
13567
13625
|
'Access code has not yet been fully moved to the device.',
|
|
13568
13626
|
properties: {
|
|
13627
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13569
13628
|
message: { type: 'string' },
|
|
13570
13629
|
warning_code: {
|
|
13571
13630
|
description:
|
|
@@ -13580,6 +13639,7 @@ export default {
|
|
|
13580
13639
|
{
|
|
13581
13640
|
description: 'Algopins must be used within 24 hours.',
|
|
13582
13641
|
properties: {
|
|
13642
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13583
13643
|
message: { type: 'string' },
|
|
13584
13644
|
warning_code: {
|
|
13585
13645
|
description:
|
|
@@ -13595,6 +13655,7 @@ export default {
|
|
|
13595
13655
|
description:
|
|
13596
13656
|
'Management was transferred to another workspace.',
|
|
13597
13657
|
properties: {
|
|
13658
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13598
13659
|
message: { type: 'string' },
|
|
13599
13660
|
warning_code: {
|
|
13600
13661
|
description:
|
|
@@ -13610,6 +13671,7 @@ export default {
|
|
|
13610
13671
|
description:
|
|
13611
13672
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
13612
13673
|
properties: {
|
|
13674
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13613
13675
|
message: { type: 'string' },
|
|
13614
13676
|
warning_code: {
|
|
13615
13677
|
description:
|