@seamapi/types 1.909.0 → 1.911.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/dist/connect.cjs +2 -1011
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -2498
- package/dist/index.cjs +2 -1011
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +97 -1168
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -229
- 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 +0 -391
- package/lib/seam/connect/openapi.js +112 -950
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1475
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -276
- package/src/lib/seam/connect/openapi.ts +116 -1092
- package/src/lib/seam/connect/route-types.ts +1 -1651
|
@@ -108,64 +108,6 @@ const openapi = {
|
|
|
108
108
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
109
109
|
type: 'object',
|
|
110
110
|
},
|
|
111
|
-
{
|
|
112
|
-
deprecated: true,
|
|
113
|
-
description: 'Failed to set code on SmartThings device.',
|
|
114
|
-
properties: {
|
|
115
|
-
created_at: {
|
|
116
|
-
description: 'Date and time at which Seam created the error.',
|
|
117
|
-
format: 'date-time',
|
|
118
|
-
type: 'string',
|
|
119
|
-
},
|
|
120
|
-
error_code: {
|
|
121
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
122
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
123
|
-
type: 'string',
|
|
124
|
-
},
|
|
125
|
-
is_access_code_error: {
|
|
126
|
-
description: 'Indicates that this is an access code error.',
|
|
127
|
-
enum: [true],
|
|
128
|
-
type: 'boolean',
|
|
129
|
-
},
|
|
130
|
-
message: {
|
|
131
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
132
|
-
type: 'string',
|
|
133
|
-
},
|
|
134
|
-
},
|
|
135
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
136
|
-
type: 'object',
|
|
137
|
-
'x-deprecated': 'Handled by the generic `failed_to_set_on_device` system.',
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
deprecated: true,
|
|
141
|
-
description: 'Failed to set code after multiple retries.',
|
|
142
|
-
properties: {
|
|
143
|
-
created_at: {
|
|
144
|
-
description: 'Date and time at which Seam created the error.',
|
|
145
|
-
format: 'date-time',
|
|
146
|
-
type: 'string',
|
|
147
|
-
},
|
|
148
|
-
error_code: {
|
|
149
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
150
|
-
enum: [
|
|
151
|
-
'smartthings_failed_to_set_after_multiple_retries',
|
|
152
|
-
],
|
|
153
|
-
type: 'string',
|
|
154
|
-
},
|
|
155
|
-
is_access_code_error: {
|
|
156
|
-
description: 'Indicates that this is an access code error.',
|
|
157
|
-
enum: [true],
|
|
158
|
-
type: 'boolean',
|
|
159
|
-
},
|
|
160
|
-
message: {
|
|
161
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
162
|
-
type: 'string',
|
|
163
|
-
},
|
|
164
|
-
},
|
|
165
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
166
|
-
type: 'object',
|
|
167
|
-
'x-deprecated': 'Handled by the generic `failed_to_set_on_device` system.',
|
|
168
|
-
},
|
|
169
111
|
{
|
|
170
112
|
description: 'Failed to set code on device.',
|
|
171
113
|
properties: {
|
|
@@ -332,62 +274,6 @@ const openapi = {
|
|
|
332
274
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
333
275
|
type: 'object',
|
|
334
276
|
},
|
|
335
|
-
{
|
|
336
|
-
deprecated: true,
|
|
337
|
-
description: 'Unable to confirm that the access code is set on Kwikset device.',
|
|
338
|
-
properties: {
|
|
339
|
-
created_at: {
|
|
340
|
-
description: 'Date and time at which Seam created the error.',
|
|
341
|
-
format: 'date-time',
|
|
342
|
-
type: 'string',
|
|
343
|
-
},
|
|
344
|
-
error_code: {
|
|
345
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
346
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
347
|
-
type: 'string',
|
|
348
|
-
},
|
|
349
|
-
is_access_code_error: {
|
|
350
|
-
description: 'Indicates that this is an access code error.',
|
|
351
|
-
enum: [true],
|
|
352
|
-
type: 'boolean',
|
|
353
|
-
},
|
|
354
|
-
message: {
|
|
355
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
356
|
-
type: 'string',
|
|
357
|
-
},
|
|
358
|
-
},
|
|
359
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
360
|
-
type: 'object',
|
|
361
|
-
'x-deprecated': 'Use `access_code_state_unconfirmed` instead.',
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
deprecated: true,
|
|
365
|
-
description: 'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
366
|
-
properties: {
|
|
367
|
-
created_at: {
|
|
368
|
-
description: 'Date and time at which Seam created the error.',
|
|
369
|
-
format: 'date-time',
|
|
370
|
-
type: 'string',
|
|
371
|
-
},
|
|
372
|
-
error_code: {
|
|
373
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
374
|
-
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
375
|
-
type: 'string',
|
|
376
|
-
},
|
|
377
|
-
is_access_code_error: {
|
|
378
|
-
description: 'Indicates that this is an access code error.',
|
|
379
|
-
enum: [true],
|
|
380
|
-
type: 'boolean',
|
|
381
|
-
},
|
|
382
|
-
message: {
|
|
383
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
384
|
-
type: 'string',
|
|
385
|
-
},
|
|
386
|
-
},
|
|
387
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
388
|
-
type: 'object',
|
|
389
|
-
'x-deprecated': 'Use `access_code_state_unconfirmed` instead.',
|
|
390
|
-
},
|
|
391
277
|
{
|
|
392
278
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
393
279
|
properties: {
|
|
@@ -444,8 +330,7 @@ const openapi = {
|
|
|
444
330
|
type: 'object',
|
|
445
331
|
},
|
|
446
332
|
{
|
|
447
|
-
|
|
448
|
-
description: 'Invalid code length for August lock.',
|
|
333
|
+
description: 'Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.',
|
|
449
334
|
properties: {
|
|
450
335
|
created_at: {
|
|
451
336
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -454,7 +339,7 @@ const openapi = {
|
|
|
454
339
|
},
|
|
455
340
|
error_code: {
|
|
456
341
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
457
|
-
enum: ['
|
|
342
|
+
enum: ['access_code_inactive'],
|
|
458
343
|
type: 'string',
|
|
459
344
|
},
|
|
460
345
|
is_access_code_error: {
|
|
@@ -469,11 +354,10 @@ const openapi = {
|
|
|
469
354
|
},
|
|
470
355
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
471
356
|
type: 'object',
|
|
472
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
473
357
|
},
|
|
474
358
|
{
|
|
475
359
|
deprecated: true,
|
|
476
|
-
description: '
|
|
360
|
+
description: 'Salto site user is not subscribed.',
|
|
477
361
|
properties: {
|
|
478
362
|
created_at: {
|
|
479
363
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -482,7 +366,7 @@ const openapi = {
|
|
|
482
366
|
},
|
|
483
367
|
error_code: {
|
|
484
368
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
485
|
-
enum: ['
|
|
369
|
+
enum: ['salto_ks_user_not_subscribed'],
|
|
486
370
|
type: 'string',
|
|
487
371
|
},
|
|
488
372
|
is_access_code_error: {
|
|
@@ -497,11 +381,10 @@ const openapi = {
|
|
|
497
381
|
},
|
|
498
382
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
499
383
|
type: 'object',
|
|
500
|
-
'x-deprecated': 'Use `
|
|
384
|
+
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
501
385
|
},
|
|
502
386
|
{
|
|
503
|
-
|
|
504
|
-
description: 'August lock is temporarily offline.',
|
|
387
|
+
description: 'Admin role required—insufficient permissions to manage PINs on this device. Please have an admin update your role, or ask them to set the PIN.',
|
|
505
388
|
properties: {
|
|
506
389
|
created_at: {
|
|
507
390
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -510,7 +393,7 @@ const openapi = {
|
|
|
510
393
|
},
|
|
511
394
|
error_code: {
|
|
512
395
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
513
|
-
enum: ['
|
|
396
|
+
enum: ['insufficient_permissions'],
|
|
514
397
|
type: 'string',
|
|
515
398
|
},
|
|
516
399
|
is_access_code_error: {
|
|
@@ -525,10 +408,9 @@ const openapi = {
|
|
|
525
408
|
},
|
|
526
409
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
527
410
|
type: 'object',
|
|
528
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
529
411
|
},
|
|
530
412
|
{
|
|
531
|
-
description: '
|
|
413
|
+
description: 'This access code was overridden on the device by a newer access code programmed to the same slot.',
|
|
532
414
|
properties: {
|
|
533
415
|
created_at: {
|
|
534
416
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -537,7 +419,7 @@ const openapi = {
|
|
|
537
419
|
},
|
|
538
420
|
error_code: {
|
|
539
421
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
540
|
-
enum: ['
|
|
422
|
+
enum: ['replaced_by_newer_access_code'],
|
|
541
423
|
type: 'string',
|
|
542
424
|
},
|
|
543
425
|
is_access_code_error: {
|
|
@@ -554,8 +436,7 @@ const openapi = {
|
|
|
554
436
|
type: 'object',
|
|
555
437
|
},
|
|
556
438
|
{
|
|
557
|
-
|
|
558
|
-
description: 'Salto site user is not subscribed.',
|
|
439
|
+
description: 'Indicates that the account is disconnected.',
|
|
559
440
|
properties: {
|
|
560
441
|
created_at: {
|
|
561
442
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -564,26 +445,35 @@ const openapi = {
|
|
|
564
445
|
},
|
|
565
446
|
error_code: {
|
|
566
447
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
567
|
-
enum: ['
|
|
448
|
+
enum: ['account_disconnected'],
|
|
568
449
|
type: 'string',
|
|
569
450
|
},
|
|
570
|
-
|
|
571
|
-
description: 'Indicates that
|
|
451
|
+
is_connected_account_error: {
|
|
452
|
+
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
572
453
|
enum: [true],
|
|
573
454
|
type: 'boolean',
|
|
574
455
|
},
|
|
456
|
+
is_device_error: {
|
|
457
|
+
description: 'Indicates that the error is not a device error.',
|
|
458
|
+
enum: [false],
|
|
459
|
+
type: 'boolean',
|
|
460
|
+
},
|
|
575
461
|
message: {
|
|
576
462
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
577
463
|
type: 'string',
|
|
578
464
|
},
|
|
579
465
|
},
|
|
580
|
-
required: [
|
|
466
|
+
required: [
|
|
467
|
+
'message',
|
|
468
|
+
'is_device_error',
|
|
469
|
+
'created_at',
|
|
470
|
+
'error_code',
|
|
471
|
+
'is_connected_account_error',
|
|
472
|
+
],
|
|
581
473
|
type: 'object',
|
|
582
|
-
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
583
474
|
},
|
|
584
475
|
{
|
|
585
|
-
|
|
586
|
-
description: 'Duplicate access code name detected.',
|
|
476
|
+
description: 'Indicates that the Salto site user limit has been reached.',
|
|
587
477
|
properties: {
|
|
588
478
|
created_at: {
|
|
589
479
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -592,26 +482,37 @@ const openapi = {
|
|
|
592
482
|
},
|
|
593
483
|
error_code: {
|
|
594
484
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
595
|
-
enum: ['
|
|
485
|
+
enum: ['salto_ks_subscription_limit_exceeded'],
|
|
596
486
|
type: 'string',
|
|
597
487
|
},
|
|
598
|
-
|
|
599
|
-
description: 'Indicates that
|
|
488
|
+
is_connected_account_error: {
|
|
489
|
+
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
600
490
|
enum: [true],
|
|
601
491
|
type: 'boolean',
|
|
602
492
|
},
|
|
493
|
+
is_device_error: {
|
|
494
|
+
description: 'Indicates that the error is not a device error.',
|
|
495
|
+
enum: [false],
|
|
496
|
+
type: 'boolean',
|
|
497
|
+
},
|
|
603
498
|
message: {
|
|
604
499
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
605
500
|
type: 'string',
|
|
606
501
|
},
|
|
607
502
|
},
|
|
608
|
-
required: [
|
|
503
|
+
required: [
|
|
504
|
+
'message',
|
|
505
|
+
'is_device_error',
|
|
506
|
+
'created_at',
|
|
507
|
+
'error_code',
|
|
508
|
+
'is_connected_account_error',
|
|
509
|
+
],
|
|
609
510
|
type: 'object',
|
|
610
|
-
'x-
|
|
511
|
+
'x-variant-group-key': 'locks',
|
|
611
512
|
},
|
|
612
513
|
{
|
|
613
514
|
deprecated: true,
|
|
614
|
-
description: '
|
|
515
|
+
description: 'Indicates that the device is offline.',
|
|
615
516
|
properties: {
|
|
616
517
|
created_at: {
|
|
617
518
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -620,11 +521,11 @@ const openapi = {
|
|
|
620
521
|
},
|
|
621
522
|
error_code: {
|
|
622
523
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
623
|
-
enum: ['
|
|
524
|
+
enum: ['device_offline'],
|
|
624
525
|
type: 'string',
|
|
625
526
|
},
|
|
626
|
-
|
|
627
|
-
description: 'Indicates that
|
|
527
|
+
is_device_error: {
|
|
528
|
+
description: 'Indicates that the error is a device error.',
|
|
628
529
|
enum: [true],
|
|
629
530
|
type: 'boolean',
|
|
630
531
|
},
|
|
@@ -633,13 +534,17 @@ const openapi = {
|
|
|
633
534
|
type: 'string',
|
|
634
535
|
},
|
|
635
536
|
},
|
|
636
|
-
required: [
|
|
537
|
+
required: [
|
|
538
|
+
'message',
|
|
539
|
+
'is_device_error',
|
|
540
|
+
'created_at',
|
|
541
|
+
'error_code',
|
|
542
|
+
],
|
|
637
543
|
type: 'object',
|
|
638
|
-
'x-deprecated': 'Use `
|
|
544
|
+
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
639
545
|
},
|
|
640
546
|
{
|
|
641
|
-
|
|
642
|
-
description: 'No Dormakaba Oracode user levels configured for the requested time range.',
|
|
547
|
+
description: 'Indicates that the device has been removed.',
|
|
643
548
|
properties: {
|
|
644
549
|
created_at: {
|
|
645
550
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -648,11 +553,11 @@ const openapi = {
|
|
|
648
553
|
},
|
|
649
554
|
error_code: {
|
|
650
555
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
651
|
-
enum: ['
|
|
556
|
+
enum: ['device_removed'],
|
|
652
557
|
type: 'string',
|
|
653
558
|
},
|
|
654
|
-
|
|
655
|
-
description: 'Indicates that
|
|
559
|
+
is_device_error: {
|
|
560
|
+
description: 'Indicates that the error is a device error.',
|
|
656
561
|
enum: [true],
|
|
657
562
|
type: 'boolean',
|
|
658
563
|
},
|
|
@@ -661,12 +566,16 @@ const openapi = {
|
|
|
661
566
|
type: 'string',
|
|
662
567
|
},
|
|
663
568
|
},
|
|
664
|
-
required: [
|
|
569
|
+
required: [
|
|
570
|
+
'message',
|
|
571
|
+
'is_device_error',
|
|
572
|
+
'created_at',
|
|
573
|
+
'error_code',
|
|
574
|
+
],
|
|
665
575
|
type: 'object',
|
|
666
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
667
576
|
},
|
|
668
577
|
{
|
|
669
|
-
description: '
|
|
578
|
+
description: 'Indicates that the hub is disconnected.',
|
|
670
579
|
properties: {
|
|
671
580
|
created_at: {
|
|
672
581
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -675,11 +584,11 @@ const openapi = {
|
|
|
675
584
|
},
|
|
676
585
|
error_code: {
|
|
677
586
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
678
|
-
enum: ['
|
|
587
|
+
enum: ['hub_disconnected'],
|
|
679
588
|
type: 'string',
|
|
680
589
|
},
|
|
681
|
-
|
|
682
|
-
description: 'Indicates that
|
|
590
|
+
is_device_error: {
|
|
591
|
+
description: 'Indicates that the error is a device error.',
|
|
683
592
|
enum: [true],
|
|
684
593
|
type: 'boolean',
|
|
685
594
|
},
|
|
@@ -688,12 +597,16 @@ const openapi = {
|
|
|
688
597
|
type: 'string',
|
|
689
598
|
},
|
|
690
599
|
},
|
|
691
|
-
required: [
|
|
600
|
+
required: [
|
|
601
|
+
'message',
|
|
602
|
+
'is_device_error',
|
|
603
|
+
'created_at',
|
|
604
|
+
'error_code',
|
|
605
|
+
],
|
|
692
606
|
type: 'object',
|
|
693
607
|
},
|
|
694
608
|
{
|
|
695
|
-
|
|
696
|
-
description: 'KeyNest locker is not supported.',
|
|
609
|
+
description: 'Indicates that the device is disconnected.',
|
|
697
610
|
properties: {
|
|
698
611
|
created_at: {
|
|
699
612
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -702,11 +615,11 @@ const openapi = {
|
|
|
702
615
|
},
|
|
703
616
|
error_code: {
|
|
704
617
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
705
|
-
enum: ['
|
|
618
|
+
enum: ['device_disconnected'],
|
|
706
619
|
type: 'string',
|
|
707
620
|
},
|
|
708
|
-
|
|
709
|
-
description: 'Indicates that
|
|
621
|
+
is_device_error: {
|
|
622
|
+
description: 'Indicates that the error is a device error.',
|
|
710
623
|
enum: [true],
|
|
711
624
|
type: 'boolean',
|
|
712
625
|
},
|
|
@@ -715,12 +628,16 @@ const openapi = {
|
|
|
715
628
|
type: 'string',
|
|
716
629
|
},
|
|
717
630
|
},
|
|
718
|
-
required: [
|
|
631
|
+
required: [
|
|
632
|
+
'message',
|
|
633
|
+
'is_device_error',
|
|
634
|
+
'created_at',
|
|
635
|
+
'error_code',
|
|
636
|
+
],
|
|
719
637
|
type: 'object',
|
|
720
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
721
638
|
},
|
|
722
639
|
{
|
|
723
|
-
description: '
|
|
640
|
+
description: 'Indicates that the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is empty.',
|
|
724
641
|
properties: {
|
|
725
642
|
created_at: {
|
|
726
643
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -729,11 +646,11 @@ const openapi = {
|
|
|
729
646
|
},
|
|
730
647
|
error_code: {
|
|
731
648
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
732
|
-
enum: ['
|
|
649
|
+
enum: ['empty_backup_access_code_pool'],
|
|
733
650
|
type: 'string',
|
|
734
651
|
},
|
|
735
|
-
|
|
736
|
-
description: 'Indicates that
|
|
652
|
+
is_device_error: {
|
|
653
|
+
description: 'Indicates that the error is a device error.',
|
|
737
654
|
enum: [true],
|
|
738
655
|
type: 'boolean',
|
|
739
656
|
},
|
|
@@ -742,11 +659,17 @@ const openapi = {
|
|
|
742
659
|
type: 'string',
|
|
743
660
|
},
|
|
744
661
|
},
|
|
745
|
-
required: [
|
|
662
|
+
required: [
|
|
663
|
+
'message',
|
|
664
|
+
'is_device_error',
|
|
665
|
+
'created_at',
|
|
666
|
+
'error_code',
|
|
667
|
+
],
|
|
746
668
|
type: 'object',
|
|
669
|
+
'x-variant-group-key': 'access_codes',
|
|
747
670
|
},
|
|
748
671
|
{
|
|
749
|
-
description: 'Indicates that the
|
|
672
|
+
description: 'Indicates that the user is not authorized to use the August lock.',
|
|
750
673
|
properties: {
|
|
751
674
|
created_at: {
|
|
752
675
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -755,17 +678,12 @@ const openapi = {
|
|
|
755
678
|
},
|
|
756
679
|
error_code: {
|
|
757
680
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
758
|
-
enum: ['
|
|
681
|
+
enum: ['august_lock_not_authorized'],
|
|
759
682
|
type: 'string',
|
|
760
683
|
},
|
|
761
|
-
is_connected_account_error: {
|
|
762
|
-
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
763
|
-
enum: [true],
|
|
764
|
-
type: 'boolean',
|
|
765
|
-
},
|
|
766
684
|
is_device_error: {
|
|
767
|
-
description: 'Indicates that the error is
|
|
768
|
-
enum: [
|
|
685
|
+
description: 'Indicates that the error is a device error.',
|
|
686
|
+
enum: [true],
|
|
769
687
|
type: 'boolean',
|
|
770
688
|
},
|
|
771
689
|
message: {
|
|
@@ -778,12 +696,13 @@ const openapi = {
|
|
|
778
696
|
'is_device_error',
|
|
779
697
|
'created_at',
|
|
780
698
|
'error_code',
|
|
781
|
-
'is_connected_account_error',
|
|
782
699
|
],
|
|
783
700
|
type: 'object',
|
|
701
|
+
'x-variant-group-key': 'locks',
|
|
784
702
|
},
|
|
785
703
|
{
|
|
786
|
-
|
|
704
|
+
deprecated: true,
|
|
705
|
+
description: 'Indicates that the lock is not connected to a bridge.',
|
|
787
706
|
properties: {
|
|
788
707
|
created_at: {
|
|
789
708
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -792,17 +711,12 @@ const openapi = {
|
|
|
792
711
|
},
|
|
793
712
|
error_code: {
|
|
794
713
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
795
|
-
enum: ['
|
|
714
|
+
enum: ['august_lock_missing_bridge'],
|
|
796
715
|
type: 'string',
|
|
797
716
|
},
|
|
798
|
-
is_connected_account_error: {
|
|
799
|
-
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
800
|
-
enum: [true],
|
|
801
|
-
type: 'boolean',
|
|
802
|
-
},
|
|
803
717
|
is_device_error: {
|
|
804
|
-
description: 'Indicates that the error is
|
|
805
|
-
enum: [
|
|
718
|
+
description: 'Indicates that the error is a device error.',
|
|
719
|
+
enum: [true],
|
|
806
720
|
type: 'boolean',
|
|
807
721
|
},
|
|
808
722
|
message: {
|
|
@@ -815,14 +729,14 @@ const openapi = {
|
|
|
815
729
|
'is_device_error',
|
|
816
730
|
'created_at',
|
|
817
731
|
'error_code',
|
|
818
|
-
'is_connected_account_error',
|
|
819
732
|
],
|
|
820
733
|
type: 'object',
|
|
734
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
821
735
|
'x-variant-group-key': 'locks',
|
|
822
736
|
},
|
|
823
737
|
{
|
|
824
738
|
deprecated: true,
|
|
825
|
-
description: 'Indicates that the
|
|
739
|
+
description: 'Indicates that the lock is not paired with a gateway.',
|
|
826
740
|
properties: {
|
|
827
741
|
created_at: {
|
|
828
742
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -831,7 +745,7 @@ const openapi = {
|
|
|
831
745
|
},
|
|
832
746
|
error_code: {
|
|
833
747
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
834
|
-
enum: ['
|
|
748
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
835
749
|
type: 'string',
|
|
836
750
|
},
|
|
837
751
|
is_device_error: {
|
|
@@ -851,10 +765,10 @@ const openapi = {
|
|
|
851
765
|
'error_code',
|
|
852
766
|
],
|
|
853
767
|
type: 'object',
|
|
854
|
-
'x-deprecated': 'Use `
|
|
768
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
855
769
|
},
|
|
856
770
|
{
|
|
857
|
-
description: 'Indicates that
|
|
771
|
+
description: 'Indicates that device credentials are missing.',
|
|
858
772
|
properties: {
|
|
859
773
|
created_at: {
|
|
860
774
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -863,231 +777,7 @@ const openapi = {
|
|
|
863
777
|
},
|
|
864
778
|
error_code: {
|
|
865
779
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
866
|
-
enum: ['
|
|
867
|
-
type: 'string',
|
|
868
|
-
},
|
|
869
|
-
is_device_error: {
|
|
870
|
-
description: 'Indicates that the error is a device error.',
|
|
871
|
-
enum: [true],
|
|
872
|
-
type: 'boolean',
|
|
873
|
-
},
|
|
874
|
-
message: {
|
|
875
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
876
|
-
type: 'string',
|
|
877
|
-
},
|
|
878
|
-
},
|
|
879
|
-
required: [
|
|
880
|
-
'message',
|
|
881
|
-
'is_device_error',
|
|
882
|
-
'created_at',
|
|
883
|
-
'error_code',
|
|
884
|
-
],
|
|
885
|
-
type: 'object',
|
|
886
|
-
},
|
|
887
|
-
{
|
|
888
|
-
description: 'Indicates that the hub is disconnected.',
|
|
889
|
-
properties: {
|
|
890
|
-
created_at: {
|
|
891
|
-
description: 'Date and time at which Seam created the error.',
|
|
892
|
-
format: 'date-time',
|
|
893
|
-
type: 'string',
|
|
894
|
-
},
|
|
895
|
-
error_code: {
|
|
896
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
897
|
-
enum: ['hub_disconnected'],
|
|
898
|
-
type: 'string',
|
|
899
|
-
},
|
|
900
|
-
is_device_error: {
|
|
901
|
-
description: 'Indicates that the error is a device error.',
|
|
902
|
-
enum: [true],
|
|
903
|
-
type: 'boolean',
|
|
904
|
-
},
|
|
905
|
-
message: {
|
|
906
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
907
|
-
type: 'string',
|
|
908
|
-
},
|
|
909
|
-
},
|
|
910
|
-
required: [
|
|
911
|
-
'message',
|
|
912
|
-
'is_device_error',
|
|
913
|
-
'created_at',
|
|
914
|
-
'error_code',
|
|
915
|
-
],
|
|
916
|
-
type: 'object',
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
description: 'Indicates that the device is disconnected.',
|
|
920
|
-
properties: {
|
|
921
|
-
created_at: {
|
|
922
|
-
description: 'Date and time at which Seam created the error.',
|
|
923
|
-
format: 'date-time',
|
|
924
|
-
type: 'string',
|
|
925
|
-
},
|
|
926
|
-
error_code: {
|
|
927
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
928
|
-
enum: ['device_disconnected'],
|
|
929
|
-
type: 'string',
|
|
930
|
-
},
|
|
931
|
-
is_device_error: {
|
|
932
|
-
description: 'Indicates that the error is a device error.',
|
|
933
|
-
enum: [true],
|
|
934
|
-
type: 'boolean',
|
|
935
|
-
},
|
|
936
|
-
message: {
|
|
937
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
938
|
-
type: 'string',
|
|
939
|
-
},
|
|
940
|
-
},
|
|
941
|
-
required: [
|
|
942
|
-
'message',
|
|
943
|
-
'is_device_error',
|
|
944
|
-
'created_at',
|
|
945
|
-
'error_code',
|
|
946
|
-
],
|
|
947
|
-
type: 'object',
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
description: 'Indicates that the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is empty.',
|
|
951
|
-
properties: {
|
|
952
|
-
created_at: {
|
|
953
|
-
description: 'Date and time at which Seam created the error.',
|
|
954
|
-
format: 'date-time',
|
|
955
|
-
type: 'string',
|
|
956
|
-
},
|
|
957
|
-
error_code: {
|
|
958
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
959
|
-
enum: ['empty_backup_access_code_pool'],
|
|
960
|
-
type: 'string',
|
|
961
|
-
},
|
|
962
|
-
is_device_error: {
|
|
963
|
-
description: 'Indicates that the error is a device error.',
|
|
964
|
-
enum: [true],
|
|
965
|
-
type: 'boolean',
|
|
966
|
-
},
|
|
967
|
-
message: {
|
|
968
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
969
|
-
type: 'string',
|
|
970
|
-
},
|
|
971
|
-
},
|
|
972
|
-
required: [
|
|
973
|
-
'message',
|
|
974
|
-
'is_device_error',
|
|
975
|
-
'created_at',
|
|
976
|
-
'error_code',
|
|
977
|
-
],
|
|
978
|
-
type: 'object',
|
|
979
|
-
'x-variant-group-key': 'access_codes',
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
description: 'Indicates that the user is not authorized to use the August lock.',
|
|
983
|
-
properties: {
|
|
984
|
-
created_at: {
|
|
985
|
-
description: 'Date and time at which Seam created the error.',
|
|
986
|
-
format: 'date-time',
|
|
987
|
-
type: 'string',
|
|
988
|
-
},
|
|
989
|
-
error_code: {
|
|
990
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
991
|
-
enum: ['august_lock_not_authorized'],
|
|
992
|
-
type: 'string',
|
|
993
|
-
},
|
|
994
|
-
is_device_error: {
|
|
995
|
-
description: 'Indicates that the error is a device error.',
|
|
996
|
-
enum: [true],
|
|
997
|
-
type: 'boolean',
|
|
998
|
-
},
|
|
999
|
-
message: {
|
|
1000
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1001
|
-
type: 'string',
|
|
1002
|
-
},
|
|
1003
|
-
},
|
|
1004
|
-
required: [
|
|
1005
|
-
'message',
|
|
1006
|
-
'is_device_error',
|
|
1007
|
-
'created_at',
|
|
1008
|
-
'error_code',
|
|
1009
|
-
],
|
|
1010
|
-
type: 'object',
|
|
1011
|
-
'x-variant-group-key': 'locks',
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
deprecated: true,
|
|
1015
|
-
description: 'Indicates that the lock is not connected to a bridge.',
|
|
1016
|
-
properties: {
|
|
1017
|
-
created_at: {
|
|
1018
|
-
description: 'Date and time at which Seam created the error.',
|
|
1019
|
-
format: 'date-time',
|
|
1020
|
-
type: 'string',
|
|
1021
|
-
},
|
|
1022
|
-
error_code: {
|
|
1023
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
1024
|
-
enum: ['august_lock_missing_bridge'],
|
|
1025
|
-
type: 'string',
|
|
1026
|
-
},
|
|
1027
|
-
is_device_error: {
|
|
1028
|
-
description: 'Indicates that the error is a device error.',
|
|
1029
|
-
enum: [true],
|
|
1030
|
-
type: 'boolean',
|
|
1031
|
-
},
|
|
1032
|
-
message: {
|
|
1033
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1034
|
-
type: 'string',
|
|
1035
|
-
},
|
|
1036
|
-
},
|
|
1037
|
-
required: [
|
|
1038
|
-
'message',
|
|
1039
|
-
'is_device_error',
|
|
1040
|
-
'created_at',
|
|
1041
|
-
'error_code',
|
|
1042
|
-
],
|
|
1043
|
-
type: 'object',
|
|
1044
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
1045
|
-
'x-variant-group-key': 'locks',
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
deprecated: true,
|
|
1049
|
-
description: 'Indicates that the lock is not paired with a gateway.',
|
|
1050
|
-
properties: {
|
|
1051
|
-
created_at: {
|
|
1052
|
-
description: 'Date and time at which Seam created the error.',
|
|
1053
|
-
format: 'date-time',
|
|
1054
|
-
type: 'string',
|
|
1055
|
-
},
|
|
1056
|
-
error_code: {
|
|
1057
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
1058
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
1059
|
-
type: 'string',
|
|
1060
|
-
},
|
|
1061
|
-
is_device_error: {
|
|
1062
|
-
description: 'Indicates that the error is a device error.',
|
|
1063
|
-
enum: [true],
|
|
1064
|
-
type: 'boolean',
|
|
1065
|
-
},
|
|
1066
|
-
message: {
|
|
1067
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1068
|
-
type: 'string',
|
|
1069
|
-
},
|
|
1070
|
-
},
|
|
1071
|
-
required: [
|
|
1072
|
-
'message',
|
|
1073
|
-
'is_device_error',
|
|
1074
|
-
'created_at',
|
|
1075
|
-
'error_code',
|
|
1076
|
-
],
|
|
1077
|
-
type: 'object',
|
|
1078
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
1079
|
-
},
|
|
1080
|
-
{
|
|
1081
|
-
description: 'Indicates that device credentials are missing.',
|
|
1082
|
-
properties: {
|
|
1083
|
-
created_at: {
|
|
1084
|
-
description: 'Date and time at which Seam created the error.',
|
|
1085
|
-
format: 'date-time',
|
|
1086
|
-
type: 'string',
|
|
1087
|
-
},
|
|
1088
|
-
error_code: {
|
|
1089
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
1090
|
-
enum: ['missing_device_credentials'],
|
|
780
|
+
enum: ['missing_device_credentials'],
|
|
1091
781
|
type: 'string',
|
|
1092
782
|
},
|
|
1093
783
|
is_device_error: {
|
|
@@ -1611,27 +1301,6 @@ const openapi = {
|
|
|
1611
1301
|
required: ['message', 'warning_code'],
|
|
1612
1302
|
type: 'object',
|
|
1613
1303
|
},
|
|
1614
|
-
{
|
|
1615
|
-
description: 'Failed to set code on SmartThings device.',
|
|
1616
|
-
properties: {
|
|
1617
|
-
created_at: {
|
|
1618
|
-
description: 'Date and time at which Seam created the warning.',
|
|
1619
|
-
format: 'date-time',
|
|
1620
|
-
type: 'string',
|
|
1621
|
-
},
|
|
1622
|
-
message: {
|
|
1623
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1624
|
-
type: 'string',
|
|
1625
|
-
},
|
|
1626
|
-
warning_code: {
|
|
1627
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1628
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
1629
|
-
type: 'string',
|
|
1630
|
-
},
|
|
1631
|
-
},
|
|
1632
|
-
required: ['message', 'warning_code'],
|
|
1633
|
-
type: 'object',
|
|
1634
|
-
},
|
|
1635
1304
|
{
|
|
1636
1305
|
deprecated: true,
|
|
1637
1306
|
description: 'Duplicate access code detected.',
|
|
@@ -1655,29 +1324,6 @@ const openapi = {
|
|
|
1655
1324
|
type: 'object',
|
|
1656
1325
|
'x-deprecated': 'Use `duplicate_code_on_device` error instead.',
|
|
1657
1326
|
},
|
|
1658
|
-
{
|
|
1659
|
-
deprecated: true,
|
|
1660
|
-
description: 'Received an error when attempting to create this code.',
|
|
1661
|
-
properties: {
|
|
1662
|
-
created_at: {
|
|
1663
|
-
description: 'Date and time at which Seam created the warning.',
|
|
1664
|
-
format: 'date-time',
|
|
1665
|
-
type: 'string',
|
|
1666
|
-
},
|
|
1667
|
-
message: {
|
|
1668
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1669
|
-
type: 'string',
|
|
1670
|
-
},
|
|
1671
|
-
warning_code: {
|
|
1672
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1673
|
-
enum: ['schlage_creation_outage'],
|
|
1674
|
-
type: 'string',
|
|
1675
|
-
},
|
|
1676
|
-
},
|
|
1677
|
-
required: ['message', 'warning_code'],
|
|
1678
|
-
type: 'object',
|
|
1679
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
1680
|
-
},
|
|
1681
1327
|
{
|
|
1682
1328
|
description: "The Schlage device's timezone is ambiguous and this code's schedule crosses a daylight-saving transition in at least one plausible timezone. A 1-hour safety buffer has been applied to the side of the schedule affected by the transition (`ends_at` for spring-forward, `starts_at` for fall-back) so the code stays active through the shift — the code may be usable up to 1 hour beyond your requested window. Set the device's timezone via `/devices/report_provider_metadata` to clear the buffer and guarantee exact DST handling.",
|
|
1683
1329
|
properties: {
|
|
@@ -1812,27 +1458,6 @@ const openapi = {
|
|
|
1812
1458
|
required: ['message', 'warning_code'],
|
|
1813
1459
|
type: 'object',
|
|
1814
1460
|
},
|
|
1815
|
-
{
|
|
1816
|
-
description: 'August lock is temporarily offline.',
|
|
1817
|
-
properties: {
|
|
1818
|
-
created_at: {
|
|
1819
|
-
description: 'Date and time at which Seam created the warning.',
|
|
1820
|
-
format: 'date-time',
|
|
1821
|
-
type: 'string',
|
|
1822
|
-
},
|
|
1823
|
-
message: {
|
|
1824
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1825
|
-
type: 'string',
|
|
1826
|
-
},
|
|
1827
|
-
warning_code: {
|
|
1828
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
1829
|
-
enum: ['august_lock_temporarily_offline'],
|
|
1830
|
-
type: 'string',
|
|
1831
|
-
},
|
|
1832
|
-
},
|
|
1833
|
-
required: ['message', 'warning_code'],
|
|
1834
|
-
type: 'object',
|
|
1835
|
-
},
|
|
1836
1461
|
{
|
|
1837
1462
|
description: 'Algopins must be used within 24 hours.',
|
|
1838
1463
|
properties: {
|
|
@@ -1875,27 +1500,6 @@ const openapi = {
|
|
|
1875
1500
|
required: ['message', 'warning_code'],
|
|
1876
1501
|
type: 'object',
|
|
1877
1502
|
},
|
|
1878
|
-
{
|
|
1879
|
-
description: 'Unable to confirm that the access code is set on Kwikset device.',
|
|
1880
|
-
properties: {
|
|
1881
|
-
created_at: {
|
|
1882
|
-
description: 'Date and time at which Seam created the warning.',
|
|
1883
|
-
format: 'date-time',
|
|
1884
|
-
type: 'string',
|
|
1885
|
-
},
|
|
1886
|
-
message: {
|
|
1887
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1888
|
-
type: 'string',
|
|
1889
|
-
},
|
|
1890
|
-
warning_code: {
|
|
1891
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1892
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
1893
|
-
type: 'string',
|
|
1894
|
-
},
|
|
1895
|
-
},
|
|
1896
|
-
required: ['message', 'warning_code'],
|
|
1897
|
-
type: 'object',
|
|
1898
|
-
},
|
|
1899
1503
|
{
|
|
1900
1504
|
description: 'Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.',
|
|
1901
1505
|
properties: {
|
|
@@ -1917,29 +1521,6 @@ const openapi = {
|
|
|
1917
1521
|
required: ['message', 'warning_code'],
|
|
1918
1522
|
type: 'object',
|
|
1919
1523
|
},
|
|
1920
|
-
{
|
|
1921
|
-
deprecated: true,
|
|
1922
|
-
description: 'Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.',
|
|
1923
|
-
properties: {
|
|
1924
|
-
created_at: {
|
|
1925
|
-
description: 'Date and time at which Seam created the warning.',
|
|
1926
|
-
format: 'date-time',
|
|
1927
|
-
type: 'string',
|
|
1928
|
-
},
|
|
1929
|
-
message: {
|
|
1930
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1931
|
-
type: 'string',
|
|
1932
|
-
},
|
|
1933
|
-
warning_code: {
|
|
1934
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1935
|
-
enum: ['ultraloq_access_code_disabled'],
|
|
1936
|
-
type: 'string',
|
|
1937
|
-
},
|
|
1938
|
-
},
|
|
1939
|
-
required: ['message', 'warning_code'],
|
|
1940
|
-
type: 'object',
|
|
1941
|
-
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
1942
|
-
},
|
|
1943
1524
|
{
|
|
1944
1525
|
description: 'A backup access code has been pulled and is being used in place of this access code.',
|
|
1945
1526
|
properties: {
|
|
@@ -25564,64 +25145,6 @@ const openapi = {
|
|
|
25564
25145
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25565
25146
|
type: 'object',
|
|
25566
25147
|
},
|
|
25567
|
-
{
|
|
25568
|
-
deprecated: true,
|
|
25569
|
-
description: 'Failed to set code on SmartThings device.',
|
|
25570
|
-
properties: {
|
|
25571
|
-
created_at: {
|
|
25572
|
-
description: 'Date and time at which Seam created the error.',
|
|
25573
|
-
format: 'date-time',
|
|
25574
|
-
type: 'string',
|
|
25575
|
-
},
|
|
25576
|
-
error_code: {
|
|
25577
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25578
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
25579
|
-
type: 'string',
|
|
25580
|
-
},
|
|
25581
|
-
is_access_code_error: {
|
|
25582
|
-
description: 'Indicates that this is an access code error.',
|
|
25583
|
-
enum: [true],
|
|
25584
|
-
type: 'boolean',
|
|
25585
|
-
},
|
|
25586
|
-
message: {
|
|
25587
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25588
|
-
type: 'string',
|
|
25589
|
-
},
|
|
25590
|
-
},
|
|
25591
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25592
|
-
type: 'object',
|
|
25593
|
-
'x-deprecated': 'Handled by the generic `failed_to_set_on_device` system.',
|
|
25594
|
-
},
|
|
25595
|
-
{
|
|
25596
|
-
deprecated: true,
|
|
25597
|
-
description: 'Failed to set code after multiple retries.',
|
|
25598
|
-
properties: {
|
|
25599
|
-
created_at: {
|
|
25600
|
-
description: 'Date and time at which Seam created the error.',
|
|
25601
|
-
format: 'date-time',
|
|
25602
|
-
type: 'string',
|
|
25603
|
-
},
|
|
25604
|
-
error_code: {
|
|
25605
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25606
|
-
enum: [
|
|
25607
|
-
'smartthings_failed_to_set_after_multiple_retries',
|
|
25608
|
-
],
|
|
25609
|
-
type: 'string',
|
|
25610
|
-
},
|
|
25611
|
-
is_access_code_error: {
|
|
25612
|
-
description: 'Indicates that this is an access code error.',
|
|
25613
|
-
enum: [true],
|
|
25614
|
-
type: 'boolean',
|
|
25615
|
-
},
|
|
25616
|
-
message: {
|
|
25617
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25618
|
-
type: 'string',
|
|
25619
|
-
},
|
|
25620
|
-
},
|
|
25621
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25622
|
-
type: 'object',
|
|
25623
|
-
'x-deprecated': 'Handled by the generic `failed_to_set_on_device` system.',
|
|
25624
|
-
},
|
|
25625
25148
|
{
|
|
25626
25149
|
description: 'Failed to set code on device.',
|
|
25627
25150
|
properties: {
|
|
@@ -25788,62 +25311,6 @@ const openapi = {
|
|
|
25788
25311
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25789
25312
|
type: 'object',
|
|
25790
25313
|
},
|
|
25791
|
-
{
|
|
25792
|
-
deprecated: true,
|
|
25793
|
-
description: 'Unable to confirm that the access code is set on Kwikset device.',
|
|
25794
|
-
properties: {
|
|
25795
|
-
created_at: {
|
|
25796
|
-
description: 'Date and time at which Seam created the error.',
|
|
25797
|
-
format: 'date-time',
|
|
25798
|
-
type: 'string',
|
|
25799
|
-
},
|
|
25800
|
-
error_code: {
|
|
25801
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25802
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
25803
|
-
type: 'string',
|
|
25804
|
-
},
|
|
25805
|
-
is_access_code_error: {
|
|
25806
|
-
description: 'Indicates that this is an access code error.',
|
|
25807
|
-
enum: [true],
|
|
25808
|
-
type: 'boolean',
|
|
25809
|
-
},
|
|
25810
|
-
message: {
|
|
25811
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25812
|
-
type: 'string',
|
|
25813
|
-
},
|
|
25814
|
-
},
|
|
25815
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25816
|
-
type: 'object',
|
|
25817
|
-
'x-deprecated': 'Use `access_code_state_unconfirmed` instead.',
|
|
25818
|
-
},
|
|
25819
|
-
{
|
|
25820
|
-
deprecated: true,
|
|
25821
|
-
description: 'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
25822
|
-
properties: {
|
|
25823
|
-
created_at: {
|
|
25824
|
-
description: 'Date and time at which Seam created the error.',
|
|
25825
|
-
format: 'date-time',
|
|
25826
|
-
type: 'string',
|
|
25827
|
-
},
|
|
25828
|
-
error_code: {
|
|
25829
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25830
|
-
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
25831
|
-
type: 'string',
|
|
25832
|
-
},
|
|
25833
|
-
is_access_code_error: {
|
|
25834
|
-
description: 'Indicates that this is an access code error.',
|
|
25835
|
-
enum: [true],
|
|
25836
|
-
type: 'boolean',
|
|
25837
|
-
},
|
|
25838
|
-
message: {
|
|
25839
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25840
|
-
type: 'string',
|
|
25841
|
-
},
|
|
25842
|
-
},
|
|
25843
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25844
|
-
type: 'object',
|
|
25845
|
-
'x-deprecated': 'Use `access_code_state_unconfirmed` instead.',
|
|
25846
|
-
},
|
|
25847
25314
|
{
|
|
25848
25315
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
25849
25316
|
properties: {
|
|
@@ -25899,90 +25366,6 @@ const openapi = {
|
|
|
25899
25366
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25900
25367
|
type: 'object',
|
|
25901
25368
|
},
|
|
25902
|
-
{
|
|
25903
|
-
deprecated: true,
|
|
25904
|
-
description: 'Invalid code length for August lock.',
|
|
25905
|
-
properties: {
|
|
25906
|
-
created_at: {
|
|
25907
|
-
description: 'Date and time at which Seam created the error.',
|
|
25908
|
-
format: 'date-time',
|
|
25909
|
-
type: 'string',
|
|
25910
|
-
},
|
|
25911
|
-
error_code: {
|
|
25912
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25913
|
-
enum: ['august_lock_invalid_code_length'],
|
|
25914
|
-
type: 'string',
|
|
25915
|
-
},
|
|
25916
|
-
is_access_code_error: {
|
|
25917
|
-
description: 'Indicates that this is an access code error.',
|
|
25918
|
-
enum: [true],
|
|
25919
|
-
type: 'boolean',
|
|
25920
|
-
},
|
|
25921
|
-
message: {
|
|
25922
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25923
|
-
type: 'string',
|
|
25924
|
-
},
|
|
25925
|
-
},
|
|
25926
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25927
|
-
type: 'object',
|
|
25928
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
25929
|
-
},
|
|
25930
|
-
{
|
|
25931
|
-
deprecated: true,
|
|
25932
|
-
description: 'August lock is missing a keypad.',
|
|
25933
|
-
properties: {
|
|
25934
|
-
created_at: {
|
|
25935
|
-
description: 'Date and time at which Seam created the error.',
|
|
25936
|
-
format: 'date-time',
|
|
25937
|
-
type: 'string',
|
|
25938
|
-
},
|
|
25939
|
-
error_code: {
|
|
25940
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25941
|
-
enum: ['august_lock_missing_keypad'],
|
|
25942
|
-
type: 'string',
|
|
25943
|
-
},
|
|
25944
|
-
is_access_code_error: {
|
|
25945
|
-
description: 'Indicates that this is an access code error.',
|
|
25946
|
-
enum: [true],
|
|
25947
|
-
type: 'boolean',
|
|
25948
|
-
},
|
|
25949
|
-
message: {
|
|
25950
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25951
|
-
type: 'string',
|
|
25952
|
-
},
|
|
25953
|
-
},
|
|
25954
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25955
|
-
type: 'object',
|
|
25956
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
25957
|
-
},
|
|
25958
|
-
{
|
|
25959
|
-
deprecated: true,
|
|
25960
|
-
description: 'August lock is temporarily offline.',
|
|
25961
|
-
properties: {
|
|
25962
|
-
created_at: {
|
|
25963
|
-
description: 'Date and time at which Seam created the error.',
|
|
25964
|
-
format: 'date-time',
|
|
25965
|
-
type: 'string',
|
|
25966
|
-
},
|
|
25967
|
-
error_code: {
|
|
25968
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25969
|
-
enum: ['august_lock_temporarily_offline'],
|
|
25970
|
-
type: 'string',
|
|
25971
|
-
},
|
|
25972
|
-
is_access_code_error: {
|
|
25973
|
-
description: 'Indicates that this is an access code error.',
|
|
25974
|
-
enum: [true],
|
|
25975
|
-
type: 'boolean',
|
|
25976
|
-
},
|
|
25977
|
-
message: {
|
|
25978
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25979
|
-
type: 'string',
|
|
25980
|
-
},
|
|
25981
|
-
},
|
|
25982
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25983
|
-
type: 'object',
|
|
25984
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
25985
|
-
},
|
|
25986
25369
|
{
|
|
25987
25370
|
description: 'Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.',
|
|
25988
25371
|
properties: {
|
|
@@ -26037,90 +25420,6 @@ const openapi = {
|
|
|
26037
25420
|
type: 'object',
|
|
26038
25421
|
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
26039
25422
|
},
|
|
26040
|
-
{
|
|
26041
|
-
deprecated: true,
|
|
26042
|
-
description: 'Duplicate access code name detected.',
|
|
26043
|
-
properties: {
|
|
26044
|
-
created_at: {
|
|
26045
|
-
description: 'Date and time at which Seam created the error.',
|
|
26046
|
-
format: 'date-time',
|
|
26047
|
-
type: 'string',
|
|
26048
|
-
},
|
|
26049
|
-
error_code: {
|
|
26050
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26051
|
-
enum: ['wyze_duplicate_code_name'],
|
|
26052
|
-
type: 'string',
|
|
26053
|
-
},
|
|
26054
|
-
is_access_code_error: {
|
|
26055
|
-
description: 'Indicates that this is an access code error.',
|
|
26056
|
-
enum: [true],
|
|
26057
|
-
type: 'boolean',
|
|
26058
|
-
},
|
|
26059
|
-
message: {
|
|
26060
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26061
|
-
type: 'string',
|
|
26062
|
-
},
|
|
26063
|
-
},
|
|
26064
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26065
|
-
type: 'object',
|
|
26066
|
-
'x-deprecated': 'Use `duplicate_code_on_device` instead.',
|
|
26067
|
-
},
|
|
26068
|
-
{
|
|
26069
|
-
deprecated: true,
|
|
26070
|
-
description: 'Potential duplicate access code detected.',
|
|
26071
|
-
properties: {
|
|
26072
|
-
created_at: {
|
|
26073
|
-
description: 'Date and time at which Seam created the error.',
|
|
26074
|
-
format: 'date-time',
|
|
26075
|
-
type: 'string',
|
|
26076
|
-
},
|
|
26077
|
-
error_code: {
|
|
26078
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26079
|
-
enum: ['wyze_potential_duplicate_code'],
|
|
26080
|
-
type: 'string',
|
|
26081
|
-
},
|
|
26082
|
-
is_access_code_error: {
|
|
26083
|
-
description: 'Indicates that this is an access code error.',
|
|
26084
|
-
enum: [true],
|
|
26085
|
-
type: 'boolean',
|
|
26086
|
-
},
|
|
26087
|
-
message: {
|
|
26088
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26089
|
-
type: 'string',
|
|
26090
|
-
},
|
|
26091
|
-
},
|
|
26092
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26093
|
-
type: 'object',
|
|
26094
|
-
'x-deprecated': 'Use `duplicate_code_on_device` instead.',
|
|
26095
|
-
},
|
|
26096
|
-
{
|
|
26097
|
-
deprecated: true,
|
|
26098
|
-
description: 'No Dormakaba Oracode user levels configured for the requested time range.',
|
|
26099
|
-
properties: {
|
|
26100
|
-
created_at: {
|
|
26101
|
-
description: 'Date and time at which Seam created the error.',
|
|
26102
|
-
format: 'date-time',
|
|
26103
|
-
type: 'string',
|
|
26104
|
-
},
|
|
26105
|
-
error_code: {
|
|
26106
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26107
|
-
enum: ['dormakaba_oracode_invalid_time_range'],
|
|
26108
|
-
type: 'string',
|
|
26109
|
-
},
|
|
26110
|
-
is_access_code_error: {
|
|
26111
|
-
description: 'Indicates that this is an access code error.',
|
|
26112
|
-
enum: [true],
|
|
26113
|
-
type: 'boolean',
|
|
26114
|
-
},
|
|
26115
|
-
message: {
|
|
26116
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26117
|
-
type: 'string',
|
|
26118
|
-
},
|
|
26119
|
-
},
|
|
26120
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26121
|
-
type: 'object',
|
|
26122
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
26123
|
-
},
|
|
26124
25423
|
{
|
|
26125
25424
|
description: 'Admin role required—insufficient permissions to manage PINs on this device. Please have an admin update your role, or ask them to set the PIN.',
|
|
26126
25425
|
properties: {
|
|
@@ -26147,34 +25446,6 @@ const openapi = {
|
|
|
26147
25446
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26148
25447
|
type: 'object',
|
|
26149
25448
|
},
|
|
26150
|
-
{
|
|
26151
|
-
deprecated: true,
|
|
26152
|
-
description: 'KeyNest locker is not supported.',
|
|
26153
|
-
properties: {
|
|
26154
|
-
created_at: {
|
|
26155
|
-
description: 'Date and time at which Seam created the error.',
|
|
26156
|
-
format: 'date-time',
|
|
26157
|
-
type: 'string',
|
|
26158
|
-
},
|
|
26159
|
-
error_code: {
|
|
26160
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26161
|
-
enum: ['keynest_unsupported_third_party_locker'],
|
|
26162
|
-
type: 'string',
|
|
26163
|
-
},
|
|
26164
|
-
is_access_code_error: {
|
|
26165
|
-
description: 'Indicates that this is an access code error.',
|
|
26166
|
-
enum: [true],
|
|
26167
|
-
type: 'boolean',
|
|
26168
|
-
},
|
|
26169
|
-
message: {
|
|
26170
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26171
|
-
type: 'string',
|
|
26172
|
-
},
|
|
26173
|
-
},
|
|
26174
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26175
|
-
type: 'object',
|
|
26176
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
26177
|
-
},
|
|
26178
25449
|
{
|
|
26179
25450
|
description: 'This access code was overridden on the device by a newer access code programmed to the same slot.',
|
|
26180
25451
|
properties: {
|
|
@@ -26784,27 +26055,6 @@ const openapi = {
|
|
|
26784
26055
|
required: ['message', 'warning_code'],
|
|
26785
26056
|
type: 'object',
|
|
26786
26057
|
},
|
|
26787
|
-
{
|
|
26788
|
-
description: 'Failed to set code on SmartThings device.',
|
|
26789
|
-
properties: {
|
|
26790
|
-
created_at: {
|
|
26791
|
-
description: 'Date and time at which Seam created the warning.',
|
|
26792
|
-
format: 'date-time',
|
|
26793
|
-
type: 'string',
|
|
26794
|
-
},
|
|
26795
|
-
message: {
|
|
26796
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26797
|
-
type: 'string',
|
|
26798
|
-
},
|
|
26799
|
-
warning_code: {
|
|
26800
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26801
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
26802
|
-
type: 'string',
|
|
26803
|
-
},
|
|
26804
|
-
},
|
|
26805
|
-
required: ['message', 'warning_code'],
|
|
26806
|
-
type: 'object',
|
|
26807
|
-
},
|
|
26808
26058
|
{
|
|
26809
26059
|
deprecated: true,
|
|
26810
26060
|
description: 'Duplicate access code detected.',
|
|
@@ -26828,29 +26078,6 @@ const openapi = {
|
|
|
26828
26078
|
type: 'object',
|
|
26829
26079
|
'x-deprecated': 'Use `duplicate_code_on_device` error instead.',
|
|
26830
26080
|
},
|
|
26831
|
-
{
|
|
26832
|
-
deprecated: true,
|
|
26833
|
-
description: 'Received an error when attempting to create this code.',
|
|
26834
|
-
properties: {
|
|
26835
|
-
created_at: {
|
|
26836
|
-
description: 'Date and time at which Seam created the warning.',
|
|
26837
|
-
format: 'date-time',
|
|
26838
|
-
type: 'string',
|
|
26839
|
-
},
|
|
26840
|
-
message: {
|
|
26841
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26842
|
-
type: 'string',
|
|
26843
|
-
},
|
|
26844
|
-
warning_code: {
|
|
26845
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26846
|
-
enum: ['schlage_creation_outage'],
|
|
26847
|
-
type: 'string',
|
|
26848
|
-
},
|
|
26849
|
-
},
|
|
26850
|
-
required: ['message', 'warning_code'],
|
|
26851
|
-
type: 'object',
|
|
26852
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
26853
|
-
},
|
|
26854
26081
|
{
|
|
26855
26082
|
description: "The Schlage device's timezone is ambiguous and this code's schedule crosses a daylight-saving transition in at least one plausible timezone. A 1-hour safety buffer has been applied to the side of the schedule affected by the transition (`ends_at` for spring-forward, `starts_at` for fall-back) so the code stays active through the shift — the code may be usable up to 1 hour beyond your requested window. Set the device's timezone via `/devices/report_provider_metadata` to clear the buffer and guarantee exact DST handling.",
|
|
26856
26083
|
properties: {
|
|
@@ -26985,27 +26212,6 @@ const openapi = {
|
|
|
26985
26212
|
required: ['message', 'warning_code'],
|
|
26986
26213
|
type: 'object',
|
|
26987
26214
|
},
|
|
26988
|
-
{
|
|
26989
|
-
description: 'August lock is temporarily offline.',
|
|
26990
|
-
properties: {
|
|
26991
|
-
created_at: {
|
|
26992
|
-
description: 'Date and time at which Seam created the warning.',
|
|
26993
|
-
format: 'date-time',
|
|
26994
|
-
type: 'string',
|
|
26995
|
-
},
|
|
26996
|
-
message: {
|
|
26997
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26998
|
-
type: 'string',
|
|
26999
|
-
},
|
|
27000
|
-
warning_code: {
|
|
27001
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
27002
|
-
enum: ['august_lock_temporarily_offline'],
|
|
27003
|
-
type: 'string',
|
|
27004
|
-
},
|
|
27005
|
-
},
|
|
27006
|
-
required: ['message', 'warning_code'],
|
|
27007
|
-
type: 'object',
|
|
27008
|
-
},
|
|
27009
26215
|
{
|
|
27010
26216
|
description: 'Algopins must be used within 24 hours.',
|
|
27011
26217
|
properties: {
|
|
@@ -27048,27 +26254,6 @@ const openapi = {
|
|
|
27048
26254
|
required: ['message', 'warning_code'],
|
|
27049
26255
|
type: 'object',
|
|
27050
26256
|
},
|
|
27051
|
-
{
|
|
27052
|
-
description: 'Unable to confirm that the access code is set on Kwikset device.',
|
|
27053
|
-
properties: {
|
|
27054
|
-
created_at: {
|
|
27055
|
-
description: 'Date and time at which Seam created the warning.',
|
|
27056
|
-
format: 'date-time',
|
|
27057
|
-
type: 'string',
|
|
27058
|
-
},
|
|
27059
|
-
message: {
|
|
27060
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
27061
|
-
type: 'string',
|
|
27062
|
-
},
|
|
27063
|
-
warning_code: {
|
|
27064
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
27065
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
27066
|
-
type: 'string',
|
|
27067
|
-
},
|
|
27068
|
-
},
|
|
27069
|
-
required: ['message', 'warning_code'],
|
|
27070
|
-
type: 'object',
|
|
27071
|
-
},
|
|
27072
26257
|
{
|
|
27073
26258
|
description: 'Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.',
|
|
27074
26259
|
properties: {
|
|
@@ -27090,29 +26275,6 @@ const openapi = {
|
|
|
27090
26275
|
required: ['message', 'warning_code'],
|
|
27091
26276
|
type: 'object',
|
|
27092
26277
|
},
|
|
27093
|
-
{
|
|
27094
|
-
deprecated: true,
|
|
27095
|
-
description: 'Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.',
|
|
27096
|
-
properties: {
|
|
27097
|
-
created_at: {
|
|
27098
|
-
description: 'Date and time at which Seam created the warning.',
|
|
27099
|
-
format: 'date-time',
|
|
27100
|
-
type: 'string',
|
|
27101
|
-
},
|
|
27102
|
-
message: {
|
|
27103
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
27104
|
-
type: 'string',
|
|
27105
|
-
},
|
|
27106
|
-
warning_code: {
|
|
27107
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
27108
|
-
enum: ['ultraloq_access_code_disabled'],
|
|
27109
|
-
type: 'string',
|
|
27110
|
-
},
|
|
27111
|
-
},
|
|
27112
|
-
required: ['message', 'warning_code'],
|
|
27113
|
-
type: 'object',
|
|
27114
|
-
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
27115
|
-
},
|
|
27116
26278
|
{
|
|
27117
26279
|
description: 'A backup access code has been pulled and is being used in place of this access code.',
|
|
27118
26280
|
properties: {
|
|
@@ -66576,7 +65738,7 @@ const openapi = {
|
|
|
66576
65738
|
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
66577
65739
|
type: 'boolean',
|
|
66578
65740
|
},
|
|
66579
|
-
|
|
65741
|
+
RESERVATION_LEGACY: { type: 'boolean' },
|
|
66580
65742
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
66581
65743
|
type: 'boolean',
|
|
66582
65744
|
},
|
|
@@ -66995,7 +66157,7 @@ const openapi = {
|
|
|
66995
66157
|
MANAGE_DEVICES_CONFIRMATION_MODAL: {
|
|
66996
66158
|
type: 'boolean',
|
|
66997
66159
|
},
|
|
66998
|
-
|
|
66160
|
+
RESERVATION_LEGACY: { type: 'boolean' },
|
|
66999
66161
|
SALTO_KS_ENTRANCES_ONLY_FOR_SPACES: {
|
|
67000
66162
|
type: 'boolean',
|
|
67001
66163
|
},
|