@seamapi/types 1.922.0 → 1.924.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 +247 -214
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +484 -473
- package/dist/index.cjs +247 -214
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -58
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
- 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 +31 -21
- package/lib/seam/connect/models/devices/device.d.ts +103 -0
- package/lib/seam/connect/models/devices/device.js +55 -16
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/openapi.js +178 -168
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -418
- package/package.json +2 -2
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -17
- package/src/lib/seam/connect/models/devices/device.ts +69 -33
- package/src/lib/seam/connect/openapi.ts +202 -202
- package/src/lib/seam/connect/route-types.ts +372 -460
|
@@ -524,6 +524,45 @@ const openapi = {
|
|
|
524
524
|
'x-resource-type': 'connected_account',
|
|
525
525
|
'x-variant-group-key': 'locks',
|
|
526
526
|
},
|
|
527
|
+
{
|
|
528
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
529
|
+
properties: {
|
|
530
|
+
created_at: {
|
|
531
|
+
description: 'Date and time at which Seam created the error.',
|
|
532
|
+
format: 'date-time',
|
|
533
|
+
type: 'string',
|
|
534
|
+
},
|
|
535
|
+
error_code: {
|
|
536
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
537
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
538
|
+
type: 'string',
|
|
539
|
+
},
|
|
540
|
+
is_connected_account_error: {
|
|
541
|
+
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
542
|
+
enum: [true],
|
|
543
|
+
type: 'boolean',
|
|
544
|
+
},
|
|
545
|
+
is_device_error: {
|
|
546
|
+
description: 'Indicates that the error is not a device error.',
|
|
547
|
+
enum: [false],
|
|
548
|
+
type: 'boolean',
|
|
549
|
+
},
|
|
550
|
+
message: {
|
|
551
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
552
|
+
type: 'string',
|
|
553
|
+
},
|
|
554
|
+
},
|
|
555
|
+
required: [
|
|
556
|
+
'message',
|
|
557
|
+
'is_device_error',
|
|
558
|
+
'created_at',
|
|
559
|
+
'error_code',
|
|
560
|
+
'is_connected_account_error',
|
|
561
|
+
],
|
|
562
|
+
type: 'object',
|
|
563
|
+
'x-resource-type': 'connected_account',
|
|
564
|
+
'x-variant-group-key': 'locks',
|
|
565
|
+
},
|
|
527
566
|
{
|
|
528
567
|
deprecated: true,
|
|
529
568
|
description: 'Indicates that the device is offline.',
|
|
@@ -788,6 +827,7 @@ const openapi = {
|
|
|
788
827
|
type: 'object',
|
|
789
828
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
790
829
|
'x-resource-type': 'device',
|
|
830
|
+
'x-variant-group-key': 'locks',
|
|
791
831
|
},
|
|
792
832
|
{
|
|
793
833
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -919,6 +959,7 @@ const openapi = {
|
|
|
919
959
|
type: 'object',
|
|
920
960
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
921
961
|
'x-resource-type': 'device',
|
|
962
|
+
'x-variant-group-key': 'locks',
|
|
922
963
|
},
|
|
923
964
|
{
|
|
924
965
|
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).',
|
|
@@ -950,36 +991,6 @@ const openapi = {
|
|
|
950
991
|
type: 'object',
|
|
951
992
|
'x-resource-type': 'connected_account',
|
|
952
993
|
},
|
|
953
|
-
{
|
|
954
|
-
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
955
|
-
properties: {
|
|
956
|
-
created_at: {
|
|
957
|
-
description: 'Date and time at which Seam created the error.',
|
|
958
|
-
format: 'date-time',
|
|
959
|
-
type: 'string',
|
|
960
|
-
},
|
|
961
|
-
error_code: {
|
|
962
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
963
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
964
|
-
type: 'string',
|
|
965
|
-
},
|
|
966
|
-
is_bridge_error: {
|
|
967
|
-
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
968
|
-
type: 'boolean',
|
|
969
|
-
},
|
|
970
|
-
is_connected_account_error: {
|
|
971
|
-
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
972
|
-
type: 'boolean',
|
|
973
|
-
},
|
|
974
|
-
message: {
|
|
975
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
976
|
-
type: 'string',
|
|
977
|
-
},
|
|
978
|
-
},
|
|
979
|
-
required: ['created_at', 'message', 'error_code'],
|
|
980
|
-
type: 'object',
|
|
981
|
-
'x-resource-type': 'connected_account',
|
|
982
|
-
},
|
|
983
994
|
],
|
|
984
995
|
},
|
|
985
996
|
type: 'array',
|
|
@@ -1329,29 +1340,6 @@ const openapi = {
|
|
|
1329
1340
|
required: ['message', 'warning_code'],
|
|
1330
1341
|
type: 'object',
|
|
1331
1342
|
},
|
|
1332
|
-
{
|
|
1333
|
-
deprecated: true,
|
|
1334
|
-
description: 'Duplicate access code detected.',
|
|
1335
|
-
properties: {
|
|
1336
|
-
created_at: {
|
|
1337
|
-
description: 'Date and time at which Seam created the warning.',
|
|
1338
|
-
format: 'date-time',
|
|
1339
|
-
type: 'string',
|
|
1340
|
-
},
|
|
1341
|
-
message: {
|
|
1342
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1343
|
-
type: 'string',
|
|
1344
|
-
},
|
|
1345
|
-
warning_code: {
|
|
1346
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1347
|
-
enum: ['schlage_detected_duplicate'],
|
|
1348
|
-
type: 'string',
|
|
1349
|
-
},
|
|
1350
|
-
},
|
|
1351
|
-
required: ['message', 'warning_code'],
|
|
1352
|
-
type: 'object',
|
|
1353
|
-
'x-deprecated': 'Use `duplicate_code_on_device` error instead.',
|
|
1354
|
-
},
|
|
1355
1343
|
{
|
|
1356
1344
|
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.",
|
|
1357
1345
|
properties: {
|
|
@@ -11702,6 +11690,45 @@ const openapi = {
|
|
|
11702
11690
|
'x-resource-type': 'connected_account',
|
|
11703
11691
|
'x-variant-group-key': 'locks',
|
|
11704
11692
|
},
|
|
11693
|
+
{
|
|
11694
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
11695
|
+
properties: {
|
|
11696
|
+
created_at: {
|
|
11697
|
+
description: 'Date and time at which Seam created the error.',
|
|
11698
|
+
format: 'date-time',
|
|
11699
|
+
type: 'string',
|
|
11700
|
+
},
|
|
11701
|
+
error_code: {
|
|
11702
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11703
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
11704
|
+
type: 'string',
|
|
11705
|
+
},
|
|
11706
|
+
is_connected_account_error: {
|
|
11707
|
+
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
11708
|
+
enum: [true],
|
|
11709
|
+
type: 'boolean',
|
|
11710
|
+
},
|
|
11711
|
+
is_device_error: {
|
|
11712
|
+
description: 'Indicates that the error is not a device error.',
|
|
11713
|
+
enum: [false],
|
|
11714
|
+
type: 'boolean',
|
|
11715
|
+
},
|
|
11716
|
+
message: {
|
|
11717
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
11718
|
+
type: 'string',
|
|
11719
|
+
},
|
|
11720
|
+
},
|
|
11721
|
+
required: [
|
|
11722
|
+
'message',
|
|
11723
|
+
'is_device_error',
|
|
11724
|
+
'created_at',
|
|
11725
|
+
'error_code',
|
|
11726
|
+
'is_connected_account_error',
|
|
11727
|
+
],
|
|
11728
|
+
type: 'object',
|
|
11729
|
+
'x-resource-type': 'connected_account',
|
|
11730
|
+
'x-variant-group-key': 'locks',
|
|
11731
|
+
},
|
|
11705
11732
|
{
|
|
11706
11733
|
deprecated: true,
|
|
11707
11734
|
description: 'Indicates that the device is offline.',
|
|
@@ -11966,6 +11993,7 @@ const openapi = {
|
|
|
11966
11993
|
type: 'object',
|
|
11967
11994
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
11968
11995
|
'x-resource-type': 'device',
|
|
11996
|
+
'x-variant-group-key': 'locks',
|
|
11969
11997
|
},
|
|
11970
11998
|
{
|
|
11971
11999
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -12097,6 +12125,7 @@ const openapi = {
|
|
|
12097
12125
|
type: 'object',
|
|
12098
12126
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
12099
12127
|
'x-resource-type': 'device',
|
|
12128
|
+
'x-variant-group-key': 'locks',
|
|
12100
12129
|
},
|
|
12101
12130
|
{
|
|
12102
12131
|
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).',
|
|
@@ -12128,36 +12157,6 @@ const openapi = {
|
|
|
12128
12157
|
type: 'object',
|
|
12129
12158
|
'x-resource-type': 'connected_account',
|
|
12130
12159
|
},
|
|
12131
|
-
{
|
|
12132
|
-
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
12133
|
-
properties: {
|
|
12134
|
-
created_at: {
|
|
12135
|
-
description: 'Date and time at which Seam created the error.',
|
|
12136
|
-
format: 'date-time',
|
|
12137
|
-
type: 'string',
|
|
12138
|
-
},
|
|
12139
|
-
error_code: {
|
|
12140
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
12141
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
12142
|
-
type: 'string',
|
|
12143
|
-
},
|
|
12144
|
-
is_bridge_error: {
|
|
12145
|
-
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
12146
|
-
type: 'boolean',
|
|
12147
|
-
},
|
|
12148
|
-
is_connected_account_error: {
|
|
12149
|
-
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
12150
|
-
type: 'boolean',
|
|
12151
|
-
},
|
|
12152
|
-
message: {
|
|
12153
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
12154
|
-
type: 'string',
|
|
12155
|
-
},
|
|
12156
|
-
},
|
|
12157
|
-
required: ['created_at', 'message', 'error_code'],
|
|
12158
|
-
type: 'object',
|
|
12159
|
-
'x-resource-type': 'connected_account',
|
|
12160
|
-
},
|
|
12161
12160
|
],
|
|
12162
12161
|
},
|
|
12163
12162
|
type: 'array',
|
|
@@ -14693,6 +14692,7 @@ const openapi = {
|
|
|
14693
14692
|
required: ['message', 'created_at', 'warning_code'],
|
|
14694
14693
|
type: 'object',
|
|
14695
14694
|
'x-deprecated': 'Use `hub_disconnected` device error instead.',
|
|
14695
|
+
'x-variant-group-key': 'locks',
|
|
14696
14696
|
},
|
|
14697
14697
|
{
|
|
14698
14698
|
description: 'Indicates that a third-party integration has been detected.',
|
|
@@ -14738,7 +14738,7 @@ const openapi = {
|
|
|
14738
14738
|
'x-variant-group-key': 'locks',
|
|
14739
14739
|
},
|
|
14740
14740
|
{
|
|
14741
|
-
description: '
|
|
14741
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
14742
14742
|
properties: {
|
|
14743
14743
|
created_at: {
|
|
14744
14744
|
description: 'Date and time at which Seam created the warning.',
|
|
@@ -14757,6 +14757,7 @@ const openapi = {
|
|
|
14757
14757
|
},
|
|
14758
14758
|
required: ['message', 'created_at', 'warning_code'],
|
|
14759
14759
|
type: 'object',
|
|
14760
|
+
'x-variant-group-key': 'locks',
|
|
14760
14761
|
},
|
|
14761
14762
|
{
|
|
14762
14763
|
description: 'Indicates that the device is in power saving mode and may have limited functionality.',
|
|
@@ -14929,6 +14930,7 @@ const openapi = {
|
|
|
14929
14930
|
},
|
|
14930
14931
|
required: ['message', 'created_at', 'warning_code'],
|
|
14931
14932
|
type: 'object',
|
|
14933
|
+
'x-variant-group-key': 'locks',
|
|
14932
14934
|
},
|
|
14933
14935
|
{
|
|
14934
14936
|
description: 'Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.',
|
|
@@ -14994,6 +14996,7 @@ const openapi = {
|
|
|
14994
14996
|
},
|
|
14995
14997
|
required: ['message', 'created_at', 'warning_code'],
|
|
14996
14998
|
type: 'object',
|
|
14999
|
+
'x-variant-group-key': 'locks',
|
|
14997
15000
|
},
|
|
14998
15001
|
{
|
|
14999
15002
|
description: 'Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes.',
|
|
@@ -15015,6 +15018,7 @@ const openapi = {
|
|
|
15015
15018
|
},
|
|
15016
15019
|
required: ['message', 'created_at', 'warning_code'],
|
|
15017
15020
|
type: 'object',
|
|
15021
|
+
'x-variant-group-key': 'locks',
|
|
15018
15022
|
},
|
|
15019
15023
|
{
|
|
15020
15024
|
description: 'Indicates that the 2N device does not have a time zone configured. Configure a time zone on the device to enable access codes.',
|
|
@@ -15036,6 +15040,7 @@ const openapi = {
|
|
|
15036
15040
|
},
|
|
15037
15041
|
required: ['message', 'created_at', 'warning_code'],
|
|
15038
15042
|
type: 'object',
|
|
15043
|
+
'x-variant-group-key': 'locks',
|
|
15039
15044
|
},
|
|
15040
15045
|
{
|
|
15041
15046
|
description: 'Indicates that a hub or relay must be connected to unlock additional capabilities such as remote unlock.',
|
|
@@ -26354,6 +26359,45 @@ const openapi = {
|
|
|
26354
26359
|
'x-resource-type': 'connected_account',
|
|
26355
26360
|
'x-variant-group-key': 'locks',
|
|
26356
26361
|
},
|
|
26362
|
+
{
|
|
26363
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
26364
|
+
properties: {
|
|
26365
|
+
created_at: {
|
|
26366
|
+
description: 'Date and time at which Seam created the error.',
|
|
26367
|
+
format: 'date-time',
|
|
26368
|
+
type: 'string',
|
|
26369
|
+
},
|
|
26370
|
+
error_code: {
|
|
26371
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26372
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
26373
|
+
type: 'string',
|
|
26374
|
+
},
|
|
26375
|
+
is_connected_account_error: {
|
|
26376
|
+
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
26377
|
+
enum: [true],
|
|
26378
|
+
type: 'boolean',
|
|
26379
|
+
},
|
|
26380
|
+
is_device_error: {
|
|
26381
|
+
description: 'Indicates that the error is not a device error.',
|
|
26382
|
+
enum: [false],
|
|
26383
|
+
type: 'boolean',
|
|
26384
|
+
},
|
|
26385
|
+
message: {
|
|
26386
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26387
|
+
type: 'string',
|
|
26388
|
+
},
|
|
26389
|
+
},
|
|
26390
|
+
required: [
|
|
26391
|
+
'message',
|
|
26392
|
+
'is_device_error',
|
|
26393
|
+
'created_at',
|
|
26394
|
+
'error_code',
|
|
26395
|
+
'is_connected_account_error',
|
|
26396
|
+
],
|
|
26397
|
+
type: 'object',
|
|
26398
|
+
'x-resource-type': 'connected_account',
|
|
26399
|
+
'x-variant-group-key': 'locks',
|
|
26400
|
+
},
|
|
26357
26401
|
{
|
|
26358
26402
|
deprecated: true,
|
|
26359
26403
|
description: 'Indicates that the device is offline.',
|
|
@@ -26618,6 +26662,7 @@ const openapi = {
|
|
|
26618
26662
|
type: 'object',
|
|
26619
26663
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
26620
26664
|
'x-resource-type': 'device',
|
|
26665
|
+
'x-variant-group-key': 'locks',
|
|
26621
26666
|
},
|
|
26622
26667
|
{
|
|
26623
26668
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -26749,6 +26794,7 @@ const openapi = {
|
|
|
26749
26794
|
type: 'object',
|
|
26750
26795
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
26751
26796
|
'x-resource-type': 'device',
|
|
26797
|
+
'x-variant-group-key': 'locks',
|
|
26752
26798
|
},
|
|
26753
26799
|
{
|
|
26754
26800
|
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).',
|
|
@@ -26780,36 +26826,6 @@ const openapi = {
|
|
|
26780
26826
|
type: 'object',
|
|
26781
26827
|
'x-resource-type': 'connected_account',
|
|
26782
26828
|
},
|
|
26783
|
-
{
|
|
26784
|
-
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
26785
|
-
properties: {
|
|
26786
|
-
created_at: {
|
|
26787
|
-
description: 'Date and time at which Seam created the error.',
|
|
26788
|
-
format: 'date-time',
|
|
26789
|
-
type: 'string',
|
|
26790
|
-
},
|
|
26791
|
-
error_code: {
|
|
26792
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26793
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
26794
|
-
type: 'string',
|
|
26795
|
-
},
|
|
26796
|
-
is_bridge_error: {
|
|
26797
|
-
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
26798
|
-
type: 'boolean',
|
|
26799
|
-
},
|
|
26800
|
-
is_connected_account_error: {
|
|
26801
|
-
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
26802
|
-
type: 'boolean',
|
|
26803
|
-
},
|
|
26804
|
-
message: {
|
|
26805
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26806
|
-
type: 'string',
|
|
26807
|
-
},
|
|
26808
|
-
},
|
|
26809
|
-
required: ['created_at', 'message', 'error_code'],
|
|
26810
|
-
type: 'object',
|
|
26811
|
-
'x-resource-type': 'connected_account',
|
|
26812
|
-
},
|
|
26813
26829
|
],
|
|
26814
26830
|
},
|
|
26815
26831
|
type: 'array',
|
|
@@ -26876,29 +26892,6 @@ const openapi = {
|
|
|
26876
26892
|
required: ['message', 'warning_code'],
|
|
26877
26893
|
type: 'object',
|
|
26878
26894
|
},
|
|
26879
|
-
{
|
|
26880
|
-
deprecated: true,
|
|
26881
|
-
description: 'Duplicate access code detected.',
|
|
26882
|
-
properties: {
|
|
26883
|
-
created_at: {
|
|
26884
|
-
description: 'Date and time at which Seam created the warning.',
|
|
26885
|
-
format: 'date-time',
|
|
26886
|
-
type: 'string',
|
|
26887
|
-
},
|
|
26888
|
-
message: {
|
|
26889
|
-
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26890
|
-
type: 'string',
|
|
26891
|
-
},
|
|
26892
|
-
warning_code: {
|
|
26893
|
-
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26894
|
-
enum: ['schlage_detected_duplicate'],
|
|
26895
|
-
type: 'string',
|
|
26896
|
-
},
|
|
26897
|
-
},
|
|
26898
|
-
required: ['message', 'warning_code'],
|
|
26899
|
-
type: 'object',
|
|
26900
|
-
'x-deprecated': 'Use `duplicate_code_on_device` error instead.',
|
|
26901
|
-
},
|
|
26902
26895
|
{
|
|
26903
26896
|
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.",
|
|
26904
26897
|
properties: {
|
|
@@ -29111,6 +29104,45 @@ const openapi = {
|
|
|
29111
29104
|
'x-resource-type': 'connected_account',
|
|
29112
29105
|
'x-variant-group-key': 'locks',
|
|
29113
29106
|
},
|
|
29107
|
+
{
|
|
29108
|
+
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
29109
|
+
properties: {
|
|
29110
|
+
created_at: {
|
|
29111
|
+
description: 'Date and time at which Seam created the error.',
|
|
29112
|
+
format: 'date-time',
|
|
29113
|
+
type: 'string',
|
|
29114
|
+
},
|
|
29115
|
+
error_code: {
|
|
29116
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29117
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
29118
|
+
type: 'string',
|
|
29119
|
+
},
|
|
29120
|
+
is_connected_account_error: {
|
|
29121
|
+
description: 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
29122
|
+
enum: [true],
|
|
29123
|
+
type: 'boolean',
|
|
29124
|
+
},
|
|
29125
|
+
is_device_error: {
|
|
29126
|
+
description: 'Indicates that the error is not a device error.',
|
|
29127
|
+
enum: [false],
|
|
29128
|
+
type: 'boolean',
|
|
29129
|
+
},
|
|
29130
|
+
message: {
|
|
29131
|
+
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29132
|
+
type: 'string',
|
|
29133
|
+
},
|
|
29134
|
+
},
|
|
29135
|
+
required: [
|
|
29136
|
+
'message',
|
|
29137
|
+
'is_device_error',
|
|
29138
|
+
'created_at',
|
|
29139
|
+
'error_code',
|
|
29140
|
+
'is_connected_account_error',
|
|
29141
|
+
],
|
|
29142
|
+
type: 'object',
|
|
29143
|
+
'x-resource-type': 'connected_account',
|
|
29144
|
+
'x-variant-group-key': 'locks',
|
|
29145
|
+
},
|
|
29114
29146
|
{
|
|
29115
29147
|
deprecated: true,
|
|
29116
29148
|
description: 'Indicates that the device is offline.',
|
|
@@ -29375,6 +29407,7 @@ const openapi = {
|
|
|
29375
29407
|
type: 'object',
|
|
29376
29408
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29377
29409
|
'x-resource-type': 'device',
|
|
29410
|
+
'x-variant-group-key': 'locks',
|
|
29378
29411
|
},
|
|
29379
29412
|
{
|
|
29380
29413
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -29506,6 +29539,7 @@ const openapi = {
|
|
|
29506
29539
|
type: 'object',
|
|
29507
29540
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29508
29541
|
'x-resource-type': 'device',
|
|
29542
|
+
'x-variant-group-key': 'locks',
|
|
29509
29543
|
},
|
|
29510
29544
|
{
|
|
29511
29545
|
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).',
|
|
@@ -29537,36 +29571,6 @@ const openapi = {
|
|
|
29537
29571
|
type: 'object',
|
|
29538
29572
|
'x-resource-type': 'connected_account',
|
|
29539
29573
|
},
|
|
29540
|
-
{
|
|
29541
|
-
description: 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
29542
|
-
properties: {
|
|
29543
|
-
created_at: {
|
|
29544
|
-
description: 'Date and time at which Seam created the error.',
|
|
29545
|
-
format: 'date-time',
|
|
29546
|
-
type: 'string',
|
|
29547
|
-
},
|
|
29548
|
-
error_code: {
|
|
29549
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29550
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
29551
|
-
type: 'string',
|
|
29552
|
-
},
|
|
29553
|
-
is_bridge_error: {
|
|
29554
|
-
description: 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
29555
|
-
type: 'boolean',
|
|
29556
|
-
},
|
|
29557
|
-
is_connected_account_error: {
|
|
29558
|
-
description: 'Indicates whether the error is related specifically to the connected account.',
|
|
29559
|
-
type: 'boolean',
|
|
29560
|
-
},
|
|
29561
|
-
message: {
|
|
29562
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29563
|
-
type: 'string',
|
|
29564
|
-
},
|
|
29565
|
-
},
|
|
29566
|
-
required: ['created_at', 'message', 'error_code'],
|
|
29567
|
-
type: 'object',
|
|
29568
|
-
'x-resource-type': 'connected_account',
|
|
29569
|
-
},
|
|
29570
29574
|
],
|
|
29571
29575
|
},
|
|
29572
29576
|
type: 'array',
|
|
@@ -29824,6 +29828,7 @@ const openapi = {
|
|
|
29824
29828
|
required: ['message', 'created_at', 'warning_code'],
|
|
29825
29829
|
type: 'object',
|
|
29826
29830
|
'x-deprecated': 'Use `hub_disconnected` device error instead.',
|
|
29831
|
+
'x-variant-group-key': 'locks',
|
|
29827
29832
|
},
|
|
29828
29833
|
{
|
|
29829
29834
|
description: 'Indicates that a third-party integration has been detected.',
|
|
@@ -29869,7 +29874,7 @@ const openapi = {
|
|
|
29869
29874
|
'x-variant-group-key': 'locks',
|
|
29870
29875
|
},
|
|
29871
29876
|
{
|
|
29872
|
-
description: '
|
|
29877
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
29873
29878
|
properties: {
|
|
29874
29879
|
created_at: {
|
|
29875
29880
|
description: 'Date and time at which Seam created the warning.',
|
|
@@ -29888,6 +29893,7 @@ const openapi = {
|
|
|
29888
29893
|
},
|
|
29889
29894
|
required: ['message', 'created_at', 'warning_code'],
|
|
29890
29895
|
type: 'object',
|
|
29896
|
+
'x-variant-group-key': 'locks',
|
|
29891
29897
|
},
|
|
29892
29898
|
{
|
|
29893
29899
|
description: 'Indicates that the device is in power saving mode and may have limited functionality.',
|
|
@@ -30060,6 +30066,7 @@ const openapi = {
|
|
|
30060
30066
|
},
|
|
30061
30067
|
required: ['message', 'created_at', 'warning_code'],
|
|
30062
30068
|
type: 'object',
|
|
30069
|
+
'x-variant-group-key': 'locks',
|
|
30063
30070
|
},
|
|
30064
30071
|
{
|
|
30065
30072
|
description: 'Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.',
|
|
@@ -30125,6 +30132,7 @@ const openapi = {
|
|
|
30125
30132
|
},
|
|
30126
30133
|
required: ['message', 'created_at', 'warning_code'],
|
|
30127
30134
|
type: 'object',
|
|
30135
|
+
'x-variant-group-key': 'locks',
|
|
30128
30136
|
},
|
|
30129
30137
|
{
|
|
30130
30138
|
description: 'Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes.',
|
|
@@ -30146,6 +30154,7 @@ const openapi = {
|
|
|
30146
30154
|
},
|
|
30147
30155
|
required: ['message', 'created_at', 'warning_code'],
|
|
30148
30156
|
type: 'object',
|
|
30157
|
+
'x-variant-group-key': 'locks',
|
|
30149
30158
|
},
|
|
30150
30159
|
{
|
|
30151
30160
|
description: 'Indicates that the 2N device does not have a time zone configured. Configure a time zone on the device to enable access codes.',
|
|
@@ -30167,6 +30176,7 @@ const openapi = {
|
|
|
30167
30176
|
},
|
|
30168
30177
|
required: ['message', 'created_at', 'warning_code'],
|
|
30169
30178
|
type: 'object',
|
|
30179
|
+
'x-variant-group-key': 'locks',
|
|
30170
30180
|
},
|
|
30171
30181
|
{
|
|
30172
30182
|
description: 'Indicates that a hub or relay must be connected to unlock additional capabilities such as remote unlock.',
|