@seamapi/types 1.959.0 → 1.961.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 +51 -519
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -1392
- package/dist/index.cjs +51 -519
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +58 -78
- package/lib/seam/connect/models/access-codes/managed-access-code.js +11 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +21 -78
- package/lib/seam/connect/models/devices/device.d.ts +0 -319
- package/lib/seam/connect/models/devices/device.js +0 -59
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -99
- package/lib/seam/connect/openapi.js +42 -468
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -977
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -0
- package/src/lib/seam/connect/models/devices/device.ts +0 -63
- package/src/lib/seam/connect/openapi.ts +55 -543
- package/src/lib/seam/connect/route-types.ts +88 -1090
|
@@ -754,86 +754,6 @@ const openapi: OpenAPISpec = {
|
|
|
754
754
|
'x-resource-type': 'device',
|
|
755
755
|
'x-variant-group-key': 'locks',
|
|
756
756
|
},
|
|
757
|
-
{
|
|
758
|
-
deprecated: true,
|
|
759
|
-
description:
|
|
760
|
-
'Indicates that the lock is not connected to a bridge.',
|
|
761
|
-
properties: {
|
|
762
|
-
created_at: {
|
|
763
|
-
description:
|
|
764
|
-
'Date and time at which Seam created the error.',
|
|
765
|
-
format: 'date-time',
|
|
766
|
-
type: 'string',
|
|
767
|
-
},
|
|
768
|
-
error_code: {
|
|
769
|
-
description:
|
|
770
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
771
|
-
enum: ['august_lock_missing_bridge'],
|
|
772
|
-
type: 'string',
|
|
773
|
-
},
|
|
774
|
-
is_device_error: {
|
|
775
|
-
description:
|
|
776
|
-
'Indicates that the error is a device error.',
|
|
777
|
-
enum: [true],
|
|
778
|
-
type: 'boolean',
|
|
779
|
-
},
|
|
780
|
-
message: {
|
|
781
|
-
description:
|
|
782
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
783
|
-
type: 'string',
|
|
784
|
-
},
|
|
785
|
-
},
|
|
786
|
-
required: [
|
|
787
|
-
'message',
|
|
788
|
-
'is_device_error',
|
|
789
|
-
'created_at',
|
|
790
|
-
'error_code',
|
|
791
|
-
],
|
|
792
|
-
type: 'object',
|
|
793
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
794
|
-
'x-resource-type': 'device',
|
|
795
|
-
'x-variant-group-key': 'locks',
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
deprecated: true,
|
|
799
|
-
description:
|
|
800
|
-
'Indicates that the lock is not paired with a gateway.',
|
|
801
|
-
properties: {
|
|
802
|
-
created_at: {
|
|
803
|
-
description:
|
|
804
|
-
'Date and time at which Seam created the error.',
|
|
805
|
-
format: 'date-time',
|
|
806
|
-
type: 'string',
|
|
807
|
-
},
|
|
808
|
-
error_code: {
|
|
809
|
-
description:
|
|
810
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
811
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
812
|
-
type: 'string',
|
|
813
|
-
},
|
|
814
|
-
is_device_error: {
|
|
815
|
-
description:
|
|
816
|
-
'Indicates that the error is a device error.',
|
|
817
|
-
enum: [true],
|
|
818
|
-
type: 'boolean',
|
|
819
|
-
},
|
|
820
|
-
message: {
|
|
821
|
-
description:
|
|
822
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
823
|
-
type: 'string',
|
|
824
|
-
},
|
|
825
|
-
},
|
|
826
|
-
required: [
|
|
827
|
-
'message',
|
|
828
|
-
'is_device_error',
|
|
829
|
-
'created_at',
|
|
830
|
-
'error_code',
|
|
831
|
-
],
|
|
832
|
-
type: 'object',
|
|
833
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
834
|
-
'x-resource-type': 'device',
|
|
835
|
-
'x-variant-group-key': 'locks',
|
|
836
|
-
},
|
|
837
757
|
{
|
|
838
758
|
description: 'Indicates that device credentials are missing.',
|
|
839
759
|
properties: {
|
|
@@ -944,46 +864,6 @@ const openapi: OpenAPISpec = {
|
|
|
944
864
|
type: 'object',
|
|
945
865
|
'x-resource-type': 'device',
|
|
946
866
|
},
|
|
947
|
-
{
|
|
948
|
-
deprecated: true,
|
|
949
|
-
description:
|
|
950
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
951
|
-
properties: {
|
|
952
|
-
created_at: {
|
|
953
|
-
description:
|
|
954
|
-
'Date and time at which Seam created the error.',
|
|
955
|
-
format: 'date-time',
|
|
956
|
-
type: 'string',
|
|
957
|
-
},
|
|
958
|
-
error_code: {
|
|
959
|
-
description:
|
|
960
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
961
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
962
|
-
type: 'string',
|
|
963
|
-
},
|
|
964
|
-
is_device_error: {
|
|
965
|
-
description:
|
|
966
|
-
'Indicates that the error is a device error.',
|
|
967
|
-
enum: [true],
|
|
968
|
-
type: 'boolean',
|
|
969
|
-
},
|
|
970
|
-
message: {
|
|
971
|
-
description:
|
|
972
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
973
|
-
type: 'string',
|
|
974
|
-
},
|
|
975
|
-
},
|
|
976
|
-
required: [
|
|
977
|
-
'message',
|
|
978
|
-
'is_device_error',
|
|
979
|
-
'created_at',
|
|
980
|
-
'error_code',
|
|
981
|
-
],
|
|
982
|
-
type: 'object',
|
|
983
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
984
|
-
'x-resource-type': 'device',
|
|
985
|
-
'x-variant-group-key': 'locks',
|
|
986
|
-
},
|
|
987
867
|
{
|
|
988
868
|
description:
|
|
989
869
|
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).',
|
|
@@ -1660,6 +1540,31 @@ const openapi: OpenAPISpec = {
|
|
|
1660
1540
|
required: ['message', 'warning_code'],
|
|
1661
1541
|
type: 'object',
|
|
1662
1542
|
},
|
|
1543
|
+
{
|
|
1544
|
+
description:
|
|
1545
|
+
'An unknown issue occurred with the access code.',
|
|
1546
|
+
properties: {
|
|
1547
|
+
created_at: {
|
|
1548
|
+
description:
|
|
1549
|
+
'Date and time at which Seam created the warning.',
|
|
1550
|
+
format: 'date-time',
|
|
1551
|
+
type: 'string',
|
|
1552
|
+
},
|
|
1553
|
+
message: {
|
|
1554
|
+
description:
|
|
1555
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1556
|
+
type: 'string',
|
|
1557
|
+
},
|
|
1558
|
+
warning_code: {
|
|
1559
|
+
description:
|
|
1560
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1561
|
+
enum: ['unknown_issue_with_access_code'],
|
|
1562
|
+
type: 'string',
|
|
1563
|
+
},
|
|
1564
|
+
},
|
|
1565
|
+
required: ['message', 'warning_code'],
|
|
1566
|
+
type: 'object',
|
|
1567
|
+
},
|
|
1663
1568
|
],
|
|
1664
1569
|
},
|
|
1665
1570
|
type: 'array',
|
|
@@ -13295,86 +13200,6 @@ const openapi: OpenAPISpec = {
|
|
|
13295
13200
|
'x-resource-type': 'device',
|
|
13296
13201
|
'x-variant-group-key': 'locks',
|
|
13297
13202
|
},
|
|
13298
|
-
{
|
|
13299
|
-
deprecated: true,
|
|
13300
|
-
description:
|
|
13301
|
-
'Indicates that the lock is not connected to a bridge.',
|
|
13302
|
-
properties: {
|
|
13303
|
-
created_at: {
|
|
13304
|
-
description:
|
|
13305
|
-
'Date and time at which Seam created the error.',
|
|
13306
|
-
format: 'date-time',
|
|
13307
|
-
type: 'string',
|
|
13308
|
-
},
|
|
13309
|
-
error_code: {
|
|
13310
|
-
description:
|
|
13311
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13312
|
-
enum: ['august_lock_missing_bridge'],
|
|
13313
|
-
type: 'string',
|
|
13314
|
-
},
|
|
13315
|
-
is_device_error: {
|
|
13316
|
-
description:
|
|
13317
|
-
'Indicates that the error is a device error.',
|
|
13318
|
-
enum: [true],
|
|
13319
|
-
type: 'boolean',
|
|
13320
|
-
},
|
|
13321
|
-
message: {
|
|
13322
|
-
description:
|
|
13323
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13324
|
-
type: 'string',
|
|
13325
|
-
},
|
|
13326
|
-
},
|
|
13327
|
-
required: [
|
|
13328
|
-
'message',
|
|
13329
|
-
'is_device_error',
|
|
13330
|
-
'created_at',
|
|
13331
|
-
'error_code',
|
|
13332
|
-
],
|
|
13333
|
-
type: 'object',
|
|
13334
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13335
|
-
'x-resource-type': 'device',
|
|
13336
|
-
'x-variant-group-key': 'locks',
|
|
13337
|
-
},
|
|
13338
|
-
{
|
|
13339
|
-
deprecated: true,
|
|
13340
|
-
description:
|
|
13341
|
-
'Indicates that the lock is not paired with a gateway.',
|
|
13342
|
-
properties: {
|
|
13343
|
-
created_at: {
|
|
13344
|
-
description:
|
|
13345
|
-
'Date and time at which Seam created the error.',
|
|
13346
|
-
format: 'date-time',
|
|
13347
|
-
type: 'string',
|
|
13348
|
-
},
|
|
13349
|
-
error_code: {
|
|
13350
|
-
description:
|
|
13351
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13352
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
13353
|
-
type: 'string',
|
|
13354
|
-
},
|
|
13355
|
-
is_device_error: {
|
|
13356
|
-
description:
|
|
13357
|
-
'Indicates that the error is a device error.',
|
|
13358
|
-
enum: [true],
|
|
13359
|
-
type: 'boolean',
|
|
13360
|
-
},
|
|
13361
|
-
message: {
|
|
13362
|
-
description:
|
|
13363
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13364
|
-
type: 'string',
|
|
13365
|
-
},
|
|
13366
|
-
},
|
|
13367
|
-
required: [
|
|
13368
|
-
'message',
|
|
13369
|
-
'is_device_error',
|
|
13370
|
-
'created_at',
|
|
13371
|
-
'error_code',
|
|
13372
|
-
],
|
|
13373
|
-
type: 'object',
|
|
13374
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13375
|
-
'x-resource-type': 'device',
|
|
13376
|
-
'x-variant-group-key': 'locks',
|
|
13377
|
-
},
|
|
13378
13203
|
{
|
|
13379
13204
|
description: 'Indicates that device credentials are missing.',
|
|
13380
13205
|
properties: {
|
|
@@ -13485,46 +13310,6 @@ const openapi: OpenAPISpec = {
|
|
|
13485
13310
|
type: 'object',
|
|
13486
13311
|
'x-resource-type': 'device',
|
|
13487
13312
|
},
|
|
13488
|
-
{
|
|
13489
|
-
deprecated: true,
|
|
13490
|
-
description:
|
|
13491
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
13492
|
-
properties: {
|
|
13493
|
-
created_at: {
|
|
13494
|
-
description:
|
|
13495
|
-
'Date and time at which Seam created the error.',
|
|
13496
|
-
format: 'date-time',
|
|
13497
|
-
type: 'string',
|
|
13498
|
-
},
|
|
13499
|
-
error_code: {
|
|
13500
|
-
description:
|
|
13501
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13502
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
13503
|
-
type: 'string',
|
|
13504
|
-
},
|
|
13505
|
-
is_device_error: {
|
|
13506
|
-
description:
|
|
13507
|
-
'Indicates that the error is a device error.',
|
|
13508
|
-
enum: [true],
|
|
13509
|
-
type: 'boolean',
|
|
13510
|
-
},
|
|
13511
|
-
message: {
|
|
13512
|
-
description:
|
|
13513
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13514
|
-
type: 'string',
|
|
13515
|
-
},
|
|
13516
|
-
},
|
|
13517
|
-
required: [
|
|
13518
|
-
'message',
|
|
13519
|
-
'is_device_error',
|
|
13520
|
-
'created_at',
|
|
13521
|
-
'error_code',
|
|
13522
|
-
],
|
|
13523
|
-
type: 'object',
|
|
13524
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13525
|
-
'x-resource-type': 'device',
|
|
13526
|
-
'x-variant-group-key': 'locks',
|
|
13527
|
-
},
|
|
13528
13313
|
{
|
|
13529
13314
|
description:
|
|
13530
13315
|
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).',
|
|
@@ -16412,9 +16197,8 @@ const openapi: OpenAPISpec = {
|
|
|
16412
16197
|
'x-variant-group-key': 'access_codes',
|
|
16413
16198
|
},
|
|
16414
16199
|
{
|
|
16415
|
-
deprecated: true,
|
|
16416
16200
|
description:
|
|
16417
|
-
'Indicates that
|
|
16201
|
+
'Indicates that a third-party integration has been detected.',
|
|
16418
16202
|
properties: {
|
|
16419
16203
|
created_at: {
|
|
16420
16204
|
description:
|
|
@@ -16430,19 +16214,16 @@ const openapi: OpenAPISpec = {
|
|
|
16430
16214
|
warning_code: {
|
|
16431
16215
|
description:
|
|
16432
16216
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
16433
|
-
enum: ['
|
|
16217
|
+
enum: ['third_party_integration_detected'],
|
|
16434
16218
|
type: 'string',
|
|
16435
16219
|
},
|
|
16436
16220
|
},
|
|
16437
16221
|
required: ['message', 'created_at', 'warning_code'],
|
|
16438
16222
|
type: 'object',
|
|
16439
|
-
'x-deprecated':
|
|
16440
|
-
'Use `hub_disconnected` device error instead.',
|
|
16441
|
-
'x-variant-group-key': 'locks',
|
|
16442
16223
|
},
|
|
16443
16224
|
{
|
|
16444
16225
|
description:
|
|
16445
|
-
'Indicates that
|
|
16226
|
+
'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
16446
16227
|
properties: {
|
|
16447
16228
|
created_at: {
|
|
16448
16229
|
description:
|
|
@@ -16458,38 +16239,13 @@ const openapi: OpenAPISpec = {
|
|
|
16458
16239
|
warning_code: {
|
|
16459
16240
|
description:
|
|
16460
16241
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
16461
|
-
enum: ['
|
|
16242
|
+
enum: ['ttlock_lock_gateway_unlocking_not_enabled'],
|
|
16462
16243
|
type: 'string',
|
|
16463
16244
|
},
|
|
16464
16245
|
},
|
|
16465
16246
|
required: ['message', 'created_at', 'warning_code'],
|
|
16466
16247
|
type: 'object',
|
|
16467
|
-
|
|
16468
|
-
{
|
|
16469
|
-
description:
|
|
16470
|
-
'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
16471
|
-
properties: {
|
|
16472
|
-
created_at: {
|
|
16473
|
-
description:
|
|
16474
|
-
'Date and time at which Seam created the warning.',
|
|
16475
|
-
format: 'date-time',
|
|
16476
|
-
type: 'string',
|
|
16477
|
-
},
|
|
16478
|
-
message: {
|
|
16479
|
-
description:
|
|
16480
|
-
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
16481
|
-
type: 'string',
|
|
16482
|
-
},
|
|
16483
|
-
warning_code: {
|
|
16484
|
-
description:
|
|
16485
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
16486
|
-
enum: ['ttlock_lock_gateway_unlocking_not_enabled'],
|
|
16487
|
-
type: 'string',
|
|
16488
|
-
},
|
|
16489
|
-
},
|
|
16490
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
16491
|
-
type: 'object',
|
|
16492
|
-
'x-variant-group-key': 'locks',
|
|
16248
|
+
'x-variant-group-key': 'locks',
|
|
16493
16249
|
},
|
|
16494
16250
|
{
|
|
16495
16251
|
description: 'Indicates that the gateway signal is weak.',
|
|
@@ -29991,86 +29747,6 @@ const openapi: OpenAPISpec = {
|
|
|
29991
29747
|
'x-resource-type': 'device',
|
|
29992
29748
|
'x-variant-group-key': 'locks',
|
|
29993
29749
|
},
|
|
29994
|
-
{
|
|
29995
|
-
deprecated: true,
|
|
29996
|
-
description:
|
|
29997
|
-
'Indicates that the lock is not connected to a bridge.',
|
|
29998
|
-
properties: {
|
|
29999
|
-
created_at: {
|
|
30000
|
-
description:
|
|
30001
|
-
'Date and time at which Seam created the error.',
|
|
30002
|
-
format: 'date-time',
|
|
30003
|
-
type: 'string',
|
|
30004
|
-
},
|
|
30005
|
-
error_code: {
|
|
30006
|
-
description:
|
|
30007
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
30008
|
-
enum: ['august_lock_missing_bridge'],
|
|
30009
|
-
type: 'string',
|
|
30010
|
-
},
|
|
30011
|
-
is_device_error: {
|
|
30012
|
-
description:
|
|
30013
|
-
'Indicates that the error is a device error.',
|
|
30014
|
-
enum: [true],
|
|
30015
|
-
type: 'boolean',
|
|
30016
|
-
},
|
|
30017
|
-
message: {
|
|
30018
|
-
description:
|
|
30019
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
30020
|
-
type: 'string',
|
|
30021
|
-
},
|
|
30022
|
-
},
|
|
30023
|
-
required: [
|
|
30024
|
-
'message',
|
|
30025
|
-
'is_device_error',
|
|
30026
|
-
'created_at',
|
|
30027
|
-
'error_code',
|
|
30028
|
-
],
|
|
30029
|
-
type: 'object',
|
|
30030
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
30031
|
-
'x-resource-type': 'device',
|
|
30032
|
-
'x-variant-group-key': 'locks',
|
|
30033
|
-
},
|
|
30034
|
-
{
|
|
30035
|
-
deprecated: true,
|
|
30036
|
-
description:
|
|
30037
|
-
'Indicates that the lock is not paired with a gateway.',
|
|
30038
|
-
properties: {
|
|
30039
|
-
created_at: {
|
|
30040
|
-
description:
|
|
30041
|
-
'Date and time at which Seam created the error.',
|
|
30042
|
-
format: 'date-time',
|
|
30043
|
-
type: 'string',
|
|
30044
|
-
},
|
|
30045
|
-
error_code: {
|
|
30046
|
-
description:
|
|
30047
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
30048
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
30049
|
-
type: 'string',
|
|
30050
|
-
},
|
|
30051
|
-
is_device_error: {
|
|
30052
|
-
description:
|
|
30053
|
-
'Indicates that the error is a device error.',
|
|
30054
|
-
enum: [true],
|
|
30055
|
-
type: 'boolean',
|
|
30056
|
-
},
|
|
30057
|
-
message: {
|
|
30058
|
-
description:
|
|
30059
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
30060
|
-
type: 'string',
|
|
30061
|
-
},
|
|
30062
|
-
},
|
|
30063
|
-
required: [
|
|
30064
|
-
'message',
|
|
30065
|
-
'is_device_error',
|
|
30066
|
-
'created_at',
|
|
30067
|
-
'error_code',
|
|
30068
|
-
],
|
|
30069
|
-
type: 'object',
|
|
30070
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
30071
|
-
'x-resource-type': 'device',
|
|
30072
|
-
'x-variant-group-key': 'locks',
|
|
30073
|
-
},
|
|
30074
29750
|
{
|
|
30075
29751
|
description: 'Indicates that device credentials are missing.',
|
|
30076
29752
|
properties: {
|
|
@@ -30181,46 +29857,6 @@ const openapi: OpenAPISpec = {
|
|
|
30181
29857
|
type: 'object',
|
|
30182
29858
|
'x-resource-type': 'device',
|
|
30183
29859
|
},
|
|
30184
|
-
{
|
|
30185
|
-
deprecated: true,
|
|
30186
|
-
description:
|
|
30187
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
30188
|
-
properties: {
|
|
30189
|
-
created_at: {
|
|
30190
|
-
description:
|
|
30191
|
-
'Date and time at which Seam created the error.',
|
|
30192
|
-
format: 'date-time',
|
|
30193
|
-
type: 'string',
|
|
30194
|
-
},
|
|
30195
|
-
error_code: {
|
|
30196
|
-
description:
|
|
30197
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
30198
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
30199
|
-
type: 'string',
|
|
30200
|
-
},
|
|
30201
|
-
is_device_error: {
|
|
30202
|
-
description:
|
|
30203
|
-
'Indicates that the error is a device error.',
|
|
30204
|
-
enum: [true],
|
|
30205
|
-
type: 'boolean',
|
|
30206
|
-
},
|
|
30207
|
-
message: {
|
|
30208
|
-
description:
|
|
30209
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
30210
|
-
type: 'string',
|
|
30211
|
-
},
|
|
30212
|
-
},
|
|
30213
|
-
required: [
|
|
30214
|
-
'message',
|
|
30215
|
-
'is_device_error',
|
|
30216
|
-
'created_at',
|
|
30217
|
-
'error_code',
|
|
30218
|
-
],
|
|
30219
|
-
type: 'object',
|
|
30220
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
30221
|
-
'x-resource-type': 'device',
|
|
30222
|
-
'x-variant-group-key': 'locks',
|
|
30223
|
-
},
|
|
30224
29860
|
{
|
|
30225
29861
|
description:
|
|
30226
29862
|
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).',
|
|
@@ -30586,6 +30222,31 @@ const openapi: OpenAPISpec = {
|
|
|
30586
30222
|
required: ['message', 'warning_code'],
|
|
30587
30223
|
type: 'object',
|
|
30588
30224
|
},
|
|
30225
|
+
{
|
|
30226
|
+
description:
|
|
30227
|
+
'An unknown issue occurred with the access code.',
|
|
30228
|
+
properties: {
|
|
30229
|
+
created_at: {
|
|
30230
|
+
description:
|
|
30231
|
+
'Date and time at which Seam created the warning.',
|
|
30232
|
+
format: 'date-time',
|
|
30233
|
+
type: 'string',
|
|
30234
|
+
},
|
|
30235
|
+
message: {
|
|
30236
|
+
description:
|
|
30237
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
30238
|
+
type: 'string',
|
|
30239
|
+
},
|
|
30240
|
+
warning_code: {
|
|
30241
|
+
description:
|
|
30242
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
30243
|
+
enum: ['unknown_issue_with_access_code'],
|
|
30244
|
+
type: 'string',
|
|
30245
|
+
},
|
|
30246
|
+
},
|
|
30247
|
+
required: ['message', 'warning_code'],
|
|
30248
|
+
type: 'object',
|
|
30249
|
+
},
|
|
30589
30250
|
],
|
|
30590
30251
|
},
|
|
30591
30252
|
type: 'array',
|
|
@@ -33067,86 +32728,6 @@ const openapi: OpenAPISpec = {
|
|
|
33067
32728
|
'x-resource-type': 'device',
|
|
33068
32729
|
'x-variant-group-key': 'locks',
|
|
33069
32730
|
},
|
|
33070
|
-
{
|
|
33071
|
-
deprecated: true,
|
|
33072
|
-
description:
|
|
33073
|
-
'Indicates that the lock is not connected to a bridge.',
|
|
33074
|
-
properties: {
|
|
33075
|
-
created_at: {
|
|
33076
|
-
description:
|
|
33077
|
-
'Date and time at which Seam created the error.',
|
|
33078
|
-
format: 'date-time',
|
|
33079
|
-
type: 'string',
|
|
33080
|
-
},
|
|
33081
|
-
error_code: {
|
|
33082
|
-
description:
|
|
33083
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
33084
|
-
enum: ['august_lock_missing_bridge'],
|
|
33085
|
-
type: 'string',
|
|
33086
|
-
},
|
|
33087
|
-
is_device_error: {
|
|
33088
|
-
description:
|
|
33089
|
-
'Indicates that the error is a device error.',
|
|
33090
|
-
enum: [true],
|
|
33091
|
-
type: 'boolean',
|
|
33092
|
-
},
|
|
33093
|
-
message: {
|
|
33094
|
-
description:
|
|
33095
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33096
|
-
type: 'string',
|
|
33097
|
-
},
|
|
33098
|
-
},
|
|
33099
|
-
required: [
|
|
33100
|
-
'message',
|
|
33101
|
-
'is_device_error',
|
|
33102
|
-
'created_at',
|
|
33103
|
-
'error_code',
|
|
33104
|
-
],
|
|
33105
|
-
type: 'object',
|
|
33106
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
33107
|
-
'x-resource-type': 'device',
|
|
33108
|
-
'x-variant-group-key': 'locks',
|
|
33109
|
-
},
|
|
33110
|
-
{
|
|
33111
|
-
deprecated: true,
|
|
33112
|
-
description:
|
|
33113
|
-
'Indicates that the lock is not paired with a gateway.',
|
|
33114
|
-
properties: {
|
|
33115
|
-
created_at: {
|
|
33116
|
-
description:
|
|
33117
|
-
'Date and time at which Seam created the error.',
|
|
33118
|
-
format: 'date-time',
|
|
33119
|
-
type: 'string',
|
|
33120
|
-
},
|
|
33121
|
-
error_code: {
|
|
33122
|
-
description:
|
|
33123
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
33124
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
33125
|
-
type: 'string',
|
|
33126
|
-
},
|
|
33127
|
-
is_device_error: {
|
|
33128
|
-
description:
|
|
33129
|
-
'Indicates that the error is a device error.',
|
|
33130
|
-
enum: [true],
|
|
33131
|
-
type: 'boolean',
|
|
33132
|
-
},
|
|
33133
|
-
message: {
|
|
33134
|
-
description:
|
|
33135
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33136
|
-
type: 'string',
|
|
33137
|
-
},
|
|
33138
|
-
},
|
|
33139
|
-
required: [
|
|
33140
|
-
'message',
|
|
33141
|
-
'is_device_error',
|
|
33142
|
-
'created_at',
|
|
33143
|
-
'error_code',
|
|
33144
|
-
],
|
|
33145
|
-
type: 'object',
|
|
33146
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
33147
|
-
'x-resource-type': 'device',
|
|
33148
|
-
'x-variant-group-key': 'locks',
|
|
33149
|
-
},
|
|
33150
32731
|
{
|
|
33151
32732
|
description: 'Indicates that device credentials are missing.',
|
|
33152
32733
|
properties: {
|
|
@@ -33257,46 +32838,6 @@ const openapi: OpenAPISpec = {
|
|
|
33257
32838
|
type: 'object',
|
|
33258
32839
|
'x-resource-type': 'device',
|
|
33259
32840
|
},
|
|
33260
|
-
{
|
|
33261
|
-
deprecated: true,
|
|
33262
|
-
description:
|
|
33263
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
33264
|
-
properties: {
|
|
33265
|
-
created_at: {
|
|
33266
|
-
description:
|
|
33267
|
-
'Date and time at which Seam created the error.',
|
|
33268
|
-
format: 'date-time',
|
|
33269
|
-
type: 'string',
|
|
33270
|
-
},
|
|
33271
|
-
error_code: {
|
|
33272
|
-
description:
|
|
33273
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
33274
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
33275
|
-
type: 'string',
|
|
33276
|
-
},
|
|
33277
|
-
is_device_error: {
|
|
33278
|
-
description:
|
|
33279
|
-
'Indicates that the error is a device error.',
|
|
33280
|
-
enum: [true],
|
|
33281
|
-
type: 'boolean',
|
|
33282
|
-
},
|
|
33283
|
-
message: {
|
|
33284
|
-
description:
|
|
33285
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33286
|
-
type: 'string',
|
|
33287
|
-
},
|
|
33288
|
-
},
|
|
33289
|
-
required: [
|
|
33290
|
-
'message',
|
|
33291
|
-
'is_device_error',
|
|
33292
|
-
'created_at',
|
|
33293
|
-
'error_code',
|
|
33294
|
-
],
|
|
33295
|
-
type: 'object',
|
|
33296
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
33297
|
-
'x-resource-type': 'device',
|
|
33298
|
-
'x-variant-group-key': 'locks',
|
|
33299
|
-
},
|
|
33300
32841
|
{
|
|
33301
32842
|
description:
|
|
33302
32843
|
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).',
|
|
@@ -33592,35 +33133,6 @@ const openapi: OpenAPISpec = {
|
|
|
33592
33133
|
type: 'object',
|
|
33593
33134
|
'x-variant-group-key': 'access_codes',
|
|
33594
33135
|
},
|
|
33595
|
-
{
|
|
33596
|
-
deprecated: true,
|
|
33597
|
-
description:
|
|
33598
|
-
'Indicates that the Wyze Lock is not connected to a gateway.',
|
|
33599
|
-
properties: {
|
|
33600
|
-
created_at: {
|
|
33601
|
-
description:
|
|
33602
|
-
'Date and time at which Seam created the warning.',
|
|
33603
|
-
format: 'date-time',
|
|
33604
|
-
type: 'string',
|
|
33605
|
-
},
|
|
33606
|
-
message: {
|
|
33607
|
-
description:
|
|
33608
|
-
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
33609
|
-
type: 'string',
|
|
33610
|
-
},
|
|
33611
|
-
warning_code: {
|
|
33612
|
-
description:
|
|
33613
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
33614
|
-
enum: ['wyze_device_missing_gateway'],
|
|
33615
|
-
type: 'string',
|
|
33616
|
-
},
|
|
33617
|
-
},
|
|
33618
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
33619
|
-
type: 'object',
|
|
33620
|
-
'x-deprecated':
|
|
33621
|
-
'Use `hub_disconnected` device error instead.',
|
|
33622
|
-
'x-variant-group-key': 'locks',
|
|
33623
|
-
},
|
|
33624
33136
|
{
|
|
33625
33137
|
description:
|
|
33626
33138
|
'Indicates that a third-party integration has been detected.',
|