@seamapi/types 1.344.1 → 1.344.3
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 +1781 -1992
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +532 -633
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +33 -28
- package/lib/seam/connect/models/access-codes/managed-access-code.js +15 -3
- 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 +21 -26
- package/lib/seam/connect/models/acs/acs-credential.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-credential.js +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-system.js +2 -2
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +5 -5
- package/lib/seam/connect/models/acs/acs-user.js +2 -2
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +4 -4
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +2 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +4 -4
- package/lib/seam/connect/models/connected-accounts/connected-account.js +6 -3
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +6 -40
- package/lib/seam/connect/models/devices/device.js +6 -11
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +4 -25
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -25
- package/lib/seam/connect/openapi.d.ts +271 -223
- package/lib/seam/connect/openapi.js +1495 -1720
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +181 -275
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +18 -3
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-user.ts +2 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -3
- package/src/lib/seam/connect/models/devices/device.ts +8 -12
- package/src/lib/seam/connect/openapi.ts +1599 -1832
- package/src/lib/seam/connect/route-types.ts +3261 -3494
|
@@ -42,632 +42,527 @@ export default {
|
|
|
42
42
|
description:
|
|
43
43
|
'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
44
44
|
items: {
|
|
45
|
+
discriminator: { propertyName: 'error_code' },
|
|
45
46
|
oneOf: [
|
|
46
47
|
{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
55
|
-
type: 'string',
|
|
56
|
-
},
|
|
57
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
58
|
-
message: { type: 'string' },
|
|
59
|
-
},
|
|
60
|
-
required: [
|
|
61
|
-
'message',
|
|
62
|
-
'is_access_code_error',
|
|
63
|
-
'error_code',
|
|
64
|
-
],
|
|
65
|
-
type: 'object',
|
|
48
|
+
description: 'Failed to set code on Smart Things device.',
|
|
49
|
+
properties: {
|
|
50
|
+
error_code: {
|
|
51
|
+
description:
|
|
52
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
53
|
+
enum: ['smartthings_failed_to_set_access_code'],
|
|
54
|
+
type: 'string',
|
|
66
55
|
},
|
|
67
|
-
{
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
required: [
|
|
82
|
-
'message',
|
|
83
|
-
'is_access_code_error',
|
|
84
|
-
'error_code',
|
|
56
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
57
|
+
message: { type: 'string' },
|
|
58
|
+
},
|
|
59
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
60
|
+
type: 'object',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
description: 'Failed to set code after multiple retries.',
|
|
64
|
+
properties: {
|
|
65
|
+
error_code: {
|
|
66
|
+
description:
|
|
67
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
68
|
+
enum: [
|
|
69
|
+
'smartthings_failed_to_set_after_multiple_retries',
|
|
85
70
|
],
|
|
86
|
-
type: '
|
|
71
|
+
type: 'string',
|
|
87
72
|
},
|
|
88
|
-
{
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
'is_access_code_error',
|
|
103
|
-
'error_code',
|
|
104
|
-
],
|
|
105
|
-
type: 'object',
|
|
73
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
74
|
+
message: { type: 'string' },
|
|
75
|
+
},
|
|
76
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
77
|
+
type: 'object',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
description: 'Failed to set code on device.',
|
|
81
|
+
properties: {
|
|
82
|
+
error_code: {
|
|
83
|
+
description:
|
|
84
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
85
|
+
enum: ['failed_to_set_on_device'],
|
|
86
|
+
type: 'string',
|
|
106
87
|
},
|
|
107
|
-
{
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
'is_access_code_error',
|
|
122
|
-
'error_code',
|
|
123
|
-
],
|
|
124
|
-
type: 'object',
|
|
88
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
89
|
+
message: { type: 'string' },
|
|
90
|
+
},
|
|
91
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
92
|
+
type: 'object',
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
description: 'Failed to remove code from device.',
|
|
96
|
+
properties: {
|
|
97
|
+
error_code: {
|
|
98
|
+
description:
|
|
99
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
100
|
+
enum: ['failed_to_remove_from_device'],
|
|
101
|
+
type: 'string',
|
|
125
102
|
},
|
|
126
|
-
{
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
'is_access_code_error',
|
|
141
|
-
'error_code',
|
|
142
|
-
],
|
|
143
|
-
type: 'object',
|
|
103
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
104
|
+
message: { type: 'string' },
|
|
105
|
+
},
|
|
106
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
107
|
+
type: 'object',
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
description: 'Duplicate access code detected on device.',
|
|
111
|
+
properties: {
|
|
112
|
+
error_code: {
|
|
113
|
+
description:
|
|
114
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
115
|
+
enum: ['duplicate_code_on_device'],
|
|
116
|
+
type: 'string',
|
|
144
117
|
},
|
|
145
|
-
{
|
|
118
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
119
|
+
message: { type: 'string' },
|
|
120
|
+
},
|
|
121
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
122
|
+
type: 'object',
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
description:
|
|
126
|
+
'An attempt to modify this access code was prevented.',
|
|
127
|
+
properties: {
|
|
128
|
+
error_code: {
|
|
146
129
|
description:
|
|
147
|
-
'
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
description:
|
|
151
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
152
|
-
enum: ['duplicate_code_attempt_prevented'],
|
|
153
|
-
type: 'string',
|
|
154
|
-
},
|
|
155
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
156
|
-
message: { type: 'string' },
|
|
157
|
-
},
|
|
158
|
-
required: [
|
|
159
|
-
'message',
|
|
160
|
-
'is_access_code_error',
|
|
161
|
-
'error_code',
|
|
162
|
-
],
|
|
163
|
-
type: 'object',
|
|
130
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
131
|
+
enum: ['duplicate_code_attempt_prevented'],
|
|
132
|
+
type: 'string',
|
|
164
133
|
},
|
|
165
|
-
{
|
|
134
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
135
|
+
message: { type: 'string' },
|
|
136
|
+
},
|
|
137
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
138
|
+
type: 'object',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
description:
|
|
142
|
+
'Igloohome bridge has too many pending jobs in the queue.',
|
|
143
|
+
properties: {
|
|
144
|
+
error_code: {
|
|
166
145
|
description:
|
|
167
|
-
'
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
description:
|
|
171
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
172
|
-
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
173
|
-
type: 'string',
|
|
174
|
-
},
|
|
175
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
176
|
-
message: { type: 'string' },
|
|
177
|
-
},
|
|
178
|
-
required: [
|
|
179
|
-
'message',
|
|
180
|
-
'is_access_code_error',
|
|
181
|
-
'error_code',
|
|
182
|
-
],
|
|
183
|
-
type: 'object',
|
|
146
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
147
|
+
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
148
|
+
type: 'string',
|
|
184
149
|
},
|
|
185
|
-
{
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
'is_access_code_error',
|
|
200
|
-
'error_code',
|
|
201
|
-
],
|
|
202
|
-
type: 'object',
|
|
150
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
151
|
+
message: { type: 'string' },
|
|
152
|
+
},
|
|
153
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
154
|
+
type: 'object',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
description: 'Igloohome bridge is offline.',
|
|
158
|
+
properties: {
|
|
159
|
+
error_code: {
|
|
160
|
+
description:
|
|
161
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
162
|
+
enum: ['igloohome_bridge_offline'],
|
|
163
|
+
type: 'string',
|
|
203
164
|
},
|
|
204
|
-
{
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
required: [
|
|
219
|
-
'message',
|
|
220
|
-
'is_access_code_error',
|
|
221
|
-
'error_code',
|
|
165
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
166
|
+
message: { type: 'string' },
|
|
167
|
+
},
|
|
168
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
169
|
+
type: 'object',
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
description: 'Lock as reached max amount of codes.',
|
|
173
|
+
properties: {
|
|
174
|
+
error_code: {
|
|
175
|
+
description:
|
|
176
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
177
|
+
enum: [
|
|
178
|
+
'igloohome_offline_access_code_no_variance_available',
|
|
222
179
|
],
|
|
223
|
-
type: '
|
|
180
|
+
type: 'string',
|
|
224
181
|
},
|
|
225
|
-
{
|
|
182
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
183
|
+
message: { type: 'string' },
|
|
184
|
+
},
|
|
185
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
186
|
+
type: 'object',
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
description:
|
|
190
|
+
'Unable to confirm the access code is set on Kwikset device.',
|
|
191
|
+
properties: {
|
|
192
|
+
error_code: {
|
|
226
193
|
description:
|
|
227
|
-
'
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
description:
|
|
231
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
232
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
233
|
-
type: 'string',
|
|
234
|
-
},
|
|
235
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
236
|
-
message: { type: 'string' },
|
|
237
|
-
},
|
|
238
|
-
required: [
|
|
239
|
-
'message',
|
|
240
|
-
'is_access_code_error',
|
|
241
|
-
'error_code',
|
|
242
|
-
],
|
|
243
|
-
type: 'object',
|
|
194
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
195
|
+
enum: ['kwikset_unable_to_confirm_code'],
|
|
196
|
+
type: 'string',
|
|
244
197
|
},
|
|
245
|
-
{
|
|
198
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
199
|
+
message: { type: 'string' },
|
|
200
|
+
},
|
|
201
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
202
|
+
type: 'object',
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
description:
|
|
206
|
+
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
207
|
+
properties: {
|
|
208
|
+
error_code: {
|
|
246
209
|
description:
|
|
247
|
-
'
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
description:
|
|
251
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
252
|
-
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
253
|
-
type: 'string',
|
|
254
|
-
},
|
|
255
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
256
|
-
message: { type: 'string' },
|
|
257
|
-
},
|
|
258
|
-
required: [
|
|
259
|
-
'message',
|
|
260
|
-
'is_access_code_error',
|
|
261
|
-
'error_code',
|
|
262
|
-
],
|
|
263
|
-
type: 'object',
|
|
210
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
211
|
+
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
212
|
+
type: 'string',
|
|
264
213
|
},
|
|
265
|
-
{
|
|
214
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
215
|
+
message: { type: 'string' },
|
|
216
|
+
},
|
|
217
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
218
|
+
type: 'object',
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
description:
|
|
222
|
+
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
223
|
+
properties: {
|
|
224
|
+
error_code: {
|
|
266
225
|
description:
|
|
267
|
-
'
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
description:
|
|
271
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
272
|
-
enum: ['code_modified_external_to_seam'],
|
|
273
|
-
type: 'string',
|
|
274
|
-
},
|
|
275
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
276
|
-
message: { type: 'string' },
|
|
277
|
-
},
|
|
278
|
-
required: [
|
|
279
|
-
'message',
|
|
280
|
-
'is_access_code_error',
|
|
281
|
-
'error_code',
|
|
282
|
-
],
|
|
283
|
-
type: 'object',
|
|
226
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
227
|
+
enum: ['code_modified_external_to_seam'],
|
|
228
|
+
type: 'string',
|
|
284
229
|
},
|
|
285
|
-
{
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
'is_access_code_error',
|
|
300
|
-
'error_code',
|
|
301
|
-
],
|
|
302
|
-
type: 'object',
|
|
230
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
231
|
+
message: { type: 'string' },
|
|
232
|
+
},
|
|
233
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
234
|
+
type: 'object',
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
description: 'Invalid code length for August lock.',
|
|
238
|
+
properties: {
|
|
239
|
+
error_code: {
|
|
240
|
+
description:
|
|
241
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
242
|
+
enum: ['august_lock_invalid_code_length'],
|
|
243
|
+
type: 'string',
|
|
303
244
|
},
|
|
304
|
-
{
|
|
245
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
246
|
+
message: { type: 'string' },
|
|
247
|
+
},
|
|
248
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
249
|
+
type: 'object',
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
description:
|
|
253
|
+
'Access code has not yet been fully moved to the device.',
|
|
254
|
+
properties: {
|
|
255
|
+
error_code: {
|
|
305
256
|
description:
|
|
306
|
-
'
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
description:
|
|
310
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
311
|
-
enum: ['august_device_programming_delay'],
|
|
312
|
-
type: 'string',
|
|
313
|
-
},
|
|
314
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
315
|
-
message: { type: 'string' },
|
|
316
|
-
},
|
|
317
|
-
required: [
|
|
318
|
-
'message',
|
|
319
|
-
'is_access_code_error',
|
|
320
|
-
'error_code',
|
|
321
|
-
],
|
|
322
|
-
type: 'object',
|
|
257
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
258
|
+
enum: ['august_device_programming_delay'],
|
|
259
|
+
type: 'string',
|
|
323
260
|
},
|
|
324
|
-
{
|
|
261
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
262
|
+
message: { type: 'string' },
|
|
263
|
+
},
|
|
264
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
265
|
+
type: 'object',
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
description: 'All access code slots on the device are full.',
|
|
269
|
+
properties: {
|
|
270
|
+
error_code: {
|
|
325
271
|
description:
|
|
326
|
-
'
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
description:
|
|
330
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
331
|
-
enum: ['august_device_slots_full'],
|
|
332
|
-
type: 'string',
|
|
333
|
-
},
|
|
334
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
335
|
-
message: { type: 'string' },
|
|
336
|
-
},
|
|
337
|
-
required: [
|
|
338
|
-
'message',
|
|
339
|
-
'is_access_code_error',
|
|
340
|
-
'error_code',
|
|
341
|
-
],
|
|
342
|
-
type: 'object',
|
|
272
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
273
|
+
enum: ['august_device_slots_full'],
|
|
274
|
+
type: 'string',
|
|
343
275
|
},
|
|
344
|
-
{
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
'is_access_code_error',
|
|
359
|
-
'error_code',
|
|
360
|
-
],
|
|
361
|
-
type: 'object',
|
|
276
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
277
|
+
message: { type: 'string' },
|
|
278
|
+
},
|
|
279
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
280
|
+
type: 'object',
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
description: 'August lock is missing a keypad.',
|
|
284
|
+
properties: {
|
|
285
|
+
error_code: {
|
|
286
|
+
description:
|
|
287
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
288
|
+
enum: ['august_lock_missing_keypad'],
|
|
289
|
+
type: 'string',
|
|
362
290
|
},
|
|
363
|
-
{
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
'is_access_code_error',
|
|
378
|
-
'error_code',
|
|
379
|
-
],
|
|
380
|
-
type: 'object',
|
|
291
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
292
|
+
message: { type: 'string' },
|
|
293
|
+
},
|
|
294
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
295
|
+
type: 'object',
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
description: 'Salto site user is not subscribed.',
|
|
299
|
+
properties: {
|
|
300
|
+
error_code: {
|
|
301
|
+
description:
|
|
302
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
303
|
+
enum: ['salto_site_user_not_subscribed'],
|
|
304
|
+
type: 'string',
|
|
381
305
|
},
|
|
382
|
-
{
|
|
306
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
307
|
+
message: { type: 'string' },
|
|
308
|
+
},
|
|
309
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
310
|
+
type: 'object',
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
description:
|
|
314
|
+
'Access code has not yet been fully moved to the device.',
|
|
315
|
+
properties: {
|
|
316
|
+
error_code: {
|
|
383
317
|
description:
|
|
384
|
-
'
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
description:
|
|
388
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
389
|
-
enum: ['hubitat_device_programming_delay'],
|
|
390
|
-
type: 'string',
|
|
391
|
-
},
|
|
392
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
393
|
-
message: { type: 'string' },
|
|
394
|
-
},
|
|
395
|
-
required: [
|
|
396
|
-
'message',
|
|
397
|
-
'is_access_code_error',
|
|
398
|
-
'error_code',
|
|
399
|
-
],
|
|
400
|
-
type: 'object',
|
|
318
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
319
|
+
enum: ['hubitat_device_programming_delay'],
|
|
320
|
+
type: 'string',
|
|
401
321
|
},
|
|
402
|
-
{
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
'is_access_code_error',
|
|
417
|
-
'error_code',
|
|
418
|
-
],
|
|
419
|
-
type: 'object',
|
|
322
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
323
|
+
message: { type: 'string' },
|
|
324
|
+
},
|
|
325
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
326
|
+
type: 'object',
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
description: 'No free positions available on the device.',
|
|
330
|
+
properties: {
|
|
331
|
+
error_code: {
|
|
332
|
+
description:
|
|
333
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
334
|
+
enum: ['hubitat_no_free_positions_available'],
|
|
335
|
+
type: 'string',
|
|
420
336
|
},
|
|
421
|
-
|
|
337
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
338
|
+
message: { type: 'string' },
|
|
339
|
+
},
|
|
340
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
341
|
+
type: 'object',
|
|
422
342
|
},
|
|
423
343
|
{
|
|
424
|
-
description: '
|
|
425
|
-
|
|
426
|
-
{
|
|
427
|
-
description:
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
432
|
-
enum: ['device_offline'],
|
|
433
|
-
type: 'string',
|
|
434
|
-
},
|
|
435
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
436
|
-
message: { type: 'string' },
|
|
437
|
-
},
|
|
438
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
439
|
-
type: 'object',
|
|
344
|
+
description: 'Device is offline',
|
|
345
|
+
properties: {
|
|
346
|
+
error_code: {
|
|
347
|
+
description:
|
|
348
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
349
|
+
enum: ['device_offline'],
|
|
350
|
+
type: 'string',
|
|
440
351
|
},
|
|
441
|
-
{
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
type: '
|
|
352
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
353
|
+
message: { type: 'string' },
|
|
354
|
+
},
|
|
355
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
356
|
+
type: 'object',
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
description: 'Device has been removed',
|
|
360
|
+
properties: {
|
|
361
|
+
error_code: {
|
|
362
|
+
description:
|
|
363
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
364
|
+
enum: ['device_removed'],
|
|
365
|
+
type: 'string',
|
|
455
366
|
},
|
|
456
|
-
{
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
type: '
|
|
367
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
368
|
+
message: { type: 'string' },
|
|
369
|
+
},
|
|
370
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
371
|
+
type: 'object',
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
description: 'Hub is disconnected',
|
|
375
|
+
properties: {
|
|
376
|
+
error_code: {
|
|
377
|
+
description:
|
|
378
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
379
|
+
enum: ['hub_disconnected'],
|
|
380
|
+
type: 'string',
|
|
470
381
|
},
|
|
471
|
-
{
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
type: '
|
|
382
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
383
|
+
message: { type: 'string' },
|
|
384
|
+
},
|
|
385
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
386
|
+
type: 'object',
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
description: 'Device is disconnected',
|
|
390
|
+
properties: {
|
|
391
|
+
error_code: {
|
|
392
|
+
description:
|
|
393
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
394
|
+
enum: ['device_disconnected'],
|
|
395
|
+
type: 'string',
|
|
485
396
|
},
|
|
486
|
-
{
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
type: '
|
|
397
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
398
|
+
message: { type: 'string' },
|
|
399
|
+
},
|
|
400
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
401
|
+
type: 'object',
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
description: 'The backup access code pool is empty.',
|
|
405
|
+
properties: {
|
|
406
|
+
error_code: {
|
|
407
|
+
description:
|
|
408
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
409
|
+
enum: ['empty_backup_access_code_pool'],
|
|
410
|
+
type: 'string',
|
|
500
411
|
},
|
|
501
|
-
{
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
type: '
|
|
412
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
413
|
+
message: { type: 'string' },
|
|
414
|
+
},
|
|
415
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
416
|
+
type: 'object',
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
description: 'User is not authorized to use the August Lock.',
|
|
420
|
+
properties: {
|
|
421
|
+
error_code: {
|
|
422
|
+
description:
|
|
423
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
424
|
+
enum: ['august_lock_not_authorized'],
|
|
425
|
+
type: 'string',
|
|
515
426
|
},
|
|
516
|
-
{
|
|
427
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
428
|
+
message: { type: 'string' },
|
|
429
|
+
},
|
|
430
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
431
|
+
type: 'object',
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
435
|
+
properties: {
|
|
436
|
+
error_code: {
|
|
437
|
+
description:
|
|
438
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
439
|
+
enum: ['august_lock_missing_bridge'],
|
|
440
|
+
type: 'string',
|
|
441
|
+
},
|
|
442
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
443
|
+
message: { type: 'string' },
|
|
444
|
+
},
|
|
445
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
446
|
+
type: 'object',
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
description: 'Salto site user limit reached.',
|
|
450
|
+
properties: {
|
|
451
|
+
error_code: {
|
|
517
452
|
description:
|
|
518
|
-
'
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
description:
|
|
522
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
523
|
-
enum: ['august_lock_not_authorized'],
|
|
524
|
-
type: 'string',
|
|
525
|
-
},
|
|
526
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
527
|
-
message: { type: 'string' },
|
|
528
|
-
},
|
|
529
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
530
|
-
type: 'object',
|
|
453
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
454
|
+
enum: ['salto_site_user_limit_reached'],
|
|
455
|
+
type: 'string',
|
|
531
456
|
},
|
|
532
|
-
{
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
type: '
|
|
457
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
458
|
+
message: { type: 'string' },
|
|
459
|
+
},
|
|
460
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
461
|
+
type: 'object',
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
description: 'Lock is not paired with a Gateway.',
|
|
465
|
+
properties: {
|
|
466
|
+
error_code: {
|
|
467
|
+
description:
|
|
468
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
469
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
470
|
+
type: 'string',
|
|
546
471
|
},
|
|
547
|
-
{
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
type: '
|
|
472
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
473
|
+
message: { type: 'string' },
|
|
474
|
+
},
|
|
475
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
476
|
+
type: 'object',
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
description: 'Missing device credentials.',
|
|
480
|
+
properties: {
|
|
481
|
+
error_code: {
|
|
482
|
+
description:
|
|
483
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
484
|
+
enum: ['missing_device_credentials'],
|
|
485
|
+
type: 'string',
|
|
561
486
|
},
|
|
562
|
-
{
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
type: '
|
|
487
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
488
|
+
message: { type: 'string' },
|
|
489
|
+
},
|
|
490
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
491
|
+
type: 'object',
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
description: 'The auxiliary heat is running.',
|
|
495
|
+
properties: {
|
|
496
|
+
error_code: {
|
|
497
|
+
description:
|
|
498
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
499
|
+
enum: ['auxiliary_heat_running'],
|
|
500
|
+
type: 'string',
|
|
576
501
|
},
|
|
577
|
-
{
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
type: '
|
|
502
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
503
|
+
message: { type: 'string' },
|
|
504
|
+
},
|
|
505
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
506
|
+
type: 'object',
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
description: 'Subscription required to connect.',
|
|
510
|
+
properties: {
|
|
511
|
+
error_code: {
|
|
512
|
+
description:
|
|
513
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
514
|
+
enum: ['subscription_required'],
|
|
515
|
+
type: 'string',
|
|
591
516
|
},
|
|
592
|
-
{
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
type: '
|
|
517
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
518
|
+
message: { type: 'string' },
|
|
519
|
+
},
|
|
520
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
521
|
+
type: 'object',
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
description: 'Account is disconnected.',
|
|
525
|
+
properties: {
|
|
526
|
+
error_code: {
|
|
527
|
+
description:
|
|
528
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
529
|
+
enum: ['account_disconnected'],
|
|
530
|
+
type: 'string',
|
|
606
531
|
},
|
|
607
|
-
{
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
error_code: {
|
|
611
|
-
description:
|
|
612
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
613
|
-
enum: ['subscription_required'],
|
|
614
|
-
type: 'string',
|
|
615
|
-
},
|
|
616
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
617
|
-
message: { type: 'string' },
|
|
618
|
-
},
|
|
619
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
620
|
-
type: 'object',
|
|
532
|
+
is_connected_account_error: {
|
|
533
|
+
enum: [true],
|
|
534
|
+
type: 'boolean',
|
|
621
535
|
},
|
|
536
|
+
message: { type: 'string' },
|
|
537
|
+
},
|
|
538
|
+
required: [
|
|
539
|
+
'message',
|
|
540
|
+
'is_connected_account_error',
|
|
541
|
+
'error_code',
|
|
622
542
|
],
|
|
543
|
+
type: 'object',
|
|
623
544
|
},
|
|
624
545
|
{
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
enum: ['account_disconnected'],
|
|
633
|
-
type: 'string',
|
|
634
|
-
},
|
|
635
|
-
is_connected_account_error: {
|
|
636
|
-
enum: [true],
|
|
637
|
-
type: 'boolean',
|
|
638
|
-
},
|
|
639
|
-
message: { type: 'string' },
|
|
640
|
-
},
|
|
641
|
-
required: [
|
|
642
|
-
'message',
|
|
643
|
-
'is_connected_account_error',
|
|
644
|
-
'error_code',
|
|
645
|
-
],
|
|
646
|
-
type: 'object',
|
|
546
|
+
description: 'Credentials provided were invalid.',
|
|
547
|
+
properties: {
|
|
548
|
+
error_code: {
|
|
549
|
+
description:
|
|
550
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
551
|
+
enum: ['invalid_credentials'],
|
|
552
|
+
type: 'string',
|
|
647
553
|
},
|
|
648
|
-
{
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
error_code: {
|
|
652
|
-
description:
|
|
653
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
654
|
-
enum: ['invalid_credentials'],
|
|
655
|
-
type: 'string',
|
|
656
|
-
},
|
|
657
|
-
is_connected_account_error: {
|
|
658
|
-
enum: [true],
|
|
659
|
-
type: 'boolean',
|
|
660
|
-
},
|
|
661
|
-
message: { type: 'string' },
|
|
662
|
-
},
|
|
663
|
-
required: [
|
|
664
|
-
'message',
|
|
665
|
-
'is_connected_account_error',
|
|
666
|
-
'error_code',
|
|
667
|
-
],
|
|
668
|
-
type: 'object',
|
|
554
|
+
is_connected_account_error: {
|
|
555
|
+
enum: [true],
|
|
556
|
+
type: 'boolean',
|
|
669
557
|
},
|
|
558
|
+
message: { type: 'string' },
|
|
559
|
+
},
|
|
560
|
+
required: [
|
|
561
|
+
'message',
|
|
562
|
+
'is_connected_account_error',
|
|
563
|
+
'error_code',
|
|
670
564
|
],
|
|
565
|
+
type: 'object',
|
|
671
566
|
},
|
|
672
567
|
],
|
|
673
568
|
},
|
|
@@ -748,6 +643,7 @@ export default {
|
|
|
748
643
|
description:
|
|
749
644
|
'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
|
|
750
645
|
items: {
|
|
646
|
+
discriminator: { propertyName: 'warning_code' },
|
|
751
647
|
oneOf: [
|
|
752
648
|
{
|
|
753
649
|
description: 'Failed to set code on Smart Things device.',
|
|
@@ -792,6 +688,21 @@ export default {
|
|
|
792
688
|
required: ['message', 'warning_code'],
|
|
793
689
|
type: 'object',
|
|
794
690
|
},
|
|
691
|
+
{
|
|
692
|
+
description:
|
|
693
|
+
'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
694
|
+
properties: {
|
|
695
|
+
message: { type: 'string' },
|
|
696
|
+
warning_code: {
|
|
697
|
+
description:
|
|
698
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
699
|
+
enum: ['salto_office_mode'],
|
|
700
|
+
type: 'string',
|
|
701
|
+
},
|
|
702
|
+
},
|
|
703
|
+
required: ['message', 'warning_code'],
|
|
704
|
+
type: 'object',
|
|
705
|
+
},
|
|
795
706
|
{
|
|
796
707
|
description:
|
|
797
708
|
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
@@ -1188,6 +1099,7 @@ export default {
|
|
|
1188
1099
|
description: 'Warnings associated with the `acs_credential`.',
|
|
1189
1100
|
items: {
|
|
1190
1101
|
description: 'Warning associated with the `acs_credential`.',
|
|
1102
|
+
discriminator: { propertyName: 'warning_code' },
|
|
1191
1103
|
oneOf: [
|
|
1192
1104
|
{
|
|
1193
1105
|
description:
|
|
@@ -1677,6 +1589,7 @@ export default {
|
|
|
1677
1589
|
description: 'Errors associated with the `acs_system`.',
|
|
1678
1590
|
items: {
|
|
1679
1591
|
description: 'Error associated with the `acs_system`.',
|
|
1592
|
+
discriminator: { propertyName: 'error_code' },
|
|
1680
1593
|
oneOf: [
|
|
1681
1594
|
{
|
|
1682
1595
|
description:
|
|
@@ -1930,6 +1843,7 @@ export default {
|
|
|
1930
1843
|
description: 'Warnings associated with the `acs_system`.',
|
|
1931
1844
|
items: {
|
|
1932
1845
|
description: 'Warning associated with the `acs_system`.',
|
|
1846
|
+
discriminator: { propertyName: 'warning_code' },
|
|
1933
1847
|
oneOf: [
|
|
1934
1848
|
{
|
|
1935
1849
|
properties: {
|
|
@@ -2069,6 +1983,7 @@ export default {
|
|
|
2069
1983
|
description: 'Errors associated with the `acs_user`.',
|
|
2070
1984
|
items: {
|
|
2071
1985
|
description: 'Error associated with the `acs_user`.',
|
|
1986
|
+
discriminator: { propertyName: 'error_code' },
|
|
2072
1987
|
oneOf: [
|
|
2073
1988
|
{
|
|
2074
1989
|
description:
|
|
@@ -2261,6 +2176,7 @@ export default {
|
|
|
2261
2176
|
description: 'Warnings associated with the `acs_user`.',
|
|
2262
2177
|
items: {
|
|
2263
2178
|
description: 'Warning associated with the `acs_user`.',
|
|
2179
|
+
discriminator: { propertyName: 'warning_code' },
|
|
2264
2180
|
oneOf: [
|
|
2265
2181
|
{
|
|
2266
2182
|
description:
|
|
@@ -2784,6 +2700,7 @@ export default {
|
|
|
2784
2700
|
items: {
|
|
2785
2701
|
description:
|
|
2786
2702
|
'Warning associated with the `acs_credential`.',
|
|
2703
|
+
discriminator: { propertyName: 'warning_code' },
|
|
2787
2704
|
oneOf: [
|
|
2788
2705
|
{
|
|
2789
2706
|
description:
|
|
@@ -3165,6 +3082,7 @@ export default {
|
|
|
3165
3082
|
items: {
|
|
3166
3083
|
description:
|
|
3167
3084
|
'Warning associated with the `acs_credential`.',
|
|
3085
|
+
discriminator: { propertyName: 'warning_code' },
|
|
3168
3086
|
oneOf: [
|
|
3169
3087
|
{
|
|
3170
3088
|
description:
|
|
@@ -3680,6 +3598,7 @@ export default {
|
|
|
3680
3598
|
items: {
|
|
3681
3599
|
description:
|
|
3682
3600
|
'Warning associated with the `acs_credential`.',
|
|
3601
|
+
discriminator: { propertyName: 'warning_code' },
|
|
3683
3602
|
oneOf: [
|
|
3684
3603
|
{
|
|
3685
3604
|
description:
|
|
@@ -4058,6 +3977,7 @@ export default {
|
|
|
4058
3977
|
items: {
|
|
4059
3978
|
description:
|
|
4060
3979
|
'Warning associated with the `acs_credential`.',
|
|
3980
|
+
discriminator: { propertyName: 'warning_code' },
|
|
4061
3981
|
oneOf: [
|
|
4062
3982
|
{
|
|
4063
3983
|
description:
|
|
@@ -5318,13 +5238,14 @@ export default {
|
|
|
5318
5238
|
},
|
|
5319
5239
|
errors: {
|
|
5320
5240
|
items: {
|
|
5241
|
+
discriminator: { propertyName: 'error_code' },
|
|
5321
5242
|
oneOf: [
|
|
5322
5243
|
{
|
|
5323
5244
|
description: 'Account is disconnected.',
|
|
5324
5245
|
properties: {
|
|
5325
5246
|
error_code: {
|
|
5326
5247
|
description:
|
|
5327
|
-
'Unique identifier of the type of
|
|
5248
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5328
5249
|
enum: ['account_disconnected'],
|
|
5329
5250
|
type: 'string',
|
|
5330
5251
|
},
|
|
@@ -5346,7 +5267,7 @@ export default {
|
|
|
5346
5267
|
properties: {
|
|
5347
5268
|
error_code: {
|
|
5348
5269
|
description:
|
|
5349
|
-
'Unique identifier of the type of
|
|
5270
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5350
5271
|
enum: ['invalid_credentials'],
|
|
5351
5272
|
type: 'string',
|
|
5352
5273
|
},
|
|
@@ -5380,6 +5301,7 @@ export default {
|
|
|
5380
5301
|
warnings: {
|
|
5381
5302
|
items: {
|
|
5382
5303
|
description: 'Warning associated with the `connected_account`.',
|
|
5304
|
+
discriminator: { propertyName: 'warning_code' },
|
|
5383
5305
|
oneOf: [
|
|
5384
5306
|
{
|
|
5385
5307
|
description: 'Scheduled downtime for account planned.',
|
|
@@ -5537,255 +5459,231 @@ export default {
|
|
|
5537
5459
|
description:
|
|
5538
5460
|
'Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
|
|
5539
5461
|
items: {
|
|
5462
|
+
discriminator: { propertyName: 'error_code' },
|
|
5540
5463
|
oneOf: [
|
|
5541
5464
|
{
|
|
5542
|
-
description: '
|
|
5543
|
-
|
|
5544
|
-
{
|
|
5545
|
-
description:
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5550
|
-
enum: ['device_offline'],
|
|
5551
|
-
type: 'string',
|
|
5552
|
-
},
|
|
5553
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
5554
|
-
message: { type: 'string' },
|
|
5555
|
-
},
|
|
5556
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
5557
|
-
type: 'object',
|
|
5465
|
+
description: 'Device is offline',
|
|
5466
|
+
properties: {
|
|
5467
|
+
error_code: {
|
|
5468
|
+
description:
|
|
5469
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5470
|
+
enum: ['device_offline'],
|
|
5471
|
+
type: 'string',
|
|
5558
5472
|
},
|
|
5559
|
-
{
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
type: '
|
|
5473
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5474
|
+
message: { type: 'string' },
|
|
5475
|
+
},
|
|
5476
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5477
|
+
type: 'object',
|
|
5478
|
+
},
|
|
5479
|
+
{
|
|
5480
|
+
description: 'Device has been removed',
|
|
5481
|
+
properties: {
|
|
5482
|
+
error_code: {
|
|
5483
|
+
description:
|
|
5484
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5485
|
+
enum: ['device_removed'],
|
|
5486
|
+
type: 'string',
|
|
5573
5487
|
},
|
|
5574
|
-
{
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
type: '
|
|
5488
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5489
|
+
message: { type: 'string' },
|
|
5490
|
+
},
|
|
5491
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5492
|
+
type: 'object',
|
|
5493
|
+
},
|
|
5494
|
+
{
|
|
5495
|
+
description: 'Hub is disconnected',
|
|
5496
|
+
properties: {
|
|
5497
|
+
error_code: {
|
|
5498
|
+
description:
|
|
5499
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5500
|
+
enum: ['hub_disconnected'],
|
|
5501
|
+
type: 'string',
|
|
5588
5502
|
},
|
|
5589
|
-
{
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
type: '
|
|
5503
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5504
|
+
message: { type: 'string' },
|
|
5505
|
+
},
|
|
5506
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5507
|
+
type: 'object',
|
|
5508
|
+
},
|
|
5509
|
+
{
|
|
5510
|
+
description: 'Device is disconnected',
|
|
5511
|
+
properties: {
|
|
5512
|
+
error_code: {
|
|
5513
|
+
description:
|
|
5514
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5515
|
+
enum: ['device_disconnected'],
|
|
5516
|
+
type: 'string',
|
|
5603
5517
|
},
|
|
5604
|
-
{
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
type: '
|
|
5518
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5519
|
+
message: { type: 'string' },
|
|
5520
|
+
},
|
|
5521
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5522
|
+
type: 'object',
|
|
5523
|
+
},
|
|
5524
|
+
{
|
|
5525
|
+
description: 'The backup access code pool is empty.',
|
|
5526
|
+
properties: {
|
|
5527
|
+
error_code: {
|
|
5528
|
+
description:
|
|
5529
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5530
|
+
enum: ['empty_backup_access_code_pool'],
|
|
5531
|
+
type: 'string',
|
|
5618
5532
|
},
|
|
5619
|
-
{
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
type: '
|
|
5533
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5534
|
+
message: { type: 'string' },
|
|
5535
|
+
},
|
|
5536
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5537
|
+
type: 'object',
|
|
5538
|
+
},
|
|
5539
|
+
{
|
|
5540
|
+
description: 'User is not authorized to use the August Lock.',
|
|
5541
|
+
properties: {
|
|
5542
|
+
error_code: {
|
|
5543
|
+
description:
|
|
5544
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5545
|
+
enum: ['august_lock_not_authorized'],
|
|
5546
|
+
type: 'string',
|
|
5547
|
+
},
|
|
5548
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5549
|
+
message: { type: 'string' },
|
|
5550
|
+
},
|
|
5551
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5552
|
+
type: 'object',
|
|
5553
|
+
},
|
|
5554
|
+
{
|
|
5555
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
5556
|
+
properties: {
|
|
5557
|
+
error_code: {
|
|
5558
|
+
description:
|
|
5559
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5560
|
+
enum: ['august_lock_missing_bridge'],
|
|
5561
|
+
type: 'string',
|
|
5633
5562
|
},
|
|
5634
|
-
{
|
|
5563
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5564
|
+
message: { type: 'string' },
|
|
5565
|
+
},
|
|
5566
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5567
|
+
type: 'object',
|
|
5568
|
+
},
|
|
5569
|
+
{
|
|
5570
|
+
description: 'Salto site user limit reached.',
|
|
5571
|
+
properties: {
|
|
5572
|
+
error_code: {
|
|
5635
5573
|
description:
|
|
5636
|
-
'
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
description:
|
|
5640
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5641
|
-
enum: ['august_lock_not_authorized'],
|
|
5642
|
-
type: 'string',
|
|
5643
|
-
},
|
|
5644
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
5645
|
-
message: { type: 'string' },
|
|
5646
|
-
},
|
|
5647
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
5648
|
-
type: 'object',
|
|
5574
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5575
|
+
enum: ['salto_site_user_limit_reached'],
|
|
5576
|
+
type: 'string',
|
|
5649
5577
|
},
|
|
5650
|
-
{
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
type: '
|
|
5578
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5579
|
+
message: { type: 'string' },
|
|
5580
|
+
},
|
|
5581
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5582
|
+
type: 'object',
|
|
5583
|
+
},
|
|
5584
|
+
{
|
|
5585
|
+
description: 'Lock is not paired with a Gateway.',
|
|
5586
|
+
properties: {
|
|
5587
|
+
error_code: {
|
|
5588
|
+
description:
|
|
5589
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5590
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
5591
|
+
type: 'string',
|
|
5664
5592
|
},
|
|
5665
|
-
{
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
type: '
|
|
5593
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5594
|
+
message: { type: 'string' },
|
|
5595
|
+
},
|
|
5596
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5597
|
+
type: 'object',
|
|
5598
|
+
},
|
|
5599
|
+
{
|
|
5600
|
+
description: 'Missing device credentials.',
|
|
5601
|
+
properties: {
|
|
5602
|
+
error_code: {
|
|
5603
|
+
description:
|
|
5604
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5605
|
+
enum: ['missing_device_credentials'],
|
|
5606
|
+
type: 'string',
|
|
5679
5607
|
},
|
|
5680
|
-
{
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
5690
|
-
|
|
5691
|
-
|
|
5692
|
-
|
|
5693
|
-
type: '
|
|
5608
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5609
|
+
message: { type: 'string' },
|
|
5610
|
+
},
|
|
5611
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5612
|
+
type: 'object',
|
|
5613
|
+
},
|
|
5614
|
+
{
|
|
5615
|
+
description: 'The auxiliary heat is running.',
|
|
5616
|
+
properties: {
|
|
5617
|
+
error_code: {
|
|
5618
|
+
description:
|
|
5619
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5620
|
+
enum: ['auxiliary_heat_running'],
|
|
5621
|
+
type: 'string',
|
|
5694
5622
|
},
|
|
5695
|
-
{
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
|
-
|
|
5700
|
-
|
|
5701
|
-
|
|
5702
|
-
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
|
|
5708
|
-
type: '
|
|
5623
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5624
|
+
message: { type: 'string' },
|
|
5625
|
+
},
|
|
5626
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5627
|
+
type: 'object',
|
|
5628
|
+
},
|
|
5629
|
+
{
|
|
5630
|
+
description: 'Subscription required to connect.',
|
|
5631
|
+
properties: {
|
|
5632
|
+
error_code: {
|
|
5633
|
+
description:
|
|
5634
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5635
|
+
enum: ['subscription_required'],
|
|
5636
|
+
type: 'string',
|
|
5709
5637
|
},
|
|
5710
|
-
{
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
type: '
|
|
5638
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5639
|
+
message: { type: 'string' },
|
|
5640
|
+
},
|
|
5641
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5642
|
+
type: 'object',
|
|
5643
|
+
},
|
|
5644
|
+
{
|
|
5645
|
+
description: 'Account is disconnected.',
|
|
5646
|
+
properties: {
|
|
5647
|
+
error_code: {
|
|
5648
|
+
description:
|
|
5649
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5650
|
+
enum: ['account_disconnected'],
|
|
5651
|
+
type: 'string',
|
|
5724
5652
|
},
|
|
5725
|
-
{
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
error_code: {
|
|
5729
|
-
description:
|
|
5730
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5731
|
-
enum: ['subscription_required'],
|
|
5732
|
-
type: 'string',
|
|
5733
|
-
},
|
|
5734
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
5735
|
-
message: { type: 'string' },
|
|
5736
|
-
},
|
|
5737
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
5738
|
-
type: 'object',
|
|
5653
|
+
is_connected_account_error: {
|
|
5654
|
+
enum: [true],
|
|
5655
|
+
type: 'boolean',
|
|
5739
5656
|
},
|
|
5657
|
+
message: { type: 'string' },
|
|
5658
|
+
},
|
|
5659
|
+
required: [
|
|
5660
|
+
'message',
|
|
5661
|
+
'is_connected_account_error',
|
|
5662
|
+
'error_code',
|
|
5740
5663
|
],
|
|
5664
|
+
type: 'object',
|
|
5741
5665
|
},
|
|
5742
5666
|
{
|
|
5743
|
-
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
enum: ['account_disconnected'],
|
|
5751
|
-
type: 'string',
|
|
5752
|
-
},
|
|
5753
|
-
is_connected_account_error: {
|
|
5754
|
-
enum: [true],
|
|
5755
|
-
type: 'boolean',
|
|
5756
|
-
},
|
|
5757
|
-
message: { type: 'string' },
|
|
5758
|
-
},
|
|
5759
|
-
required: [
|
|
5760
|
-
'message',
|
|
5761
|
-
'is_connected_account_error',
|
|
5762
|
-
'error_code',
|
|
5763
|
-
],
|
|
5764
|
-
type: 'object',
|
|
5667
|
+
description: 'Credentials provided were invalid.',
|
|
5668
|
+
properties: {
|
|
5669
|
+
error_code: {
|
|
5670
|
+
description:
|
|
5671
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5672
|
+
enum: ['invalid_credentials'],
|
|
5673
|
+
type: 'string',
|
|
5765
5674
|
},
|
|
5766
|
-
{
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
error_code: {
|
|
5770
|
-
description:
|
|
5771
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
5772
|
-
enum: ['invalid_credentials'],
|
|
5773
|
-
type: 'string',
|
|
5774
|
-
},
|
|
5775
|
-
is_connected_account_error: {
|
|
5776
|
-
enum: [true],
|
|
5777
|
-
type: 'boolean',
|
|
5778
|
-
},
|
|
5779
|
-
message: { type: 'string' },
|
|
5780
|
-
},
|
|
5781
|
-
required: [
|
|
5782
|
-
'message',
|
|
5783
|
-
'is_connected_account_error',
|
|
5784
|
-
'error_code',
|
|
5785
|
-
],
|
|
5786
|
-
type: 'object',
|
|
5675
|
+
is_connected_account_error: {
|
|
5676
|
+
enum: [true],
|
|
5677
|
+
type: 'boolean',
|
|
5787
5678
|
},
|
|
5679
|
+
message: { type: 'string' },
|
|
5680
|
+
},
|
|
5681
|
+
required: [
|
|
5682
|
+
'message',
|
|
5683
|
+
'is_connected_account_error',
|
|
5684
|
+
'error_code',
|
|
5788
5685
|
],
|
|
5686
|
+
type: 'object',
|
|
5789
5687
|
},
|
|
5790
5688
|
],
|
|
5791
5689
|
},
|
|
@@ -7090,6 +6988,7 @@ export default {
|
|
|
7090
6988
|
description:
|
|
7091
6989
|
'Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it.',
|
|
7092
6990
|
items: {
|
|
6991
|
+
discriminator: { propertyName: 'warning_code' },
|
|
7093
6992
|
oneOf: [
|
|
7094
6993
|
{
|
|
7095
6994
|
description: 'Backup access code unhealthy.',
|
|
@@ -11927,255 +11826,231 @@ export default {
|
|
|
11927
11826
|
description:
|
|
11928
11827
|
'Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
|
|
11929
11828
|
items: {
|
|
11829
|
+
discriminator: { propertyName: 'error_code' },
|
|
11930
11830
|
oneOf: [
|
|
11931
11831
|
{
|
|
11932
|
-
description: '
|
|
11933
|
-
|
|
11934
|
-
{
|
|
11935
|
-
description:
|
|
11936
|
-
|
|
11937
|
-
|
|
11938
|
-
|
|
11939
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11940
|
-
enum: ['device_offline'],
|
|
11941
|
-
type: 'string',
|
|
11942
|
-
},
|
|
11943
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
11944
|
-
message: { type: 'string' },
|
|
11945
|
-
},
|
|
11946
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
11947
|
-
type: 'object',
|
|
11832
|
+
description: 'Device is offline',
|
|
11833
|
+
properties: {
|
|
11834
|
+
error_code: {
|
|
11835
|
+
description:
|
|
11836
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11837
|
+
enum: ['device_offline'],
|
|
11838
|
+
type: 'string',
|
|
11948
11839
|
},
|
|
11949
|
-
{
|
|
11950
|
-
|
|
11951
|
-
|
|
11952
|
-
|
|
11953
|
-
|
|
11954
|
-
|
|
11955
|
-
|
|
11956
|
-
|
|
11957
|
-
|
|
11958
|
-
|
|
11959
|
-
|
|
11960
|
-
|
|
11961
|
-
|
|
11962
|
-
type: '
|
|
11840
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11841
|
+
message: { type: 'string' },
|
|
11842
|
+
},
|
|
11843
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11844
|
+
type: 'object',
|
|
11845
|
+
},
|
|
11846
|
+
{
|
|
11847
|
+
description: 'Device has been removed',
|
|
11848
|
+
properties: {
|
|
11849
|
+
error_code: {
|
|
11850
|
+
description:
|
|
11851
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11852
|
+
enum: ['device_removed'],
|
|
11853
|
+
type: 'string',
|
|
11963
11854
|
},
|
|
11964
|
-
{
|
|
11965
|
-
|
|
11966
|
-
|
|
11967
|
-
|
|
11968
|
-
|
|
11969
|
-
|
|
11970
|
-
|
|
11971
|
-
|
|
11972
|
-
|
|
11973
|
-
|
|
11974
|
-
|
|
11975
|
-
|
|
11976
|
-
|
|
11977
|
-
type: '
|
|
11855
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11856
|
+
message: { type: 'string' },
|
|
11857
|
+
},
|
|
11858
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11859
|
+
type: 'object',
|
|
11860
|
+
},
|
|
11861
|
+
{
|
|
11862
|
+
description: 'Hub is disconnected',
|
|
11863
|
+
properties: {
|
|
11864
|
+
error_code: {
|
|
11865
|
+
description:
|
|
11866
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11867
|
+
enum: ['hub_disconnected'],
|
|
11868
|
+
type: 'string',
|
|
11978
11869
|
},
|
|
11979
|
-
{
|
|
11980
|
-
|
|
11981
|
-
|
|
11982
|
-
|
|
11983
|
-
|
|
11984
|
-
|
|
11985
|
-
|
|
11986
|
-
|
|
11987
|
-
|
|
11988
|
-
|
|
11989
|
-
|
|
11990
|
-
|
|
11991
|
-
|
|
11992
|
-
type: '
|
|
11870
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11871
|
+
message: { type: 'string' },
|
|
11872
|
+
},
|
|
11873
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11874
|
+
type: 'object',
|
|
11875
|
+
},
|
|
11876
|
+
{
|
|
11877
|
+
description: 'Device is disconnected',
|
|
11878
|
+
properties: {
|
|
11879
|
+
error_code: {
|
|
11880
|
+
description:
|
|
11881
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11882
|
+
enum: ['device_disconnected'],
|
|
11883
|
+
type: 'string',
|
|
11993
11884
|
},
|
|
11994
|
-
{
|
|
11995
|
-
|
|
11996
|
-
|
|
11997
|
-
|
|
11998
|
-
|
|
11999
|
-
|
|
12000
|
-
|
|
12001
|
-
|
|
12002
|
-
|
|
12003
|
-
|
|
12004
|
-
|
|
12005
|
-
|
|
12006
|
-
|
|
12007
|
-
type: '
|
|
11885
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11886
|
+
message: { type: 'string' },
|
|
11887
|
+
},
|
|
11888
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11889
|
+
type: 'object',
|
|
11890
|
+
},
|
|
11891
|
+
{
|
|
11892
|
+
description: 'The backup access code pool is empty.',
|
|
11893
|
+
properties: {
|
|
11894
|
+
error_code: {
|
|
11895
|
+
description:
|
|
11896
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11897
|
+
enum: ['empty_backup_access_code_pool'],
|
|
11898
|
+
type: 'string',
|
|
12008
11899
|
},
|
|
12009
|
-
{
|
|
12010
|
-
|
|
12011
|
-
|
|
12012
|
-
|
|
12013
|
-
|
|
12014
|
-
|
|
12015
|
-
|
|
12016
|
-
|
|
12017
|
-
|
|
12018
|
-
|
|
12019
|
-
|
|
12020
|
-
|
|
12021
|
-
|
|
12022
|
-
type: '
|
|
11900
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11901
|
+
message: { type: 'string' },
|
|
11902
|
+
},
|
|
11903
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11904
|
+
type: 'object',
|
|
11905
|
+
},
|
|
11906
|
+
{
|
|
11907
|
+
description: 'User is not authorized to use the August Lock.',
|
|
11908
|
+
properties: {
|
|
11909
|
+
error_code: {
|
|
11910
|
+
description:
|
|
11911
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11912
|
+
enum: ['august_lock_not_authorized'],
|
|
11913
|
+
type: 'string',
|
|
11914
|
+
},
|
|
11915
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11916
|
+
message: { type: 'string' },
|
|
11917
|
+
},
|
|
11918
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11919
|
+
type: 'object',
|
|
11920
|
+
},
|
|
11921
|
+
{
|
|
11922
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
11923
|
+
properties: {
|
|
11924
|
+
error_code: {
|
|
11925
|
+
description:
|
|
11926
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11927
|
+
enum: ['august_lock_missing_bridge'],
|
|
11928
|
+
type: 'string',
|
|
12023
11929
|
},
|
|
12024
|
-
{
|
|
11930
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11931
|
+
message: { type: 'string' },
|
|
11932
|
+
},
|
|
11933
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11934
|
+
type: 'object',
|
|
11935
|
+
},
|
|
11936
|
+
{
|
|
11937
|
+
description: 'Salto site user limit reached.',
|
|
11938
|
+
properties: {
|
|
11939
|
+
error_code: {
|
|
12025
11940
|
description:
|
|
12026
|
-
'
|
|
12027
|
-
|
|
12028
|
-
|
|
12029
|
-
description:
|
|
12030
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12031
|
-
enum: ['august_lock_not_authorized'],
|
|
12032
|
-
type: 'string',
|
|
12033
|
-
},
|
|
12034
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
12035
|
-
message: { type: 'string' },
|
|
12036
|
-
},
|
|
12037
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
12038
|
-
type: 'object',
|
|
11941
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11942
|
+
enum: ['salto_site_user_limit_reached'],
|
|
11943
|
+
type: 'string',
|
|
12039
11944
|
},
|
|
12040
|
-
{
|
|
12041
|
-
|
|
12042
|
-
|
|
12043
|
-
|
|
12044
|
-
|
|
12045
|
-
|
|
12046
|
-
|
|
12047
|
-
|
|
12048
|
-
|
|
12049
|
-
|
|
12050
|
-
|
|
12051
|
-
|
|
12052
|
-
|
|
12053
|
-
type: '
|
|
11945
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11946
|
+
message: { type: 'string' },
|
|
11947
|
+
},
|
|
11948
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11949
|
+
type: 'object',
|
|
11950
|
+
},
|
|
11951
|
+
{
|
|
11952
|
+
description: 'Lock is not paired with a Gateway.',
|
|
11953
|
+
properties: {
|
|
11954
|
+
error_code: {
|
|
11955
|
+
description:
|
|
11956
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11957
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
11958
|
+
type: 'string',
|
|
12054
11959
|
},
|
|
12055
|
-
{
|
|
12056
|
-
|
|
12057
|
-
|
|
12058
|
-
|
|
12059
|
-
|
|
12060
|
-
|
|
12061
|
-
|
|
12062
|
-
|
|
12063
|
-
|
|
12064
|
-
|
|
12065
|
-
|
|
12066
|
-
|
|
12067
|
-
|
|
12068
|
-
type: '
|
|
11960
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11961
|
+
message: { type: 'string' },
|
|
11962
|
+
},
|
|
11963
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11964
|
+
type: 'object',
|
|
11965
|
+
},
|
|
11966
|
+
{
|
|
11967
|
+
description: 'Missing device credentials.',
|
|
11968
|
+
properties: {
|
|
11969
|
+
error_code: {
|
|
11970
|
+
description:
|
|
11971
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11972
|
+
enum: ['missing_device_credentials'],
|
|
11973
|
+
type: 'string',
|
|
12069
11974
|
},
|
|
12070
|
-
{
|
|
12071
|
-
|
|
12072
|
-
|
|
12073
|
-
|
|
12074
|
-
|
|
12075
|
-
|
|
12076
|
-
|
|
12077
|
-
|
|
12078
|
-
|
|
12079
|
-
|
|
12080
|
-
|
|
12081
|
-
|
|
12082
|
-
|
|
12083
|
-
type: '
|
|
11975
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11976
|
+
message: { type: 'string' },
|
|
11977
|
+
},
|
|
11978
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11979
|
+
type: 'object',
|
|
11980
|
+
},
|
|
11981
|
+
{
|
|
11982
|
+
description: 'The auxiliary heat is running.',
|
|
11983
|
+
properties: {
|
|
11984
|
+
error_code: {
|
|
11985
|
+
description:
|
|
11986
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11987
|
+
enum: ['auxiliary_heat_running'],
|
|
11988
|
+
type: 'string',
|
|
12084
11989
|
},
|
|
12085
|
-
{
|
|
12086
|
-
|
|
12087
|
-
|
|
12088
|
-
|
|
12089
|
-
|
|
12090
|
-
|
|
12091
|
-
|
|
12092
|
-
|
|
12093
|
-
|
|
12094
|
-
|
|
12095
|
-
|
|
12096
|
-
|
|
12097
|
-
|
|
12098
|
-
type: '
|
|
11990
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11991
|
+
message: { type: 'string' },
|
|
11992
|
+
},
|
|
11993
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11994
|
+
type: 'object',
|
|
11995
|
+
},
|
|
11996
|
+
{
|
|
11997
|
+
description: 'Subscription required to connect.',
|
|
11998
|
+
properties: {
|
|
11999
|
+
error_code: {
|
|
12000
|
+
description:
|
|
12001
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12002
|
+
enum: ['subscription_required'],
|
|
12003
|
+
type: 'string',
|
|
12099
12004
|
},
|
|
12100
|
-
{
|
|
12101
|
-
|
|
12102
|
-
|
|
12103
|
-
|
|
12104
|
-
|
|
12105
|
-
|
|
12106
|
-
|
|
12107
|
-
|
|
12108
|
-
|
|
12109
|
-
|
|
12110
|
-
|
|
12111
|
-
|
|
12112
|
-
|
|
12113
|
-
type: '
|
|
12005
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12006
|
+
message: { type: 'string' },
|
|
12007
|
+
},
|
|
12008
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12009
|
+
type: 'object',
|
|
12010
|
+
},
|
|
12011
|
+
{
|
|
12012
|
+
description: 'Account is disconnected.',
|
|
12013
|
+
properties: {
|
|
12014
|
+
error_code: {
|
|
12015
|
+
description:
|
|
12016
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12017
|
+
enum: ['account_disconnected'],
|
|
12018
|
+
type: 'string',
|
|
12114
12019
|
},
|
|
12115
|
-
{
|
|
12116
|
-
|
|
12117
|
-
|
|
12118
|
-
error_code: {
|
|
12119
|
-
description:
|
|
12120
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12121
|
-
enum: ['subscription_required'],
|
|
12122
|
-
type: 'string',
|
|
12123
|
-
},
|
|
12124
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
12125
|
-
message: { type: 'string' },
|
|
12126
|
-
},
|
|
12127
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
12128
|
-
type: 'object',
|
|
12020
|
+
is_connected_account_error: {
|
|
12021
|
+
enum: [true],
|
|
12022
|
+
type: 'boolean',
|
|
12129
12023
|
},
|
|
12024
|
+
message: { type: 'string' },
|
|
12025
|
+
},
|
|
12026
|
+
required: [
|
|
12027
|
+
'message',
|
|
12028
|
+
'is_connected_account_error',
|
|
12029
|
+
'error_code',
|
|
12130
12030
|
],
|
|
12031
|
+
type: 'object',
|
|
12131
12032
|
},
|
|
12132
12033
|
{
|
|
12133
|
-
|
|
12134
|
-
|
|
12135
|
-
|
|
12136
|
-
|
|
12137
|
-
|
|
12138
|
-
|
|
12139
|
-
|
|
12140
|
-
enum: ['account_disconnected'],
|
|
12141
|
-
type: 'string',
|
|
12142
|
-
},
|
|
12143
|
-
is_connected_account_error: {
|
|
12144
|
-
enum: [true],
|
|
12145
|
-
type: 'boolean',
|
|
12146
|
-
},
|
|
12147
|
-
message: { type: 'string' },
|
|
12148
|
-
},
|
|
12149
|
-
required: [
|
|
12150
|
-
'message',
|
|
12151
|
-
'is_connected_account_error',
|
|
12152
|
-
'error_code',
|
|
12153
|
-
],
|
|
12154
|
-
type: 'object',
|
|
12034
|
+
description: 'Credentials provided were invalid.',
|
|
12035
|
+
properties: {
|
|
12036
|
+
error_code: {
|
|
12037
|
+
description:
|
|
12038
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12039
|
+
enum: ['invalid_credentials'],
|
|
12040
|
+
type: 'string',
|
|
12155
12041
|
},
|
|
12156
|
-
{
|
|
12157
|
-
|
|
12158
|
-
|
|
12159
|
-
error_code: {
|
|
12160
|
-
description:
|
|
12161
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
12162
|
-
enum: ['invalid_credentials'],
|
|
12163
|
-
type: 'string',
|
|
12164
|
-
},
|
|
12165
|
-
is_connected_account_error: {
|
|
12166
|
-
enum: [true],
|
|
12167
|
-
type: 'boolean',
|
|
12168
|
-
},
|
|
12169
|
-
message: { type: 'string' },
|
|
12170
|
-
},
|
|
12171
|
-
required: [
|
|
12172
|
-
'message',
|
|
12173
|
-
'is_connected_account_error',
|
|
12174
|
-
'error_code',
|
|
12175
|
-
],
|
|
12176
|
-
type: 'object',
|
|
12042
|
+
is_connected_account_error: {
|
|
12043
|
+
enum: [true],
|
|
12044
|
+
type: 'boolean',
|
|
12177
12045
|
},
|
|
12046
|
+
message: { type: 'string' },
|
|
12047
|
+
},
|
|
12048
|
+
required: [
|
|
12049
|
+
'message',
|
|
12050
|
+
'is_connected_account_error',
|
|
12051
|
+
'error_code',
|
|
12178
12052
|
],
|
|
12053
|
+
type: 'object',
|
|
12179
12054
|
},
|
|
12180
12055
|
],
|
|
12181
12056
|
},
|
|
@@ -12238,6 +12113,7 @@ export default {
|
|
|
12238
12113
|
description:
|
|
12239
12114
|
'Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it.',
|
|
12240
12115
|
items: {
|
|
12116
|
+
discriminator: { propertyName: 'warning_code' },
|
|
12241
12117
|
oneOf: [
|
|
12242
12118
|
{
|
|
12243
12119
|
description: 'Backup access code unhealthy.',
|
|
@@ -12622,632 +12498,527 @@ export default {
|
|
|
12622
12498
|
description:
|
|
12623
12499
|
'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
12624
12500
|
items: {
|
|
12501
|
+
discriminator: { propertyName: 'error_code' },
|
|
12625
12502
|
oneOf: [
|
|
12626
12503
|
{
|
|
12627
|
-
|
|
12628
|
-
|
|
12629
|
-
|
|
12630
|
-
|
|
12631
|
-
|
|
12632
|
-
|
|
12633
|
-
|
|
12634
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
12635
|
-
type: 'string',
|
|
12636
|
-
},
|
|
12637
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12638
|
-
message: { type: 'string' },
|
|
12639
|
-
},
|
|
12640
|
-
required: [
|
|
12641
|
-
'message',
|
|
12642
|
-
'is_access_code_error',
|
|
12643
|
-
'error_code',
|
|
12644
|
-
],
|
|
12645
|
-
type: 'object',
|
|
12504
|
+
description: 'Failed to set code on Smart Things device.',
|
|
12505
|
+
properties: {
|
|
12506
|
+
error_code: {
|
|
12507
|
+
description:
|
|
12508
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12509
|
+
enum: ['smartthings_failed_to_set_access_code'],
|
|
12510
|
+
type: 'string',
|
|
12646
12511
|
},
|
|
12647
|
-
{
|
|
12648
|
-
|
|
12649
|
-
|
|
12650
|
-
|
|
12651
|
-
|
|
12652
|
-
|
|
12653
|
-
|
|
12654
|
-
|
|
12655
|
-
|
|
12656
|
-
|
|
12657
|
-
|
|
12658
|
-
|
|
12659
|
-
|
|
12660
|
-
|
|
12661
|
-
required: [
|
|
12662
|
-
'message',
|
|
12663
|
-
'is_access_code_error',
|
|
12664
|
-
'error_code',
|
|
12512
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12513
|
+
message: { type: 'string' },
|
|
12514
|
+
},
|
|
12515
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12516
|
+
type: 'object',
|
|
12517
|
+
},
|
|
12518
|
+
{
|
|
12519
|
+
description: 'Failed to set code after multiple retries.',
|
|
12520
|
+
properties: {
|
|
12521
|
+
error_code: {
|
|
12522
|
+
description:
|
|
12523
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12524
|
+
enum: [
|
|
12525
|
+
'smartthings_failed_to_set_after_multiple_retries',
|
|
12665
12526
|
],
|
|
12666
|
-
type: '
|
|
12527
|
+
type: 'string',
|
|
12667
12528
|
},
|
|
12668
|
-
{
|
|
12669
|
-
|
|
12670
|
-
|
|
12671
|
-
|
|
12672
|
-
|
|
12673
|
-
|
|
12674
|
-
|
|
12675
|
-
|
|
12676
|
-
|
|
12677
|
-
|
|
12678
|
-
|
|
12679
|
-
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
'is_access_code_error',
|
|
12683
|
-
'error_code',
|
|
12684
|
-
],
|
|
12685
|
-
type: 'object',
|
|
12529
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12530
|
+
message: { type: 'string' },
|
|
12531
|
+
},
|
|
12532
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12533
|
+
type: 'object',
|
|
12534
|
+
},
|
|
12535
|
+
{
|
|
12536
|
+
description: 'Failed to set code on device.',
|
|
12537
|
+
properties: {
|
|
12538
|
+
error_code: {
|
|
12539
|
+
description:
|
|
12540
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12541
|
+
enum: ['failed_to_set_on_device'],
|
|
12542
|
+
type: 'string',
|
|
12686
12543
|
},
|
|
12687
|
-
{
|
|
12688
|
-
|
|
12689
|
-
|
|
12690
|
-
|
|
12691
|
-
|
|
12692
|
-
|
|
12693
|
-
|
|
12694
|
-
|
|
12695
|
-
|
|
12696
|
-
|
|
12697
|
-
|
|
12698
|
-
|
|
12699
|
-
|
|
12700
|
-
|
|
12701
|
-
'is_access_code_error',
|
|
12702
|
-
'error_code',
|
|
12703
|
-
],
|
|
12704
|
-
type: 'object',
|
|
12544
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12545
|
+
message: { type: 'string' },
|
|
12546
|
+
},
|
|
12547
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12548
|
+
type: 'object',
|
|
12549
|
+
},
|
|
12550
|
+
{
|
|
12551
|
+
description: 'Failed to remove code from device.',
|
|
12552
|
+
properties: {
|
|
12553
|
+
error_code: {
|
|
12554
|
+
description:
|
|
12555
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12556
|
+
enum: ['failed_to_remove_from_device'],
|
|
12557
|
+
type: 'string',
|
|
12705
12558
|
},
|
|
12706
|
-
{
|
|
12707
|
-
|
|
12708
|
-
|
|
12709
|
-
|
|
12710
|
-
|
|
12711
|
-
|
|
12712
|
-
|
|
12713
|
-
|
|
12714
|
-
|
|
12715
|
-
|
|
12716
|
-
|
|
12717
|
-
|
|
12718
|
-
|
|
12719
|
-
|
|
12720
|
-
|
|
12721
|
-
|
|
12722
|
-
|
|
12723
|
-
|
|
12559
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12560
|
+
message: { type: 'string' },
|
|
12561
|
+
},
|
|
12562
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12563
|
+
type: 'object',
|
|
12564
|
+
},
|
|
12565
|
+
{
|
|
12566
|
+
description: 'Duplicate access code detected on device.',
|
|
12567
|
+
properties: {
|
|
12568
|
+
error_code: {
|
|
12569
|
+
description:
|
|
12570
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12571
|
+
enum: ['duplicate_code_on_device'],
|
|
12572
|
+
type: 'string',
|
|
12573
|
+
},
|
|
12574
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12575
|
+
message: { type: 'string' },
|
|
12576
|
+
},
|
|
12577
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12578
|
+
type: 'object',
|
|
12579
|
+
},
|
|
12580
|
+
{
|
|
12581
|
+
description:
|
|
12582
|
+
'An attempt to modify this access code was prevented.',
|
|
12583
|
+
properties: {
|
|
12584
|
+
error_code: {
|
|
12585
|
+
description:
|
|
12586
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12587
|
+
enum: ['duplicate_code_attempt_prevented'],
|
|
12588
|
+
type: 'string',
|
|
12724
12589
|
},
|
|
12725
|
-
{
|
|
12590
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12591
|
+
message: { type: 'string' },
|
|
12592
|
+
},
|
|
12593
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12594
|
+
type: 'object',
|
|
12595
|
+
},
|
|
12596
|
+
{
|
|
12597
|
+
description:
|
|
12598
|
+
'Igloohome bridge has too many pending jobs in the queue.',
|
|
12599
|
+
properties: {
|
|
12600
|
+
error_code: {
|
|
12726
12601
|
description:
|
|
12727
|
-
'
|
|
12728
|
-
|
|
12729
|
-
|
|
12730
|
-
description:
|
|
12731
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12732
|
-
enum: ['duplicate_code_attempt_prevented'],
|
|
12733
|
-
type: 'string',
|
|
12734
|
-
},
|
|
12735
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12736
|
-
message: { type: 'string' },
|
|
12737
|
-
},
|
|
12738
|
-
required: [
|
|
12739
|
-
'message',
|
|
12740
|
-
'is_access_code_error',
|
|
12741
|
-
'error_code',
|
|
12742
|
-
],
|
|
12743
|
-
type: 'object',
|
|
12602
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12603
|
+
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
12604
|
+
type: 'string',
|
|
12744
12605
|
},
|
|
12745
|
-
{
|
|
12606
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12607
|
+
message: { type: 'string' },
|
|
12608
|
+
},
|
|
12609
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12610
|
+
type: 'object',
|
|
12611
|
+
},
|
|
12612
|
+
{
|
|
12613
|
+
description: 'Igloohome bridge is offline.',
|
|
12614
|
+
properties: {
|
|
12615
|
+
error_code: {
|
|
12746
12616
|
description:
|
|
12747
|
-
'
|
|
12748
|
-
|
|
12749
|
-
|
|
12750
|
-
description:
|
|
12751
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12752
|
-
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
12753
|
-
type: 'string',
|
|
12754
|
-
},
|
|
12755
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12756
|
-
message: { type: 'string' },
|
|
12757
|
-
},
|
|
12758
|
-
required: [
|
|
12759
|
-
'message',
|
|
12760
|
-
'is_access_code_error',
|
|
12761
|
-
'error_code',
|
|
12762
|
-
],
|
|
12763
|
-
type: 'object',
|
|
12617
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12618
|
+
enum: ['igloohome_bridge_offline'],
|
|
12619
|
+
type: 'string',
|
|
12764
12620
|
},
|
|
12765
|
-
{
|
|
12766
|
-
|
|
12767
|
-
|
|
12768
|
-
|
|
12769
|
-
|
|
12770
|
-
|
|
12771
|
-
|
|
12772
|
-
|
|
12773
|
-
|
|
12774
|
-
|
|
12775
|
-
|
|
12776
|
-
|
|
12777
|
-
|
|
12778
|
-
'
|
|
12779
|
-
'is_access_code_error',
|
|
12780
|
-
'error_code',
|
|
12621
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12622
|
+
message: { type: 'string' },
|
|
12623
|
+
},
|
|
12624
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12625
|
+
type: 'object',
|
|
12626
|
+
},
|
|
12627
|
+
{
|
|
12628
|
+
description: 'Lock as reached max amount of codes.',
|
|
12629
|
+
properties: {
|
|
12630
|
+
error_code: {
|
|
12631
|
+
description:
|
|
12632
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12633
|
+
enum: [
|
|
12634
|
+
'igloohome_offline_access_code_no_variance_available',
|
|
12781
12635
|
],
|
|
12782
|
-
type: '
|
|
12636
|
+
type: 'string',
|
|
12783
12637
|
},
|
|
12784
|
-
{
|
|
12785
|
-
|
|
12786
|
-
|
|
12787
|
-
|
|
12788
|
-
|
|
12789
|
-
|
|
12790
|
-
|
|
12791
|
-
|
|
12792
|
-
|
|
12793
|
-
|
|
12794
|
-
|
|
12795
|
-
|
|
12796
|
-
|
|
12797
|
-
|
|
12798
|
-
|
|
12799
|
-
'message',
|
|
12800
|
-
'is_access_code_error',
|
|
12801
|
-
'error_code',
|
|
12802
|
-
],
|
|
12803
|
-
type: 'object',
|
|
12638
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12639
|
+
message: { type: 'string' },
|
|
12640
|
+
},
|
|
12641
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12642
|
+
type: 'object',
|
|
12643
|
+
},
|
|
12644
|
+
{
|
|
12645
|
+
description:
|
|
12646
|
+
'Unable to confirm the access code is set on Kwikset device.',
|
|
12647
|
+
properties: {
|
|
12648
|
+
error_code: {
|
|
12649
|
+
description:
|
|
12650
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12651
|
+
enum: ['kwikset_unable_to_confirm_code'],
|
|
12652
|
+
type: 'string',
|
|
12804
12653
|
},
|
|
12805
|
-
{
|
|
12654
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12655
|
+
message: { type: 'string' },
|
|
12656
|
+
},
|
|
12657
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12658
|
+
type: 'object',
|
|
12659
|
+
},
|
|
12660
|
+
{
|
|
12661
|
+
description:
|
|
12662
|
+
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
12663
|
+
properties: {
|
|
12664
|
+
error_code: {
|
|
12806
12665
|
description:
|
|
12807
|
-
'
|
|
12808
|
-
|
|
12809
|
-
|
|
12810
|
-
description:
|
|
12811
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12812
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
12813
|
-
type: 'string',
|
|
12814
|
-
},
|
|
12815
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12816
|
-
message: { type: 'string' },
|
|
12817
|
-
},
|
|
12818
|
-
required: [
|
|
12819
|
-
'message',
|
|
12820
|
-
'is_access_code_error',
|
|
12821
|
-
'error_code',
|
|
12822
|
-
],
|
|
12823
|
-
type: 'object',
|
|
12666
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12667
|
+
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
12668
|
+
type: 'string',
|
|
12824
12669
|
},
|
|
12825
|
-
{
|
|
12670
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12671
|
+
message: { type: 'string' },
|
|
12672
|
+
},
|
|
12673
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12674
|
+
type: 'object',
|
|
12675
|
+
},
|
|
12676
|
+
{
|
|
12677
|
+
description:
|
|
12678
|
+
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
12679
|
+
properties: {
|
|
12680
|
+
error_code: {
|
|
12826
12681
|
description:
|
|
12827
|
-
'
|
|
12828
|
-
|
|
12829
|
-
|
|
12830
|
-
description:
|
|
12831
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12832
|
-
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
12833
|
-
type: 'string',
|
|
12834
|
-
},
|
|
12835
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12836
|
-
message: { type: 'string' },
|
|
12837
|
-
},
|
|
12838
|
-
required: [
|
|
12839
|
-
'message',
|
|
12840
|
-
'is_access_code_error',
|
|
12841
|
-
'error_code',
|
|
12842
|
-
],
|
|
12843
|
-
type: 'object',
|
|
12682
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12683
|
+
enum: ['code_modified_external_to_seam'],
|
|
12684
|
+
type: 'string',
|
|
12844
12685
|
},
|
|
12845
|
-
{
|
|
12686
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12687
|
+
message: { type: 'string' },
|
|
12688
|
+
},
|
|
12689
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12690
|
+
type: 'object',
|
|
12691
|
+
},
|
|
12692
|
+
{
|
|
12693
|
+
description: 'Invalid code length for August lock.',
|
|
12694
|
+
properties: {
|
|
12695
|
+
error_code: {
|
|
12846
12696
|
description:
|
|
12847
|
-
'
|
|
12848
|
-
|
|
12849
|
-
|
|
12850
|
-
description:
|
|
12851
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12852
|
-
enum: ['code_modified_external_to_seam'],
|
|
12853
|
-
type: 'string',
|
|
12854
|
-
},
|
|
12855
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12856
|
-
message: { type: 'string' },
|
|
12857
|
-
},
|
|
12858
|
-
required: [
|
|
12859
|
-
'message',
|
|
12860
|
-
'is_access_code_error',
|
|
12861
|
-
'error_code',
|
|
12862
|
-
],
|
|
12863
|
-
type: 'object',
|
|
12697
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12698
|
+
enum: ['august_lock_invalid_code_length'],
|
|
12699
|
+
type: 'string',
|
|
12864
12700
|
},
|
|
12865
|
-
{
|
|
12866
|
-
|
|
12867
|
-
|
|
12868
|
-
|
|
12869
|
-
|
|
12870
|
-
|
|
12871
|
-
|
|
12872
|
-
|
|
12873
|
-
|
|
12874
|
-
|
|
12875
|
-
|
|
12876
|
-
|
|
12877
|
-
|
|
12878
|
-
|
|
12879
|
-
|
|
12880
|
-
'error_code',
|
|
12881
|
-
],
|
|
12882
|
-
type: 'object',
|
|
12701
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12702
|
+
message: { type: 'string' },
|
|
12703
|
+
},
|
|
12704
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12705
|
+
type: 'object',
|
|
12706
|
+
},
|
|
12707
|
+
{
|
|
12708
|
+
description:
|
|
12709
|
+
'Access code has not yet been fully moved to the device.',
|
|
12710
|
+
properties: {
|
|
12711
|
+
error_code: {
|
|
12712
|
+
description:
|
|
12713
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12714
|
+
enum: ['august_device_programming_delay'],
|
|
12715
|
+
type: 'string',
|
|
12883
12716
|
},
|
|
12884
|
-
{
|
|
12717
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12718
|
+
message: { type: 'string' },
|
|
12719
|
+
},
|
|
12720
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12721
|
+
type: 'object',
|
|
12722
|
+
},
|
|
12723
|
+
{
|
|
12724
|
+
description: 'All access code slots on the device are full.',
|
|
12725
|
+
properties: {
|
|
12726
|
+
error_code: {
|
|
12885
12727
|
description:
|
|
12886
|
-
'
|
|
12887
|
-
|
|
12888
|
-
|
|
12889
|
-
description:
|
|
12890
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12891
|
-
enum: ['august_device_programming_delay'],
|
|
12892
|
-
type: 'string',
|
|
12893
|
-
},
|
|
12894
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12895
|
-
message: { type: 'string' },
|
|
12896
|
-
},
|
|
12897
|
-
required: [
|
|
12898
|
-
'message',
|
|
12899
|
-
'is_access_code_error',
|
|
12900
|
-
'error_code',
|
|
12901
|
-
],
|
|
12902
|
-
type: 'object',
|
|
12728
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12729
|
+
enum: ['august_device_slots_full'],
|
|
12730
|
+
type: 'string',
|
|
12903
12731
|
},
|
|
12904
|
-
{
|
|
12732
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12733
|
+
message: { type: 'string' },
|
|
12734
|
+
},
|
|
12735
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12736
|
+
type: 'object',
|
|
12737
|
+
},
|
|
12738
|
+
{
|
|
12739
|
+
description: 'August lock is missing a keypad.',
|
|
12740
|
+
properties: {
|
|
12741
|
+
error_code: {
|
|
12905
12742
|
description:
|
|
12906
|
-
'
|
|
12907
|
-
|
|
12908
|
-
|
|
12909
|
-
description:
|
|
12910
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12911
|
-
enum: ['august_device_slots_full'],
|
|
12912
|
-
type: 'string',
|
|
12913
|
-
},
|
|
12914
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12915
|
-
message: { type: 'string' },
|
|
12916
|
-
},
|
|
12917
|
-
required: [
|
|
12918
|
-
'message',
|
|
12919
|
-
'is_access_code_error',
|
|
12920
|
-
'error_code',
|
|
12921
|
-
],
|
|
12922
|
-
type: 'object',
|
|
12743
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12744
|
+
enum: ['august_lock_missing_keypad'],
|
|
12745
|
+
type: 'string',
|
|
12923
12746
|
},
|
|
12924
|
-
{
|
|
12925
|
-
|
|
12926
|
-
|
|
12927
|
-
|
|
12928
|
-
|
|
12929
|
-
|
|
12930
|
-
|
|
12931
|
-
|
|
12932
|
-
|
|
12933
|
-
|
|
12934
|
-
|
|
12935
|
-
|
|
12936
|
-
|
|
12937
|
-
|
|
12938
|
-
'is_access_code_error',
|
|
12939
|
-
'error_code',
|
|
12940
|
-
],
|
|
12941
|
-
type: 'object',
|
|
12747
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12748
|
+
message: { type: 'string' },
|
|
12749
|
+
},
|
|
12750
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12751
|
+
type: 'object',
|
|
12752
|
+
},
|
|
12753
|
+
{
|
|
12754
|
+
description: 'Salto site user is not subscribed.',
|
|
12755
|
+
properties: {
|
|
12756
|
+
error_code: {
|
|
12757
|
+
description:
|
|
12758
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12759
|
+
enum: ['salto_site_user_not_subscribed'],
|
|
12760
|
+
type: 'string',
|
|
12942
12761
|
},
|
|
12943
|
-
{
|
|
12944
|
-
|
|
12945
|
-
|
|
12946
|
-
|
|
12947
|
-
|
|
12948
|
-
|
|
12949
|
-
|
|
12950
|
-
|
|
12951
|
-
|
|
12952
|
-
|
|
12953
|
-
|
|
12954
|
-
|
|
12955
|
-
|
|
12956
|
-
|
|
12957
|
-
|
|
12958
|
-
'error_code',
|
|
12959
|
-
],
|
|
12960
|
-
type: 'object',
|
|
12762
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12763
|
+
message: { type: 'string' },
|
|
12764
|
+
},
|
|
12765
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12766
|
+
type: 'object',
|
|
12767
|
+
},
|
|
12768
|
+
{
|
|
12769
|
+
description:
|
|
12770
|
+
'Access code has not yet been fully moved to the device.',
|
|
12771
|
+
properties: {
|
|
12772
|
+
error_code: {
|
|
12773
|
+
description:
|
|
12774
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12775
|
+
enum: ['hubitat_device_programming_delay'],
|
|
12776
|
+
type: 'string',
|
|
12961
12777
|
},
|
|
12962
|
-
{
|
|
12778
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12779
|
+
message: { type: 'string' },
|
|
12780
|
+
},
|
|
12781
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12782
|
+
type: 'object',
|
|
12783
|
+
},
|
|
12784
|
+
{
|
|
12785
|
+
description: 'No free positions available on the device.',
|
|
12786
|
+
properties: {
|
|
12787
|
+
error_code: {
|
|
12963
12788
|
description:
|
|
12964
|
-
'
|
|
12965
|
-
|
|
12966
|
-
|
|
12967
|
-
description:
|
|
12968
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12969
|
-
enum: ['hubitat_device_programming_delay'],
|
|
12970
|
-
type: 'string',
|
|
12971
|
-
},
|
|
12972
|
-
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12973
|
-
message: { type: 'string' },
|
|
12974
|
-
},
|
|
12975
|
-
required: [
|
|
12976
|
-
'message',
|
|
12977
|
-
'is_access_code_error',
|
|
12978
|
-
'error_code',
|
|
12979
|
-
],
|
|
12980
|
-
type: 'object',
|
|
12789
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12790
|
+
enum: ['hubitat_no_free_positions_available'],
|
|
12791
|
+
type: 'string',
|
|
12981
12792
|
},
|
|
12982
|
-
{
|
|
12983
|
-
|
|
12984
|
-
|
|
12985
|
-
|
|
12986
|
-
|
|
12987
|
-
|
|
12988
|
-
|
|
12989
|
-
|
|
12990
|
-
|
|
12991
|
-
|
|
12992
|
-
|
|
12993
|
-
|
|
12994
|
-
|
|
12995
|
-
|
|
12996
|
-
'is_access_code_error',
|
|
12997
|
-
'error_code',
|
|
12998
|
-
],
|
|
12999
|
-
type: 'object',
|
|
12793
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12794
|
+
message: { type: 'string' },
|
|
12795
|
+
},
|
|
12796
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12797
|
+
type: 'object',
|
|
12798
|
+
},
|
|
12799
|
+
{
|
|
12800
|
+
description: 'Device is offline',
|
|
12801
|
+
properties: {
|
|
12802
|
+
error_code: {
|
|
12803
|
+
description:
|
|
12804
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12805
|
+
enum: ['device_offline'],
|
|
12806
|
+
type: 'string',
|
|
13000
12807
|
},
|
|
13001
|
-
|
|
12808
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12809
|
+
message: { type: 'string' },
|
|
12810
|
+
},
|
|
12811
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12812
|
+
type: 'object',
|
|
13002
12813
|
},
|
|
13003
12814
|
{
|
|
13004
|
-
description: '
|
|
13005
|
-
|
|
13006
|
-
{
|
|
13007
|
-
description:
|
|
13008
|
-
|
|
13009
|
-
|
|
13010
|
-
|
|
13011
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13012
|
-
enum: ['device_offline'],
|
|
13013
|
-
type: 'string',
|
|
13014
|
-
},
|
|
13015
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
13016
|
-
message: { type: 'string' },
|
|
13017
|
-
},
|
|
13018
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
13019
|
-
type: 'object',
|
|
12815
|
+
description: 'Device has been removed',
|
|
12816
|
+
properties: {
|
|
12817
|
+
error_code: {
|
|
12818
|
+
description:
|
|
12819
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12820
|
+
enum: ['device_removed'],
|
|
12821
|
+
type: 'string',
|
|
13020
12822
|
},
|
|
13021
|
-
{
|
|
13022
|
-
|
|
13023
|
-
|
|
13024
|
-
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
|
|
13028
|
-
|
|
13029
|
-
|
|
13030
|
-
|
|
13031
|
-
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
type: '
|
|
12823
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12824
|
+
message: { type: 'string' },
|
|
12825
|
+
},
|
|
12826
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12827
|
+
type: 'object',
|
|
12828
|
+
},
|
|
12829
|
+
{
|
|
12830
|
+
description: 'Hub is disconnected',
|
|
12831
|
+
properties: {
|
|
12832
|
+
error_code: {
|
|
12833
|
+
description:
|
|
12834
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12835
|
+
enum: ['hub_disconnected'],
|
|
12836
|
+
type: 'string',
|
|
13035
12837
|
},
|
|
13036
|
-
{
|
|
13037
|
-
|
|
13038
|
-
|
|
13039
|
-
|
|
13040
|
-
|
|
13041
|
-
|
|
13042
|
-
|
|
13043
|
-
|
|
13044
|
-
|
|
13045
|
-
|
|
13046
|
-
|
|
13047
|
-
|
|
13048
|
-
|
|
13049
|
-
type: '
|
|
12838
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12839
|
+
message: { type: 'string' },
|
|
12840
|
+
},
|
|
12841
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12842
|
+
type: 'object',
|
|
12843
|
+
},
|
|
12844
|
+
{
|
|
12845
|
+
description: 'Device is disconnected',
|
|
12846
|
+
properties: {
|
|
12847
|
+
error_code: {
|
|
12848
|
+
description:
|
|
12849
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12850
|
+
enum: ['device_disconnected'],
|
|
12851
|
+
type: 'string',
|
|
13050
12852
|
},
|
|
13051
|
-
{
|
|
13052
|
-
|
|
13053
|
-
|
|
13054
|
-
|
|
13055
|
-
|
|
13056
|
-
|
|
13057
|
-
|
|
13058
|
-
|
|
13059
|
-
|
|
13060
|
-
|
|
13061
|
-
|
|
13062
|
-
|
|
13063
|
-
|
|
13064
|
-
type: '
|
|
12853
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12854
|
+
message: { type: 'string' },
|
|
12855
|
+
},
|
|
12856
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12857
|
+
type: 'object',
|
|
12858
|
+
},
|
|
12859
|
+
{
|
|
12860
|
+
description: 'The backup access code pool is empty.',
|
|
12861
|
+
properties: {
|
|
12862
|
+
error_code: {
|
|
12863
|
+
description:
|
|
12864
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12865
|
+
enum: ['empty_backup_access_code_pool'],
|
|
12866
|
+
type: 'string',
|
|
13065
12867
|
},
|
|
13066
|
-
{
|
|
13067
|
-
|
|
13068
|
-
|
|
13069
|
-
|
|
13070
|
-
|
|
13071
|
-
|
|
13072
|
-
|
|
13073
|
-
|
|
13074
|
-
|
|
13075
|
-
|
|
13076
|
-
|
|
13077
|
-
|
|
13078
|
-
|
|
13079
|
-
type: '
|
|
12868
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12869
|
+
message: { type: 'string' },
|
|
12870
|
+
},
|
|
12871
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12872
|
+
type: 'object',
|
|
12873
|
+
},
|
|
12874
|
+
{
|
|
12875
|
+
description: 'User is not authorized to use the August Lock.',
|
|
12876
|
+
properties: {
|
|
12877
|
+
error_code: {
|
|
12878
|
+
description:
|
|
12879
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12880
|
+
enum: ['august_lock_not_authorized'],
|
|
12881
|
+
type: 'string',
|
|
13080
12882
|
},
|
|
13081
|
-
{
|
|
13082
|
-
|
|
13083
|
-
|
|
13084
|
-
|
|
13085
|
-
|
|
13086
|
-
|
|
13087
|
-
|
|
13088
|
-
|
|
13089
|
-
|
|
13090
|
-
|
|
13091
|
-
|
|
13092
|
-
|
|
13093
|
-
|
|
13094
|
-
type: '
|
|
12883
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12884
|
+
message: { type: 'string' },
|
|
12885
|
+
},
|
|
12886
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12887
|
+
type: 'object',
|
|
12888
|
+
},
|
|
12889
|
+
{
|
|
12890
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
12891
|
+
properties: {
|
|
12892
|
+
error_code: {
|
|
12893
|
+
description:
|
|
12894
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12895
|
+
enum: ['august_lock_missing_bridge'],
|
|
12896
|
+
type: 'string',
|
|
13095
12897
|
},
|
|
13096
|
-
{
|
|
12898
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12899
|
+
message: { type: 'string' },
|
|
12900
|
+
},
|
|
12901
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12902
|
+
type: 'object',
|
|
12903
|
+
},
|
|
12904
|
+
{
|
|
12905
|
+
description: 'Salto site user limit reached.',
|
|
12906
|
+
properties: {
|
|
12907
|
+
error_code: {
|
|
13097
12908
|
description:
|
|
13098
|
-
'
|
|
13099
|
-
|
|
13100
|
-
|
|
13101
|
-
description:
|
|
13102
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13103
|
-
enum: ['august_lock_not_authorized'],
|
|
13104
|
-
type: 'string',
|
|
13105
|
-
},
|
|
13106
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
13107
|
-
message: { type: 'string' },
|
|
13108
|
-
},
|
|
13109
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
13110
|
-
type: 'object',
|
|
12909
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12910
|
+
enum: ['salto_site_user_limit_reached'],
|
|
12911
|
+
type: 'string',
|
|
13111
12912
|
},
|
|
13112
|
-
{
|
|
13113
|
-
|
|
13114
|
-
|
|
13115
|
-
|
|
13116
|
-
|
|
13117
|
-
|
|
13118
|
-
|
|
13119
|
-
|
|
13120
|
-
|
|
13121
|
-
|
|
13122
|
-
|
|
13123
|
-
|
|
13124
|
-
|
|
13125
|
-
type: '
|
|
12913
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12914
|
+
message: { type: 'string' },
|
|
12915
|
+
},
|
|
12916
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12917
|
+
type: 'object',
|
|
12918
|
+
},
|
|
12919
|
+
{
|
|
12920
|
+
description: 'Lock is not paired with a Gateway.',
|
|
12921
|
+
properties: {
|
|
12922
|
+
error_code: {
|
|
12923
|
+
description:
|
|
12924
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12925
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
12926
|
+
type: 'string',
|
|
13126
12927
|
},
|
|
13127
|
-
{
|
|
13128
|
-
|
|
13129
|
-
|
|
13130
|
-
|
|
13131
|
-
|
|
13132
|
-
|
|
13133
|
-
|
|
13134
|
-
|
|
13135
|
-
|
|
13136
|
-
|
|
13137
|
-
|
|
13138
|
-
|
|
13139
|
-
|
|
13140
|
-
type: '
|
|
12928
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12929
|
+
message: { type: 'string' },
|
|
12930
|
+
},
|
|
12931
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12932
|
+
type: 'object',
|
|
12933
|
+
},
|
|
12934
|
+
{
|
|
12935
|
+
description: 'Missing device credentials.',
|
|
12936
|
+
properties: {
|
|
12937
|
+
error_code: {
|
|
12938
|
+
description:
|
|
12939
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12940
|
+
enum: ['missing_device_credentials'],
|
|
12941
|
+
type: 'string',
|
|
13141
12942
|
},
|
|
13142
|
-
{
|
|
13143
|
-
|
|
13144
|
-
|
|
13145
|
-
|
|
13146
|
-
|
|
13147
|
-
|
|
13148
|
-
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
|
|
13152
|
-
|
|
13153
|
-
|
|
13154
|
-
|
|
13155
|
-
type: '
|
|
12943
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12944
|
+
message: { type: 'string' },
|
|
12945
|
+
},
|
|
12946
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12947
|
+
type: 'object',
|
|
12948
|
+
},
|
|
12949
|
+
{
|
|
12950
|
+
description: 'The auxiliary heat is running.',
|
|
12951
|
+
properties: {
|
|
12952
|
+
error_code: {
|
|
12953
|
+
description:
|
|
12954
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12955
|
+
enum: ['auxiliary_heat_running'],
|
|
12956
|
+
type: 'string',
|
|
13156
12957
|
},
|
|
13157
|
-
{
|
|
13158
|
-
|
|
13159
|
-
|
|
13160
|
-
|
|
13161
|
-
|
|
13162
|
-
|
|
13163
|
-
|
|
13164
|
-
|
|
13165
|
-
|
|
13166
|
-
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
type: '
|
|
12958
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12959
|
+
message: { type: 'string' },
|
|
12960
|
+
},
|
|
12961
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12962
|
+
type: 'object',
|
|
12963
|
+
},
|
|
12964
|
+
{
|
|
12965
|
+
description: 'Subscription required to connect.',
|
|
12966
|
+
properties: {
|
|
12967
|
+
error_code: {
|
|
12968
|
+
description:
|
|
12969
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12970
|
+
enum: ['subscription_required'],
|
|
12971
|
+
type: 'string',
|
|
13171
12972
|
},
|
|
13172
|
-
{
|
|
13173
|
-
|
|
13174
|
-
|
|
13175
|
-
|
|
13176
|
-
|
|
13177
|
-
|
|
13178
|
-
|
|
13179
|
-
|
|
13180
|
-
|
|
13181
|
-
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13185
|
-
type: '
|
|
12973
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12974
|
+
message: { type: 'string' },
|
|
12975
|
+
},
|
|
12976
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12977
|
+
type: 'object',
|
|
12978
|
+
},
|
|
12979
|
+
{
|
|
12980
|
+
description: 'Account is disconnected.',
|
|
12981
|
+
properties: {
|
|
12982
|
+
error_code: {
|
|
12983
|
+
description:
|
|
12984
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12985
|
+
enum: ['account_disconnected'],
|
|
12986
|
+
type: 'string',
|
|
13186
12987
|
},
|
|
13187
|
-
{
|
|
13188
|
-
|
|
13189
|
-
|
|
13190
|
-
error_code: {
|
|
13191
|
-
description:
|
|
13192
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13193
|
-
enum: ['subscription_required'],
|
|
13194
|
-
type: 'string',
|
|
13195
|
-
},
|
|
13196
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
13197
|
-
message: { type: 'string' },
|
|
13198
|
-
},
|
|
13199
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
13200
|
-
type: 'object',
|
|
12988
|
+
is_connected_account_error: {
|
|
12989
|
+
enum: [true],
|
|
12990
|
+
type: 'boolean',
|
|
13201
12991
|
},
|
|
12992
|
+
message: { type: 'string' },
|
|
12993
|
+
},
|
|
12994
|
+
required: [
|
|
12995
|
+
'message',
|
|
12996
|
+
'is_connected_account_error',
|
|
12997
|
+
'error_code',
|
|
13202
12998
|
],
|
|
12999
|
+
type: 'object',
|
|
13203
13000
|
},
|
|
13204
13001
|
{
|
|
13205
|
-
|
|
13206
|
-
|
|
13207
|
-
|
|
13208
|
-
|
|
13209
|
-
|
|
13210
|
-
|
|
13211
|
-
|
|
13212
|
-
enum: ['account_disconnected'],
|
|
13213
|
-
type: 'string',
|
|
13214
|
-
},
|
|
13215
|
-
is_connected_account_error: {
|
|
13216
|
-
enum: [true],
|
|
13217
|
-
type: 'boolean',
|
|
13218
|
-
},
|
|
13219
|
-
message: { type: 'string' },
|
|
13220
|
-
},
|
|
13221
|
-
required: [
|
|
13222
|
-
'message',
|
|
13223
|
-
'is_connected_account_error',
|
|
13224
|
-
'error_code',
|
|
13225
|
-
],
|
|
13226
|
-
type: 'object',
|
|
13002
|
+
description: 'Credentials provided were invalid.',
|
|
13003
|
+
properties: {
|
|
13004
|
+
error_code: {
|
|
13005
|
+
description:
|
|
13006
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13007
|
+
enum: ['invalid_credentials'],
|
|
13008
|
+
type: 'string',
|
|
13227
13009
|
},
|
|
13228
|
-
{
|
|
13229
|
-
|
|
13230
|
-
|
|
13231
|
-
error_code: {
|
|
13232
|
-
description:
|
|
13233
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13234
|
-
enum: ['invalid_credentials'],
|
|
13235
|
-
type: 'string',
|
|
13236
|
-
},
|
|
13237
|
-
is_connected_account_error: {
|
|
13238
|
-
enum: [true],
|
|
13239
|
-
type: 'boolean',
|
|
13240
|
-
},
|
|
13241
|
-
message: { type: 'string' },
|
|
13242
|
-
},
|
|
13243
|
-
required: [
|
|
13244
|
-
'message',
|
|
13245
|
-
'is_connected_account_error',
|
|
13246
|
-
'error_code',
|
|
13247
|
-
],
|
|
13248
|
-
type: 'object',
|
|
13010
|
+
is_connected_account_error: {
|
|
13011
|
+
enum: [true],
|
|
13012
|
+
type: 'boolean',
|
|
13249
13013
|
},
|
|
13014
|
+
message: { type: 'string' },
|
|
13015
|
+
},
|
|
13016
|
+
required: [
|
|
13017
|
+
'message',
|
|
13018
|
+
'is_connected_account_error',
|
|
13019
|
+
'error_code',
|
|
13250
13020
|
],
|
|
13021
|
+
type: 'object',
|
|
13251
13022
|
},
|
|
13252
13023
|
],
|
|
13253
13024
|
},
|
|
@@ -13278,6 +13049,7 @@ export default {
|
|
|
13278
13049
|
description:
|
|
13279
13050
|
'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
|
|
13280
13051
|
items: {
|
|
13052
|
+
discriminator: { propertyName: 'warning_code' },
|
|
13281
13053
|
oneOf: [
|
|
13282
13054
|
{
|
|
13283
13055
|
description: 'Failed to set code on Smart Things device.',
|
|
@@ -13300,7 +13072,22 @@ export default {
|
|
|
13300
13072
|
warning_code: {
|
|
13301
13073
|
description:
|
|
13302
13074
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13303
|
-
enum: ['schlage_detected_duplicate'],
|
|
13075
|
+
enum: ['schlage_detected_duplicate'],
|
|
13076
|
+
type: 'string',
|
|
13077
|
+
},
|
|
13078
|
+
},
|
|
13079
|
+
required: ['message', 'warning_code'],
|
|
13080
|
+
type: 'object',
|
|
13081
|
+
},
|
|
13082
|
+
{
|
|
13083
|
+
description:
|
|
13084
|
+
'Received an error when attempting to create this code.',
|
|
13085
|
+
properties: {
|
|
13086
|
+
message: { type: 'string' },
|
|
13087
|
+
warning_code: {
|
|
13088
|
+
description:
|
|
13089
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13090
|
+
enum: ['schlage_creation_outage'],
|
|
13304
13091
|
type: 'string',
|
|
13305
13092
|
},
|
|
13306
13093
|
},
|
|
@@ -13309,13 +13096,13 @@ export default {
|
|
|
13309
13096
|
},
|
|
13310
13097
|
{
|
|
13311
13098
|
description:
|
|
13312
|
-
'
|
|
13099
|
+
'Lock is in Office Mode. Access Codes will not unlock doors.',
|
|
13313
13100
|
properties: {
|
|
13314
13101
|
message: { type: 'string' },
|
|
13315
13102
|
warning_code: {
|
|
13316
13103
|
description:
|
|
13317
13104
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13318
|
-
enum: ['
|
|
13105
|
+
enum: ['salto_office_mode'],
|
|
13319
13106
|
type: 'string',
|
|
13320
13107
|
},
|
|
13321
13108
|
},
|
|
@@ -13711,6 +13498,7 @@ export default {
|
|
|
13711
13498
|
description: 'Warnings associated with the `acs_credential`.',
|
|
13712
13499
|
items: {
|
|
13713
13500
|
description: 'Warning associated with the `acs_credential`.',
|
|
13501
|
+
discriminator: { propertyName: 'warning_code' },
|
|
13714
13502
|
oneOf: [
|
|
13715
13503
|
{
|
|
13716
13504
|
description:
|
|
@@ -13947,6 +13735,7 @@ export default {
|
|
|
13947
13735
|
description: 'Errors associated with the `acs_user`.',
|
|
13948
13736
|
items: {
|
|
13949
13737
|
description: 'Error associated with the `acs_user`.',
|
|
13738
|
+
discriminator: { propertyName: 'error_code' },
|
|
13950
13739
|
oneOf: [
|
|
13951
13740
|
{
|
|
13952
13741
|
description:
|
|
@@ -14139,6 +13928,7 @@ export default {
|
|
|
14139
13928
|
description: 'Warnings associated with the `acs_user`.',
|
|
14140
13929
|
items: {
|
|
14141
13930
|
description: 'Warning associated with the `acs_user`.',
|
|
13931
|
+
discriminator: { propertyName: 'warning_code' },
|
|
14142
13932
|
oneOf: [
|
|
14143
13933
|
{
|
|
14144
13934
|
description:
|
|
@@ -14304,255 +14094,231 @@ export default {
|
|
|
14304
14094
|
description:
|
|
14305
14095
|
'Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
|
|
14306
14096
|
items: {
|
|
14097
|
+
discriminator: { propertyName: 'error_code' },
|
|
14307
14098
|
oneOf: [
|
|
14308
14099
|
{
|
|
14309
|
-
description: '
|
|
14310
|
-
|
|
14311
|
-
{
|
|
14312
|
-
description:
|
|
14313
|
-
|
|
14314
|
-
|
|
14315
|
-
|
|
14316
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14317
|
-
enum: ['device_offline'],
|
|
14318
|
-
type: 'string',
|
|
14319
|
-
},
|
|
14320
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
14321
|
-
message: { type: 'string' },
|
|
14322
|
-
},
|
|
14323
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
14324
|
-
type: 'object',
|
|
14100
|
+
description: 'Device is offline',
|
|
14101
|
+
properties: {
|
|
14102
|
+
error_code: {
|
|
14103
|
+
description:
|
|
14104
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14105
|
+
enum: ['device_offline'],
|
|
14106
|
+
type: 'string',
|
|
14325
14107
|
},
|
|
14326
|
-
{
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
|
|
14330
|
-
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14335
|
-
|
|
14336
|
-
|
|
14337
|
-
|
|
14338
|
-
|
|
14339
|
-
type: '
|
|
14108
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14109
|
+
message: { type: 'string' },
|
|
14110
|
+
},
|
|
14111
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14112
|
+
type: 'object',
|
|
14113
|
+
},
|
|
14114
|
+
{
|
|
14115
|
+
description: 'Device has been removed',
|
|
14116
|
+
properties: {
|
|
14117
|
+
error_code: {
|
|
14118
|
+
description:
|
|
14119
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14120
|
+
enum: ['device_removed'],
|
|
14121
|
+
type: 'string',
|
|
14340
14122
|
},
|
|
14341
|
-
{
|
|
14342
|
-
|
|
14343
|
-
|
|
14344
|
-
|
|
14345
|
-
|
|
14346
|
-
|
|
14347
|
-
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
14354
|
-
type: '
|
|
14123
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14124
|
+
message: { type: 'string' },
|
|
14125
|
+
},
|
|
14126
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14127
|
+
type: 'object',
|
|
14128
|
+
},
|
|
14129
|
+
{
|
|
14130
|
+
description: 'Hub is disconnected',
|
|
14131
|
+
properties: {
|
|
14132
|
+
error_code: {
|
|
14133
|
+
description:
|
|
14134
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14135
|
+
enum: ['hub_disconnected'],
|
|
14136
|
+
type: 'string',
|
|
14355
14137
|
},
|
|
14356
|
-
{
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
|
|
14360
|
-
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
14364
|
-
|
|
14365
|
-
|
|
14366
|
-
|
|
14367
|
-
|
|
14368
|
-
|
|
14369
|
-
type: '
|
|
14138
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14139
|
+
message: { type: 'string' },
|
|
14140
|
+
},
|
|
14141
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14142
|
+
type: 'object',
|
|
14143
|
+
},
|
|
14144
|
+
{
|
|
14145
|
+
description: 'Device is disconnected',
|
|
14146
|
+
properties: {
|
|
14147
|
+
error_code: {
|
|
14148
|
+
description:
|
|
14149
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14150
|
+
enum: ['device_disconnected'],
|
|
14151
|
+
type: 'string',
|
|
14370
14152
|
},
|
|
14371
|
-
{
|
|
14372
|
-
|
|
14373
|
-
|
|
14374
|
-
|
|
14375
|
-
|
|
14376
|
-
|
|
14377
|
-
|
|
14378
|
-
|
|
14379
|
-
|
|
14380
|
-
|
|
14381
|
-
|
|
14382
|
-
|
|
14383
|
-
|
|
14384
|
-
type: '
|
|
14153
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14154
|
+
message: { type: 'string' },
|
|
14155
|
+
},
|
|
14156
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14157
|
+
type: 'object',
|
|
14158
|
+
},
|
|
14159
|
+
{
|
|
14160
|
+
description: 'The backup access code pool is empty.',
|
|
14161
|
+
properties: {
|
|
14162
|
+
error_code: {
|
|
14163
|
+
description:
|
|
14164
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14165
|
+
enum: ['empty_backup_access_code_pool'],
|
|
14166
|
+
type: 'string',
|
|
14385
14167
|
},
|
|
14386
|
-
{
|
|
14387
|
-
|
|
14388
|
-
|
|
14389
|
-
|
|
14390
|
-
|
|
14391
|
-
|
|
14392
|
-
|
|
14393
|
-
|
|
14394
|
-
|
|
14395
|
-
|
|
14396
|
-
|
|
14397
|
-
|
|
14398
|
-
|
|
14399
|
-
type: '
|
|
14168
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14169
|
+
message: { type: 'string' },
|
|
14170
|
+
},
|
|
14171
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14172
|
+
type: 'object',
|
|
14173
|
+
},
|
|
14174
|
+
{
|
|
14175
|
+
description: 'User is not authorized to use the August Lock.',
|
|
14176
|
+
properties: {
|
|
14177
|
+
error_code: {
|
|
14178
|
+
description:
|
|
14179
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14180
|
+
enum: ['august_lock_not_authorized'],
|
|
14181
|
+
type: 'string',
|
|
14400
14182
|
},
|
|
14401
|
-
{
|
|
14183
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14184
|
+
message: { type: 'string' },
|
|
14185
|
+
},
|
|
14186
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14187
|
+
type: 'object',
|
|
14188
|
+
},
|
|
14189
|
+
{
|
|
14190
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
14191
|
+
properties: {
|
|
14192
|
+
error_code: {
|
|
14402
14193
|
description:
|
|
14403
|
-
'
|
|
14404
|
-
|
|
14405
|
-
|
|
14406
|
-
description:
|
|
14407
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14408
|
-
enum: ['august_lock_not_authorized'],
|
|
14409
|
-
type: 'string',
|
|
14410
|
-
},
|
|
14411
|
-
is_device_error: { enum: [true], type: 'boolean' },
|
|
14412
|
-
message: { type: 'string' },
|
|
14413
|
-
},
|
|
14414
|
-
required: ['message', 'is_device_error', 'error_code'],
|
|
14415
|
-
type: 'object',
|
|
14194
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14195
|
+
enum: ['august_lock_missing_bridge'],
|
|
14196
|
+
type: 'string',
|
|
14416
14197
|
},
|
|
14417
|
-
{
|
|
14418
|
-
|
|
14419
|
-
|
|
14420
|
-
|
|
14421
|
-
|
|
14422
|
-
|
|
14423
|
-
|
|
14424
|
-
|
|
14425
|
-
|
|
14426
|
-
|
|
14427
|
-
|
|
14428
|
-
|
|
14429
|
-
|
|
14430
|
-
type: '
|
|
14198
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14199
|
+
message: { type: 'string' },
|
|
14200
|
+
},
|
|
14201
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14202
|
+
type: 'object',
|
|
14203
|
+
},
|
|
14204
|
+
{
|
|
14205
|
+
description: 'Salto site user limit reached.',
|
|
14206
|
+
properties: {
|
|
14207
|
+
error_code: {
|
|
14208
|
+
description:
|
|
14209
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14210
|
+
enum: ['salto_site_user_limit_reached'],
|
|
14211
|
+
type: 'string',
|
|
14431
14212
|
},
|
|
14432
|
-
{
|
|
14433
|
-
|
|
14434
|
-
|
|
14435
|
-
|
|
14436
|
-
|
|
14437
|
-
|
|
14438
|
-
|
|
14439
|
-
|
|
14440
|
-
|
|
14441
|
-
|
|
14442
|
-
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
type: '
|
|
14213
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14214
|
+
message: { type: 'string' },
|
|
14215
|
+
},
|
|
14216
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14217
|
+
type: 'object',
|
|
14218
|
+
},
|
|
14219
|
+
{
|
|
14220
|
+
description: 'Lock is not paired with a Gateway.',
|
|
14221
|
+
properties: {
|
|
14222
|
+
error_code: {
|
|
14223
|
+
description:
|
|
14224
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14225
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
14226
|
+
type: 'string',
|
|
14446
14227
|
},
|
|
14447
|
-
{
|
|
14448
|
-
|
|
14449
|
-
|
|
14450
|
-
|
|
14451
|
-
|
|
14452
|
-
|
|
14453
|
-
|
|
14454
|
-
|
|
14455
|
-
|
|
14456
|
-
|
|
14457
|
-
|
|
14458
|
-
|
|
14459
|
-
|
|
14460
|
-
type: '
|
|
14228
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14229
|
+
message: { type: 'string' },
|
|
14230
|
+
},
|
|
14231
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14232
|
+
type: 'object',
|
|
14233
|
+
},
|
|
14234
|
+
{
|
|
14235
|
+
description: 'Missing device credentials.',
|
|
14236
|
+
properties: {
|
|
14237
|
+
error_code: {
|
|
14238
|
+
description:
|
|
14239
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14240
|
+
enum: ['missing_device_credentials'],
|
|
14241
|
+
type: 'string',
|
|
14461
14242
|
},
|
|
14462
|
-
{
|
|
14463
|
-
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14467
|
-
|
|
14468
|
-
|
|
14469
|
-
|
|
14470
|
-
|
|
14471
|
-
|
|
14472
|
-
|
|
14473
|
-
|
|
14474
|
-
|
|
14475
|
-
type: '
|
|
14243
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14244
|
+
message: { type: 'string' },
|
|
14245
|
+
},
|
|
14246
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14247
|
+
type: 'object',
|
|
14248
|
+
},
|
|
14249
|
+
{
|
|
14250
|
+
description: 'The auxiliary heat is running.',
|
|
14251
|
+
properties: {
|
|
14252
|
+
error_code: {
|
|
14253
|
+
description:
|
|
14254
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14255
|
+
enum: ['auxiliary_heat_running'],
|
|
14256
|
+
type: 'string',
|
|
14476
14257
|
},
|
|
14477
|
-
{
|
|
14478
|
-
|
|
14479
|
-
|
|
14480
|
-
|
|
14481
|
-
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
|
|
14487
|
-
|
|
14488
|
-
|
|
14489
|
-
|
|
14490
|
-
type: '
|
|
14258
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14259
|
+
message: { type: 'string' },
|
|
14260
|
+
},
|
|
14261
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14262
|
+
type: 'object',
|
|
14263
|
+
},
|
|
14264
|
+
{
|
|
14265
|
+
description: 'Subscription required to connect.',
|
|
14266
|
+
properties: {
|
|
14267
|
+
error_code: {
|
|
14268
|
+
description:
|
|
14269
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14270
|
+
enum: ['subscription_required'],
|
|
14271
|
+
type: 'string',
|
|
14491
14272
|
},
|
|
14492
|
-
{
|
|
14493
|
-
|
|
14494
|
-
|
|
14495
|
-
|
|
14496
|
-
|
|
14497
|
-
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
|
|
14505
|
-
type: '
|
|
14273
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14274
|
+
message: { type: 'string' },
|
|
14275
|
+
},
|
|
14276
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14277
|
+
type: 'object',
|
|
14278
|
+
},
|
|
14279
|
+
{
|
|
14280
|
+
description: 'Account is disconnected.',
|
|
14281
|
+
properties: {
|
|
14282
|
+
error_code: {
|
|
14283
|
+
description:
|
|
14284
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14285
|
+
enum: ['account_disconnected'],
|
|
14286
|
+
type: 'string',
|
|
14287
|
+
},
|
|
14288
|
+
is_connected_account_error: {
|
|
14289
|
+
enum: [true],
|
|
14290
|
+
type: 'boolean',
|
|
14506
14291
|
},
|
|
14292
|
+
message: { type: 'string' },
|
|
14293
|
+
},
|
|
14294
|
+
required: [
|
|
14295
|
+
'message',
|
|
14296
|
+
'is_connected_account_error',
|
|
14297
|
+
'error_code',
|
|
14507
14298
|
],
|
|
14299
|
+
type: 'object',
|
|
14508
14300
|
},
|
|
14509
14301
|
{
|
|
14510
|
-
|
|
14511
|
-
|
|
14512
|
-
|
|
14513
|
-
|
|
14514
|
-
|
|
14515
|
-
|
|
14516
|
-
|
|
14517
|
-
enum: ['account_disconnected'],
|
|
14518
|
-
type: 'string',
|
|
14519
|
-
},
|
|
14520
|
-
is_connected_account_error: {
|
|
14521
|
-
enum: [true],
|
|
14522
|
-
type: 'boolean',
|
|
14523
|
-
},
|
|
14524
|
-
message: { type: 'string' },
|
|
14525
|
-
},
|
|
14526
|
-
required: [
|
|
14527
|
-
'message',
|
|
14528
|
-
'is_connected_account_error',
|
|
14529
|
-
'error_code',
|
|
14530
|
-
],
|
|
14531
|
-
type: 'object',
|
|
14302
|
+
description: 'Credentials provided were invalid.',
|
|
14303
|
+
properties: {
|
|
14304
|
+
error_code: {
|
|
14305
|
+
description:
|
|
14306
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14307
|
+
enum: ['invalid_credentials'],
|
|
14308
|
+
type: 'string',
|
|
14532
14309
|
},
|
|
14533
|
-
{
|
|
14534
|
-
|
|
14535
|
-
|
|
14536
|
-
error_code: {
|
|
14537
|
-
description:
|
|
14538
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14539
|
-
enum: ['invalid_credentials'],
|
|
14540
|
-
type: 'string',
|
|
14541
|
-
},
|
|
14542
|
-
is_connected_account_error: {
|
|
14543
|
-
enum: [true],
|
|
14544
|
-
type: 'boolean',
|
|
14545
|
-
},
|
|
14546
|
-
message: { type: 'string' },
|
|
14547
|
-
},
|
|
14548
|
-
required: [
|
|
14549
|
-
'message',
|
|
14550
|
-
'is_connected_account_error',
|
|
14551
|
-
'error_code',
|
|
14552
|
-
],
|
|
14553
|
-
type: 'object',
|
|
14310
|
+
is_connected_account_error: {
|
|
14311
|
+
enum: [true],
|
|
14312
|
+
type: 'boolean',
|
|
14554
14313
|
},
|
|
14314
|
+
message: { type: 'string' },
|
|
14315
|
+
},
|
|
14316
|
+
required: [
|
|
14317
|
+
'message',
|
|
14318
|
+
'is_connected_account_error',
|
|
14319
|
+
'error_code',
|
|
14555
14320
|
],
|
|
14321
|
+
type: 'object',
|
|
14556
14322
|
},
|
|
14557
14323
|
],
|
|
14558
14324
|
},
|
|
@@ -14709,6 +14475,7 @@ export default {
|
|
|
14709
14475
|
description:
|
|
14710
14476
|
'Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it.',
|
|
14711
14477
|
items: {
|
|
14478
|
+
discriminator: { propertyName: 'warning_code' },
|
|
14712
14479
|
oneOf: [
|
|
14713
14480
|
{
|
|
14714
14481
|
description: 'Backup access code unhealthy.',
|