@seamapi/types 1.960.0 → 1.962.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 +6 -518
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -1394
- package/dist/index.cjs +6 -518
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -78
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -78
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- 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 +2 -468
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -979
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device.ts +0 -63
- package/src/lib/seam/connect/openapi.ts +2 -538
- package/src/lib/seam/connect/route-types.ts +2 -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).',
|
|
@@ -13320,86 +13200,6 @@ const openapi: OpenAPISpec = {
|
|
|
13320
13200
|
'x-resource-type': 'device',
|
|
13321
13201
|
'x-variant-group-key': 'locks',
|
|
13322
13202
|
},
|
|
13323
|
-
{
|
|
13324
|
-
deprecated: true,
|
|
13325
|
-
description:
|
|
13326
|
-
'Indicates that the lock is not connected to a bridge.',
|
|
13327
|
-
properties: {
|
|
13328
|
-
created_at: {
|
|
13329
|
-
description:
|
|
13330
|
-
'Date and time at which Seam created the error.',
|
|
13331
|
-
format: 'date-time',
|
|
13332
|
-
type: 'string',
|
|
13333
|
-
},
|
|
13334
|
-
error_code: {
|
|
13335
|
-
description:
|
|
13336
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13337
|
-
enum: ['august_lock_missing_bridge'],
|
|
13338
|
-
type: 'string',
|
|
13339
|
-
},
|
|
13340
|
-
is_device_error: {
|
|
13341
|
-
description:
|
|
13342
|
-
'Indicates that the error is a device error.',
|
|
13343
|
-
enum: [true],
|
|
13344
|
-
type: 'boolean',
|
|
13345
|
-
},
|
|
13346
|
-
message: {
|
|
13347
|
-
description:
|
|
13348
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13349
|
-
type: 'string',
|
|
13350
|
-
},
|
|
13351
|
-
},
|
|
13352
|
-
required: [
|
|
13353
|
-
'message',
|
|
13354
|
-
'is_device_error',
|
|
13355
|
-
'created_at',
|
|
13356
|
-
'error_code',
|
|
13357
|
-
],
|
|
13358
|
-
type: 'object',
|
|
13359
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13360
|
-
'x-resource-type': 'device',
|
|
13361
|
-
'x-variant-group-key': 'locks',
|
|
13362
|
-
},
|
|
13363
|
-
{
|
|
13364
|
-
deprecated: true,
|
|
13365
|
-
description:
|
|
13366
|
-
'Indicates that the lock is not paired with a gateway.',
|
|
13367
|
-
properties: {
|
|
13368
|
-
created_at: {
|
|
13369
|
-
description:
|
|
13370
|
-
'Date and time at which Seam created the error.',
|
|
13371
|
-
format: 'date-time',
|
|
13372
|
-
type: 'string',
|
|
13373
|
-
},
|
|
13374
|
-
error_code: {
|
|
13375
|
-
description:
|
|
13376
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13377
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
13378
|
-
type: 'string',
|
|
13379
|
-
},
|
|
13380
|
-
is_device_error: {
|
|
13381
|
-
description:
|
|
13382
|
-
'Indicates that the error is a device error.',
|
|
13383
|
-
enum: [true],
|
|
13384
|
-
type: 'boolean',
|
|
13385
|
-
},
|
|
13386
|
-
message: {
|
|
13387
|
-
description:
|
|
13388
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13389
|
-
type: 'string',
|
|
13390
|
-
},
|
|
13391
|
-
},
|
|
13392
|
-
required: [
|
|
13393
|
-
'message',
|
|
13394
|
-
'is_device_error',
|
|
13395
|
-
'created_at',
|
|
13396
|
-
'error_code',
|
|
13397
|
-
],
|
|
13398
|
-
type: 'object',
|
|
13399
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13400
|
-
'x-resource-type': 'device',
|
|
13401
|
-
'x-variant-group-key': 'locks',
|
|
13402
|
-
},
|
|
13403
13203
|
{
|
|
13404
13204
|
description: 'Indicates that device credentials are missing.',
|
|
13405
13205
|
properties: {
|
|
@@ -13510,46 +13310,6 @@ const openapi: OpenAPISpec = {
|
|
|
13510
13310
|
type: 'object',
|
|
13511
13311
|
'x-resource-type': 'device',
|
|
13512
13312
|
},
|
|
13513
|
-
{
|
|
13514
|
-
deprecated: true,
|
|
13515
|
-
description:
|
|
13516
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
13517
|
-
properties: {
|
|
13518
|
-
created_at: {
|
|
13519
|
-
description:
|
|
13520
|
-
'Date and time at which Seam created the error.',
|
|
13521
|
-
format: 'date-time',
|
|
13522
|
-
type: 'string',
|
|
13523
|
-
},
|
|
13524
|
-
error_code: {
|
|
13525
|
-
description:
|
|
13526
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13527
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
13528
|
-
type: 'string',
|
|
13529
|
-
},
|
|
13530
|
-
is_device_error: {
|
|
13531
|
-
description:
|
|
13532
|
-
'Indicates that the error is a device error.',
|
|
13533
|
-
enum: [true],
|
|
13534
|
-
type: 'boolean',
|
|
13535
|
-
},
|
|
13536
|
-
message: {
|
|
13537
|
-
description:
|
|
13538
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13539
|
-
type: 'string',
|
|
13540
|
-
},
|
|
13541
|
-
},
|
|
13542
|
-
required: [
|
|
13543
|
-
'message',
|
|
13544
|
-
'is_device_error',
|
|
13545
|
-
'created_at',
|
|
13546
|
-
'error_code',
|
|
13547
|
-
],
|
|
13548
|
-
type: 'object',
|
|
13549
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13550
|
-
'x-resource-type': 'device',
|
|
13551
|
-
'x-variant-group-key': 'locks',
|
|
13552
|
-
},
|
|
13553
13313
|
{
|
|
13554
13314
|
description:
|
|
13555
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).',
|
|
@@ -16436,35 +16196,6 @@ const openapi: OpenAPISpec = {
|
|
|
16436
16196
|
type: 'object',
|
|
16437
16197
|
'x-variant-group-key': 'access_codes',
|
|
16438
16198
|
},
|
|
16439
|
-
{
|
|
16440
|
-
deprecated: true,
|
|
16441
|
-
description:
|
|
16442
|
-
'Indicates that the Wyze Lock is not connected to a gateway.',
|
|
16443
|
-
properties: {
|
|
16444
|
-
created_at: {
|
|
16445
|
-
description:
|
|
16446
|
-
'Date and time at which Seam created the warning.',
|
|
16447
|
-
format: 'date-time',
|
|
16448
|
-
type: 'string',
|
|
16449
|
-
},
|
|
16450
|
-
message: {
|
|
16451
|
-
description:
|
|
16452
|
-
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
16453
|
-
type: 'string',
|
|
16454
|
-
},
|
|
16455
|
-
warning_code: {
|
|
16456
|
-
description:
|
|
16457
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
16458
|
-
enum: ['wyze_device_missing_gateway'],
|
|
16459
|
-
type: 'string',
|
|
16460
|
-
},
|
|
16461
|
-
},
|
|
16462
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
16463
|
-
type: 'object',
|
|
16464
|
-
'x-deprecated':
|
|
16465
|
-
'Use `hub_disconnected` device error instead.',
|
|
16466
|
-
'x-variant-group-key': 'locks',
|
|
16467
|
-
},
|
|
16468
16199
|
{
|
|
16469
16200
|
description:
|
|
16470
16201
|
'Indicates that a third-party integration has been detected.',
|
|
@@ -17318,6 +17049,7 @@ const openapi: OpenAPISpec = {
|
|
|
17318
17049
|
'doorking',
|
|
17319
17050
|
'salto',
|
|
17320
17051
|
'salto_ks',
|
|
17052
|
+
'salto_ks_accept',
|
|
17321
17053
|
'lockly',
|
|
17322
17054
|
'ttlock',
|
|
17323
17055
|
'linear',
|
|
@@ -30016,86 +29748,6 @@ const openapi: OpenAPISpec = {
|
|
|
30016
29748
|
'x-resource-type': 'device',
|
|
30017
29749
|
'x-variant-group-key': 'locks',
|
|
30018
29750
|
},
|
|
30019
|
-
{
|
|
30020
|
-
deprecated: true,
|
|
30021
|
-
description:
|
|
30022
|
-
'Indicates that the lock is not connected to a bridge.',
|
|
30023
|
-
properties: {
|
|
30024
|
-
created_at: {
|
|
30025
|
-
description:
|
|
30026
|
-
'Date and time at which Seam created the error.',
|
|
30027
|
-
format: 'date-time',
|
|
30028
|
-
type: 'string',
|
|
30029
|
-
},
|
|
30030
|
-
error_code: {
|
|
30031
|
-
description:
|
|
30032
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
30033
|
-
enum: ['august_lock_missing_bridge'],
|
|
30034
|
-
type: 'string',
|
|
30035
|
-
},
|
|
30036
|
-
is_device_error: {
|
|
30037
|
-
description:
|
|
30038
|
-
'Indicates that the error is a device error.',
|
|
30039
|
-
enum: [true],
|
|
30040
|
-
type: 'boolean',
|
|
30041
|
-
},
|
|
30042
|
-
message: {
|
|
30043
|
-
description:
|
|
30044
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
30045
|
-
type: 'string',
|
|
30046
|
-
},
|
|
30047
|
-
},
|
|
30048
|
-
required: [
|
|
30049
|
-
'message',
|
|
30050
|
-
'is_device_error',
|
|
30051
|
-
'created_at',
|
|
30052
|
-
'error_code',
|
|
30053
|
-
],
|
|
30054
|
-
type: 'object',
|
|
30055
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
30056
|
-
'x-resource-type': 'device',
|
|
30057
|
-
'x-variant-group-key': 'locks',
|
|
30058
|
-
},
|
|
30059
|
-
{
|
|
30060
|
-
deprecated: true,
|
|
30061
|
-
description:
|
|
30062
|
-
'Indicates that the lock is not paired with a gateway.',
|
|
30063
|
-
properties: {
|
|
30064
|
-
created_at: {
|
|
30065
|
-
description:
|
|
30066
|
-
'Date and time at which Seam created the error.',
|
|
30067
|
-
format: 'date-time',
|
|
30068
|
-
type: 'string',
|
|
30069
|
-
},
|
|
30070
|
-
error_code: {
|
|
30071
|
-
description:
|
|
30072
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
30073
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
30074
|
-
type: 'string',
|
|
30075
|
-
},
|
|
30076
|
-
is_device_error: {
|
|
30077
|
-
description:
|
|
30078
|
-
'Indicates that the error is a device error.',
|
|
30079
|
-
enum: [true],
|
|
30080
|
-
type: 'boolean',
|
|
30081
|
-
},
|
|
30082
|
-
message: {
|
|
30083
|
-
description:
|
|
30084
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
30085
|
-
type: 'string',
|
|
30086
|
-
},
|
|
30087
|
-
},
|
|
30088
|
-
required: [
|
|
30089
|
-
'message',
|
|
30090
|
-
'is_device_error',
|
|
30091
|
-
'created_at',
|
|
30092
|
-
'error_code',
|
|
30093
|
-
],
|
|
30094
|
-
type: 'object',
|
|
30095
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
30096
|
-
'x-resource-type': 'device',
|
|
30097
|
-
'x-variant-group-key': 'locks',
|
|
30098
|
-
},
|
|
30099
29751
|
{
|
|
30100
29752
|
description: 'Indicates that device credentials are missing.',
|
|
30101
29753
|
properties: {
|
|
@@ -30206,46 +29858,6 @@ const openapi: OpenAPISpec = {
|
|
|
30206
29858
|
type: 'object',
|
|
30207
29859
|
'x-resource-type': 'device',
|
|
30208
29860
|
},
|
|
30209
|
-
{
|
|
30210
|
-
deprecated: true,
|
|
30211
|
-
description:
|
|
30212
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
30213
|
-
properties: {
|
|
30214
|
-
created_at: {
|
|
30215
|
-
description:
|
|
30216
|
-
'Date and time at which Seam created the error.',
|
|
30217
|
-
format: 'date-time',
|
|
30218
|
-
type: 'string',
|
|
30219
|
-
},
|
|
30220
|
-
error_code: {
|
|
30221
|
-
description:
|
|
30222
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
30223
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
30224
|
-
type: 'string',
|
|
30225
|
-
},
|
|
30226
|
-
is_device_error: {
|
|
30227
|
-
description:
|
|
30228
|
-
'Indicates that the error is a device error.',
|
|
30229
|
-
enum: [true],
|
|
30230
|
-
type: 'boolean',
|
|
30231
|
-
},
|
|
30232
|
-
message: {
|
|
30233
|
-
description:
|
|
30234
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
30235
|
-
type: 'string',
|
|
30236
|
-
},
|
|
30237
|
-
},
|
|
30238
|
-
required: [
|
|
30239
|
-
'message',
|
|
30240
|
-
'is_device_error',
|
|
30241
|
-
'created_at',
|
|
30242
|
-
'error_code',
|
|
30243
|
-
],
|
|
30244
|
-
type: 'object',
|
|
30245
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
30246
|
-
'x-resource-type': 'device',
|
|
30247
|
-
'x-variant-group-key': 'locks',
|
|
30248
|
-
},
|
|
30249
29861
|
{
|
|
30250
29862
|
description:
|
|
30251
29863
|
'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).',
|
|
@@ -33117,86 +32729,6 @@ const openapi: OpenAPISpec = {
|
|
|
33117
32729
|
'x-resource-type': 'device',
|
|
33118
32730
|
'x-variant-group-key': 'locks',
|
|
33119
32731
|
},
|
|
33120
|
-
{
|
|
33121
|
-
deprecated: true,
|
|
33122
|
-
description:
|
|
33123
|
-
'Indicates that the lock is not connected to a bridge.',
|
|
33124
|
-
properties: {
|
|
33125
|
-
created_at: {
|
|
33126
|
-
description:
|
|
33127
|
-
'Date and time at which Seam created the error.',
|
|
33128
|
-
format: 'date-time',
|
|
33129
|
-
type: 'string',
|
|
33130
|
-
},
|
|
33131
|
-
error_code: {
|
|
33132
|
-
description:
|
|
33133
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
33134
|
-
enum: ['august_lock_missing_bridge'],
|
|
33135
|
-
type: 'string',
|
|
33136
|
-
},
|
|
33137
|
-
is_device_error: {
|
|
33138
|
-
description:
|
|
33139
|
-
'Indicates that the error is a device error.',
|
|
33140
|
-
enum: [true],
|
|
33141
|
-
type: 'boolean',
|
|
33142
|
-
},
|
|
33143
|
-
message: {
|
|
33144
|
-
description:
|
|
33145
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33146
|
-
type: 'string',
|
|
33147
|
-
},
|
|
33148
|
-
},
|
|
33149
|
-
required: [
|
|
33150
|
-
'message',
|
|
33151
|
-
'is_device_error',
|
|
33152
|
-
'created_at',
|
|
33153
|
-
'error_code',
|
|
33154
|
-
],
|
|
33155
|
-
type: 'object',
|
|
33156
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
33157
|
-
'x-resource-type': 'device',
|
|
33158
|
-
'x-variant-group-key': 'locks',
|
|
33159
|
-
},
|
|
33160
|
-
{
|
|
33161
|
-
deprecated: true,
|
|
33162
|
-
description:
|
|
33163
|
-
'Indicates that the lock is not paired with a gateway.',
|
|
33164
|
-
properties: {
|
|
33165
|
-
created_at: {
|
|
33166
|
-
description:
|
|
33167
|
-
'Date and time at which Seam created the error.',
|
|
33168
|
-
format: 'date-time',
|
|
33169
|
-
type: 'string',
|
|
33170
|
-
},
|
|
33171
|
-
error_code: {
|
|
33172
|
-
description:
|
|
33173
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
33174
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
33175
|
-
type: 'string',
|
|
33176
|
-
},
|
|
33177
|
-
is_device_error: {
|
|
33178
|
-
description:
|
|
33179
|
-
'Indicates that the error is a device error.',
|
|
33180
|
-
enum: [true],
|
|
33181
|
-
type: 'boolean',
|
|
33182
|
-
},
|
|
33183
|
-
message: {
|
|
33184
|
-
description:
|
|
33185
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33186
|
-
type: 'string',
|
|
33187
|
-
},
|
|
33188
|
-
},
|
|
33189
|
-
required: [
|
|
33190
|
-
'message',
|
|
33191
|
-
'is_device_error',
|
|
33192
|
-
'created_at',
|
|
33193
|
-
'error_code',
|
|
33194
|
-
],
|
|
33195
|
-
type: 'object',
|
|
33196
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
33197
|
-
'x-resource-type': 'device',
|
|
33198
|
-
'x-variant-group-key': 'locks',
|
|
33199
|
-
},
|
|
33200
32732
|
{
|
|
33201
32733
|
description: 'Indicates that device credentials are missing.',
|
|
33202
32734
|
properties: {
|
|
@@ -33307,46 +32839,6 @@ const openapi: OpenAPISpec = {
|
|
|
33307
32839
|
type: 'object',
|
|
33308
32840
|
'x-resource-type': 'device',
|
|
33309
32841
|
},
|
|
33310
|
-
{
|
|
33311
|
-
deprecated: true,
|
|
33312
|
-
description:
|
|
33313
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
33314
|
-
properties: {
|
|
33315
|
-
created_at: {
|
|
33316
|
-
description:
|
|
33317
|
-
'Date and time at which Seam created the error.',
|
|
33318
|
-
format: 'date-time',
|
|
33319
|
-
type: 'string',
|
|
33320
|
-
},
|
|
33321
|
-
error_code: {
|
|
33322
|
-
description:
|
|
33323
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
33324
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
33325
|
-
type: 'string',
|
|
33326
|
-
},
|
|
33327
|
-
is_device_error: {
|
|
33328
|
-
description:
|
|
33329
|
-
'Indicates that the error is a device error.',
|
|
33330
|
-
enum: [true],
|
|
33331
|
-
type: 'boolean',
|
|
33332
|
-
},
|
|
33333
|
-
message: {
|
|
33334
|
-
description:
|
|
33335
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33336
|
-
type: 'string',
|
|
33337
|
-
},
|
|
33338
|
-
},
|
|
33339
|
-
required: [
|
|
33340
|
-
'message',
|
|
33341
|
-
'is_device_error',
|
|
33342
|
-
'created_at',
|
|
33343
|
-
'error_code',
|
|
33344
|
-
],
|
|
33345
|
-
type: 'object',
|
|
33346
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
33347
|
-
'x-resource-type': 'device',
|
|
33348
|
-
'x-variant-group-key': 'locks',
|
|
33349
|
-
},
|
|
33350
32842
|
{
|
|
33351
32843
|
description:
|
|
33352
32844
|
'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).',
|
|
@@ -33642,35 +33134,6 @@ const openapi: OpenAPISpec = {
|
|
|
33642
33134
|
type: 'object',
|
|
33643
33135
|
'x-variant-group-key': 'access_codes',
|
|
33644
33136
|
},
|
|
33645
|
-
{
|
|
33646
|
-
deprecated: true,
|
|
33647
|
-
description:
|
|
33648
|
-
'Indicates that the Wyze Lock is not connected to a gateway.',
|
|
33649
|
-
properties: {
|
|
33650
|
-
created_at: {
|
|
33651
|
-
description:
|
|
33652
|
-
'Date and time at which Seam created the warning.',
|
|
33653
|
-
format: 'date-time',
|
|
33654
|
-
type: 'string',
|
|
33655
|
-
},
|
|
33656
|
-
message: {
|
|
33657
|
-
description:
|
|
33658
|
-
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
33659
|
-
type: 'string',
|
|
33660
|
-
},
|
|
33661
|
-
warning_code: {
|
|
33662
|
-
description:
|
|
33663
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
33664
|
-
enum: ['wyze_device_missing_gateway'],
|
|
33665
|
-
type: 'string',
|
|
33666
|
-
},
|
|
33667
|
-
},
|
|
33668
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
33669
|
-
type: 'object',
|
|
33670
|
-
'x-deprecated':
|
|
33671
|
-
'Use `hub_disconnected` device error instead.',
|
|
33672
|
-
'x-variant-group-key': 'locks',
|
|
33673
|
-
},
|
|
33674
33137
|
{
|
|
33675
33138
|
description:
|
|
33676
33139
|
'Indicates that a third-party integration has been detected.',
|
|
@@ -52841,6 +52304,7 @@ const openapi: OpenAPISpec = {
|
|
|
52841
52304
|
'doorking',
|
|
52842
52305
|
'salto',
|
|
52843
52306
|
'salto_ks',
|
|
52307
|
+
'salto_ks_accept',
|
|
52844
52308
|
'lockly',
|
|
52845
52309
|
'ttlock',
|
|
52846
52310
|
'linear',
|