@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
|
@@ -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:
|
|
@@ -9552,6 +9583,110 @@ export default {
|
|
|
9552
9583
|
type: 'object',
|
|
9553
9584
|
'x-route-path': '/acs/access_groups',
|
|
9554
9585
|
},
|
|
9586
|
+
{
|
|
9587
|
+
description:
|
|
9588
|
+
'An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was added.',
|
|
9589
|
+
properties: {
|
|
9590
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
9591
|
+
acs_system_id: {
|
|
9592
|
+
description:
|
|
9593
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
9594
|
+
format: 'uuid',
|
|
9595
|
+
type: 'string',
|
|
9596
|
+
},
|
|
9597
|
+
connected_account_id: {
|
|
9598
|
+
description:
|
|
9599
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
9600
|
+
format: 'uuid',
|
|
9601
|
+
type: 'string',
|
|
9602
|
+
},
|
|
9603
|
+
created_at: {
|
|
9604
|
+
description: 'Date and time at which the event was created.',
|
|
9605
|
+
format: 'date-time',
|
|
9606
|
+
type: 'string',
|
|
9607
|
+
},
|
|
9608
|
+
event_id: {
|
|
9609
|
+
description: 'ID of the event.',
|
|
9610
|
+
format: 'uuid',
|
|
9611
|
+
type: 'string',
|
|
9612
|
+
},
|
|
9613
|
+
event_type: { enum: ['acs_entrance.added'], type: 'string' },
|
|
9614
|
+
occurred_at: {
|
|
9615
|
+
description: 'Date and time at which the event occurred.',
|
|
9616
|
+
format: 'date-time',
|
|
9617
|
+
type: 'string',
|
|
9618
|
+
},
|
|
9619
|
+
workspace_id: {
|
|
9620
|
+
description:
|
|
9621
|
+
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9622
|
+
format: 'uuid',
|
|
9623
|
+
type: 'string',
|
|
9624
|
+
},
|
|
9625
|
+
},
|
|
9626
|
+
required: [
|
|
9627
|
+
'event_id',
|
|
9628
|
+
'workspace_id',
|
|
9629
|
+
'created_at',
|
|
9630
|
+
'occurred_at',
|
|
9631
|
+
'acs_system_id',
|
|
9632
|
+
'acs_entrance_id',
|
|
9633
|
+
'event_type',
|
|
9634
|
+
],
|
|
9635
|
+
type: 'object',
|
|
9636
|
+
'x-route-path': '/acs/entrances',
|
|
9637
|
+
},
|
|
9638
|
+
{
|
|
9639
|
+
description:
|
|
9640
|
+
'An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was removed.',
|
|
9641
|
+
properties: {
|
|
9642
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
9643
|
+
acs_system_id: {
|
|
9644
|
+
description:
|
|
9645
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
9646
|
+
format: 'uuid',
|
|
9647
|
+
type: 'string',
|
|
9648
|
+
},
|
|
9649
|
+
connected_account_id: {
|
|
9650
|
+
description:
|
|
9651
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
9652
|
+
format: 'uuid',
|
|
9653
|
+
type: 'string',
|
|
9654
|
+
},
|
|
9655
|
+
created_at: {
|
|
9656
|
+
description: 'Date and time at which the event was created.',
|
|
9657
|
+
format: 'date-time',
|
|
9658
|
+
type: 'string',
|
|
9659
|
+
},
|
|
9660
|
+
event_id: {
|
|
9661
|
+
description: 'ID of the event.',
|
|
9662
|
+
format: 'uuid',
|
|
9663
|
+
type: 'string',
|
|
9664
|
+
},
|
|
9665
|
+
event_type: { enum: ['acs_entrance.removed'], type: 'string' },
|
|
9666
|
+
occurred_at: {
|
|
9667
|
+
description: 'Date and time at which the event occurred.',
|
|
9668
|
+
format: 'date-time',
|
|
9669
|
+
type: 'string',
|
|
9670
|
+
},
|
|
9671
|
+
workspace_id: {
|
|
9672
|
+
description:
|
|
9673
|
+
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9674
|
+
format: 'uuid',
|
|
9675
|
+
type: 'string',
|
|
9676
|
+
},
|
|
9677
|
+
},
|
|
9678
|
+
required: [
|
|
9679
|
+
'event_id',
|
|
9680
|
+
'workspace_id',
|
|
9681
|
+
'created_at',
|
|
9682
|
+
'occurred_at',
|
|
9683
|
+
'acs_system_id',
|
|
9684
|
+
'acs_entrance_id',
|
|
9685
|
+
'event_type',
|
|
9686
|
+
],
|
|
9687
|
+
type: 'object',
|
|
9688
|
+
'x-route-path': '/acs/entrances',
|
|
9689
|
+
},
|
|
9555
9690
|
{
|
|
9556
9691
|
description:
|
|
9557
9692
|
'A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.',
|
|
@@ -12706,6 +12841,7 @@ export default {
|
|
|
12706
12841
|
{
|
|
12707
12842
|
description: 'Failed to set code on Smart Things device.',
|
|
12708
12843
|
properties: {
|
|
12844
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12709
12845
|
error_code: {
|
|
12710
12846
|
description:
|
|
12711
12847
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12721,6 +12857,7 @@ export default {
|
|
|
12721
12857
|
{
|
|
12722
12858
|
description: 'Failed to set code after multiple retries.',
|
|
12723
12859
|
properties: {
|
|
12860
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12724
12861
|
error_code: {
|
|
12725
12862
|
description:
|
|
12726
12863
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12738,6 +12875,7 @@ export default {
|
|
|
12738
12875
|
{
|
|
12739
12876
|
description: 'Failed to set code on device.',
|
|
12740
12877
|
properties: {
|
|
12878
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12741
12879
|
error_code: {
|
|
12742
12880
|
description:
|
|
12743
12881
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12753,6 +12891,7 @@ export default {
|
|
|
12753
12891
|
{
|
|
12754
12892
|
description: 'Failed to remove code from device.',
|
|
12755
12893
|
properties: {
|
|
12894
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12756
12895
|
error_code: {
|
|
12757
12896
|
description:
|
|
12758
12897
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12768,6 +12907,7 @@ export default {
|
|
|
12768
12907
|
{
|
|
12769
12908
|
description: 'Duplicate access code detected on device.',
|
|
12770
12909
|
properties: {
|
|
12910
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12771
12911
|
error_code: {
|
|
12772
12912
|
description:
|
|
12773
12913
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12784,6 +12924,7 @@ export default {
|
|
|
12784
12924
|
description:
|
|
12785
12925
|
'An attempt to modify this access code was prevented.',
|
|
12786
12926
|
properties: {
|
|
12927
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12787
12928
|
error_code: {
|
|
12788
12929
|
description:
|
|
12789
12930
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12800,6 +12941,7 @@ export default {
|
|
|
12800
12941
|
description:
|
|
12801
12942
|
'Igloohome bridge has too many pending jobs in the queue.',
|
|
12802
12943
|
properties: {
|
|
12944
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12803
12945
|
error_code: {
|
|
12804
12946
|
description:
|
|
12805
12947
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12815,6 +12957,7 @@ export default {
|
|
|
12815
12957
|
{
|
|
12816
12958
|
description: 'Igloohome bridge is offline.',
|
|
12817
12959
|
properties: {
|
|
12960
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12818
12961
|
error_code: {
|
|
12819
12962
|
description:
|
|
12820
12963
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12830,6 +12973,7 @@ export default {
|
|
|
12830
12973
|
{
|
|
12831
12974
|
description: 'Lock as reached max amount of codes.',
|
|
12832
12975
|
properties: {
|
|
12976
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12833
12977
|
error_code: {
|
|
12834
12978
|
description:
|
|
12835
12979
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12848,6 +12992,7 @@ export default {
|
|
|
12848
12992
|
description:
|
|
12849
12993
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
12850
12994
|
properties: {
|
|
12995
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12851
12996
|
error_code: {
|
|
12852
12997
|
description:
|
|
12853
12998
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12864,6 +13009,7 @@ export default {
|
|
|
12864
13009
|
description:
|
|
12865
13010
|
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
12866
13011
|
properties: {
|
|
13012
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12867
13013
|
error_code: {
|
|
12868
13014
|
description:
|
|
12869
13015
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12880,6 +13026,7 @@ export default {
|
|
|
12880
13026
|
description:
|
|
12881
13027
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
12882
13028
|
properties: {
|
|
13029
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12883
13030
|
error_code: {
|
|
12884
13031
|
description:
|
|
12885
13032
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12895,6 +13042,7 @@ export default {
|
|
|
12895
13042
|
{
|
|
12896
13043
|
description: 'Invalid code length for August lock.',
|
|
12897
13044
|
properties: {
|
|
13045
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12898
13046
|
error_code: {
|
|
12899
13047
|
description:
|
|
12900
13048
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12911,6 +13059,7 @@ export default {
|
|
|
12911
13059
|
description:
|
|
12912
13060
|
'Access code has not yet been fully moved to the device.',
|
|
12913
13061
|
properties: {
|
|
13062
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12914
13063
|
error_code: {
|
|
12915
13064
|
description:
|
|
12916
13065
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12926,6 +13075,7 @@ export default {
|
|
|
12926
13075
|
{
|
|
12927
13076
|
description: 'All access code slots on the device are full.',
|
|
12928
13077
|
properties: {
|
|
13078
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12929
13079
|
error_code: {
|
|
12930
13080
|
description:
|
|
12931
13081
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12941,6 +13091,7 @@ export default {
|
|
|
12941
13091
|
{
|
|
12942
13092
|
description: 'August lock is missing a keypad.',
|
|
12943
13093
|
properties: {
|
|
13094
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12944
13095
|
error_code: {
|
|
12945
13096
|
description:
|
|
12946
13097
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12956,6 +13107,7 @@ export default {
|
|
|
12956
13107
|
{
|
|
12957
13108
|
description: 'Salto site user is not subscribed.',
|
|
12958
13109
|
properties: {
|
|
13110
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12959
13111
|
error_code: {
|
|
12960
13112
|
description:
|
|
12961
13113
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12972,6 +13124,7 @@ export default {
|
|
|
12972
13124
|
description:
|
|
12973
13125
|
'Access code has not yet been fully moved to the device.',
|
|
12974
13126
|
properties: {
|
|
13127
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12975
13128
|
error_code: {
|
|
12976
13129
|
description:
|
|
12977
13130
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -12987,6 +13140,7 @@ export default {
|
|
|
12987
13140
|
{
|
|
12988
13141
|
description: 'No free positions available on the device.',
|
|
12989
13142
|
properties: {
|
|
13143
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
12990
13144
|
error_code: {
|
|
12991
13145
|
description:
|
|
12992
13146
|
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
@@ -13345,6 +13499,7 @@ export default {
|
|
|
13345
13499
|
{
|
|
13346
13500
|
description: 'Failed to set code on Smart Things device.',
|
|
13347
13501
|
properties: {
|
|
13502
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13348
13503
|
message: { type: 'string' },
|
|
13349
13504
|
warning_code: {
|
|
13350
13505
|
description:
|
|
@@ -13359,6 +13514,7 @@ export default {
|
|
|
13359
13514
|
{
|
|
13360
13515
|
description: 'Duplicate access code detected.',
|
|
13361
13516
|
properties: {
|
|
13517
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13362
13518
|
message: { type: 'string' },
|
|
13363
13519
|
warning_code: {
|
|
13364
13520
|
description:
|
|
@@ -13374,6 +13530,7 @@ export default {
|
|
|
13374
13530
|
description:
|
|
13375
13531
|
'Received an error when attempting to create this code.',
|
|
13376
13532
|
properties: {
|
|
13533
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13377
13534
|
message: { type: 'string' },
|
|
13378
13535
|
warning_code: {
|
|
13379
13536
|
description:
|
|
@@ -13389,6 +13546,7 @@ export default {
|
|
|
13389
13546
|
description:
|
|
13390
13547
|
'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
13391
13548
|
properties: {
|
|
13549
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13392
13550
|
message: { type: 'string' },
|
|
13393
13551
|
warning_code: {
|
|
13394
13552
|
description:
|
|
@@ -13404,6 +13562,7 @@ export default {
|
|
|
13404
13562
|
description:
|
|
13405
13563
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
13406
13564
|
properties: {
|
|
13565
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13407
13566
|
message: { type: 'string' },
|
|
13408
13567
|
warning_code: {
|
|
13409
13568
|
description:
|
|
@@ -13418,6 +13577,7 @@ export default {
|
|
|
13418
13577
|
{
|
|
13419
13578
|
description: 'Delay in setting code on device.',
|
|
13420
13579
|
properties: {
|
|
13580
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13421
13581
|
message: { type: 'string' },
|
|
13422
13582
|
warning_code: {
|
|
13423
13583
|
description:
|
|
@@ -13432,6 +13592,7 @@ export default {
|
|
|
13432
13592
|
{
|
|
13433
13593
|
description: 'Delay in removing code from device.',
|
|
13434
13594
|
properties: {
|
|
13595
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13435
13596
|
message: { type: 'string' },
|
|
13436
13597
|
warning_code: {
|
|
13437
13598
|
description:
|
|
@@ -13447,6 +13608,7 @@ export default {
|
|
|
13447
13608
|
description:
|
|
13448
13609
|
'Third party integration detected that may cause access codes to fail.',
|
|
13449
13610
|
properties: {
|
|
13611
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13450
13612
|
message: { type: 'string' },
|
|
13451
13613
|
warning_code: {
|
|
13452
13614
|
description:
|
|
@@ -13462,6 +13624,7 @@ export default {
|
|
|
13462
13624
|
description:
|
|
13463
13625
|
'Access code has not yet been fully moved to the device.',
|
|
13464
13626
|
properties: {
|
|
13627
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13465
13628
|
message: { type: 'string' },
|
|
13466
13629
|
warning_code: {
|
|
13467
13630
|
description:
|
|
@@ -13476,6 +13639,7 @@ export default {
|
|
|
13476
13639
|
{
|
|
13477
13640
|
description: 'Algopins must be used within 24 hours.',
|
|
13478
13641
|
properties: {
|
|
13642
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13479
13643
|
message: { type: 'string' },
|
|
13480
13644
|
warning_code: {
|
|
13481
13645
|
description:
|
|
@@ -13491,6 +13655,7 @@ export default {
|
|
|
13491
13655
|
description:
|
|
13492
13656
|
'Management was transferred to another workspace.',
|
|
13493
13657
|
properties: {
|
|
13658
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13494
13659
|
message: { type: 'string' },
|
|
13495
13660
|
warning_code: {
|
|
13496
13661
|
description:
|
|
@@ -13506,6 +13671,7 @@ export default {
|
|
|
13506
13671
|
description:
|
|
13507
13672
|
'Unable to confirm the access code is set on Kwikset device.',
|
|
13508
13673
|
properties: {
|
|
13674
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
13509
13675
|
message: { type: 'string' },
|
|
13510
13676
|
warning_code: {
|
|
13511
13677
|
description:
|
|
@@ -22742,6 +22908,8 @@ export default {
|
|
|
22742
22908
|
'acs_encoder.added',
|
|
22743
22909
|
'acs_encoder.removed',
|
|
22744
22910
|
'acs_access_group.deleted',
|
|
22911
|
+
'acs_entrance.added',
|
|
22912
|
+
'acs_entrance.removed',
|
|
22745
22913
|
'client_session.deleted',
|
|
22746
22914
|
'connected_account.connected',
|
|
22747
22915
|
'connected_account.created',
|
|
@@ -22824,6 +22992,8 @@ export default {
|
|
|
22824
22992
|
'acs_encoder.added',
|
|
22825
22993
|
'acs_encoder.removed',
|
|
22826
22994
|
'acs_access_group.deleted',
|
|
22995
|
+
'acs_entrance.added',
|
|
22996
|
+
'acs_entrance.removed',
|
|
22827
22997
|
'client_session.deleted',
|
|
22828
22998
|
'connected_account.connected',
|
|
22829
22999
|
'connected_account.created',
|