@seamapi/types 1.362.0 → 1.363.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +228 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +940 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1097 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +67 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +155 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +125 -0
- package/lib/seam/connect/models/events/acs/entrances.js +28 -0
- package/lib/seam/connect/models/events/acs/entrances.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +60 -0
- package/lib/seam/connect/models/events/acs/index.js +2 -0
- package/lib/seam/connect/models/events/acs/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +61 -1
- package/lib/seam/connect/openapi.d.ts +136 -2
- package/lib/seam/connect/openapi.js +162 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +79 -0
- package/src/lib/seam/connect/models/events/acs/entrances.ts +36 -0
- package/src/lib/seam/connect/models/events/acs/index.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +170 -0
- package/src/lib/seam/connect/route-types.ts +347 -0
|
@@ -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.',
|
|
@@ -8790,6 +8821,102 @@ export default {
|
|
|
8790
8821
|
type: 'object',
|
|
8791
8822
|
'x-route-path': '/acs/access_groups',
|
|
8792
8823
|
},
|
|
8824
|
+
{
|
|
8825
|
+
description: 'An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was added.',
|
|
8826
|
+
properties: {
|
|
8827
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
8828
|
+
acs_system_id: {
|
|
8829
|
+
description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
8830
|
+
format: 'uuid',
|
|
8831
|
+
type: 'string',
|
|
8832
|
+
},
|
|
8833
|
+
connected_account_id: {
|
|
8834
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8835
|
+
format: 'uuid',
|
|
8836
|
+
type: 'string',
|
|
8837
|
+
},
|
|
8838
|
+
created_at: {
|
|
8839
|
+
description: 'Date and time at which the event was created.',
|
|
8840
|
+
format: 'date-time',
|
|
8841
|
+
type: 'string',
|
|
8842
|
+
},
|
|
8843
|
+
event_id: {
|
|
8844
|
+
description: 'ID of the event.',
|
|
8845
|
+
format: 'uuid',
|
|
8846
|
+
type: 'string',
|
|
8847
|
+
},
|
|
8848
|
+
event_type: { enum: ['acs_entrance.added'], type: 'string' },
|
|
8849
|
+
occurred_at: {
|
|
8850
|
+
description: 'Date and time at which the event occurred.',
|
|
8851
|
+
format: 'date-time',
|
|
8852
|
+
type: 'string',
|
|
8853
|
+
},
|
|
8854
|
+
workspace_id: {
|
|
8855
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8856
|
+
format: 'uuid',
|
|
8857
|
+
type: 'string',
|
|
8858
|
+
},
|
|
8859
|
+
},
|
|
8860
|
+
required: [
|
|
8861
|
+
'event_id',
|
|
8862
|
+
'workspace_id',
|
|
8863
|
+
'created_at',
|
|
8864
|
+
'occurred_at',
|
|
8865
|
+
'acs_system_id',
|
|
8866
|
+
'acs_entrance_id',
|
|
8867
|
+
'event_type',
|
|
8868
|
+
],
|
|
8869
|
+
type: 'object',
|
|
8870
|
+
'x-route-path': '/acs/entrances',
|
|
8871
|
+
},
|
|
8872
|
+
{
|
|
8873
|
+
description: 'An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was removed.',
|
|
8874
|
+
properties: {
|
|
8875
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
8876
|
+
acs_system_id: {
|
|
8877
|
+
description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
8878
|
+
format: 'uuid',
|
|
8879
|
+
type: 'string',
|
|
8880
|
+
},
|
|
8881
|
+
connected_account_id: {
|
|
8882
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8883
|
+
format: 'uuid',
|
|
8884
|
+
type: 'string',
|
|
8885
|
+
},
|
|
8886
|
+
created_at: {
|
|
8887
|
+
description: 'Date and time at which the event was created.',
|
|
8888
|
+
format: 'date-time',
|
|
8889
|
+
type: 'string',
|
|
8890
|
+
},
|
|
8891
|
+
event_id: {
|
|
8892
|
+
description: 'ID of the event.',
|
|
8893
|
+
format: 'uuid',
|
|
8894
|
+
type: 'string',
|
|
8895
|
+
},
|
|
8896
|
+
event_type: { enum: ['acs_entrance.removed'], type: 'string' },
|
|
8897
|
+
occurred_at: {
|
|
8898
|
+
description: 'Date and time at which the event occurred.',
|
|
8899
|
+
format: 'date-time',
|
|
8900
|
+
type: 'string',
|
|
8901
|
+
},
|
|
8902
|
+
workspace_id: {
|
|
8903
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8904
|
+
format: 'uuid',
|
|
8905
|
+
type: 'string',
|
|
8906
|
+
},
|
|
8907
|
+
},
|
|
8908
|
+
required: [
|
|
8909
|
+
'event_id',
|
|
8910
|
+
'workspace_id',
|
|
8911
|
+
'created_at',
|
|
8912
|
+
'occurred_at',
|
|
8913
|
+
'acs_system_id',
|
|
8914
|
+
'acs_entrance_id',
|
|
8915
|
+
'event_type',
|
|
8916
|
+
],
|
|
8917
|
+
type: 'object',
|
|
8918
|
+
'x-route-path': '/acs/entrances',
|
|
8919
|
+
},
|
|
8793
8920
|
{
|
|
8794
8921
|
description: 'A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.',
|
|
8795
8922
|
properties: {
|
|
@@ -11723,6 +11850,7 @@ export default {
|
|
|
11723
11850
|
{
|
|
11724
11851
|
description: 'Failed to set code on Smart Things device.',
|
|
11725
11852
|
properties: {
|
|
11853
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11726
11854
|
error_code: {
|
|
11727
11855
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11728
11856
|
enum: ['smartthings_failed_to_set_access_code'],
|
|
@@ -11737,6 +11865,7 @@ export default {
|
|
|
11737
11865
|
{
|
|
11738
11866
|
description: 'Failed to set code after multiple retries.',
|
|
11739
11867
|
properties: {
|
|
11868
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11740
11869
|
error_code: {
|
|
11741
11870
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11742
11871
|
enum: [
|
|
@@ -11753,6 +11882,7 @@ export default {
|
|
|
11753
11882
|
{
|
|
11754
11883
|
description: 'Failed to set code on device.',
|
|
11755
11884
|
properties: {
|
|
11885
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11756
11886
|
error_code: {
|
|
11757
11887
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11758
11888
|
enum: ['failed_to_set_on_device'],
|
|
@@ -11767,6 +11897,7 @@ export default {
|
|
|
11767
11897
|
{
|
|
11768
11898
|
description: 'Failed to remove code from device.',
|
|
11769
11899
|
properties: {
|
|
11900
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11770
11901
|
error_code: {
|
|
11771
11902
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11772
11903
|
enum: ['failed_to_remove_from_device'],
|
|
@@ -11781,6 +11912,7 @@ export default {
|
|
|
11781
11912
|
{
|
|
11782
11913
|
description: 'Duplicate access code detected on device.',
|
|
11783
11914
|
properties: {
|
|
11915
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11784
11916
|
error_code: {
|
|
11785
11917
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11786
11918
|
enum: ['duplicate_code_on_device'],
|
|
@@ -11795,6 +11927,7 @@ export default {
|
|
|
11795
11927
|
{
|
|
11796
11928
|
description: 'An attempt to modify this access code was prevented.',
|
|
11797
11929
|
properties: {
|
|
11930
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11798
11931
|
error_code: {
|
|
11799
11932
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11800
11933
|
enum: ['duplicate_code_attempt_prevented'],
|
|
@@ -11809,6 +11942,7 @@ export default {
|
|
|
11809
11942
|
{
|
|
11810
11943
|
description: 'Igloohome bridge has too many pending jobs in the queue.',
|
|
11811
11944
|
properties: {
|
|
11945
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11812
11946
|
error_code: {
|
|
11813
11947
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11814
11948
|
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
@@ -11823,6 +11957,7 @@ export default {
|
|
|
11823
11957
|
{
|
|
11824
11958
|
description: 'Igloohome bridge is offline.',
|
|
11825
11959
|
properties: {
|
|
11960
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11826
11961
|
error_code: {
|
|
11827
11962
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11828
11963
|
enum: ['igloohome_bridge_offline'],
|
|
@@ -11837,6 +11972,7 @@ export default {
|
|
|
11837
11972
|
{
|
|
11838
11973
|
description: 'Lock as reached max amount of codes.',
|
|
11839
11974
|
properties: {
|
|
11975
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11840
11976
|
error_code: {
|
|
11841
11977
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11842
11978
|
enum: [
|
|
@@ -11853,6 +11989,7 @@ export default {
|
|
|
11853
11989
|
{
|
|
11854
11990
|
description: 'Unable to confirm the access code is set on Kwikset device.',
|
|
11855
11991
|
properties: {
|
|
11992
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11856
11993
|
error_code: {
|
|
11857
11994
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11858
11995
|
enum: ['kwikset_unable_to_confirm_code'],
|
|
@@ -11867,6 +12004,7 @@ export default {
|
|
|
11867
12004
|
{
|
|
11868
12005
|
description: 'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
11869
12006
|
properties: {
|
|
12007
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11870
12008
|
error_code: {
|
|
11871
12009
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11872
12010
|
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
@@ -11881,6 +12019,7 @@ export default {
|
|
|
11881
12019
|
{
|
|
11882
12020
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
11883
12021
|
properties: {
|
|
12022
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11884
12023
|
error_code: {
|
|
11885
12024
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11886
12025
|
enum: ['code_modified_external_to_seam'],
|
|
@@ -11895,6 +12034,7 @@ export default {
|
|
|
11895
12034
|
{
|
|
11896
12035
|
description: 'Invalid code length for August lock.',
|
|
11897
12036
|
properties: {
|
|
12037
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11898
12038
|
error_code: {
|
|
11899
12039
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11900
12040
|
enum: ['august_lock_invalid_code_length'],
|
|
@@ -11909,6 +12049,7 @@ export default {
|
|
|
11909
12049
|
{
|
|
11910
12050
|
description: 'Access code has not yet been fully moved to the device.',
|
|
11911
12051
|
properties: {
|
|
12052
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11912
12053
|
error_code: {
|
|
11913
12054
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11914
12055
|
enum: ['august_device_programming_delay'],
|
|
@@ -11923,6 +12064,7 @@ export default {
|
|
|
11923
12064
|
{
|
|
11924
12065
|
description: 'All access code slots on the device are full.',
|
|
11925
12066
|
properties: {
|
|
12067
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11926
12068
|
error_code: {
|
|
11927
12069
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11928
12070
|
enum: ['august_device_slots_full'],
|
|
@@ -11937,6 +12079,7 @@ export default {
|
|
|
11937
12079
|
{
|
|
11938
12080
|
description: 'August lock is missing a keypad.',
|
|
11939
12081
|
properties: {
|
|
12082
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11940
12083
|
error_code: {
|
|
11941
12084
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11942
12085
|
enum: ['august_lock_missing_keypad'],
|
|
@@ -11951,6 +12094,7 @@ export default {
|
|
|
11951
12094
|
{
|
|
11952
12095
|
description: 'Salto site user is not subscribed.',
|
|
11953
12096
|
properties: {
|
|
12097
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11954
12098
|
error_code: {
|
|
11955
12099
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11956
12100
|
enum: ['salto_site_user_not_subscribed'],
|
|
@@ -11965,6 +12109,7 @@ export default {
|
|
|
11965
12109
|
{
|
|
11966
12110
|
description: 'Access code has not yet been fully moved to the device.',
|
|
11967
12111
|
properties: {
|
|
12112
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11968
12113
|
error_code: {
|
|
11969
12114
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11970
12115
|
enum: ['hubitat_device_programming_delay'],
|
|
@@ -11979,6 +12124,7 @@ export default {
|
|
|
11979
12124
|
{
|
|
11980
12125
|
description: 'No free positions available on the device.',
|
|
11981
12126
|
properties: {
|
|
12127
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
11982
12128
|
error_code: {
|
|
11983
12129
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11984
12130
|
enum: ['hubitat_no_free_positions_available'],
|
|
@@ -12317,6 +12463,7 @@ export default {
|
|
|
12317
12463
|
{
|
|
12318
12464
|
description: 'Failed to set code on Smart Things device.',
|
|
12319
12465
|
properties: {
|
|
12466
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12320
12467
|
message: { type: 'string' },
|
|
12321
12468
|
warning_code: {
|
|
12322
12469
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12330,6 +12477,7 @@ export default {
|
|
|
12330
12477
|
{
|
|
12331
12478
|
description: 'Duplicate access code detected.',
|
|
12332
12479
|
properties: {
|
|
12480
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12333
12481
|
message: { type: 'string' },
|
|
12334
12482
|
warning_code: {
|
|
12335
12483
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12343,6 +12491,7 @@ export default {
|
|
|
12343
12491
|
{
|
|
12344
12492
|
description: 'Received an error when attempting to create this code.',
|
|
12345
12493
|
properties: {
|
|
12494
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12346
12495
|
message: { type: 'string' },
|
|
12347
12496
|
warning_code: {
|
|
12348
12497
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12356,6 +12505,7 @@ export default {
|
|
|
12356
12505
|
{
|
|
12357
12506
|
description: 'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
12358
12507
|
properties: {
|
|
12508
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12359
12509
|
message: { type: 'string' },
|
|
12360
12510
|
warning_code: {
|
|
12361
12511
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12369,6 +12519,7 @@ export default {
|
|
|
12369
12519
|
{
|
|
12370
12520
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
12371
12521
|
properties: {
|
|
12522
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12372
12523
|
message: { type: 'string' },
|
|
12373
12524
|
warning_code: {
|
|
12374
12525
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12382,6 +12533,7 @@ export default {
|
|
|
12382
12533
|
{
|
|
12383
12534
|
description: 'Delay in setting code on device.',
|
|
12384
12535
|
properties: {
|
|
12536
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12385
12537
|
message: { type: 'string' },
|
|
12386
12538
|
warning_code: {
|
|
12387
12539
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12395,6 +12547,7 @@ export default {
|
|
|
12395
12547
|
{
|
|
12396
12548
|
description: 'Delay in removing code from device.',
|
|
12397
12549
|
properties: {
|
|
12550
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12398
12551
|
message: { type: 'string' },
|
|
12399
12552
|
warning_code: {
|
|
12400
12553
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12408,6 +12561,7 @@ export default {
|
|
|
12408
12561
|
{
|
|
12409
12562
|
description: 'Third party integration detected that may cause access codes to fail.',
|
|
12410
12563
|
properties: {
|
|
12564
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12411
12565
|
message: { type: 'string' },
|
|
12412
12566
|
warning_code: {
|
|
12413
12567
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12421,6 +12575,7 @@ export default {
|
|
|
12421
12575
|
{
|
|
12422
12576
|
description: 'Access code has not yet been fully moved to the device.',
|
|
12423
12577
|
properties: {
|
|
12578
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12424
12579
|
message: { type: 'string' },
|
|
12425
12580
|
warning_code: {
|
|
12426
12581
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12434,6 +12589,7 @@ export default {
|
|
|
12434
12589
|
{
|
|
12435
12590
|
description: 'Algopins must be used within 24 hours.',
|
|
12436
12591
|
properties: {
|
|
12592
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12437
12593
|
message: { type: 'string' },
|
|
12438
12594
|
warning_code: {
|
|
12439
12595
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12447,6 +12603,7 @@ export default {
|
|
|
12447
12603
|
{
|
|
12448
12604
|
description: 'Management was transferred to another workspace.',
|
|
12449
12605
|
properties: {
|
|
12606
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12450
12607
|
message: { type: 'string' },
|
|
12451
12608
|
warning_code: {
|
|
12452
12609
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -12460,6 +12617,7 @@ export default {
|
|
|
12460
12617
|
{
|
|
12461
12618
|
description: 'Unable to confirm the access code is set on Kwikset device.',
|
|
12462
12619
|
properties: {
|
|
12620
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12463
12621
|
message: { type: 'string' },
|
|
12464
12622
|
warning_code: {
|
|
12465
12623
|
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -21372,6 +21530,8 @@ export default {
|
|
|
21372
21530
|
'acs_encoder.added',
|
|
21373
21531
|
'acs_encoder.removed',
|
|
21374
21532
|
'acs_access_group.deleted',
|
|
21533
|
+
'acs_entrance.added',
|
|
21534
|
+
'acs_entrance.removed',
|
|
21375
21535
|
'client_session.deleted',
|
|
21376
21536
|
'connected_account.connected',
|
|
21377
21537
|
'connected_account.created',
|
|
@@ -21454,6 +21614,8 @@ export default {
|
|
|
21454
21614
|
'acs_encoder.added',
|
|
21455
21615
|
'acs_encoder.removed',
|
|
21456
21616
|
'acs_access_group.deleted',
|
|
21617
|
+
'acs_entrance.added',
|
|
21618
|
+
'acs_entrance.removed',
|
|
21457
21619
|
'client_session.deleted',
|
|
21458
21620
|
'connected_account.connected',
|
|
21459
21621
|
'connected_account.created',
|