@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
|
@@ -648,76 +648,6 @@ const openapi = {
|
|
|
648
648
|
'x-resource-type': 'device',
|
|
649
649
|
'x-variant-group-key': 'locks',
|
|
650
650
|
},
|
|
651
|
-
{
|
|
652
|
-
deprecated: true,
|
|
653
|
-
description: 'Indicates that the lock is not connected to a bridge.',
|
|
654
|
-
properties: {
|
|
655
|
-
created_at: {
|
|
656
|
-
description: 'Date and time at which Seam created the error.',
|
|
657
|
-
format: 'date-time',
|
|
658
|
-
type: 'string',
|
|
659
|
-
},
|
|
660
|
-
error_code: {
|
|
661
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
662
|
-
enum: ['august_lock_missing_bridge'],
|
|
663
|
-
type: 'string',
|
|
664
|
-
},
|
|
665
|
-
is_device_error: {
|
|
666
|
-
description: 'Indicates that the error is a device error.',
|
|
667
|
-
enum: [true],
|
|
668
|
-
type: 'boolean',
|
|
669
|
-
},
|
|
670
|
-
message: {
|
|
671
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
672
|
-
type: 'string',
|
|
673
|
-
},
|
|
674
|
-
},
|
|
675
|
-
required: [
|
|
676
|
-
'message',
|
|
677
|
-
'is_device_error',
|
|
678
|
-
'created_at',
|
|
679
|
-
'error_code',
|
|
680
|
-
],
|
|
681
|
-
type: 'object',
|
|
682
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
683
|
-
'x-resource-type': 'device',
|
|
684
|
-
'x-variant-group-key': 'locks',
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
deprecated: true,
|
|
688
|
-
description: 'Indicates that the lock is not paired with a gateway.',
|
|
689
|
-
properties: {
|
|
690
|
-
created_at: {
|
|
691
|
-
description: 'Date and time at which Seam created the error.',
|
|
692
|
-
format: 'date-time',
|
|
693
|
-
type: 'string',
|
|
694
|
-
},
|
|
695
|
-
error_code: {
|
|
696
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
697
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
698
|
-
type: 'string',
|
|
699
|
-
},
|
|
700
|
-
is_device_error: {
|
|
701
|
-
description: 'Indicates that the error is a device error.',
|
|
702
|
-
enum: [true],
|
|
703
|
-
type: 'boolean',
|
|
704
|
-
},
|
|
705
|
-
message: {
|
|
706
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
707
|
-
type: 'string',
|
|
708
|
-
},
|
|
709
|
-
},
|
|
710
|
-
required: [
|
|
711
|
-
'message',
|
|
712
|
-
'is_device_error',
|
|
713
|
-
'created_at',
|
|
714
|
-
'error_code',
|
|
715
|
-
],
|
|
716
|
-
type: 'object',
|
|
717
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
718
|
-
'x-resource-type': 'device',
|
|
719
|
-
'x-variant-group-key': 'locks',
|
|
720
|
-
},
|
|
721
651
|
{
|
|
722
652
|
description: 'Indicates that device credentials are missing.',
|
|
723
653
|
properties: {
|
|
@@ -815,41 +745,6 @@ const openapi = {
|
|
|
815
745
|
type: 'object',
|
|
816
746
|
'x-resource-type': 'device',
|
|
817
747
|
},
|
|
818
|
-
{
|
|
819
|
-
deprecated: true,
|
|
820
|
-
description: 'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
821
|
-
properties: {
|
|
822
|
-
created_at: {
|
|
823
|
-
description: 'Date and time at which Seam created the error.',
|
|
824
|
-
format: 'date-time',
|
|
825
|
-
type: 'string',
|
|
826
|
-
},
|
|
827
|
-
error_code: {
|
|
828
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
829
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
830
|
-
type: 'string',
|
|
831
|
-
},
|
|
832
|
-
is_device_error: {
|
|
833
|
-
description: 'Indicates that the error is a device error.',
|
|
834
|
-
enum: [true],
|
|
835
|
-
type: 'boolean',
|
|
836
|
-
},
|
|
837
|
-
message: {
|
|
838
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
839
|
-
type: 'string',
|
|
840
|
-
},
|
|
841
|
-
},
|
|
842
|
-
required: [
|
|
843
|
-
'message',
|
|
844
|
-
'is_device_error',
|
|
845
|
-
'created_at',
|
|
846
|
-
'error_code',
|
|
847
|
-
],
|
|
848
|
-
type: 'object',
|
|
849
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
850
|
-
'x-resource-type': 'device',
|
|
851
|
-
'x-variant-group-key': 'locks',
|
|
852
|
-
},
|
|
853
748
|
{
|
|
854
749
|
description: '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).',
|
|
855
750
|
properties: {
|
|
@@ -1447,6 +1342,27 @@ const openapi = {
|
|
|
1447
1342
|
required: ['message', 'warning_code'],
|
|
1448
1343
|
type: 'object',
|
|
1449
1344
|
},
|
|
1345
|
+
{
|
|
1346
|
+
description: 'An unknown issue occurred with the access code.',
|
|
1347
|
+
properties: {
|
|
1348
|
+
created_at: {
|
|
1349
|
+
description: 'Date and time at which Seam created the warning.',
|
|
1350
|
+
format: 'date-time',
|
|
1351
|
+
type: 'string',
|
|
1352
|
+
},
|
|
1353
|
+
message: {
|
|
1354
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1355
|
+
type: 'string',
|
|
1356
|
+
},
|
|
1357
|
+
warning_code: {
|
|
1358
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1359
|
+
enum: ['unknown_issue_with_access_code'],
|
|
1360
|
+
type: 'string',
|
|
1361
|
+
},
|
|
1362
|
+
},
|
|
1363
|
+
required: ['message', 'warning_code'],
|
|
1364
|
+
type: 'object',
|
|
1365
|
+
},
|
|
1450
1366
|
],
|
|
1451
1367
|
},
|
|
1452
1368
|
type: 'array',
|
|
@@ -11765,76 +11681,6 @@ const openapi = {
|
|
|
11765
11681
|
'x-resource-type': 'device',
|
|
11766
11682
|
'x-variant-group-key': 'locks',
|
|
11767
11683
|
},
|
|
11768
|
-
{
|
|
11769
|
-
deprecated: true,
|
|
11770
|
-
description: 'Indicates that the lock is not connected to a bridge.',
|
|
11771
|
-
properties: {
|
|
11772
|
-
created_at: {
|
|
11773
|
-
description: 'Date and time at which Seam created the error.',
|
|
11774
|
-
format: 'date-time',
|
|
11775
|
-
type: 'string',
|
|
11776
|
-
},
|
|
11777
|
-
error_code: {
|
|
11778
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11779
|
-
enum: ['august_lock_missing_bridge'],
|
|
11780
|
-
type: 'string',
|
|
11781
|
-
},
|
|
11782
|
-
is_device_error: {
|
|
11783
|
-
description: 'Indicates that the error is a device error.',
|
|
11784
|
-
enum: [true],
|
|
11785
|
-
type: 'boolean',
|
|
11786
|
-
},
|
|
11787
|
-
message: {
|
|
11788
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
11789
|
-
type: 'string',
|
|
11790
|
-
},
|
|
11791
|
-
},
|
|
11792
|
-
required: [
|
|
11793
|
-
'message',
|
|
11794
|
-
'is_device_error',
|
|
11795
|
-
'created_at',
|
|
11796
|
-
'error_code',
|
|
11797
|
-
],
|
|
11798
|
-
type: 'object',
|
|
11799
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
11800
|
-
'x-resource-type': 'device',
|
|
11801
|
-
'x-variant-group-key': 'locks',
|
|
11802
|
-
},
|
|
11803
|
-
{
|
|
11804
|
-
deprecated: true,
|
|
11805
|
-
description: 'Indicates that the lock is not paired with a gateway.',
|
|
11806
|
-
properties: {
|
|
11807
|
-
created_at: {
|
|
11808
|
-
description: 'Date and time at which Seam created the error.',
|
|
11809
|
-
format: 'date-time',
|
|
11810
|
-
type: 'string',
|
|
11811
|
-
},
|
|
11812
|
-
error_code: {
|
|
11813
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11814
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
11815
|
-
type: 'string',
|
|
11816
|
-
},
|
|
11817
|
-
is_device_error: {
|
|
11818
|
-
description: 'Indicates that the error is a device error.',
|
|
11819
|
-
enum: [true],
|
|
11820
|
-
type: 'boolean',
|
|
11821
|
-
},
|
|
11822
|
-
message: {
|
|
11823
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
11824
|
-
type: 'string',
|
|
11825
|
-
},
|
|
11826
|
-
},
|
|
11827
|
-
required: [
|
|
11828
|
-
'message',
|
|
11829
|
-
'is_device_error',
|
|
11830
|
-
'created_at',
|
|
11831
|
-
'error_code',
|
|
11832
|
-
],
|
|
11833
|
-
type: 'object',
|
|
11834
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
11835
|
-
'x-resource-type': 'device',
|
|
11836
|
-
'x-variant-group-key': 'locks',
|
|
11837
|
-
},
|
|
11838
11684
|
{
|
|
11839
11685
|
description: 'Indicates that device credentials are missing.',
|
|
11840
11686
|
properties: {
|
|
@@ -11932,41 +11778,6 @@ const openapi = {
|
|
|
11932
11778
|
type: 'object',
|
|
11933
11779
|
'x-resource-type': 'device',
|
|
11934
11780
|
},
|
|
11935
|
-
{
|
|
11936
|
-
deprecated: true,
|
|
11937
|
-
description: 'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
11938
|
-
properties: {
|
|
11939
|
-
created_at: {
|
|
11940
|
-
description: 'Date and time at which Seam created the error.',
|
|
11941
|
-
format: 'date-time',
|
|
11942
|
-
type: 'string',
|
|
11943
|
-
},
|
|
11944
|
-
error_code: {
|
|
11945
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11946
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
11947
|
-
type: 'string',
|
|
11948
|
-
},
|
|
11949
|
-
is_device_error: {
|
|
11950
|
-
description: 'Indicates that the error is a device error.',
|
|
11951
|
-
enum: [true],
|
|
11952
|
-
type: 'boolean',
|
|
11953
|
-
},
|
|
11954
|
-
message: {
|
|
11955
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
11956
|
-
type: 'string',
|
|
11957
|
-
},
|
|
11958
|
-
},
|
|
11959
|
-
required: [
|
|
11960
|
-
'message',
|
|
11961
|
-
'is_device_error',
|
|
11962
|
-
'created_at',
|
|
11963
|
-
'error_code',
|
|
11964
|
-
],
|
|
11965
|
-
type: 'object',
|
|
11966
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
11967
|
-
'x-resource-type': 'device',
|
|
11968
|
-
'x-variant-group-key': 'locks',
|
|
11969
|
-
},
|
|
11970
11781
|
{
|
|
11971
11782
|
description: '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).',
|
|
11972
11783
|
properties: {
|
|
@@ -14524,30 +14335,6 @@ const openapi = {
|
|
|
14524
14335
|
type: 'object',
|
|
14525
14336
|
'x-variant-group-key': 'access_codes',
|
|
14526
14337
|
},
|
|
14527
|
-
{
|
|
14528
|
-
deprecated: true,
|
|
14529
|
-
description: 'Indicates that the Wyze Lock is not connected to a gateway.',
|
|
14530
|
-
properties: {
|
|
14531
|
-
created_at: {
|
|
14532
|
-
description: 'Date and time at which Seam created the warning.',
|
|
14533
|
-
format: 'date-time',
|
|
14534
|
-
type: 'string',
|
|
14535
|
-
},
|
|
14536
|
-
message: {
|
|
14537
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
14538
|
-
type: 'string',
|
|
14539
|
-
},
|
|
14540
|
-
warning_code: {
|
|
14541
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14542
|
-
enum: ['wyze_device_missing_gateway'],
|
|
14543
|
-
type: 'string',
|
|
14544
|
-
},
|
|
14545
|
-
},
|
|
14546
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
14547
|
-
type: 'object',
|
|
14548
|
-
'x-deprecated': 'Use `hub_disconnected` device error instead.',
|
|
14549
|
-
'x-variant-group-key': 'locks',
|
|
14550
|
-
},
|
|
14551
14338
|
{
|
|
14552
14339
|
description: 'Indicates that a third-party integration has been detected.',
|
|
14553
14340
|
properties: {
|
|
@@ -26854,76 +26641,6 @@ const openapi = {
|
|
|
26854
26641
|
'x-resource-type': 'device',
|
|
26855
26642
|
'x-variant-group-key': 'locks',
|
|
26856
26643
|
},
|
|
26857
|
-
{
|
|
26858
|
-
deprecated: true,
|
|
26859
|
-
description: 'Indicates that the lock is not connected to a bridge.',
|
|
26860
|
-
properties: {
|
|
26861
|
-
created_at: {
|
|
26862
|
-
description: 'Date and time at which Seam created the error.',
|
|
26863
|
-
format: 'date-time',
|
|
26864
|
-
type: 'string',
|
|
26865
|
-
},
|
|
26866
|
-
error_code: {
|
|
26867
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26868
|
-
enum: ['august_lock_missing_bridge'],
|
|
26869
|
-
type: 'string',
|
|
26870
|
-
},
|
|
26871
|
-
is_device_error: {
|
|
26872
|
-
description: 'Indicates that the error is a device error.',
|
|
26873
|
-
enum: [true],
|
|
26874
|
-
type: 'boolean',
|
|
26875
|
-
},
|
|
26876
|
-
message: {
|
|
26877
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26878
|
-
type: 'string',
|
|
26879
|
-
},
|
|
26880
|
-
},
|
|
26881
|
-
required: [
|
|
26882
|
-
'message',
|
|
26883
|
-
'is_device_error',
|
|
26884
|
-
'created_at',
|
|
26885
|
-
'error_code',
|
|
26886
|
-
],
|
|
26887
|
-
type: 'object',
|
|
26888
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
26889
|
-
'x-resource-type': 'device',
|
|
26890
|
-
'x-variant-group-key': 'locks',
|
|
26891
|
-
},
|
|
26892
|
-
{
|
|
26893
|
-
deprecated: true,
|
|
26894
|
-
description: 'Indicates that the lock is not paired with a gateway.',
|
|
26895
|
-
properties: {
|
|
26896
|
-
created_at: {
|
|
26897
|
-
description: 'Date and time at which Seam created the error.',
|
|
26898
|
-
format: 'date-time',
|
|
26899
|
-
type: 'string',
|
|
26900
|
-
},
|
|
26901
|
-
error_code: {
|
|
26902
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26903
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
26904
|
-
type: 'string',
|
|
26905
|
-
},
|
|
26906
|
-
is_device_error: {
|
|
26907
|
-
description: 'Indicates that the error is a device error.',
|
|
26908
|
-
enum: [true],
|
|
26909
|
-
type: 'boolean',
|
|
26910
|
-
},
|
|
26911
|
-
message: {
|
|
26912
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26913
|
-
type: 'string',
|
|
26914
|
-
},
|
|
26915
|
-
},
|
|
26916
|
-
required: [
|
|
26917
|
-
'message',
|
|
26918
|
-
'is_device_error',
|
|
26919
|
-
'created_at',
|
|
26920
|
-
'error_code',
|
|
26921
|
-
],
|
|
26922
|
-
type: 'object',
|
|
26923
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
26924
|
-
'x-resource-type': 'device',
|
|
26925
|
-
'x-variant-group-key': 'locks',
|
|
26926
|
-
},
|
|
26927
26644
|
{
|
|
26928
26645
|
description: 'Indicates that device credentials are missing.',
|
|
26929
26646
|
properties: {
|
|
@@ -27021,41 +26738,6 @@ const openapi = {
|
|
|
27021
26738
|
type: 'object',
|
|
27022
26739
|
'x-resource-type': 'device',
|
|
27023
26740
|
},
|
|
27024
|
-
{
|
|
27025
|
-
deprecated: true,
|
|
27026
|
-
description: 'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
27027
|
-
properties: {
|
|
27028
|
-
created_at: {
|
|
27029
|
-
description: 'Date and time at which Seam created the error.',
|
|
27030
|
-
format: 'date-time',
|
|
27031
|
-
type: 'string',
|
|
27032
|
-
},
|
|
27033
|
-
error_code: {
|
|
27034
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
27035
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
27036
|
-
type: 'string',
|
|
27037
|
-
},
|
|
27038
|
-
is_device_error: {
|
|
27039
|
-
description: 'Indicates that the error is a device error.',
|
|
27040
|
-
enum: [true],
|
|
27041
|
-
type: 'boolean',
|
|
27042
|
-
},
|
|
27043
|
-
message: {
|
|
27044
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
27045
|
-
type: 'string',
|
|
27046
|
-
},
|
|
27047
|
-
},
|
|
27048
|
-
required: [
|
|
27049
|
-
'message',
|
|
27050
|
-
'is_device_error',
|
|
27051
|
-
'created_at',
|
|
27052
|
-
'error_code',
|
|
27053
|
-
],
|
|
27054
|
-
type: 'object',
|
|
27055
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
27056
|
-
'x-resource-type': 'device',
|
|
27057
|
-
'x-variant-group-key': 'locks',
|
|
27058
|
-
},
|
|
27059
26741
|
{
|
|
27060
26742
|
description: '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).',
|
|
27061
26743
|
properties: {
|
|
@@ -27370,6 +27052,27 @@ const openapi = {
|
|
|
27370
27052
|
required: ['message', 'warning_code'],
|
|
27371
27053
|
type: 'object',
|
|
27372
27054
|
},
|
|
27055
|
+
{
|
|
27056
|
+
description: 'An unknown issue occurred with the access code.',
|
|
27057
|
+
properties: {
|
|
27058
|
+
created_at: {
|
|
27059
|
+
description: 'Date and time at which Seam created the warning.',
|
|
27060
|
+
format: 'date-time',
|
|
27061
|
+
type: 'string',
|
|
27062
|
+
},
|
|
27063
|
+
message: {
|
|
27064
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
27065
|
+
type: 'string',
|
|
27066
|
+
},
|
|
27067
|
+
warning_code: {
|
|
27068
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
27069
|
+
enum: ['unknown_issue_with_access_code'],
|
|
27070
|
+
type: 'string',
|
|
27071
|
+
},
|
|
27072
|
+
},
|
|
27073
|
+
required: ['message', 'warning_code'],
|
|
27074
|
+
type: 'object',
|
|
27075
|
+
},
|
|
27373
27076
|
],
|
|
27374
27077
|
},
|
|
27375
27078
|
type: 'array',
|
|
@@ -29582,76 +29285,6 @@ const openapi = {
|
|
|
29582
29285
|
'x-resource-type': 'device',
|
|
29583
29286
|
'x-variant-group-key': 'locks',
|
|
29584
29287
|
},
|
|
29585
|
-
{
|
|
29586
|
-
deprecated: true,
|
|
29587
|
-
description: 'Indicates that the lock is not connected to a bridge.',
|
|
29588
|
-
properties: {
|
|
29589
|
-
created_at: {
|
|
29590
|
-
description: 'Date and time at which Seam created the error.',
|
|
29591
|
-
format: 'date-time',
|
|
29592
|
-
type: 'string',
|
|
29593
|
-
},
|
|
29594
|
-
error_code: {
|
|
29595
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29596
|
-
enum: ['august_lock_missing_bridge'],
|
|
29597
|
-
type: 'string',
|
|
29598
|
-
},
|
|
29599
|
-
is_device_error: {
|
|
29600
|
-
description: 'Indicates that the error is a device error.',
|
|
29601
|
-
enum: [true],
|
|
29602
|
-
type: 'boolean',
|
|
29603
|
-
},
|
|
29604
|
-
message: {
|
|
29605
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29606
|
-
type: 'string',
|
|
29607
|
-
},
|
|
29608
|
-
},
|
|
29609
|
-
required: [
|
|
29610
|
-
'message',
|
|
29611
|
-
'is_device_error',
|
|
29612
|
-
'created_at',
|
|
29613
|
-
'error_code',
|
|
29614
|
-
],
|
|
29615
|
-
type: 'object',
|
|
29616
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29617
|
-
'x-resource-type': 'device',
|
|
29618
|
-
'x-variant-group-key': 'locks',
|
|
29619
|
-
},
|
|
29620
|
-
{
|
|
29621
|
-
deprecated: true,
|
|
29622
|
-
description: 'Indicates that the lock is not paired with a gateway.',
|
|
29623
|
-
properties: {
|
|
29624
|
-
created_at: {
|
|
29625
|
-
description: 'Date and time at which Seam created the error.',
|
|
29626
|
-
format: 'date-time',
|
|
29627
|
-
type: 'string',
|
|
29628
|
-
},
|
|
29629
|
-
error_code: {
|
|
29630
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29631
|
-
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
29632
|
-
type: 'string',
|
|
29633
|
-
},
|
|
29634
|
-
is_device_error: {
|
|
29635
|
-
description: 'Indicates that the error is a device error.',
|
|
29636
|
-
enum: [true],
|
|
29637
|
-
type: 'boolean',
|
|
29638
|
-
},
|
|
29639
|
-
message: {
|
|
29640
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29641
|
-
type: 'string',
|
|
29642
|
-
},
|
|
29643
|
-
},
|
|
29644
|
-
required: [
|
|
29645
|
-
'message',
|
|
29646
|
-
'is_device_error',
|
|
29647
|
-
'created_at',
|
|
29648
|
-
'error_code',
|
|
29649
|
-
],
|
|
29650
|
-
type: 'object',
|
|
29651
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29652
|
-
'x-resource-type': 'device',
|
|
29653
|
-
'x-variant-group-key': 'locks',
|
|
29654
|
-
},
|
|
29655
29288
|
{
|
|
29656
29289
|
description: 'Indicates that device credentials are missing.',
|
|
29657
29290
|
properties: {
|
|
@@ -29749,41 +29382,6 @@ const openapi = {
|
|
|
29749
29382
|
type: 'object',
|
|
29750
29383
|
'x-resource-type': 'device',
|
|
29751
29384
|
},
|
|
29752
|
-
{
|
|
29753
|
-
deprecated: true,
|
|
29754
|
-
description: 'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
29755
|
-
properties: {
|
|
29756
|
-
created_at: {
|
|
29757
|
-
description: 'Date and time at which Seam created the error.',
|
|
29758
|
-
format: 'date-time',
|
|
29759
|
-
type: 'string',
|
|
29760
|
-
},
|
|
29761
|
-
error_code: {
|
|
29762
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29763
|
-
enum: ['lockly_missing_wifi_bridge'],
|
|
29764
|
-
type: 'string',
|
|
29765
|
-
},
|
|
29766
|
-
is_device_error: {
|
|
29767
|
-
description: 'Indicates that the error is a device error.',
|
|
29768
|
-
enum: [true],
|
|
29769
|
-
type: 'boolean',
|
|
29770
|
-
},
|
|
29771
|
-
message: {
|
|
29772
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29773
|
-
type: 'string',
|
|
29774
|
-
},
|
|
29775
|
-
},
|
|
29776
|
-
required: [
|
|
29777
|
-
'message',
|
|
29778
|
-
'is_device_error',
|
|
29779
|
-
'created_at',
|
|
29780
|
-
'error_code',
|
|
29781
|
-
],
|
|
29782
|
-
type: 'object',
|
|
29783
|
-
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29784
|
-
'x-resource-type': 'device',
|
|
29785
|
-
'x-variant-group-key': 'locks',
|
|
29786
|
-
},
|
|
29787
29385
|
{
|
|
29788
29386
|
description: '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).',
|
|
29789
29387
|
properties: {
|
|
@@ -30049,30 +29647,6 @@ const openapi = {
|
|
|
30049
29647
|
type: 'object',
|
|
30050
29648
|
'x-variant-group-key': 'access_codes',
|
|
30051
29649
|
},
|
|
30052
|
-
{
|
|
30053
|
-
deprecated: true,
|
|
30054
|
-
description: 'Indicates that the Wyze Lock is not connected to a gateway.',
|
|
30055
|
-
properties: {
|
|
30056
|
-
created_at: {
|
|
30057
|
-
description: 'Date and time at which Seam created the warning.',
|
|
30058
|
-
format: 'date-time',
|
|
30059
|
-
type: 'string',
|
|
30060
|
-
},
|
|
30061
|
-
message: {
|
|
30062
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
30063
|
-
type: 'string',
|
|
30064
|
-
},
|
|
30065
|
-
warning_code: {
|
|
30066
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
30067
|
-
enum: ['wyze_device_missing_gateway'],
|
|
30068
|
-
type: 'string',
|
|
30069
|
-
},
|
|
30070
|
-
},
|
|
30071
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
30072
|
-
type: 'object',
|
|
30073
|
-
'x-deprecated': 'Use `hub_disconnected` device error instead.',
|
|
30074
|
-
'x-variant-group-key': 'locks',
|
|
30075
|
-
},
|
|
30076
29650
|
{
|
|
30077
29651
|
description: 'Indicates that a third-party integration has been detected.',
|
|
30078
29652
|
properties: {
|