@seamapi/types 1.363.1 → 1.364.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.363.1",
3
+ "version": "1.364.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -137,6 +137,14 @@ const august_device_slots_full = common_access_code_error
137
137
  })
138
138
  .describe('All access code slots on the device are full.')
139
139
 
140
+ const august_lock_temporarily_offline_error = common_access_code_error
141
+ .extend({
142
+ error_code: z
143
+ .literal('august_lock_temporarily_offline')
144
+ .describe(error_code_description),
145
+ })
146
+ .describe('August lock is temporarily offline.')
147
+
140
148
  const august_lock_missing_keypad = common_access_code_error
141
149
  .extend({
142
150
  error_code: z
@@ -145,10 +153,10 @@ const august_lock_missing_keypad = common_access_code_error
145
153
  })
146
154
  .describe('August lock is missing a keypad.')
147
155
 
148
- const salto_site_user_not_subscribed = common_access_code_error
156
+ const salto_ks_user_not_subscribed = common_access_code_error
149
157
  .extend({
150
158
  error_code: z
151
- .literal('salto_site_user_not_subscribed')
159
+ .literal('salto_ks_user_not_subscribed')
152
160
  .describe(error_code_description),
153
161
  })
154
162
  .describe('Salto site user is not subscribed.')
@@ -169,9 +177,42 @@ const hubitat_no_free_positions_available = common_access_code_error
169
177
  })
170
178
  .describe('No free positions available on the device.')
171
179
 
180
+ const smartthings_no_free_slots_available = common_access_code_error
181
+ .extend({
182
+ error_code: z
183
+ .literal('smartthings_no_free_slots_available')
184
+ .describe(error_code_description),
185
+ })
186
+ .describe('No free slots available on the device.')
187
+
188
+ const wyze_duplicate_code_name = common_access_code_error
189
+ .extend({
190
+ error_code: z
191
+ .literal('wyze_duplicate_code_name')
192
+ .describe(error_code_description),
193
+ })
194
+ .describe('Duplicate access code name detected.')
195
+
196
+ const wyze_potential_duplicate_code = common_access_code_error
197
+ .extend({
198
+ error_code: z
199
+ .literal('wyze_potential_duplicate_code')
200
+ .describe(error_code_description),
201
+ })
202
+ .describe('Potential duplicate access code detected.')
203
+
204
+ const dormakaba_oracode_no_valid_user_level = common_access_code_error
205
+ .extend({
206
+ error_code: z
207
+ .literal('dormakaba_oracode_no_valid_user_level')
208
+ .describe(error_code_description),
209
+ })
210
+ .describe('No valid user level for Oracode.')
211
+
172
212
  const access_code_error = z.discriminatedUnion('error_code', [
173
213
  smartthings_failed_to_set_access_code_error,
174
214
  smartthings_failed_to_set_after_multiple_retries,
215
+ smartthings_no_free_slots_available,
175
216
  failed_to_set_on_device,
176
217
  failed_to_remove_from_device,
177
218
  duplicate_code_on_device,
@@ -186,18 +227,25 @@ const access_code_error = z.discriminatedUnion('error_code', [
186
227
  august_device_programming_delay_error,
187
228
  august_device_slots_full,
188
229
  august_lock_missing_keypad,
189
- salto_site_user_not_subscribed,
230
+ august_lock_temporarily_offline_error,
231
+ salto_ks_user_not_subscribed,
190
232
  hubitat_device_programming_delay,
191
233
  hubitat_no_free_positions_available,
234
+ wyze_duplicate_code_name,
235
+ wyze_potential_duplicate_code,
236
+ dormakaba_oracode_no_valid_user_level,
192
237
  ])
193
238
 
194
239
  export type AccessCodeError = z.infer<typeof access_code_error>
195
240
 
196
241
  const access_code_error_map = z.object({
197
- smartthings_failed_to_set_access_code_error:
242
+ smartthings_failed_to_set_access_code:
198
243
  smartthings_failed_to_set_access_code_error.optional().nullable(),
199
244
  smartthings_failed_to_set_after_multiple_retries:
200
245
  smartthings_failed_to_set_after_multiple_retries.optional().nullable(),
246
+ smartthings_no_free_slots_available: smartthings_no_free_slots_available
247
+ .optional()
248
+ .nullable(),
201
249
  failed_to_set_on_device: failed_to_set_on_device.optional().nullable(),
202
250
  failed_to_remove_from_device: failed_to_remove_from_device
203
251
  .optional()
@@ -224,12 +272,15 @@ const access_code_error_map = z.object({
224
272
  august_lock_invalid_code_length: august_lock_invalid_code_length
225
273
  .optional()
226
274
  .nullable(),
227
- august_device_programming_delay_error: august_device_programming_delay_error
275
+ august_device_programming_delay: august_device_programming_delay_error
276
+ .optional()
277
+ .nullable(),
278
+ august_lock_temporarily_offline: august_lock_temporarily_offline_error
228
279
  .optional()
229
280
  .nullable(),
230
281
  august_device_slots_full: august_device_slots_full.optional().nullable(),
231
282
  august_lock_missing_keypad: august_lock_missing_keypad.optional().nullable(),
232
- salto_site_user_not_subscribed: salto_site_user_not_subscribed
283
+ salto_ks_user_not_subscribed: salto_ks_user_not_subscribed
233
284
  .optional()
234
285
  .nullable(),
235
286
  hubitat_device_programming_delay: hubitat_device_programming_delay
@@ -238,6 +289,13 @@ const access_code_error_map = z.object({
238
289
  hubitat_no_free_positions_available: hubitat_no_free_positions_available
239
290
  .optional()
240
291
  .nullable(),
292
+ wyze_duplicate_code_name: wyze_duplicate_code_name.optional().nullable(),
293
+ wyze_potential_duplicate_code: wyze_potential_duplicate_code
294
+ .optional()
295
+ .nullable(),
296
+ dormakaba_oracode_no_valid_user_level: dormakaba_oracode_no_valid_user_level
297
+ .optional()
298
+ .nullable(),
241
299
  })
242
300
 
243
301
  export type AccessCodeErrorMap = z.infer<typeof access_code_error_map>
@@ -266,6 +324,14 @@ const august_device_programming_delay_warning = common_access_code_warning
266
324
  })
267
325
  .describe('Access code has not yet been fully moved to the device.')
268
326
 
327
+ const august_lock_temporarily_offline_warning = common_access_code_warning
328
+ .extend({
329
+ warning_code: z
330
+ .literal('august_lock_temporarily_offline')
331
+ .describe(error_code_description),
332
+ })
333
+ .describe('August lock is temporarily offline.')
334
+
269
335
  const code_modified_external_to_seam_warning = common_access_code_warning
270
336
  .extend({
271
337
  warning_code: z
@@ -292,14 +358,6 @@ const schlage_creation_outage = common_access_code_warning
292
358
  })
293
359
  .describe('Received an error when attempting to create this code.')
294
360
 
295
- const salto_office_mode = common_access_code_warning
296
- .extend({
297
- warning_code: z
298
- .literal('salto_office_mode')
299
- .describe(warning_code_description),
300
- })
301
- .describe('Lock is in Office Mode. Access Codes will not unlock doors.')
302
-
303
361
  const delay_in_setting_on_device = common_access_code_warning
304
362
  .extend({
305
363
  warning_code: z
@@ -354,12 +412,12 @@ const access_code_warning = z.discriminatedUnion('warning_code', [
354
412
  smartthings_failed_to_set_access_code_warning,
355
413
  schlage_detected_duplicate,
356
414
  schlage_creation_outage,
357
- salto_office_mode,
358
415
  code_modified_external_to_seam_warning,
359
416
  delay_in_setting_on_device,
360
417
  delay_in_removing_from_device,
361
418
  third_party_integration_detected,
362
419
  august_device_programming_delay_warning,
420
+ august_lock_temporarily_offline_warning,
363
421
  igloo_algopin_must_be_used_within_24_hours,
364
422
  management_transferred,
365
423
  kwikset_unable_to_confirm_code_warning,
@@ -368,11 +426,10 @@ const access_code_warning = z.discriminatedUnion('warning_code', [
368
426
  export type AccessCodeWarning = z.infer<typeof access_code_warning>
369
427
 
370
428
  const access_code_warning_map = z.object({
371
- smartthings_failed_to_set_access_code_warning:
429
+ smartthings_failed_to_set_access_code:
372
430
  smartthings_failed_to_set_access_code_warning.optional().nullable(),
373
431
  schlage_detected_duplicate: schlage_detected_duplicate.optional().nullable(),
374
432
  schlage_creation_outage: schlage_creation_outage.optional().nullable(),
375
- salto_office_mode: salto_office_mode.optional().nullable(),
376
433
  code_modified_external_to_seam_warning: code_modified_external_to_seam_warning
377
434
  .optional()
378
435
  .nullable(),
@@ -383,8 +440,12 @@ const access_code_warning_map = z.object({
383
440
  third_party_integration_detected: third_party_integration_detected
384
441
  .optional()
385
442
  .nullable(),
386
- august_device_programming_delay_warning:
387
- august_device_programming_delay_warning.optional().nullable(),
443
+ august_device_programming_delay: august_device_programming_delay_warning
444
+ .optional()
445
+ .nullable(),
446
+ august_lock_temporarily_offline: august_lock_temporarily_offline_warning
447
+ .optional()
448
+ .nullable(),
388
449
  igloo_algopin_must_be_used_within_24_hours:
389
450
  igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
390
451
  management_transferred: management_transferred.optional().nullable(),
@@ -78,6 +78,22 @@ export default {
78
78
  required: ['message', 'is_access_code_error', 'error_code'],
79
79
  type: 'object',
80
80
  },
81
+ {
82
+ description: 'No free slots available on the device.',
83
+ properties: {
84
+ created_at: { format: 'date-time', type: 'string' },
85
+ error_code: {
86
+ description:
87
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
88
+ enum: ['smartthings_no_free_slots_available'],
89
+ type: 'string',
90
+ },
91
+ is_access_code_error: { enum: [true], type: 'boolean' },
92
+ message: { type: 'string' },
93
+ },
94
+ required: ['message', 'is_access_code_error', 'error_code'],
95
+ type: 'object',
96
+ },
81
97
  {
82
98
  description: 'Failed to set code on device.',
83
99
  properties: {
@@ -310,6 +326,22 @@ export default {
310
326
  required: ['message', 'is_access_code_error', 'error_code'],
311
327
  type: 'object',
312
328
  },
329
+ {
330
+ description: 'August lock is temporarily offline.',
331
+ properties: {
332
+ created_at: { format: 'date-time', type: 'string' },
333
+ error_code: {
334
+ description:
335
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
336
+ enum: ['august_lock_temporarily_offline'],
337
+ type: 'string',
338
+ },
339
+ is_access_code_error: { enum: [true], type: 'boolean' },
340
+ message: { type: 'string' },
341
+ },
342
+ required: ['message', 'is_access_code_error', 'error_code'],
343
+ type: 'object',
344
+ },
313
345
  {
314
346
  description: 'Salto site user is not subscribed.',
315
347
  properties: {
@@ -317,7 +349,7 @@ export default {
317
349
  error_code: {
318
350
  description:
319
351
  'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
320
- enum: ['salto_site_user_not_subscribed'],
352
+ enum: ['salto_ks_user_not_subscribed'],
321
353
  type: 'string',
322
354
  },
323
355
  is_access_code_error: { enum: [true], type: 'boolean' },
@@ -359,6 +391,54 @@ export default {
359
391
  required: ['message', 'is_access_code_error', 'error_code'],
360
392
  type: 'object',
361
393
  },
394
+ {
395
+ description: 'Duplicate access code name detected.',
396
+ properties: {
397
+ created_at: { format: 'date-time', type: 'string' },
398
+ error_code: {
399
+ description:
400
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
401
+ enum: ['wyze_duplicate_code_name'],
402
+ type: 'string',
403
+ },
404
+ is_access_code_error: { enum: [true], type: 'boolean' },
405
+ message: { type: 'string' },
406
+ },
407
+ required: ['message', 'is_access_code_error', 'error_code'],
408
+ type: 'object',
409
+ },
410
+ {
411
+ description: 'Potential duplicate access code detected.',
412
+ properties: {
413
+ created_at: { format: 'date-time', type: 'string' },
414
+ error_code: {
415
+ description:
416
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
417
+ enum: ['wyze_potential_duplicate_code'],
418
+ type: 'string',
419
+ },
420
+ is_access_code_error: { enum: [true], type: 'boolean' },
421
+ message: { type: 'string' },
422
+ },
423
+ required: ['message', 'is_access_code_error', 'error_code'],
424
+ type: 'object',
425
+ },
426
+ {
427
+ description: 'No valid user level for Oracode.',
428
+ properties: {
429
+ created_at: { format: 'date-time', type: 'string' },
430
+ error_code: {
431
+ description:
432
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
433
+ enum: ['dormakaba_oracode_no_valid_user_level'],
434
+ type: 'string',
435
+ },
436
+ is_access_code_error: { enum: [true], type: 'boolean' },
437
+ message: { type: 'string' },
438
+ },
439
+ required: ['message', 'is_access_code_error', 'error_code'],
440
+ type: 'object',
441
+ },
362
442
  {
363
443
  description: 'Account is disconnected',
364
444
  properties: {
@@ -800,14 +880,14 @@ export default {
800
880
  },
801
881
  {
802
882
  description:
803
- 'Lock is in Office Mode. Access Codes will not unlock doors.',
883
+ 'Code was modified or removed externally after Seam successfully set it on the device.',
804
884
  properties: {
805
885
  created_at: { format: 'date-time', type: 'string' },
806
886
  message: { type: 'string' },
807
887
  warning_code: {
808
888
  description:
809
889
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
810
- enum: ['salto_office_mode'],
890
+ enum: ['code_modified_external_to_seam'],
811
891
  type: 'string',
812
892
  },
813
893
  },
@@ -815,15 +895,14 @@ export default {
815
895
  type: 'object',
816
896
  },
817
897
  {
818
- description:
819
- 'Code was modified or removed externally after Seam successfully set it on the device.',
898
+ description: 'Delay in setting code on device.',
820
899
  properties: {
821
900
  created_at: { format: 'date-time', type: 'string' },
822
901
  message: { type: 'string' },
823
902
  warning_code: {
824
903
  description:
825
904
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
826
- enum: ['code_modified_external_to_seam'],
905
+ enum: ['delay_in_setting_on_device'],
827
906
  type: 'string',
828
907
  },
829
908
  },
@@ -831,14 +910,14 @@ export default {
831
910
  type: 'object',
832
911
  },
833
912
  {
834
- description: 'Delay in setting code on device.',
913
+ description: 'Delay in removing code from device.',
835
914
  properties: {
836
915
  created_at: { format: 'date-time', type: 'string' },
837
916
  message: { type: 'string' },
838
917
  warning_code: {
839
918
  description:
840
919
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
841
- enum: ['delay_in_setting_on_device'],
920
+ enum: ['delay_in_removing_from_device'],
842
921
  type: 'string',
843
922
  },
844
923
  },
@@ -846,14 +925,15 @@ export default {
846
925
  type: 'object',
847
926
  },
848
927
  {
849
- description: 'Delay in removing code from device.',
928
+ description:
929
+ 'Third party integration detected that may cause access codes to fail.',
850
930
  properties: {
851
931
  created_at: { format: 'date-time', type: 'string' },
852
932
  message: { type: 'string' },
853
933
  warning_code: {
854
934
  description:
855
935
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
856
- enum: ['delay_in_removing_from_device'],
936
+ enum: ['third_party_integration_detected'],
857
937
  type: 'string',
858
938
  },
859
939
  },
@@ -862,14 +942,14 @@ export default {
862
942
  },
863
943
  {
864
944
  description:
865
- 'Third party integration detected that may cause access codes to fail.',
945
+ 'Access code has not yet been fully moved to the device.',
866
946
  properties: {
867
947
  created_at: { format: 'date-time', type: 'string' },
868
948
  message: { type: 'string' },
869
949
  warning_code: {
870
950
  description:
871
951
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
872
- enum: ['third_party_integration_detected'],
952
+ enum: ['august_device_programming_delay'],
873
953
  type: 'string',
874
954
  },
875
955
  },
@@ -877,15 +957,14 @@ export default {
877
957
  type: 'object',
878
958
  },
879
959
  {
880
- description:
881
- 'Access code has not yet been fully moved to the device.',
960
+ description: 'August lock is temporarily offline.',
882
961
  properties: {
883
962
  created_at: { format: 'date-time', type: 'string' },
884
963
  message: { type: 'string' },
885
964
  warning_code: {
886
965
  description:
887
- 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
888
- enum: ['august_device_programming_delay'],
966
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
967
+ enum: ['august_lock_temporarily_offline'],
889
968
  type: 'string',
890
969
  },
891
970
  },
@@ -12872,6 +12951,22 @@ export default {
12872
12951
  required: ['message', 'is_access_code_error', 'error_code'],
12873
12952
  type: 'object',
12874
12953
  },
12954
+ {
12955
+ description: 'No free slots available on the device.',
12956
+ properties: {
12957
+ created_at: { format: 'date-time', type: 'string' },
12958
+ error_code: {
12959
+ description:
12960
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
12961
+ enum: ['smartthings_no_free_slots_available'],
12962
+ type: 'string',
12963
+ },
12964
+ is_access_code_error: { enum: [true], type: 'boolean' },
12965
+ message: { type: 'string' },
12966
+ },
12967
+ required: ['message', 'is_access_code_error', 'error_code'],
12968
+ type: 'object',
12969
+ },
12875
12970
  {
12876
12971
  description: 'Failed to set code on device.',
12877
12972
  properties: {
@@ -13104,6 +13199,22 @@ export default {
13104
13199
  required: ['message', 'is_access_code_error', 'error_code'],
13105
13200
  type: 'object',
13106
13201
  },
13202
+ {
13203
+ description: 'August lock is temporarily offline.',
13204
+ properties: {
13205
+ created_at: { format: 'date-time', type: 'string' },
13206
+ error_code: {
13207
+ description:
13208
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
13209
+ enum: ['august_lock_temporarily_offline'],
13210
+ type: 'string',
13211
+ },
13212
+ is_access_code_error: { enum: [true], type: 'boolean' },
13213
+ message: { type: 'string' },
13214
+ },
13215
+ required: ['message', 'is_access_code_error', 'error_code'],
13216
+ type: 'object',
13217
+ },
13107
13218
  {
13108
13219
  description: 'Salto site user is not subscribed.',
13109
13220
  properties: {
@@ -13111,7 +13222,7 @@ export default {
13111
13222
  error_code: {
13112
13223
  description:
13113
13224
  'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
13114
- enum: ['salto_site_user_not_subscribed'],
13225
+ enum: ['salto_ks_user_not_subscribed'],
13115
13226
  type: 'string',
13116
13227
  },
13117
13228
  is_access_code_error: { enum: [true], type: 'boolean' },
@@ -13153,6 +13264,54 @@ export default {
13153
13264
  required: ['message', 'is_access_code_error', 'error_code'],
13154
13265
  type: 'object',
13155
13266
  },
13267
+ {
13268
+ description: 'Duplicate access code name detected.',
13269
+ properties: {
13270
+ created_at: { format: 'date-time', type: 'string' },
13271
+ error_code: {
13272
+ description:
13273
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
13274
+ enum: ['wyze_duplicate_code_name'],
13275
+ type: 'string',
13276
+ },
13277
+ is_access_code_error: { enum: [true], type: 'boolean' },
13278
+ message: { type: 'string' },
13279
+ },
13280
+ required: ['message', 'is_access_code_error', 'error_code'],
13281
+ type: 'object',
13282
+ },
13283
+ {
13284
+ description: 'Potential duplicate access code detected.',
13285
+ properties: {
13286
+ created_at: { format: 'date-time', type: 'string' },
13287
+ error_code: {
13288
+ description:
13289
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
13290
+ enum: ['wyze_potential_duplicate_code'],
13291
+ type: 'string',
13292
+ },
13293
+ is_access_code_error: { enum: [true], type: 'boolean' },
13294
+ message: { type: 'string' },
13295
+ },
13296
+ required: ['message', 'is_access_code_error', 'error_code'],
13297
+ type: 'object',
13298
+ },
13299
+ {
13300
+ description: 'No valid user level for Oracode.',
13301
+ properties: {
13302
+ created_at: { format: 'date-time', type: 'string' },
13303
+ error_code: {
13304
+ description:
13305
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
13306
+ enum: ['dormakaba_oracode_no_valid_user_level'],
13307
+ type: 'string',
13308
+ },
13309
+ is_access_code_error: { enum: [true], type: 'boolean' },
13310
+ message: { type: 'string' },
13311
+ },
13312
+ required: ['message', 'is_access_code_error', 'error_code'],
13313
+ type: 'object',
13314
+ },
13156
13315
  {
13157
13316
  description: 'Account is disconnected',
13158
13317
  properties: {
@@ -13544,14 +13703,14 @@ export default {
13544
13703
  },
13545
13704
  {
13546
13705
  description:
13547
- 'Lock is in Office Mode. Access Codes will not unlock doors.',
13706
+ 'Code was modified or removed externally after Seam successfully set it on the device.',
13548
13707
  properties: {
13549
13708
  created_at: { format: 'date-time', type: 'string' },
13550
13709
  message: { type: 'string' },
13551
13710
  warning_code: {
13552
13711
  description:
13553
13712
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13554
- enum: ['salto_office_mode'],
13713
+ enum: ['code_modified_external_to_seam'],
13555
13714
  type: 'string',
13556
13715
  },
13557
13716
  },
@@ -13559,15 +13718,14 @@ export default {
13559
13718
  type: 'object',
13560
13719
  },
13561
13720
  {
13562
- description:
13563
- 'Code was modified or removed externally after Seam successfully set it on the device.',
13721
+ description: 'Delay in setting code on device.',
13564
13722
  properties: {
13565
13723
  created_at: { format: 'date-time', type: 'string' },
13566
13724
  message: { type: 'string' },
13567
13725
  warning_code: {
13568
13726
  description:
13569
13727
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13570
- enum: ['code_modified_external_to_seam'],
13728
+ enum: ['delay_in_setting_on_device'],
13571
13729
  type: 'string',
13572
13730
  },
13573
13731
  },
@@ -13575,14 +13733,14 @@ export default {
13575
13733
  type: 'object',
13576
13734
  },
13577
13735
  {
13578
- description: 'Delay in setting code on device.',
13736
+ description: 'Delay in removing code from device.',
13579
13737
  properties: {
13580
13738
  created_at: { format: 'date-time', type: 'string' },
13581
13739
  message: { type: 'string' },
13582
13740
  warning_code: {
13583
13741
  description:
13584
13742
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13585
- enum: ['delay_in_setting_on_device'],
13743
+ enum: ['delay_in_removing_from_device'],
13586
13744
  type: 'string',
13587
13745
  },
13588
13746
  },
@@ -13590,14 +13748,15 @@ export default {
13590
13748
  type: 'object',
13591
13749
  },
13592
13750
  {
13593
- description: 'Delay in removing code from device.',
13751
+ description:
13752
+ 'Third party integration detected that may cause access codes to fail.',
13594
13753
  properties: {
13595
13754
  created_at: { format: 'date-time', type: 'string' },
13596
13755
  message: { type: 'string' },
13597
13756
  warning_code: {
13598
13757
  description:
13599
13758
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13600
- enum: ['delay_in_removing_from_device'],
13759
+ enum: ['third_party_integration_detected'],
13601
13760
  type: 'string',
13602
13761
  },
13603
13762
  },
@@ -13606,14 +13765,14 @@ export default {
13606
13765
  },
13607
13766
  {
13608
13767
  description:
13609
- 'Third party integration detected that may cause access codes to fail.',
13768
+ 'Access code has not yet been fully moved to the device.',
13610
13769
  properties: {
13611
13770
  created_at: { format: 'date-time', type: 'string' },
13612
13771
  message: { type: 'string' },
13613
13772
  warning_code: {
13614
13773
  description:
13615
13774
  'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13616
- enum: ['third_party_integration_detected'],
13775
+ enum: ['august_device_programming_delay'],
13617
13776
  type: 'string',
13618
13777
  },
13619
13778
  },
@@ -13621,15 +13780,14 @@ export default {
13621
13780
  type: 'object',
13622
13781
  },
13623
13782
  {
13624
- description:
13625
- 'Access code has not yet been fully moved to the device.',
13783
+ description: 'August lock is temporarily offline.',
13626
13784
  properties: {
13627
13785
  created_at: { format: 'date-time', type: 'string' },
13628
13786
  message: { type: 'string' },
13629
13787
  warning_code: {
13630
13788
  description:
13631
- 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
13632
- enum: ['august_device_programming_delay'],
13789
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
13790
+ enum: ['august_lock_temporarily_offline'],
13633
13791
  type: 'string',
13634
13792
  },
13635
13793
  },