@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
|
@@ -43,6 +43,11 @@ declare const _default: {
|
|
|
43
43
|
oneOf: ({
|
|
44
44
|
description: string;
|
|
45
45
|
properties: {
|
|
46
|
+
created_at: {
|
|
47
|
+
format: string;
|
|
48
|
+
type: string;
|
|
49
|
+
description?: never;
|
|
50
|
+
};
|
|
46
51
|
error_code: {
|
|
47
52
|
description: string;
|
|
48
53
|
enum: string[];
|
|
@@ -55,7 +60,6 @@ declare const _default: {
|
|
|
55
60
|
message: {
|
|
56
61
|
type: string;
|
|
57
62
|
};
|
|
58
|
-
created_at?: never;
|
|
59
63
|
is_connected_account_error?: never;
|
|
60
64
|
is_device_error?: never;
|
|
61
65
|
};
|
|
@@ -212,6 +216,10 @@ declare const _default: {
|
|
|
212
216
|
oneOf: {
|
|
213
217
|
description: string;
|
|
214
218
|
properties: {
|
|
219
|
+
created_at: {
|
|
220
|
+
format: string;
|
|
221
|
+
type: string;
|
|
222
|
+
};
|
|
215
223
|
message: {
|
|
216
224
|
type: string;
|
|
217
225
|
};
|
|
@@ -7482,6 +7490,11 @@ declare const _default: {
|
|
|
7482
7490
|
oneOf: ({
|
|
7483
7491
|
description: string;
|
|
7484
7492
|
properties: {
|
|
7493
|
+
created_at: {
|
|
7494
|
+
format: string;
|
|
7495
|
+
type: string;
|
|
7496
|
+
description?: never;
|
|
7497
|
+
};
|
|
7485
7498
|
error_code: {
|
|
7486
7499
|
description: string;
|
|
7487
7500
|
enum: string[];
|
|
@@ -7494,7 +7507,6 @@ declare const _default: {
|
|
|
7494
7507
|
message: {
|
|
7495
7508
|
type: string;
|
|
7496
7509
|
};
|
|
7497
|
-
created_at?: never;
|
|
7498
7510
|
is_connected_account_error?: never;
|
|
7499
7511
|
is_device_error?: never;
|
|
7500
7512
|
};
|
|
@@ -7615,6 +7627,10 @@ declare const _default: {
|
|
|
7615
7627
|
oneOf: {
|
|
7616
7628
|
description: string;
|
|
7617
7629
|
properties: {
|
|
7630
|
+
created_at: {
|
|
7631
|
+
format: string;
|
|
7632
|
+
type: string;
|
|
7633
|
+
};
|
|
7618
7634
|
message: {
|
|
7619
7635
|
type: string;
|
|
7620
7636
|
};
|
|
@@ -42,6 +42,7 @@ export default {
|
|
|
42
42
|
{
|
|
43
43
|
description: 'Failed to set code on Smart Things device.',
|
|
44
44
|
properties: {
|
|
45
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
45
46
|
error_code: {
|
|
46
47
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
47
48
|
enum: ['smartthings_failed_to_set_access_code'],
|
|
@@ -56,6 +57,7 @@ export default {
|
|
|
56
57
|
{
|
|
57
58
|
description: 'Failed to set code after multiple retries.',
|
|
58
59
|
properties: {
|
|
60
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
59
61
|
error_code: {
|
|
60
62
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
61
63
|
enum: [
|
|
@@ -72,6 +74,7 @@ export default {
|
|
|
72
74
|
{
|
|
73
75
|
description: 'Failed to set code on device.',
|
|
74
76
|
properties: {
|
|
77
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
75
78
|
error_code: {
|
|
76
79
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
77
80
|
enum: ['failed_to_set_on_device'],
|
|
@@ -86,6 +89,7 @@ export default {
|
|
|
86
89
|
{
|
|
87
90
|
description: 'Failed to remove code from device.',
|
|
88
91
|
properties: {
|
|
92
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
89
93
|
error_code: {
|
|
90
94
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
91
95
|
enum: ['failed_to_remove_from_device'],
|
|
@@ -100,6 +104,7 @@ export default {
|
|
|
100
104
|
{
|
|
101
105
|
description: 'Duplicate access code detected on device.',
|
|
102
106
|
properties: {
|
|
107
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
103
108
|
error_code: {
|
|
104
109
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
105
110
|
enum: ['duplicate_code_on_device'],
|
|
@@ -114,6 +119,7 @@ export default {
|
|
|
114
119
|
{
|
|
115
120
|
description: 'An attempt to modify this access code was prevented.',
|
|
116
121
|
properties: {
|
|
122
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
117
123
|
error_code: {
|
|
118
124
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
119
125
|
enum: ['duplicate_code_attempt_prevented'],
|
|
@@ -128,6 +134,7 @@ export default {
|
|
|
128
134
|
{
|
|
129
135
|
description: 'Igloohome bridge has too many pending jobs in the queue.',
|
|
130
136
|
properties: {
|
|
137
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
131
138
|
error_code: {
|
|
132
139
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
133
140
|
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
@@ -142,6 +149,7 @@ export default {
|
|
|
142
149
|
{
|
|
143
150
|
description: 'Igloohome bridge is offline.',
|
|
144
151
|
properties: {
|
|
152
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
145
153
|
error_code: {
|
|
146
154
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
147
155
|
enum: ['igloohome_bridge_offline'],
|
|
@@ -156,6 +164,7 @@ export default {
|
|
|
156
164
|
{
|
|
157
165
|
description: 'Lock as reached max amount of codes.',
|
|
158
166
|
properties: {
|
|
167
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
159
168
|
error_code: {
|
|
160
169
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
161
170
|
enum: [
|
|
@@ -172,6 +181,7 @@ export default {
|
|
|
172
181
|
{
|
|
173
182
|
description: 'Unable to confirm the access code is set on Kwikset device.',
|
|
174
183
|
properties: {
|
|
184
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
175
185
|
error_code: {
|
|
176
186
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
177
187
|
enum: ['kwikset_unable_to_confirm_code'],
|
|
@@ -186,6 +196,7 @@ export default {
|
|
|
186
196
|
{
|
|
187
197
|
description: 'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
188
198
|
properties: {
|
|
199
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
189
200
|
error_code: {
|
|
190
201
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
191
202
|
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
@@ -200,6 +211,7 @@ export default {
|
|
|
200
211
|
{
|
|
201
212
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
202
213
|
properties: {
|
|
214
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
203
215
|
error_code: {
|
|
204
216
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
205
217
|
enum: ['code_modified_external_to_seam'],
|
|
@@ -214,6 +226,7 @@ export default {
|
|
|
214
226
|
{
|
|
215
227
|
description: 'Invalid code length for August lock.',
|
|
216
228
|
properties: {
|
|
229
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
217
230
|
error_code: {
|
|
218
231
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
219
232
|
enum: ['august_lock_invalid_code_length'],
|
|
@@ -228,6 +241,7 @@ export default {
|
|
|
228
241
|
{
|
|
229
242
|
description: 'Access code has not yet been fully moved to the device.',
|
|
230
243
|
properties: {
|
|
244
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
231
245
|
error_code: {
|
|
232
246
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
233
247
|
enum: ['august_device_programming_delay'],
|
|
@@ -242,6 +256,7 @@ export default {
|
|
|
242
256
|
{
|
|
243
257
|
description: 'All access code slots on the device are full.',
|
|
244
258
|
properties: {
|
|
259
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
245
260
|
error_code: {
|
|
246
261
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
247
262
|
enum: ['august_device_slots_full'],
|
|
@@ -256,6 +271,7 @@ export default {
|
|
|
256
271
|
{
|
|
257
272
|
description: 'August lock is missing a keypad.',
|
|
258
273
|
properties: {
|
|
274
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
259
275
|
error_code: {
|
|
260
276
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
261
277
|
enum: ['august_lock_missing_keypad'],
|
|
@@ -270,6 +286,7 @@ export default {
|
|
|
270
286
|
{
|
|
271
287
|
description: 'Salto site user is not subscribed.',
|
|
272
288
|
properties: {
|
|
289
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
273
290
|
error_code: {
|
|
274
291
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
275
292
|
enum: ['salto_site_user_not_subscribed'],
|
|
@@ -284,6 +301,7 @@ export default {
|
|
|
284
301
|
{
|
|
285
302
|
description: 'Access code has not yet been fully moved to the device.',
|
|
286
303
|
properties: {
|
|
304
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
287
305
|
error_code: {
|
|
288
306
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
289
307
|
enum: ['hubitat_device_programming_delay'],
|
|
@@ -298,6 +316,7 @@ export default {
|
|
|
298
316
|
{
|
|
299
317
|
description: 'No free positions available on the device.',
|
|
300
318
|
properties: {
|
|
319
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
301
320
|
error_code: {
|
|
302
321
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
303
322
|
enum: ['hubitat_no_free_positions_available'],
|
|
@@ -678,6 +697,7 @@ export default {
|
|
|
678
697
|
{
|
|
679
698
|
description: 'Failed to set code on Smart Things device.',
|
|
680
699
|
properties: {
|
|
700
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
681
701
|
message: { type: 'string' },
|
|
682
702
|
warning_code: {
|
|
683
703
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -691,6 +711,7 @@ export default {
|
|
|
691
711
|
{
|
|
692
712
|
description: 'Duplicate access code detected.',
|
|
693
713
|
properties: {
|
|
714
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
694
715
|
message: { type: 'string' },
|
|
695
716
|
warning_code: {
|
|
696
717
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -704,6 +725,7 @@ export default {
|
|
|
704
725
|
{
|
|
705
726
|
description: 'Received an error when attempting to create this code.',
|
|
706
727
|
properties: {
|
|
728
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
707
729
|
message: { type: 'string' },
|
|
708
730
|
warning_code: {
|
|
709
731
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -717,6 +739,7 @@ export default {
|
|
|
717
739
|
{
|
|
718
740
|
description: 'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
719
741
|
properties: {
|
|
742
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
720
743
|
message: { type: 'string' },
|
|
721
744
|
warning_code: {
|
|
722
745
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -730,6 +753,7 @@ export default {
|
|
|
730
753
|
{
|
|
731
754
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
732
755
|
properties: {
|
|
756
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
733
757
|
message: { type: 'string' },
|
|
734
758
|
warning_code: {
|
|
735
759
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -743,6 +767,7 @@ export default {
|
|
|
743
767
|
{
|
|
744
768
|
description: 'Delay in setting code on device.',
|
|
745
769
|
properties: {
|
|
770
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
746
771
|
message: { type: 'string' },
|
|
747
772
|
warning_code: {
|
|
748
773
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -756,6 +781,7 @@ export default {
|
|
|
756
781
|
{
|
|
757
782
|
description: 'Delay in removing code from device.',
|
|
758
783
|
properties: {
|
|
784
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
759
785
|
message: { type: 'string' },
|
|
760
786
|
warning_code: {
|
|
761
787
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -769,6 +795,7 @@ export default {
|
|
|
769
795
|
{
|
|
770
796
|
description: 'Third party integration detected that may cause access codes to fail.',
|
|
771
797
|
properties: {
|
|
798
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
772
799
|
message: { type: 'string' },
|
|
773
800
|
warning_code: {
|
|
774
801
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -782,6 +809,7 @@ export default {
|
|
|
782
809
|
{
|
|
783
810
|
description: 'Access code has not yet been fully moved to the device.',
|
|
784
811
|
properties: {
|
|
812
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
785
813
|
message: { type: 'string' },
|
|
786
814
|
warning_code: {
|
|
787
815
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -795,6 +823,7 @@ export default {
|
|
|
795
823
|
{
|
|
796
824
|
description: 'Algopins must be used within 24 hours.',
|
|
797
825
|
properties: {
|
|
826
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
798
827
|
message: { type: 'string' },
|
|
799
828
|
warning_code: {
|
|
800
829
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -808,6 +837,7 @@ export default {
|
|
|
808
837
|
{
|
|
809
838
|
description: 'Management was transferred to another workspace.',
|
|
810
839
|
properties: {
|
|
840
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
811
841
|
message: { type: 'string' },
|
|
812
842
|
warning_code: {
|
|
813
843
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -821,6 +851,7 @@ export default {
|
|
|
821
851
|
{
|
|
822
852
|
description: 'Unable to confirm the access code is set on Kwikset device.',
|
|
823
853
|
properties: {
|
|
854
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
824
855
|
message: { type: 'string' },
|
|
825
856
|
warning_code: {
|
|
826
857
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -11819,6 +11850,7 @@ export default {
|
|
|
11819
11850
|
{
|
|
11820
11851
|
description: 'Failed to set code on Smart Things device.',
|
|
11821
11852
|
properties: {
|
|
11853
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11822
11854
|
error_code: {
|
|
11823
11855
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11824
11856
|
enum: ['smartthings_failed_to_set_access_code'],
|
|
@@ -11833,6 +11865,7 @@ export default {
|
|
|
11833
11865
|
{
|
|
11834
11866
|
description: 'Failed to set code after multiple retries.',
|
|
11835
11867
|
properties: {
|
|
11868
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11836
11869
|
error_code: {
|
|
11837
11870
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11838
11871
|
enum: [
|
|
@@ -11849,6 +11882,7 @@ export default {
|
|
|
11849
11882
|
{
|
|
11850
11883
|
description: 'Failed to set code on device.',
|
|
11851
11884
|
properties: {
|
|
11885
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11852
11886
|
error_code: {
|
|
11853
11887
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11854
11888
|
enum: ['failed_to_set_on_device'],
|
|
@@ -11863,6 +11897,7 @@ export default {
|
|
|
11863
11897
|
{
|
|
11864
11898
|
description: 'Failed to remove code from device.',
|
|
11865
11899
|
properties: {
|
|
11900
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11866
11901
|
error_code: {
|
|
11867
11902
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11868
11903
|
enum: ['failed_to_remove_from_device'],
|
|
@@ -11877,6 +11912,7 @@ export default {
|
|
|
11877
11912
|
{
|
|
11878
11913
|
description: 'Duplicate access code detected on device.',
|
|
11879
11914
|
properties: {
|
|
11915
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11880
11916
|
error_code: {
|
|
11881
11917
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11882
11918
|
enum: ['duplicate_code_on_device'],
|
|
@@ -11891,6 +11927,7 @@ export default {
|
|
|
11891
11927
|
{
|
|
11892
11928
|
description: 'An attempt to modify this access code was prevented.',
|
|
11893
11929
|
properties: {
|
|
11930
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11894
11931
|
error_code: {
|
|
11895
11932
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11896
11933
|
enum: ['duplicate_code_attempt_prevented'],
|
|
@@ -11905,6 +11942,7 @@ export default {
|
|
|
11905
11942
|
{
|
|
11906
11943
|
description: 'Igloohome bridge has too many pending jobs in the queue.',
|
|
11907
11944
|
properties: {
|
|
11945
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11908
11946
|
error_code: {
|
|
11909
11947
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11910
11948
|
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
@@ -11919,6 +11957,7 @@ export default {
|
|
|
11919
11957
|
{
|
|
11920
11958
|
description: 'Igloohome bridge is offline.',
|
|
11921
11959
|
properties: {
|
|
11960
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11922
11961
|
error_code: {
|
|
11923
11962
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11924
11963
|
enum: ['igloohome_bridge_offline'],
|
|
@@ -11933,6 +11972,7 @@ export default {
|
|
|
11933
11972
|
{
|
|
11934
11973
|
description: 'Lock as reached max amount of codes.',
|
|
11935
11974
|
properties: {
|
|
11975
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11936
11976
|
error_code: {
|
|
11937
11977
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11938
11978
|
enum: [
|
|
@@ -11949,6 +11989,7 @@ export default {
|
|
|
11949
11989
|
{
|
|
11950
11990
|
description: 'Unable to confirm the access code is set on Kwikset device.',
|
|
11951
11991
|
properties: {
|
|
11992
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11952
11993
|
error_code: {
|
|
11953
11994
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11954
11995
|
enum: ['kwikset_unable_to_confirm_code'],
|
|
@@ -11963,6 +12004,7 @@ export default {
|
|
|
11963
12004
|
{
|
|
11964
12005
|
description: 'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
11965
12006
|
properties: {
|
|
12007
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11966
12008
|
error_code: {
|
|
11967
12009
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11968
12010
|
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
@@ -11977,6 +12019,7 @@ export default {
|
|
|
11977
12019
|
{
|
|
11978
12020
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
11979
12021
|
properties: {
|
|
12022
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11980
12023
|
error_code: {
|
|
11981
12024
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11982
12025
|
enum: ['code_modified_external_to_seam'],
|
|
@@ -11991,6 +12034,7 @@ export default {
|
|
|
11991
12034
|
{
|
|
11992
12035
|
description: 'Invalid code length for August lock.',
|
|
11993
12036
|
properties: {
|
|
12037
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11994
12038
|
error_code: {
|
|
11995
12039
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11996
12040
|
enum: ['august_lock_invalid_code_length'],
|
|
@@ -12005,6 +12049,7 @@ export default {
|
|
|
12005
12049
|
{
|
|
12006
12050
|
description: 'Access code has not yet been fully moved to the device.',
|
|
12007
12051
|
properties: {
|
|
12052
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12008
12053
|
error_code: {
|
|
12009
12054
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12010
12055
|
enum: ['august_device_programming_delay'],
|
|
@@ -12019,6 +12064,7 @@ export default {
|
|
|
12019
12064
|
{
|
|
12020
12065
|
description: 'All access code slots on the device are full.',
|
|
12021
12066
|
properties: {
|
|
12067
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12022
12068
|
error_code: {
|
|
12023
12069
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12024
12070
|
enum: ['august_device_slots_full'],
|
|
@@ -12033,6 +12079,7 @@ export default {
|
|
|
12033
12079
|
{
|
|
12034
12080
|
description: 'August lock is missing a keypad.',
|
|
12035
12081
|
properties: {
|
|
12082
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12036
12083
|
error_code: {
|
|
12037
12084
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12038
12085
|
enum: ['august_lock_missing_keypad'],
|
|
@@ -12047,6 +12094,7 @@ export default {
|
|
|
12047
12094
|
{
|
|
12048
12095
|
description: 'Salto site user is not subscribed.',
|
|
12049
12096
|
properties: {
|
|
12097
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12050
12098
|
error_code: {
|
|
12051
12099
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12052
12100
|
enum: ['salto_site_user_not_subscribed'],
|
|
@@ -12061,6 +12109,7 @@ export default {
|
|
|
12061
12109
|
{
|
|
12062
12110
|
description: 'Access code has not yet been fully moved to the device.',
|
|
12063
12111
|
properties: {
|
|
12112
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12064
12113
|
error_code: {
|
|
12065
12114
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12066
12115
|
enum: ['hubitat_device_programming_delay'],
|
|
@@ -12075,6 +12124,7 @@ export default {
|
|
|
12075
12124
|
{
|
|
12076
12125
|
description: 'No free positions available on the device.',
|
|
12077
12126
|
properties: {
|
|
12127
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12078
12128
|
error_code: {
|
|
12079
12129
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12080
12130
|
enum: ['hubitat_no_free_positions_available'],
|
|
@@ -12413,6 +12463,7 @@ export default {
|
|
|
12413
12463
|
{
|
|
12414
12464
|
description: 'Failed to set code on Smart Things device.',
|
|
12415
12465
|
properties: {
|
|
12466
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12416
12467
|
message: { type: 'string' },
|
|
12417
12468
|
warning_code: {
|
|
12418
12469
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12426,6 +12477,7 @@ export default {
|
|
|
12426
12477
|
{
|
|
12427
12478
|
description: 'Duplicate access code detected.',
|
|
12428
12479
|
properties: {
|
|
12480
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12429
12481
|
message: { type: 'string' },
|
|
12430
12482
|
warning_code: {
|
|
12431
12483
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12439,6 +12491,7 @@ export default {
|
|
|
12439
12491
|
{
|
|
12440
12492
|
description: 'Received an error when attempting to create this code.',
|
|
12441
12493
|
properties: {
|
|
12494
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12442
12495
|
message: { type: 'string' },
|
|
12443
12496
|
warning_code: {
|
|
12444
12497
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12452,6 +12505,7 @@ export default {
|
|
|
12452
12505
|
{
|
|
12453
12506
|
description: 'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
12454
12507
|
properties: {
|
|
12508
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12455
12509
|
message: { type: 'string' },
|
|
12456
12510
|
warning_code: {
|
|
12457
12511
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12465,6 +12519,7 @@ export default {
|
|
|
12465
12519
|
{
|
|
12466
12520
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
12467
12521
|
properties: {
|
|
12522
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12468
12523
|
message: { type: 'string' },
|
|
12469
12524
|
warning_code: {
|
|
12470
12525
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12478,6 +12533,7 @@ export default {
|
|
|
12478
12533
|
{
|
|
12479
12534
|
description: 'Delay in setting code on device.',
|
|
12480
12535
|
properties: {
|
|
12536
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12481
12537
|
message: { type: 'string' },
|
|
12482
12538
|
warning_code: {
|
|
12483
12539
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12491,6 +12547,7 @@ export default {
|
|
|
12491
12547
|
{
|
|
12492
12548
|
description: 'Delay in removing code from device.',
|
|
12493
12549
|
properties: {
|
|
12550
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12494
12551
|
message: { type: 'string' },
|
|
12495
12552
|
warning_code: {
|
|
12496
12553
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12504,6 +12561,7 @@ export default {
|
|
|
12504
12561
|
{
|
|
12505
12562
|
description: 'Third party integration detected that may cause access codes to fail.',
|
|
12506
12563
|
properties: {
|
|
12564
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12507
12565
|
message: { type: 'string' },
|
|
12508
12566
|
warning_code: {
|
|
12509
12567
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12517,6 +12575,7 @@ export default {
|
|
|
12517
12575
|
{
|
|
12518
12576
|
description: 'Access code has not yet been fully moved to the device.',
|
|
12519
12577
|
properties: {
|
|
12578
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12520
12579
|
message: { type: 'string' },
|
|
12521
12580
|
warning_code: {
|
|
12522
12581
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12530,6 +12589,7 @@ export default {
|
|
|
12530
12589
|
{
|
|
12531
12590
|
description: 'Algopins must be used within 24 hours.',
|
|
12532
12591
|
properties: {
|
|
12592
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12533
12593
|
message: { type: 'string' },
|
|
12534
12594
|
warning_code: {
|
|
12535
12595
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12543,6 +12603,7 @@ export default {
|
|
|
12543
12603
|
{
|
|
12544
12604
|
description: 'Management was transferred to another workspace.',
|
|
12545
12605
|
properties: {
|
|
12606
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12546
12607
|
message: { type: 'string' },
|
|
12547
12608
|
warning_code: {
|
|
12548
12609
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12556,6 +12617,7 @@ export default {
|
|
|
12556
12617
|
{
|
|
12557
12618
|
description: 'Unable to confirm the access code is set on Kwikset device.',
|
|
12558
12619
|
properties: {
|
|
12620
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12559
12621
|
message: { type: 'string' },
|
|
12560
12622
|
warning_code: {
|
|
12561
12623
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|