@seamapi/types 1.344.1 → 1.344.2
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 +1764 -2005
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +454 -633
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +7 -28
- package/lib/seam/connect/models/access-codes/managed-access-code.js +7 -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 +5 -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 +1465 -1716
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +145 -275
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +9 -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 +1566 -1829
- package/src/lib/seam/connect/route-types.ts +3216 -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
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
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',
|
|
305
|
+
},
|
|
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: {
|
|
317
|
+
description:
|
|
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',
|
|
381
321
|
},
|
|
382
|
-
{
|
|
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: {
|
|
383
332
|
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',
|
|
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',
|
|
401
336
|
},
|
|
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',
|
|
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',
|
|
342
|
+
},
|
|
343
|
+
{
|
|
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',
|
|
420
351
|
},
|
|
421
|
-
|
|
352
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
353
|
+
message: { type: 'string' },
|
|
354
|
+
},
|
|
355
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
356
|
+
type: 'object',
|
|
422
357
|
},
|
|
423
358
|
{
|
|
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',
|
|
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',
|
|
440
366
|
},
|
|
441
|
-
{
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
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',
|
|
455
381
|
},
|
|
456
|
-
{
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
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',
|
|
470
396
|
},
|
|
471
|
-
{
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
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',
|
|
485
411
|
},
|
|
486
|
-
{
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
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',
|
|
500
426
|
},
|
|
501
|
-
{
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
type: '
|
|
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',
|
|
515
441
|
},
|
|
516
|
-
{
|
|
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.',
|
|
@@ -1188,6 +1084,7 @@ export default {
|
|
|
1188
1084
|
description: 'Warnings associated with the `acs_credential`.',
|
|
1189
1085
|
items: {
|
|
1190
1086
|
description: 'Warning associated with the `acs_credential`.',
|
|
1087
|
+
discriminator: { propertyName: 'warning_code' },
|
|
1191
1088
|
oneOf: [
|
|
1192
1089
|
{
|
|
1193
1090
|
description:
|
|
@@ -1677,6 +1574,7 @@ export default {
|
|
|
1677
1574
|
description: 'Errors associated with the `acs_system`.',
|
|
1678
1575
|
items: {
|
|
1679
1576
|
description: 'Error associated with the `acs_system`.',
|
|
1577
|
+
discriminator: { propertyName: 'error_code' },
|
|
1680
1578
|
oneOf: [
|
|
1681
1579
|
{
|
|
1682
1580
|
description:
|
|
@@ -1930,6 +1828,7 @@ export default {
|
|
|
1930
1828
|
description: 'Warnings associated with the `acs_system`.',
|
|
1931
1829
|
items: {
|
|
1932
1830
|
description: 'Warning associated with the `acs_system`.',
|
|
1831
|
+
discriminator: { propertyName: 'warning_code' },
|
|
1933
1832
|
oneOf: [
|
|
1934
1833
|
{
|
|
1935
1834
|
properties: {
|
|
@@ -2069,6 +1968,7 @@ export default {
|
|
|
2069
1968
|
description: 'Errors associated with the `acs_user`.',
|
|
2070
1969
|
items: {
|
|
2071
1970
|
description: 'Error associated with the `acs_user`.',
|
|
1971
|
+
discriminator: { propertyName: 'error_code' },
|
|
2072
1972
|
oneOf: [
|
|
2073
1973
|
{
|
|
2074
1974
|
description:
|
|
@@ -2261,6 +2161,7 @@ export default {
|
|
|
2261
2161
|
description: 'Warnings associated with the `acs_user`.',
|
|
2262
2162
|
items: {
|
|
2263
2163
|
description: 'Warning associated with the `acs_user`.',
|
|
2164
|
+
discriminator: { propertyName: 'warning_code' },
|
|
2264
2165
|
oneOf: [
|
|
2265
2166
|
{
|
|
2266
2167
|
description:
|
|
@@ -2784,6 +2685,7 @@ export default {
|
|
|
2784
2685
|
items: {
|
|
2785
2686
|
description:
|
|
2786
2687
|
'Warning associated with the `acs_credential`.',
|
|
2688
|
+
discriminator: { propertyName: 'warning_code' },
|
|
2787
2689
|
oneOf: [
|
|
2788
2690
|
{
|
|
2789
2691
|
description:
|
|
@@ -3165,6 +3067,7 @@ export default {
|
|
|
3165
3067
|
items: {
|
|
3166
3068
|
description:
|
|
3167
3069
|
'Warning associated with the `acs_credential`.',
|
|
3070
|
+
discriminator: { propertyName: 'warning_code' },
|
|
3168
3071
|
oneOf: [
|
|
3169
3072
|
{
|
|
3170
3073
|
description:
|
|
@@ -3680,6 +3583,7 @@ export default {
|
|
|
3680
3583
|
items: {
|
|
3681
3584
|
description:
|
|
3682
3585
|
'Warning associated with the `acs_credential`.',
|
|
3586
|
+
discriminator: { propertyName: 'warning_code' },
|
|
3683
3587
|
oneOf: [
|
|
3684
3588
|
{
|
|
3685
3589
|
description:
|
|
@@ -4058,6 +3962,7 @@ export default {
|
|
|
4058
3962
|
items: {
|
|
4059
3963
|
description:
|
|
4060
3964
|
'Warning associated with the `acs_credential`.',
|
|
3965
|
+
discriminator: { propertyName: 'warning_code' },
|
|
4061
3966
|
oneOf: [
|
|
4062
3967
|
{
|
|
4063
3968
|
description:
|
|
@@ -5318,13 +5223,14 @@ export default {
|
|
|
5318
5223
|
},
|
|
5319
5224
|
errors: {
|
|
5320
5225
|
items: {
|
|
5226
|
+
discriminator: { propertyName: 'error_code' },
|
|
5321
5227
|
oneOf: [
|
|
5322
5228
|
{
|
|
5323
5229
|
description: 'Account is disconnected.',
|
|
5324
5230
|
properties: {
|
|
5325
5231
|
error_code: {
|
|
5326
5232
|
description:
|
|
5327
|
-
'Unique identifier of the type of
|
|
5233
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5328
5234
|
enum: ['account_disconnected'],
|
|
5329
5235
|
type: 'string',
|
|
5330
5236
|
},
|
|
@@ -5346,7 +5252,7 @@ export default {
|
|
|
5346
5252
|
properties: {
|
|
5347
5253
|
error_code: {
|
|
5348
5254
|
description:
|
|
5349
|
-
'Unique identifier of the type of
|
|
5255
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5350
5256
|
enum: ['invalid_credentials'],
|
|
5351
5257
|
type: 'string',
|
|
5352
5258
|
},
|
|
@@ -5380,6 +5286,7 @@ export default {
|
|
|
5380
5286
|
warnings: {
|
|
5381
5287
|
items: {
|
|
5382
5288
|
description: 'Warning associated with the `connected_account`.',
|
|
5289
|
+
discriminator: { propertyName: 'warning_code' },
|
|
5383
5290
|
oneOf: [
|
|
5384
5291
|
{
|
|
5385
5292
|
description: 'Scheduled downtime for account planned.',
|
|
@@ -5537,255 +5444,231 @@ export default {
|
|
|
5537
5444
|
description:
|
|
5538
5445
|
'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
5446
|
items: {
|
|
5447
|
+
discriminator: { propertyName: 'error_code' },
|
|
5540
5448
|
oneOf: [
|
|
5541
5449
|
{
|
|
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',
|
|
5450
|
+
description: 'Device is offline',
|
|
5451
|
+
properties: {
|
|
5452
|
+
error_code: {
|
|
5453
|
+
description:
|
|
5454
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5455
|
+
enum: ['device_offline'],
|
|
5456
|
+
type: 'string',
|
|
5558
5457
|
},
|
|
5559
|
-
{
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
type: '
|
|
5458
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
5459
|
+
message: { type: 'string' },
|
|
5460
|
+
},
|
|
5461
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
5462
|
+
type: 'object',
|
|
5463
|
+
},
|
|
5464
|
+
{
|
|
5465
|
+
description: 'Device has been removed',
|
|
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_removed'],
|
|
5471
|
+
type: 'string',
|
|
5573
5472
|
},
|
|
5574
|
-
{
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
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: 'Hub is disconnected',
|
|
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: ['hub_disconnected'],
|
|
5486
|
+
type: 'string',
|
|
5588
5487
|
},
|
|
5589
|
-
{
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
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: 'Device 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: ['device_disconnected'],
|
|
5501
|
+
type: 'string',
|
|
5603
5502
|
},
|
|
5604
|
-
{
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
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: 'The backup access code pool is empty.',
|
|
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: ['empty_backup_access_code_pool'],
|
|
5516
|
+
type: 'string',
|
|
5618
5517
|
},
|
|
5619
|
-
{
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
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: 'User is not authorized to use the August Lock.',
|
|
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: ['august_lock_not_authorized'],
|
|
5531
|
+
type: 'string',
|
|
5633
5532
|
},
|
|
5634
|
-
{
|
|
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: 'Lock is not connected to the Seam Bridge.',
|
|
5541
|
+
properties: {
|
|
5542
|
+
error_code: {
|
|
5635
5543
|
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',
|
|
5544
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5545
|
+
enum: ['august_lock_missing_bridge'],
|
|
5546
|
+
type: 'string',
|
|
5649
5547
|
},
|
|
5650
|
-
{
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
type: '
|
|
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: 'Salto site user limit reached.',
|
|
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: ['salto_site_user_limit_reached'],
|
|
5561
|
+
type: 'string',
|
|
5664
5562
|
},
|
|
5665
|
-
{
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
type: '
|
|
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: 'Lock is not paired with a Gateway.',
|
|
5571
|
+
properties: {
|
|
5572
|
+
error_code: {
|
|
5573
|
+
description:
|
|
5574
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5575
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
5576
|
+
type: 'string',
|
|
5679
5577
|
},
|
|
5680
|
-
{
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
5690
|
-
|
|
5691
|
-
|
|
5692
|
-
|
|
5693
|
-
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: 'Missing device credentials.',
|
|
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: ['missing_device_credentials'],
|
|
5591
|
+
type: 'string',
|
|
5694
5592
|
},
|
|
5695
|
-
{
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
|
-
|
|
5700
|
-
|
|
5701
|
-
|
|
5702
|
-
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
|
|
5708
|
-
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: 'The auxiliary heat is running.',
|
|
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: ['auxiliary_heat_running'],
|
|
5606
|
+
type: 'string',
|
|
5709
5607
|
},
|
|
5710
|
-
{
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
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: 'Subscription required to connect.',
|
|
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: ['subscription_required'],
|
|
5621
|
+
type: 'string',
|
|
5724
5622
|
},
|
|
5725
|
-
{
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
|
|
5738
|
-
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: 'Account is disconnected.',
|
|
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: ['account_disconnected'],
|
|
5636
|
+
type: 'string',
|
|
5637
|
+
},
|
|
5638
|
+
is_connected_account_error: {
|
|
5639
|
+
enum: [true],
|
|
5640
|
+
type: 'boolean',
|
|
5739
5641
|
},
|
|
5642
|
+
message: { type: 'string' },
|
|
5643
|
+
},
|
|
5644
|
+
required: [
|
|
5645
|
+
'message',
|
|
5646
|
+
'is_connected_account_error',
|
|
5647
|
+
'error_code',
|
|
5740
5648
|
],
|
|
5649
|
+
type: 'object',
|
|
5741
5650
|
},
|
|
5742
5651
|
{
|
|
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',
|
|
5652
|
+
description: 'Credentials provided were invalid.',
|
|
5653
|
+
properties: {
|
|
5654
|
+
error_code: {
|
|
5655
|
+
description:
|
|
5656
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
5657
|
+
enum: ['invalid_credentials'],
|
|
5658
|
+
type: 'string',
|
|
5765
5659
|
},
|
|
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',
|
|
5660
|
+
is_connected_account_error: {
|
|
5661
|
+
enum: [true],
|
|
5662
|
+
type: 'boolean',
|
|
5787
5663
|
},
|
|
5664
|
+
message: { type: 'string' },
|
|
5665
|
+
},
|
|
5666
|
+
required: [
|
|
5667
|
+
'message',
|
|
5668
|
+
'is_connected_account_error',
|
|
5669
|
+
'error_code',
|
|
5788
5670
|
],
|
|
5671
|
+
type: 'object',
|
|
5789
5672
|
},
|
|
5790
5673
|
],
|
|
5791
5674
|
},
|
|
@@ -7090,6 +6973,7 @@ export default {
|
|
|
7090
6973
|
description:
|
|
7091
6974
|
'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
6975
|
items: {
|
|
6976
|
+
discriminator: { propertyName: 'warning_code' },
|
|
7093
6977
|
oneOf: [
|
|
7094
6978
|
{
|
|
7095
6979
|
description: 'Backup access code unhealthy.',
|
|
@@ -11927,255 +11811,231 @@ export default {
|
|
|
11927
11811
|
description:
|
|
11928
11812
|
'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
11813
|
items: {
|
|
11814
|
+
discriminator: { propertyName: 'error_code' },
|
|
11930
11815
|
oneOf: [
|
|
11931
11816
|
{
|
|
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',
|
|
11817
|
+
description: 'Device is offline',
|
|
11818
|
+
properties: {
|
|
11819
|
+
error_code: {
|
|
11820
|
+
description:
|
|
11821
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11822
|
+
enum: ['device_offline'],
|
|
11823
|
+
type: 'string',
|
|
11948
11824
|
},
|
|
11949
|
-
{
|
|
11950
|
-
|
|
11951
|
-
|
|
11952
|
-
|
|
11953
|
-
|
|
11954
|
-
|
|
11955
|
-
|
|
11956
|
-
|
|
11957
|
-
|
|
11958
|
-
|
|
11959
|
-
|
|
11960
|
-
|
|
11961
|
-
|
|
11962
|
-
type: '
|
|
11825
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11826
|
+
message: { type: 'string' },
|
|
11827
|
+
},
|
|
11828
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11829
|
+
type: 'object',
|
|
11830
|
+
},
|
|
11831
|
+
{
|
|
11832
|
+
description: 'Device has been removed',
|
|
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_removed'],
|
|
11838
|
+
type: 'string',
|
|
11963
11839
|
},
|
|
11964
|
-
{
|
|
11965
|
-
|
|
11966
|
-
|
|
11967
|
-
|
|
11968
|
-
|
|
11969
|
-
|
|
11970
|
-
|
|
11971
|
-
|
|
11972
|
-
|
|
11973
|
-
|
|
11974
|
-
|
|
11975
|
-
|
|
11976
|
-
|
|
11977
|
-
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: 'Hub is disconnected',
|
|
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: ['hub_disconnected'],
|
|
11853
|
+
type: 'string',
|
|
11978
11854
|
},
|
|
11979
|
-
{
|
|
11980
|
-
|
|
11981
|
-
|
|
11982
|
-
|
|
11983
|
-
|
|
11984
|
-
|
|
11985
|
-
|
|
11986
|
-
|
|
11987
|
-
|
|
11988
|
-
|
|
11989
|
-
|
|
11990
|
-
|
|
11991
|
-
|
|
11992
|
-
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: 'Device 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: ['device_disconnected'],
|
|
11868
|
+
type: 'string',
|
|
11993
11869
|
},
|
|
11994
|
-
{
|
|
11995
|
-
|
|
11996
|
-
|
|
11997
|
-
|
|
11998
|
-
|
|
11999
|
-
|
|
12000
|
-
|
|
12001
|
-
|
|
12002
|
-
|
|
12003
|
-
|
|
12004
|
-
|
|
12005
|
-
|
|
12006
|
-
|
|
12007
|
-
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: 'The backup access code pool is empty.',
|
|
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: ['empty_backup_access_code_pool'],
|
|
11883
|
+
type: 'string',
|
|
11884
|
+
},
|
|
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: 'User is not authorized to use the August Lock.',
|
|
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: ['august_lock_not_authorized'],
|
|
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: 'Lock is not connected to the Seam Bridge.',
|
|
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_missing_bridge'],
|
|
11913
|
+
type: 'string',
|
|
12023
11914
|
},
|
|
12024
|
-
{
|
|
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: 'Salto site user limit reached.',
|
|
11923
|
+
properties: {
|
|
11924
|
+
error_code: {
|
|
12025
11925
|
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',
|
|
11926
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11927
|
+
enum: ['salto_site_user_limit_reached'],
|
|
11928
|
+
type: 'string',
|
|
12039
11929
|
},
|
|
12040
|
-
{
|
|
12041
|
-
|
|
12042
|
-
|
|
12043
|
-
|
|
12044
|
-
|
|
12045
|
-
|
|
12046
|
-
|
|
12047
|
-
|
|
12048
|
-
|
|
12049
|
-
|
|
12050
|
-
|
|
12051
|
-
|
|
12052
|
-
|
|
12053
|
-
type: '
|
|
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: 'Lock is not paired with a Gateway.',
|
|
11938
|
+
properties: {
|
|
11939
|
+
error_code: {
|
|
11940
|
+
description:
|
|
11941
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11942
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
11943
|
+
type: 'string',
|
|
12054
11944
|
},
|
|
12055
|
-
{
|
|
12056
|
-
|
|
12057
|
-
|
|
12058
|
-
|
|
12059
|
-
|
|
12060
|
-
|
|
12061
|
-
|
|
12062
|
-
|
|
12063
|
-
|
|
12064
|
-
|
|
12065
|
-
|
|
12066
|
-
|
|
12067
|
-
|
|
12068
|
-
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: 'Missing device credentials.',
|
|
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: ['missing_device_credentials'],
|
|
11958
|
+
type: 'string',
|
|
12069
11959
|
},
|
|
12070
|
-
{
|
|
12071
|
-
|
|
12072
|
-
|
|
12073
|
-
|
|
12074
|
-
|
|
12075
|
-
|
|
12076
|
-
|
|
12077
|
-
|
|
12078
|
-
|
|
12079
|
-
|
|
12080
|
-
|
|
12081
|
-
|
|
12082
|
-
|
|
12083
|
-
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: 'The auxiliary heat is running.',
|
|
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: ['auxiliary_heat_running'],
|
|
11973
|
+
type: 'string',
|
|
12084
11974
|
},
|
|
12085
|
-
{
|
|
12086
|
-
|
|
12087
|
-
|
|
12088
|
-
|
|
12089
|
-
|
|
12090
|
-
|
|
12091
|
-
|
|
12092
|
-
|
|
12093
|
-
|
|
12094
|
-
|
|
12095
|
-
|
|
12096
|
-
|
|
12097
|
-
|
|
12098
|
-
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: 'Subscription required to connect.',
|
|
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: ['subscription_required'],
|
|
11988
|
+
type: 'string',
|
|
12099
11989
|
},
|
|
12100
|
-
{
|
|
12101
|
-
|
|
12102
|
-
|
|
12103
|
-
|
|
12104
|
-
|
|
12105
|
-
|
|
12106
|
-
|
|
12107
|
-
|
|
12108
|
-
|
|
12109
|
-
|
|
12110
|
-
|
|
12111
|
-
|
|
12112
|
-
|
|
12113
|
-
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: 'Account is disconnected.',
|
|
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: ['account_disconnected'],
|
|
12003
|
+
type: 'string',
|
|
12114
12004
|
},
|
|
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',
|
|
12005
|
+
is_connected_account_error: {
|
|
12006
|
+
enum: [true],
|
|
12007
|
+
type: 'boolean',
|
|
12129
12008
|
},
|
|
12009
|
+
message: { type: 'string' },
|
|
12010
|
+
},
|
|
12011
|
+
required: [
|
|
12012
|
+
'message',
|
|
12013
|
+
'is_connected_account_error',
|
|
12014
|
+
'error_code',
|
|
12130
12015
|
],
|
|
12016
|
+
type: 'object',
|
|
12131
12017
|
},
|
|
12132
12018
|
{
|
|
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',
|
|
12019
|
+
description: 'Credentials provided were invalid.',
|
|
12020
|
+
properties: {
|
|
12021
|
+
error_code: {
|
|
12022
|
+
description:
|
|
12023
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12024
|
+
enum: ['invalid_credentials'],
|
|
12025
|
+
type: 'string',
|
|
12155
12026
|
},
|
|
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',
|
|
12027
|
+
is_connected_account_error: {
|
|
12028
|
+
enum: [true],
|
|
12029
|
+
type: 'boolean',
|
|
12177
12030
|
},
|
|
12031
|
+
message: { type: 'string' },
|
|
12032
|
+
},
|
|
12033
|
+
required: [
|
|
12034
|
+
'message',
|
|
12035
|
+
'is_connected_account_error',
|
|
12036
|
+
'error_code',
|
|
12178
12037
|
],
|
|
12038
|
+
type: 'object',
|
|
12179
12039
|
},
|
|
12180
12040
|
],
|
|
12181
12041
|
},
|
|
@@ -12238,6 +12098,7 @@ export default {
|
|
|
12238
12098
|
description:
|
|
12239
12099
|
'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
12100
|
items: {
|
|
12101
|
+
discriminator: { propertyName: 'warning_code' },
|
|
12241
12102
|
oneOf: [
|
|
12242
12103
|
{
|
|
12243
12104
|
description: 'Backup access code unhealthy.',
|
|
@@ -12622,632 +12483,527 @@ export default {
|
|
|
12622
12483
|
description:
|
|
12623
12484
|
'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
12485
|
items: {
|
|
12486
|
+
discriminator: { propertyName: 'error_code' },
|
|
12625
12487
|
oneOf: [
|
|
12626
12488
|
{
|
|
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',
|
|
12489
|
+
description: 'Failed to set code on Smart Things device.',
|
|
12490
|
+
properties: {
|
|
12491
|
+
error_code: {
|
|
12492
|
+
description:
|
|
12493
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12494
|
+
enum: ['smartthings_failed_to_set_access_code'],
|
|
12495
|
+
type: 'string',
|
|
12646
12496
|
},
|
|
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',
|
|
12497
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12498
|
+
message: { type: 'string' },
|
|
12499
|
+
},
|
|
12500
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12501
|
+
type: 'object',
|
|
12502
|
+
},
|
|
12503
|
+
{
|
|
12504
|
+
description: 'Failed to set code after multiple retries.',
|
|
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: [
|
|
12510
|
+
'smartthings_failed_to_set_after_multiple_retries',
|
|
12665
12511
|
],
|
|
12666
|
-
type: '
|
|
12512
|
+
type: 'string',
|
|
12667
12513
|
},
|
|
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',
|
|
12514
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12515
|
+
message: { type: 'string' },
|
|
12516
|
+
},
|
|
12517
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12518
|
+
type: 'object',
|
|
12519
|
+
},
|
|
12520
|
+
{
|
|
12521
|
+
description: 'Failed to set code on device.',
|
|
12522
|
+
properties: {
|
|
12523
|
+
error_code: {
|
|
12524
|
+
description:
|
|
12525
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12526
|
+
enum: ['failed_to_set_on_device'],
|
|
12527
|
+
type: 'string',
|
|
12686
12528
|
},
|
|
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',
|
|
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 remove code from 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_remove_from_device'],
|
|
12542
|
+
type: 'string',
|
|
12705
12543
|
},
|
|
12706
|
-
{
|
|
12707
|
-
|
|
12708
|
-
|
|
12709
|
-
|
|
12710
|
-
|
|
12711
|
-
|
|
12712
|
-
|
|
12713
|
-
|
|
12714
|
-
|
|
12715
|
-
|
|
12716
|
-
|
|
12717
|
-
|
|
12718
|
-
|
|
12719
|
-
|
|
12720
|
-
'is_access_code_error',
|
|
12721
|
-
'error_code',
|
|
12722
|
-
],
|
|
12723
|
-
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: 'Duplicate access code detected on 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: ['duplicate_code_on_device'],
|
|
12557
|
+
type: 'string',
|
|
12724
12558
|
},
|
|
12725
|
-
{
|
|
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:
|
|
12567
|
+
'An attempt to modify this access code was prevented.',
|
|
12568
|
+
properties: {
|
|
12569
|
+
error_code: {
|
|
12726
12570
|
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',
|
|
12571
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12572
|
+
enum: ['duplicate_code_attempt_prevented'],
|
|
12573
|
+
type: 'string',
|
|
12744
12574
|
},
|
|
12745
|
-
{
|
|
12575
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12576
|
+
message: { type: 'string' },
|
|
12577
|
+
},
|
|
12578
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12579
|
+
type: 'object',
|
|
12580
|
+
},
|
|
12581
|
+
{
|
|
12582
|
+
description:
|
|
12583
|
+
'Igloohome bridge has too many pending jobs in the queue.',
|
|
12584
|
+
properties: {
|
|
12585
|
+
error_code: {
|
|
12746
12586
|
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',
|
|
12587
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12588
|
+
enum: ['igloohome_bridge_too_many_pending_jobs'],
|
|
12589
|
+
type: 'string',
|
|
12764
12590
|
},
|
|
12765
|
-
{
|
|
12766
|
-
|
|
12767
|
-
|
|
12768
|
-
|
|
12769
|
-
|
|
12770
|
-
|
|
12771
|
-
|
|
12772
|
-
|
|
12773
|
-
|
|
12774
|
-
|
|
12775
|
-
|
|
12776
|
-
|
|
12777
|
-
|
|
12778
|
-
|
|
12779
|
-
'is_access_code_error',
|
|
12780
|
-
'error_code',
|
|
12781
|
-
],
|
|
12782
|
-
type: 'object',
|
|
12591
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12592
|
+
message: { type: 'string' },
|
|
12593
|
+
},
|
|
12594
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12595
|
+
type: 'object',
|
|
12596
|
+
},
|
|
12597
|
+
{
|
|
12598
|
+
description: 'Igloohome bridge is offline.',
|
|
12599
|
+
properties: {
|
|
12600
|
+
error_code: {
|
|
12601
|
+
description:
|
|
12602
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12603
|
+
enum: ['igloohome_bridge_offline'],
|
|
12604
|
+
type: 'string',
|
|
12783
12605
|
},
|
|
12784
|
-
{
|
|
12785
|
-
|
|
12786
|
-
|
|
12787
|
-
|
|
12788
|
-
|
|
12789
|
-
|
|
12790
|
-
|
|
12791
|
-
|
|
12792
|
-
|
|
12793
|
-
|
|
12794
|
-
|
|
12795
|
-
|
|
12796
|
-
|
|
12797
|
-
|
|
12798
|
-
required: [
|
|
12799
|
-
'message',
|
|
12800
|
-
'is_access_code_error',
|
|
12801
|
-
'error_code',
|
|
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: 'Lock as reached max amount of codes.',
|
|
12614
|
+
properties: {
|
|
12615
|
+
error_code: {
|
|
12616
|
+
description:
|
|
12617
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12618
|
+
enum: [
|
|
12619
|
+
'igloohome_offline_access_code_no_variance_available',
|
|
12802
12620
|
],
|
|
12803
|
-
type: '
|
|
12621
|
+
type: 'string',
|
|
12804
12622
|
},
|
|
12805
|
-
{
|
|
12623
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12624
|
+
message: { type: 'string' },
|
|
12625
|
+
},
|
|
12626
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12627
|
+
type: 'object',
|
|
12628
|
+
},
|
|
12629
|
+
{
|
|
12630
|
+
description:
|
|
12631
|
+
'Unable to confirm the access code is set on Kwikset device.',
|
|
12632
|
+
properties: {
|
|
12633
|
+
error_code: {
|
|
12806
12634
|
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',
|
|
12635
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12636
|
+
enum: ['kwikset_unable_to_confirm_code'],
|
|
12637
|
+
type: 'string',
|
|
12824
12638
|
},
|
|
12825
|
-
{
|
|
12639
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12640
|
+
message: { type: 'string' },
|
|
12641
|
+
},
|
|
12642
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12643
|
+
type: 'object',
|
|
12644
|
+
},
|
|
12645
|
+
{
|
|
12646
|
+
description:
|
|
12647
|
+
'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
12648
|
+
properties: {
|
|
12649
|
+
error_code: {
|
|
12826
12650
|
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',
|
|
12651
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12652
|
+
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
12653
|
+
type: 'string',
|
|
12844
12654
|
},
|
|
12845
|
-
{
|
|
12655
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12656
|
+
message: { type: 'string' },
|
|
12657
|
+
},
|
|
12658
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12659
|
+
type: 'object',
|
|
12660
|
+
},
|
|
12661
|
+
{
|
|
12662
|
+
description:
|
|
12663
|
+
'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
12664
|
+
properties: {
|
|
12665
|
+
error_code: {
|
|
12846
12666
|
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',
|
|
12667
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12668
|
+
enum: ['code_modified_external_to_seam'],
|
|
12669
|
+
type: 'string',
|
|
12864
12670
|
},
|
|
12865
|
-
{
|
|
12866
|
-
|
|
12867
|
-
|
|
12868
|
-
|
|
12869
|
-
|
|
12870
|
-
|
|
12871
|
-
|
|
12872
|
-
|
|
12873
|
-
|
|
12874
|
-
|
|
12875
|
-
|
|
12876
|
-
|
|
12877
|
-
|
|
12878
|
-
|
|
12879
|
-
'is_access_code_error',
|
|
12880
|
-
'error_code',
|
|
12881
|
-
],
|
|
12882
|
-
type: 'object',
|
|
12671
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12672
|
+
message: { type: 'string' },
|
|
12673
|
+
},
|
|
12674
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12675
|
+
type: 'object',
|
|
12676
|
+
},
|
|
12677
|
+
{
|
|
12678
|
+
description: 'Invalid code length for August lock.',
|
|
12679
|
+
properties: {
|
|
12680
|
+
error_code: {
|
|
12681
|
+
description:
|
|
12682
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12683
|
+
enum: ['august_lock_invalid_code_length'],
|
|
12684
|
+
type: 'string',
|
|
12883
12685
|
},
|
|
12884
|
-
{
|
|
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:
|
|
12694
|
+
'Access code has not yet been fully moved to the device.',
|
|
12695
|
+
properties: {
|
|
12696
|
+
error_code: {
|
|
12885
12697
|
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',
|
|
12698
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12699
|
+
enum: ['august_device_programming_delay'],
|
|
12700
|
+
type: 'string',
|
|
12903
12701
|
},
|
|
12904
|
-
{
|
|
12702
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12703
|
+
message: { type: 'string' },
|
|
12704
|
+
},
|
|
12705
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12706
|
+
type: 'object',
|
|
12707
|
+
},
|
|
12708
|
+
{
|
|
12709
|
+
description: 'All access code slots on the device are full.',
|
|
12710
|
+
properties: {
|
|
12711
|
+
error_code: {
|
|
12905
12712
|
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',
|
|
12713
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12714
|
+
enum: ['august_device_slots_full'],
|
|
12715
|
+
type: 'string',
|
|
12923
12716
|
},
|
|
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',
|
|
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: 'August lock is missing a keypad.',
|
|
12725
|
+
properties: {
|
|
12726
|
+
error_code: {
|
|
12727
|
+
description:
|
|
12728
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12729
|
+
enum: ['august_lock_missing_keypad'],
|
|
12730
|
+
type: 'string',
|
|
12942
12731
|
},
|
|
12943
|
-
{
|
|
12944
|
-
|
|
12945
|
-
|
|
12946
|
-
|
|
12947
|
-
|
|
12948
|
-
|
|
12949
|
-
|
|
12950
|
-
|
|
12951
|
-
|
|
12952
|
-
|
|
12953
|
-
|
|
12954
|
-
|
|
12955
|
-
|
|
12956
|
-
|
|
12957
|
-
'is_access_code_error',
|
|
12958
|
-
'error_code',
|
|
12959
|
-
],
|
|
12960
|
-
type: 'object',
|
|
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: 'Salto site user is not subscribed.',
|
|
12740
|
+
properties: {
|
|
12741
|
+
error_code: {
|
|
12742
|
+
description:
|
|
12743
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12744
|
+
enum: ['salto_site_user_not_subscribed'],
|
|
12745
|
+
type: 'string',
|
|
12961
12746
|
},
|
|
12962
|
-
{
|
|
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:
|
|
12755
|
+
'Access code has not yet been fully moved to the device.',
|
|
12756
|
+
properties: {
|
|
12757
|
+
error_code: {
|
|
12963
12758
|
description:
|
|
12964
|
-
'
|
|
12965
|
-
|
|
12966
|
-
|
|
12967
|
-
|
|
12968
|
-
|
|
12969
|
-
|
|
12970
|
-
|
|
12971
|
-
|
|
12972
|
-
|
|
12973
|
-
|
|
12974
|
-
|
|
12975
|
-
|
|
12976
|
-
|
|
12977
|
-
|
|
12978
|
-
|
|
12979
|
-
|
|
12980
|
-
|
|
12759
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12760
|
+
enum: ['hubitat_device_programming_delay'],
|
|
12761
|
+
type: 'string',
|
|
12762
|
+
},
|
|
12763
|
+
is_access_code_error: { enum: [true], type: 'boolean' },
|
|
12764
|
+
message: { type: 'string' },
|
|
12765
|
+
},
|
|
12766
|
+
required: ['message', 'is_access_code_error', 'error_code'],
|
|
12767
|
+
type: 'object',
|
|
12768
|
+
},
|
|
12769
|
+
{
|
|
12770
|
+
description: 'No free positions available on 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_no_free_positions_available'],
|
|
12776
|
+
type: 'string',
|
|
12981
12777
|
},
|
|
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',
|
|
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: 'Device is offline',
|
|
12786
|
+
properties: {
|
|
12787
|
+
error_code: {
|
|
12788
|
+
description:
|
|
12789
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12790
|
+
enum: ['device_offline'],
|
|
12791
|
+
type: 'string',
|
|
13000
12792
|
},
|
|
13001
|
-
|
|
12793
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12794
|
+
message: { type: 'string' },
|
|
12795
|
+
},
|
|
12796
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12797
|
+
type: 'object',
|
|
13002
12798
|
},
|
|
13003
12799
|
{
|
|
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',
|
|
12800
|
+
description: 'Device has been removed',
|
|
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_removed'],
|
|
12806
|
+
type: 'string',
|
|
13020
12807
|
},
|
|
13021
|
-
{
|
|
13022
|
-
|
|
13023
|
-
|
|
13024
|
-
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
|
|
13028
|
-
|
|
13029
|
-
|
|
13030
|
-
|
|
13031
|
-
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
type: '
|
|
12808
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
12809
|
+
message: { type: 'string' },
|
|
12810
|
+
},
|
|
12811
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
12812
|
+
type: 'object',
|
|
12813
|
+
},
|
|
12814
|
+
{
|
|
12815
|
+
description: 'Hub is disconnected',
|
|
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: ['hub_disconnected'],
|
|
12821
|
+
type: 'string',
|
|
13035
12822
|
},
|
|
13036
|
-
{
|
|
13037
|
-
|
|
13038
|
-
|
|
13039
|
-
|
|
13040
|
-
|
|
13041
|
-
|
|
13042
|
-
|
|
13043
|
-
|
|
13044
|
-
|
|
13045
|
-
|
|
13046
|
-
|
|
13047
|
-
|
|
13048
|
-
|
|
13049
|
-
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: 'Device 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: ['device_disconnected'],
|
|
12836
|
+
type: 'string',
|
|
13050
12837
|
},
|
|
13051
|
-
{
|
|
13052
|
-
|
|
13053
|
-
|
|
13054
|
-
|
|
13055
|
-
|
|
13056
|
-
|
|
13057
|
-
|
|
13058
|
-
|
|
13059
|
-
|
|
13060
|
-
|
|
13061
|
-
|
|
13062
|
-
|
|
13063
|
-
|
|
13064
|
-
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: 'The backup access code pool is empty.',
|
|
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: ['empty_backup_access_code_pool'],
|
|
12851
|
+
type: 'string',
|
|
13065
12852
|
},
|
|
13066
|
-
{
|
|
13067
|
-
|
|
13068
|
-
|
|
13069
|
-
|
|
13070
|
-
|
|
13071
|
-
|
|
13072
|
-
|
|
13073
|
-
|
|
13074
|
-
|
|
13075
|
-
|
|
13076
|
-
|
|
13077
|
-
|
|
13078
|
-
|
|
13079
|
-
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: 'User is not authorized to use the August Lock.',
|
|
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: ['august_lock_not_authorized'],
|
|
12866
|
+
type: 'string',
|
|
13080
12867
|
},
|
|
13081
|
-
{
|
|
13082
|
-
|
|
13083
|
-
|
|
13084
|
-
|
|
13085
|
-
|
|
13086
|
-
|
|
13087
|
-
|
|
13088
|
-
|
|
13089
|
-
|
|
13090
|
-
|
|
13091
|
-
|
|
13092
|
-
|
|
13093
|
-
|
|
13094
|
-
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: 'Lock is not connected to the Seam Bridge.',
|
|
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_missing_bridge'],
|
|
12881
|
+
type: 'string',
|
|
13095
12882
|
},
|
|
13096
|
-
{
|
|
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: 'Salto site user limit reached.',
|
|
12891
|
+
properties: {
|
|
12892
|
+
error_code: {
|
|
13097
12893
|
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',
|
|
12894
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12895
|
+
enum: ['salto_site_user_limit_reached'],
|
|
12896
|
+
type: 'string',
|
|
13111
12897
|
},
|
|
13112
|
-
{
|
|
13113
|
-
|
|
13114
|
-
|
|
13115
|
-
|
|
13116
|
-
|
|
13117
|
-
|
|
13118
|
-
|
|
13119
|
-
|
|
13120
|
-
|
|
13121
|
-
|
|
13122
|
-
|
|
13123
|
-
|
|
13124
|
-
|
|
13125
|
-
type: '
|
|
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: 'Lock is not paired with a Gateway.',
|
|
12906
|
+
properties: {
|
|
12907
|
+
error_code: {
|
|
12908
|
+
description:
|
|
12909
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12910
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
12911
|
+
type: 'string',
|
|
13126
12912
|
},
|
|
13127
|
-
{
|
|
13128
|
-
|
|
13129
|
-
|
|
13130
|
-
|
|
13131
|
-
|
|
13132
|
-
|
|
13133
|
-
|
|
13134
|
-
|
|
13135
|
-
|
|
13136
|
-
|
|
13137
|
-
|
|
13138
|
-
|
|
13139
|
-
|
|
13140
|
-
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: 'Missing device credentials.',
|
|
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: ['missing_device_credentials'],
|
|
12926
|
+
type: 'string',
|
|
13141
12927
|
},
|
|
13142
|
-
{
|
|
13143
|
-
|
|
13144
|
-
|
|
13145
|
-
|
|
13146
|
-
|
|
13147
|
-
|
|
13148
|
-
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
|
|
13152
|
-
|
|
13153
|
-
|
|
13154
|
-
|
|
13155
|
-
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: 'The auxiliary heat is running.',
|
|
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: ['auxiliary_heat_running'],
|
|
12941
|
+
type: 'string',
|
|
13156
12942
|
},
|
|
13157
|
-
{
|
|
13158
|
-
|
|
13159
|
-
|
|
13160
|
-
|
|
13161
|
-
|
|
13162
|
-
|
|
13163
|
-
|
|
13164
|
-
|
|
13165
|
-
|
|
13166
|
-
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
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: 'Subscription required to connect.',
|
|
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: ['subscription_required'],
|
|
12956
|
+
type: 'string',
|
|
13171
12957
|
},
|
|
13172
|
-
{
|
|
13173
|
-
|
|
13174
|
-
|
|
13175
|
-
|
|
13176
|
-
|
|
13177
|
-
|
|
13178
|
-
|
|
13179
|
-
|
|
13180
|
-
|
|
13181
|
-
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13185
|
-
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: 'Account is disconnected.',
|
|
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: ['account_disconnected'],
|
|
12971
|
+
type: 'string',
|
|
13186
12972
|
},
|
|
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',
|
|
12973
|
+
is_connected_account_error: {
|
|
12974
|
+
enum: [true],
|
|
12975
|
+
type: 'boolean',
|
|
13201
12976
|
},
|
|
12977
|
+
message: { type: 'string' },
|
|
12978
|
+
},
|
|
12979
|
+
required: [
|
|
12980
|
+
'message',
|
|
12981
|
+
'is_connected_account_error',
|
|
12982
|
+
'error_code',
|
|
13202
12983
|
],
|
|
12984
|
+
type: 'object',
|
|
13203
12985
|
},
|
|
13204
12986
|
{
|
|
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',
|
|
12987
|
+
description: 'Credentials provided were invalid.',
|
|
12988
|
+
properties: {
|
|
12989
|
+
error_code: {
|
|
12990
|
+
description:
|
|
12991
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12992
|
+
enum: ['invalid_credentials'],
|
|
12993
|
+
type: 'string',
|
|
13227
12994
|
},
|
|
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',
|
|
12995
|
+
is_connected_account_error: {
|
|
12996
|
+
enum: [true],
|
|
12997
|
+
type: 'boolean',
|
|
13249
12998
|
},
|
|
12999
|
+
message: { type: 'string' },
|
|
13000
|
+
},
|
|
13001
|
+
required: [
|
|
13002
|
+
'message',
|
|
13003
|
+
'is_connected_account_error',
|
|
13004
|
+
'error_code',
|
|
13250
13005
|
],
|
|
13006
|
+
type: 'object',
|
|
13251
13007
|
},
|
|
13252
13008
|
],
|
|
13253
13009
|
},
|
|
@@ -13278,6 +13034,7 @@ export default {
|
|
|
13278
13034
|
description:
|
|
13279
13035
|
'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
13036
|
items: {
|
|
13037
|
+
discriminator: { propertyName: 'warning_code' },
|
|
13281
13038
|
oneOf: [
|
|
13282
13039
|
{
|
|
13283
13040
|
description: 'Failed to set code on Smart Things device.',
|
|
@@ -13711,6 +13468,7 @@ export default {
|
|
|
13711
13468
|
description: 'Warnings associated with the `acs_credential`.',
|
|
13712
13469
|
items: {
|
|
13713
13470
|
description: 'Warning associated with the `acs_credential`.',
|
|
13471
|
+
discriminator: { propertyName: 'warning_code' },
|
|
13714
13472
|
oneOf: [
|
|
13715
13473
|
{
|
|
13716
13474
|
description:
|
|
@@ -13947,6 +13705,7 @@ export default {
|
|
|
13947
13705
|
description: 'Errors associated with the `acs_user`.',
|
|
13948
13706
|
items: {
|
|
13949
13707
|
description: 'Error associated with the `acs_user`.',
|
|
13708
|
+
discriminator: { propertyName: 'error_code' },
|
|
13950
13709
|
oneOf: [
|
|
13951
13710
|
{
|
|
13952
13711
|
description:
|
|
@@ -14139,6 +13898,7 @@ export default {
|
|
|
14139
13898
|
description: 'Warnings associated with the `acs_user`.',
|
|
14140
13899
|
items: {
|
|
14141
13900
|
description: 'Warning associated with the `acs_user`.',
|
|
13901
|
+
discriminator: { propertyName: 'warning_code' },
|
|
14142
13902
|
oneOf: [
|
|
14143
13903
|
{
|
|
14144
13904
|
description:
|
|
@@ -14304,255 +14064,231 @@ export default {
|
|
|
14304
14064
|
description:
|
|
14305
14065
|
'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
14066
|
items: {
|
|
14067
|
+
discriminator: { propertyName: 'error_code' },
|
|
14307
14068
|
oneOf: [
|
|
14308
14069
|
{
|
|
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',
|
|
14070
|
+
description: 'Device is offline',
|
|
14071
|
+
properties: {
|
|
14072
|
+
error_code: {
|
|
14073
|
+
description:
|
|
14074
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14075
|
+
enum: ['device_offline'],
|
|
14076
|
+
type: 'string',
|
|
14325
14077
|
},
|
|
14326
|
-
{
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
|
|
14330
|
-
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14335
|
-
|
|
14336
|
-
|
|
14337
|
-
|
|
14338
|
-
|
|
14339
|
-
type: '
|
|
14078
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14079
|
+
message: { type: 'string' },
|
|
14080
|
+
},
|
|
14081
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14082
|
+
type: 'object',
|
|
14083
|
+
},
|
|
14084
|
+
{
|
|
14085
|
+
description: 'Device has been removed',
|
|
14086
|
+
properties: {
|
|
14087
|
+
error_code: {
|
|
14088
|
+
description:
|
|
14089
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14090
|
+
enum: ['device_removed'],
|
|
14091
|
+
type: 'string',
|
|
14340
14092
|
},
|
|
14341
|
-
{
|
|
14342
|
-
|
|
14343
|
-
|
|
14344
|
-
|
|
14345
|
-
|
|
14346
|
-
|
|
14347
|
-
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
14354
|
-
type: '
|
|
14093
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
14094
|
+
message: { type: 'string' },
|
|
14095
|
+
},
|
|
14096
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
14097
|
+
type: 'object',
|
|
14098
|
+
},
|
|
14099
|
+
{
|
|
14100
|
+
description: 'Hub is disconnected',
|
|
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: ['hub_disconnected'],
|
|
14106
|
+
type: 'string',
|
|
14355
14107
|
},
|
|
14356
|
-
{
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
|
|
14360
|
-
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
14364
|
-
|
|
14365
|
-
|
|
14366
|
-
|
|
14367
|
-
|
|
14368
|
-
|
|
14369
|
-
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 is disconnected',
|
|
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_disconnected'],
|
|
14121
|
+
type: 'string',
|
|
14370
14122
|
},
|
|
14371
|
-
{
|
|
14372
|
-
|
|
14373
|
-
|
|
14374
|
-
|
|
14375
|
-
|
|
14376
|
-
|
|
14377
|
-
|
|
14378
|
-
|
|
14379
|
-
|
|
14380
|
-
|
|
14381
|
-
|
|
14382
|
-
|
|
14383
|
-
|
|
14384
|
-
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: 'The backup access code pool is empty.',
|
|
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: ['empty_backup_access_code_pool'],
|
|
14136
|
+
type: 'string',
|
|
14385
14137
|
},
|
|
14386
|
-
{
|
|
14387
|
-
|
|
14388
|
-
|
|
14389
|
-
|
|
14390
|
-
|
|
14391
|
-
|
|
14392
|
-
|
|
14393
|
-
|
|
14394
|
-
|
|
14395
|
-
|
|
14396
|
-
|
|
14397
|
-
|
|
14398
|
-
|
|
14399
|
-
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: 'User is not authorized to use the August Lock.',
|
|
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: ['august_lock_not_authorized'],
|
|
14151
|
+
type: 'string',
|
|
14400
14152
|
},
|
|
14401
|
-
{
|
|
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: 'Lock is not connected to the Seam Bridge.',
|
|
14161
|
+
properties: {
|
|
14162
|
+
error_code: {
|
|
14402
14163
|
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',
|
|
14164
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14165
|
+
enum: ['august_lock_missing_bridge'],
|
|
14166
|
+
type: 'string',
|
|
14416
14167
|
},
|
|
14417
|
-
{
|
|
14418
|
-
|
|
14419
|
-
|
|
14420
|
-
|
|
14421
|
-
|
|
14422
|
-
|
|
14423
|
-
|
|
14424
|
-
|
|
14425
|
-
|
|
14426
|
-
|
|
14427
|
-
|
|
14428
|
-
|
|
14429
|
-
|
|
14430
|
-
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: 'Salto site user limit reached.',
|
|
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: ['salto_site_user_limit_reached'],
|
|
14181
|
+
type: 'string',
|
|
14431
14182
|
},
|
|
14432
|
-
{
|
|
14433
|
-
|
|
14434
|
-
|
|
14435
|
-
|
|
14436
|
-
|
|
14437
|
-
|
|
14438
|
-
|
|
14439
|
-
|
|
14440
|
-
|
|
14441
|
-
|
|
14442
|
-
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
type: '
|
|
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 paired with a Gateway.',
|
|
14191
|
+
properties: {
|
|
14192
|
+
error_code: {
|
|
14193
|
+
description:
|
|
14194
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14195
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
14196
|
+
type: 'string',
|
|
14446
14197
|
},
|
|
14447
|
-
{
|
|
14448
|
-
|
|
14449
|
-
|
|
14450
|
-
|
|
14451
|
-
|
|
14452
|
-
|
|
14453
|
-
|
|
14454
|
-
|
|
14455
|
-
|
|
14456
|
-
|
|
14457
|
-
|
|
14458
|
-
|
|
14459
|
-
|
|
14460
|
-
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: 'Missing device credentials.',
|
|
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: ['missing_device_credentials'],
|
|
14211
|
+
type: 'string',
|
|
14461
14212
|
},
|
|
14462
|
-
{
|
|
14463
|
-
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14467
|
-
|
|
14468
|
-
|
|
14469
|
-
|
|
14470
|
-
|
|
14471
|
-
|
|
14472
|
-
|
|
14473
|
-
|
|
14474
|
-
|
|
14475
|
-
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: 'The auxiliary heat is running.',
|
|
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: ['auxiliary_heat_running'],
|
|
14226
|
+
type: 'string',
|
|
14476
14227
|
},
|
|
14477
|
-
{
|
|
14478
|
-
|
|
14479
|
-
|
|
14480
|
-
|
|
14481
|
-
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
|
|
14487
|
-
|
|
14488
|
-
|
|
14489
|
-
|
|
14490
|
-
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: 'Subscription required to connect.',
|
|
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: ['subscription_required'],
|
|
14241
|
+
type: 'string',
|
|
14491
14242
|
},
|
|
14492
|
-
{
|
|
14493
|
-
|
|
14494
|
-
|
|
14495
|
-
|
|
14496
|
-
|
|
14497
|
-
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
|
|
14505
|
-
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: 'Account is disconnected.',
|
|
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: ['account_disconnected'],
|
|
14256
|
+
type: 'string',
|
|
14257
|
+
},
|
|
14258
|
+
is_connected_account_error: {
|
|
14259
|
+
enum: [true],
|
|
14260
|
+
type: 'boolean',
|
|
14506
14261
|
},
|
|
14262
|
+
message: { type: 'string' },
|
|
14263
|
+
},
|
|
14264
|
+
required: [
|
|
14265
|
+
'message',
|
|
14266
|
+
'is_connected_account_error',
|
|
14267
|
+
'error_code',
|
|
14507
14268
|
],
|
|
14269
|
+
type: 'object',
|
|
14508
14270
|
},
|
|
14509
14271
|
{
|
|
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',
|
|
14272
|
+
description: 'Credentials provided were invalid.',
|
|
14273
|
+
properties: {
|
|
14274
|
+
error_code: {
|
|
14275
|
+
description:
|
|
14276
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
14277
|
+
enum: ['invalid_credentials'],
|
|
14278
|
+
type: 'string',
|
|
14532
14279
|
},
|
|
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',
|
|
14280
|
+
is_connected_account_error: {
|
|
14281
|
+
enum: [true],
|
|
14282
|
+
type: 'boolean',
|
|
14554
14283
|
},
|
|
14284
|
+
message: { type: 'string' },
|
|
14285
|
+
},
|
|
14286
|
+
required: [
|
|
14287
|
+
'message',
|
|
14288
|
+
'is_connected_account_error',
|
|
14289
|
+
'error_code',
|
|
14555
14290
|
],
|
|
14291
|
+
type: 'object',
|
|
14556
14292
|
},
|
|
14557
14293
|
],
|
|
14558
14294
|
},
|
|
@@ -14709,6 +14445,7 @@ export default {
|
|
|
14709
14445
|
description:
|
|
14710
14446
|
'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
14447
|
items: {
|
|
14448
|
+
discriminator: { propertyName: 'warning_code' },
|
|
14712
14449
|
oneOf: [
|
|
14713
14450
|
{
|
|
14714
14451
|
description: 'Backup access code unhealthy.',
|