@seamapi/types 1.908.0 → 1.910.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 +36 -1010
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -2497
- package/dist/index.cjs +36 -1010
- 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/models/customization-profiles/customization-profile.d.ts +4 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js +5 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js.map +1 -1
- package/lib/seam/connect/openapi.js +140 -948
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -1474
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -276
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +144 -1090
- package/src/lib/seam/connect/route-types.ts +45 -1650
|
@@ -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: {
|
|
@@ -11657,6 +11238,13 @@ const openapi = {
|
|
|
11657
11238
|
},
|
|
11658
11239
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
11659
11240
|
logo_url: { format: 'uri', type: 'string' },
|
|
11241
|
+
message_overrides: {
|
|
11242
|
+
additionalProperties: {
|
|
11243
|
+
additionalProperties: { type: 'string' },
|
|
11244
|
+
type: 'object',
|
|
11245
|
+
},
|
|
11246
|
+
type: 'object',
|
|
11247
|
+
},
|
|
11660
11248
|
name: { nullable: true, type: 'string' },
|
|
11661
11249
|
primary_color: { type: 'string' },
|
|
11662
11250
|
secondary_color: { type: 'string' },
|
|
@@ -25557,64 +25145,6 @@ const openapi = {
|
|
|
25557
25145
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25558
25146
|
type: 'object',
|
|
25559
25147
|
},
|
|
25560
|
-
{
|
|
25561
|
-
deprecated: true,
|
|
25562
|
-
description: 'Failed to set code on SmartThings device.',
|
|
25563
|
-
properties: {
|
|
25564
|
-
created_at: {
|
|
25565
|
-
description: 'Date and time at which Seam created the error.',
|
|
25566
|
-
format: 'date-time',
|
|
25567
|
-
type: 'string',
|
|
25568
|
-
},
|
|
25569
|
-
error_code: {
|
|
25570
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25571
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
25572
|
-
type: 'string',
|
|
25573
|
-
},
|
|
25574
|
-
is_access_code_error: {
|
|
25575
|
-
description: 'Indicates that this is an access code error.',
|
|
25576
|
-
enum: [true],
|
|
25577
|
-
type: 'boolean',
|
|
25578
|
-
},
|
|
25579
|
-
message: {
|
|
25580
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25581
|
-
type: 'string',
|
|
25582
|
-
},
|
|
25583
|
-
},
|
|
25584
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25585
|
-
type: 'object',
|
|
25586
|
-
'x-deprecated': 'Handled by the generic `failed_to_set_on_device` system.',
|
|
25587
|
-
},
|
|
25588
|
-
{
|
|
25589
|
-
deprecated: true,
|
|
25590
|
-
description: 'Failed to set code after multiple retries.',
|
|
25591
|
-
properties: {
|
|
25592
|
-
created_at: {
|
|
25593
|
-
description: 'Date and time at which Seam created the error.',
|
|
25594
|
-
format: 'date-time',
|
|
25595
|
-
type: 'string',
|
|
25596
|
-
},
|
|
25597
|
-
error_code: {
|
|
25598
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25599
|
-
enum: [
|
|
25600
|
-
'smartthings_failed_to_set_after_multiple_retries',
|
|
25601
|
-
],
|
|
25602
|
-
type: 'string',
|
|
25603
|
-
},
|
|
25604
|
-
is_access_code_error: {
|
|
25605
|
-
description: 'Indicates that this is an access code error.',
|
|
25606
|
-
enum: [true],
|
|
25607
|
-
type: 'boolean',
|
|
25608
|
-
},
|
|
25609
|
-
message: {
|
|
25610
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25611
|
-
type: 'string',
|
|
25612
|
-
},
|
|
25613
|
-
},
|
|
25614
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25615
|
-
type: 'object',
|
|
25616
|
-
'x-deprecated': 'Handled by the generic `failed_to_set_on_device` system.',
|
|
25617
|
-
},
|
|
25618
25148
|
{
|
|
25619
25149
|
description: 'Failed to set code on device.',
|
|
25620
25150
|
properties: {
|
|
@@ -25781,62 +25311,6 @@ const openapi = {
|
|
|
25781
25311
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25782
25312
|
type: 'object',
|
|
25783
25313
|
},
|
|
25784
|
-
{
|
|
25785
|
-
deprecated: true,
|
|
25786
|
-
description: 'Unable to confirm that the access code is set on Kwikset device.',
|
|
25787
|
-
properties: {
|
|
25788
|
-
created_at: {
|
|
25789
|
-
description: 'Date and time at which Seam created the error.',
|
|
25790
|
-
format: 'date-time',
|
|
25791
|
-
type: 'string',
|
|
25792
|
-
},
|
|
25793
|
-
error_code: {
|
|
25794
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25795
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
25796
|
-
type: 'string',
|
|
25797
|
-
},
|
|
25798
|
-
is_access_code_error: {
|
|
25799
|
-
description: 'Indicates that this is an access code error.',
|
|
25800
|
-
enum: [true],
|
|
25801
|
-
type: 'boolean',
|
|
25802
|
-
},
|
|
25803
|
-
message: {
|
|
25804
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25805
|
-
type: 'string',
|
|
25806
|
-
},
|
|
25807
|
-
},
|
|
25808
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25809
|
-
type: 'object',
|
|
25810
|
-
'x-deprecated': 'Use `access_code_state_unconfirmed` instead.',
|
|
25811
|
-
},
|
|
25812
|
-
{
|
|
25813
|
-
deprecated: true,
|
|
25814
|
-
description: 'Unable to confirm the deletion of the access code on Kwikset device.',
|
|
25815
|
-
properties: {
|
|
25816
|
-
created_at: {
|
|
25817
|
-
description: 'Date and time at which Seam created the error.',
|
|
25818
|
-
format: 'date-time',
|
|
25819
|
-
type: 'string',
|
|
25820
|
-
},
|
|
25821
|
-
error_code: {
|
|
25822
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25823
|
-
enum: ['kwikset_unable_to_confirm_deletion'],
|
|
25824
|
-
type: 'string',
|
|
25825
|
-
},
|
|
25826
|
-
is_access_code_error: {
|
|
25827
|
-
description: 'Indicates that this is an access code error.',
|
|
25828
|
-
enum: [true],
|
|
25829
|
-
type: 'boolean',
|
|
25830
|
-
},
|
|
25831
|
-
message: {
|
|
25832
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25833
|
-
type: 'string',
|
|
25834
|
-
},
|
|
25835
|
-
},
|
|
25836
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25837
|
-
type: 'object',
|
|
25838
|
-
'x-deprecated': 'Use `access_code_state_unconfirmed` instead.',
|
|
25839
|
-
},
|
|
25840
25314
|
{
|
|
25841
25315
|
description: 'Code was modified or removed externally after Seam successfully set it on the device.',
|
|
25842
25316
|
properties: {
|
|
@@ -25892,90 +25366,6 @@ const openapi = {
|
|
|
25892
25366
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25893
25367
|
type: 'object',
|
|
25894
25368
|
},
|
|
25895
|
-
{
|
|
25896
|
-
deprecated: true,
|
|
25897
|
-
description: 'Invalid code length for August lock.',
|
|
25898
|
-
properties: {
|
|
25899
|
-
created_at: {
|
|
25900
|
-
description: 'Date and time at which Seam created the error.',
|
|
25901
|
-
format: 'date-time',
|
|
25902
|
-
type: 'string',
|
|
25903
|
-
},
|
|
25904
|
-
error_code: {
|
|
25905
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25906
|
-
enum: ['august_lock_invalid_code_length'],
|
|
25907
|
-
type: 'string',
|
|
25908
|
-
},
|
|
25909
|
-
is_access_code_error: {
|
|
25910
|
-
description: 'Indicates that this is an access code error.',
|
|
25911
|
-
enum: [true],
|
|
25912
|
-
type: 'boolean',
|
|
25913
|
-
},
|
|
25914
|
-
message: {
|
|
25915
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25916
|
-
type: 'string',
|
|
25917
|
-
},
|
|
25918
|
-
},
|
|
25919
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25920
|
-
type: 'object',
|
|
25921
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
25922
|
-
},
|
|
25923
|
-
{
|
|
25924
|
-
deprecated: true,
|
|
25925
|
-
description: 'August lock is missing a keypad.',
|
|
25926
|
-
properties: {
|
|
25927
|
-
created_at: {
|
|
25928
|
-
description: 'Date and time at which Seam created the error.',
|
|
25929
|
-
format: 'date-time',
|
|
25930
|
-
type: 'string',
|
|
25931
|
-
},
|
|
25932
|
-
error_code: {
|
|
25933
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25934
|
-
enum: ['august_lock_missing_keypad'],
|
|
25935
|
-
type: 'string',
|
|
25936
|
-
},
|
|
25937
|
-
is_access_code_error: {
|
|
25938
|
-
description: 'Indicates that this is an access code error.',
|
|
25939
|
-
enum: [true],
|
|
25940
|
-
type: 'boolean',
|
|
25941
|
-
},
|
|
25942
|
-
message: {
|
|
25943
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25944
|
-
type: 'string',
|
|
25945
|
-
},
|
|
25946
|
-
},
|
|
25947
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25948
|
-
type: 'object',
|
|
25949
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
25950
|
-
},
|
|
25951
|
-
{
|
|
25952
|
-
deprecated: true,
|
|
25953
|
-
description: 'August lock is temporarily offline.',
|
|
25954
|
-
properties: {
|
|
25955
|
-
created_at: {
|
|
25956
|
-
description: 'Date and time at which Seam created the error.',
|
|
25957
|
-
format: 'date-time',
|
|
25958
|
-
type: 'string',
|
|
25959
|
-
},
|
|
25960
|
-
error_code: {
|
|
25961
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
25962
|
-
enum: ['august_lock_temporarily_offline'],
|
|
25963
|
-
type: 'string',
|
|
25964
|
-
},
|
|
25965
|
-
is_access_code_error: {
|
|
25966
|
-
description: 'Indicates that this is an access code error.',
|
|
25967
|
-
enum: [true],
|
|
25968
|
-
type: 'boolean',
|
|
25969
|
-
},
|
|
25970
|
-
message: {
|
|
25971
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
25972
|
-
type: 'string',
|
|
25973
|
-
},
|
|
25974
|
-
},
|
|
25975
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
25976
|
-
type: 'object',
|
|
25977
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
25978
|
-
},
|
|
25979
25369
|
{
|
|
25980
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.',
|
|
25981
25371
|
properties: {
|
|
@@ -26030,90 +25420,6 @@ const openapi = {
|
|
|
26030
25420
|
type: 'object',
|
|
26031
25421
|
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
26032
25422
|
},
|
|
26033
|
-
{
|
|
26034
|
-
deprecated: true,
|
|
26035
|
-
description: 'Duplicate access code name detected.',
|
|
26036
|
-
properties: {
|
|
26037
|
-
created_at: {
|
|
26038
|
-
description: 'Date and time at which Seam created the error.',
|
|
26039
|
-
format: 'date-time',
|
|
26040
|
-
type: 'string',
|
|
26041
|
-
},
|
|
26042
|
-
error_code: {
|
|
26043
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26044
|
-
enum: ['wyze_duplicate_code_name'],
|
|
26045
|
-
type: 'string',
|
|
26046
|
-
},
|
|
26047
|
-
is_access_code_error: {
|
|
26048
|
-
description: 'Indicates that this is an access code error.',
|
|
26049
|
-
enum: [true],
|
|
26050
|
-
type: 'boolean',
|
|
26051
|
-
},
|
|
26052
|
-
message: {
|
|
26053
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26054
|
-
type: 'string',
|
|
26055
|
-
},
|
|
26056
|
-
},
|
|
26057
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26058
|
-
type: 'object',
|
|
26059
|
-
'x-deprecated': 'Use `duplicate_code_on_device` instead.',
|
|
26060
|
-
},
|
|
26061
|
-
{
|
|
26062
|
-
deprecated: true,
|
|
26063
|
-
description: 'Potential duplicate access code detected.',
|
|
26064
|
-
properties: {
|
|
26065
|
-
created_at: {
|
|
26066
|
-
description: 'Date and time at which Seam created the error.',
|
|
26067
|
-
format: 'date-time',
|
|
26068
|
-
type: 'string',
|
|
26069
|
-
},
|
|
26070
|
-
error_code: {
|
|
26071
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26072
|
-
enum: ['wyze_potential_duplicate_code'],
|
|
26073
|
-
type: 'string',
|
|
26074
|
-
},
|
|
26075
|
-
is_access_code_error: {
|
|
26076
|
-
description: 'Indicates that this is an access code error.',
|
|
26077
|
-
enum: [true],
|
|
26078
|
-
type: 'boolean',
|
|
26079
|
-
},
|
|
26080
|
-
message: {
|
|
26081
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26082
|
-
type: 'string',
|
|
26083
|
-
},
|
|
26084
|
-
},
|
|
26085
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26086
|
-
type: 'object',
|
|
26087
|
-
'x-deprecated': 'Use `duplicate_code_on_device` instead.',
|
|
26088
|
-
},
|
|
26089
|
-
{
|
|
26090
|
-
deprecated: true,
|
|
26091
|
-
description: 'No Dormakaba Oracode user levels configured for the requested time range.',
|
|
26092
|
-
properties: {
|
|
26093
|
-
created_at: {
|
|
26094
|
-
description: 'Date and time at which Seam created the error.',
|
|
26095
|
-
format: 'date-time',
|
|
26096
|
-
type: 'string',
|
|
26097
|
-
},
|
|
26098
|
-
error_code: {
|
|
26099
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26100
|
-
enum: ['dormakaba_oracode_invalid_time_range'],
|
|
26101
|
-
type: 'string',
|
|
26102
|
-
},
|
|
26103
|
-
is_access_code_error: {
|
|
26104
|
-
description: 'Indicates that this is an access code error.',
|
|
26105
|
-
enum: [true],
|
|
26106
|
-
type: 'boolean',
|
|
26107
|
-
},
|
|
26108
|
-
message: {
|
|
26109
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26110
|
-
type: 'string',
|
|
26111
|
-
},
|
|
26112
|
-
},
|
|
26113
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26114
|
-
type: 'object',
|
|
26115
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
26116
|
-
},
|
|
26117
25423
|
{
|
|
26118
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.',
|
|
26119
25425
|
properties: {
|
|
@@ -26140,34 +25446,6 @@ const openapi = {
|
|
|
26140
25446
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26141
25447
|
type: 'object',
|
|
26142
25448
|
},
|
|
26143
|
-
{
|
|
26144
|
-
deprecated: true,
|
|
26145
|
-
description: 'KeyNest locker is not supported.',
|
|
26146
|
-
properties: {
|
|
26147
|
-
created_at: {
|
|
26148
|
-
description: 'Date and time at which Seam created the error.',
|
|
26149
|
-
format: 'date-time',
|
|
26150
|
-
type: 'string',
|
|
26151
|
-
},
|
|
26152
|
-
error_code: {
|
|
26153
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26154
|
-
enum: ['keynest_unsupported_third_party_locker'],
|
|
26155
|
-
type: 'string',
|
|
26156
|
-
},
|
|
26157
|
-
is_access_code_error: {
|
|
26158
|
-
description: 'Indicates that this is an access code error.',
|
|
26159
|
-
enum: [true],
|
|
26160
|
-
type: 'boolean',
|
|
26161
|
-
},
|
|
26162
|
-
message: {
|
|
26163
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26164
|
-
type: 'string',
|
|
26165
|
-
},
|
|
26166
|
-
},
|
|
26167
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26168
|
-
type: 'object',
|
|
26169
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
26170
|
-
},
|
|
26171
25449
|
{
|
|
26172
25450
|
description: 'This access code was overridden on the device by a newer access code programmed to the same slot.',
|
|
26173
25451
|
properties: {
|
|
@@ -26777,27 +26055,6 @@ const openapi = {
|
|
|
26777
26055
|
required: ['message', 'warning_code'],
|
|
26778
26056
|
type: 'object',
|
|
26779
26057
|
},
|
|
26780
|
-
{
|
|
26781
|
-
description: 'Failed to set code on SmartThings device.',
|
|
26782
|
-
properties: {
|
|
26783
|
-
created_at: {
|
|
26784
|
-
description: 'Date and time at which Seam created the warning.',
|
|
26785
|
-
format: 'date-time',
|
|
26786
|
-
type: 'string',
|
|
26787
|
-
},
|
|
26788
|
-
message: {
|
|
26789
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26790
|
-
type: 'string',
|
|
26791
|
-
},
|
|
26792
|
-
warning_code: {
|
|
26793
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26794
|
-
enum: ['smartthings_failed_to_set_access_code'],
|
|
26795
|
-
type: 'string',
|
|
26796
|
-
},
|
|
26797
|
-
},
|
|
26798
|
-
required: ['message', 'warning_code'],
|
|
26799
|
-
type: 'object',
|
|
26800
|
-
},
|
|
26801
26058
|
{
|
|
26802
26059
|
deprecated: true,
|
|
26803
26060
|
description: 'Duplicate access code detected.',
|
|
@@ -26821,29 +26078,6 @@ const openapi = {
|
|
|
26821
26078
|
type: 'object',
|
|
26822
26079
|
'x-deprecated': 'Use `duplicate_code_on_device` error instead.',
|
|
26823
26080
|
},
|
|
26824
|
-
{
|
|
26825
|
-
deprecated: true,
|
|
26826
|
-
description: 'Received an error when attempting to create this code.',
|
|
26827
|
-
properties: {
|
|
26828
|
-
created_at: {
|
|
26829
|
-
description: 'Date and time at which Seam created the warning.',
|
|
26830
|
-
format: 'date-time',
|
|
26831
|
-
type: 'string',
|
|
26832
|
-
},
|
|
26833
|
-
message: {
|
|
26834
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26835
|
-
type: 'string',
|
|
26836
|
-
},
|
|
26837
|
-
warning_code: {
|
|
26838
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26839
|
-
enum: ['schlage_creation_outage'],
|
|
26840
|
-
type: 'string',
|
|
26841
|
-
},
|
|
26842
|
-
},
|
|
26843
|
-
required: ['message', 'warning_code'],
|
|
26844
|
-
type: 'object',
|
|
26845
|
-
'x-deprecated': 'Use `provider_issue` instead.',
|
|
26846
|
-
},
|
|
26847
26081
|
{
|
|
26848
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.",
|
|
26849
26083
|
properties: {
|
|
@@ -26978,27 +26212,6 @@ const openapi = {
|
|
|
26978
26212
|
required: ['message', 'warning_code'],
|
|
26979
26213
|
type: 'object',
|
|
26980
26214
|
},
|
|
26981
|
-
{
|
|
26982
|
-
description: 'August lock is temporarily offline.',
|
|
26983
|
-
properties: {
|
|
26984
|
-
created_at: {
|
|
26985
|
-
description: 'Date and time at which Seam created the warning.',
|
|
26986
|
-
format: 'date-time',
|
|
26987
|
-
type: 'string',
|
|
26988
|
-
},
|
|
26989
|
-
message: {
|
|
26990
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26991
|
-
type: 'string',
|
|
26992
|
-
},
|
|
26993
|
-
warning_code: {
|
|
26994
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26995
|
-
enum: ['august_lock_temporarily_offline'],
|
|
26996
|
-
type: 'string',
|
|
26997
|
-
},
|
|
26998
|
-
},
|
|
26999
|
-
required: ['message', 'warning_code'],
|
|
27000
|
-
type: 'object',
|
|
27001
|
-
},
|
|
27002
26215
|
{
|
|
27003
26216
|
description: 'Algopins must be used within 24 hours.',
|
|
27004
26217
|
properties: {
|
|
@@ -27041,27 +26254,6 @@ const openapi = {
|
|
|
27041
26254
|
required: ['message', 'warning_code'],
|
|
27042
26255
|
type: 'object',
|
|
27043
26256
|
},
|
|
27044
|
-
{
|
|
27045
|
-
description: 'Unable to confirm that the access code is set on Kwikset device.',
|
|
27046
|
-
properties: {
|
|
27047
|
-
created_at: {
|
|
27048
|
-
description: 'Date and time at which Seam created the warning.',
|
|
27049
|
-
format: 'date-time',
|
|
27050
|
-
type: 'string',
|
|
27051
|
-
},
|
|
27052
|
-
message: {
|
|
27053
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
27054
|
-
type: 'string',
|
|
27055
|
-
},
|
|
27056
|
-
warning_code: {
|
|
27057
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
27058
|
-
enum: ['kwikset_unable_to_confirm_code'],
|
|
27059
|
-
type: 'string',
|
|
27060
|
-
},
|
|
27061
|
-
},
|
|
27062
|
-
required: ['message', 'warning_code'],
|
|
27063
|
-
type: 'object',
|
|
27064
|
-
},
|
|
27065
26257
|
{
|
|
27066
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.',
|
|
27067
26259
|
properties: {
|
|
@@ -27083,29 +26275,6 @@ const openapi = {
|
|
|
27083
26275
|
required: ['message', 'warning_code'],
|
|
27084
26276
|
type: 'object',
|
|
27085
26277
|
},
|
|
27086
|
-
{
|
|
27087
|
-
deprecated: true,
|
|
27088
|
-
description: 'Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.',
|
|
27089
|
-
properties: {
|
|
27090
|
-
created_at: {
|
|
27091
|
-
description: 'Date and time at which Seam created the warning.',
|
|
27092
|
-
format: 'date-time',
|
|
27093
|
-
type: 'string',
|
|
27094
|
-
},
|
|
27095
|
-
message: {
|
|
27096
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
27097
|
-
type: 'string',
|
|
27098
|
-
},
|
|
27099
|
-
warning_code: {
|
|
27100
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
27101
|
-
enum: ['ultraloq_access_code_disabled'],
|
|
27102
|
-
type: 'string',
|
|
27103
|
-
},
|
|
27104
|
-
},
|
|
27105
|
-
required: ['message', 'warning_code'],
|
|
27106
|
-
type: 'object',
|
|
27107
|
-
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
27108
|
-
},
|
|
27109
26278
|
{
|
|
27110
26279
|
description: 'A backup access code has been pulled and is being used in place of this access code.',
|
|
27111
26280
|
properties: {
|
|
@@ -80629,6 +79798,13 @@ const openapi = {
|
|
|
80629
79798
|
},
|
|
80630
79799
|
type: 'object',
|
|
80631
79800
|
},
|
|
79801
|
+
message_overrides: {
|
|
79802
|
+
additionalProperties: {
|
|
79803
|
+
additionalProperties: { type: 'string' },
|
|
79804
|
+
type: 'object',
|
|
79805
|
+
},
|
|
79806
|
+
type: 'object',
|
|
79807
|
+
},
|
|
80632
79808
|
name: { default: null, nullable: true, type: 'string' },
|
|
80633
79809
|
primary_color: { type: 'string' },
|
|
80634
79810
|
secondary_color: { type: 'string' },
|
|
@@ -80909,6 +80085,14 @@ const openapi = {
|
|
|
80909
80085
|
type: 'object',
|
|
80910
80086
|
},
|
|
80911
80087
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
80088
|
+
message_overrides: {
|
|
80089
|
+
additionalProperties: {
|
|
80090
|
+
additionalProperties: { type: 'string' },
|
|
80091
|
+
type: 'object',
|
|
80092
|
+
},
|
|
80093
|
+
nullable: true,
|
|
80094
|
+
type: 'object',
|
|
80095
|
+
},
|
|
80912
80096
|
name: { nullable: true, type: 'string' },
|
|
80913
80097
|
primary_color: { type: 'string' },
|
|
80914
80098
|
secondary_color: { type: 'string' },
|
|
@@ -80970,6 +80154,14 @@ const openapi = {
|
|
|
80970
80154
|
type: 'object',
|
|
80971
80155
|
},
|
|
80972
80156
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
80157
|
+
message_overrides: {
|
|
80158
|
+
additionalProperties: {
|
|
80159
|
+
additionalProperties: { type: 'string' },
|
|
80160
|
+
type: 'object',
|
|
80161
|
+
},
|
|
80162
|
+
nullable: true,
|
|
80163
|
+
type: 'object',
|
|
80164
|
+
},
|
|
80973
80165
|
name: { nullable: true, type: 'string' },
|
|
80974
80166
|
primary_color: { type: 'string' },
|
|
80975
80167
|
secondary_color: { type: 'string' },
|