@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
|
@@ -617,6 +617,51 @@ const openapi: OpenAPISpec = {
|
|
|
617
617
|
'x-resource-type': 'connected_account',
|
|
618
618
|
'x-variant-group-key': 'locks',
|
|
619
619
|
},
|
|
620
|
+
{
|
|
621
|
+
description:
|
|
622
|
+
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
623
|
+
properties: {
|
|
624
|
+
created_at: {
|
|
625
|
+
description:
|
|
626
|
+
'Date and time at which Seam created the error.',
|
|
627
|
+
format: 'date-time',
|
|
628
|
+
type: 'string',
|
|
629
|
+
},
|
|
630
|
+
error_code: {
|
|
631
|
+
description:
|
|
632
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
633
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
634
|
+
type: 'string',
|
|
635
|
+
},
|
|
636
|
+
is_connected_account_error: {
|
|
637
|
+
description:
|
|
638
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
639
|
+
enum: [true],
|
|
640
|
+
type: 'boolean',
|
|
641
|
+
},
|
|
642
|
+
is_device_error: {
|
|
643
|
+
description:
|
|
644
|
+
'Indicates that the error is not a device error.',
|
|
645
|
+
enum: [false],
|
|
646
|
+
type: 'boolean',
|
|
647
|
+
},
|
|
648
|
+
message: {
|
|
649
|
+
description:
|
|
650
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
651
|
+
type: 'string',
|
|
652
|
+
},
|
|
653
|
+
},
|
|
654
|
+
required: [
|
|
655
|
+
'message',
|
|
656
|
+
'is_device_error',
|
|
657
|
+
'created_at',
|
|
658
|
+
'error_code',
|
|
659
|
+
'is_connected_account_error',
|
|
660
|
+
],
|
|
661
|
+
type: 'object',
|
|
662
|
+
'x-resource-type': 'connected_account',
|
|
663
|
+
'x-variant-group-key': 'locks',
|
|
664
|
+
},
|
|
620
665
|
{
|
|
621
666
|
deprecated: true,
|
|
622
667
|
description: 'Indicates that the device is offline.',
|
|
@@ -917,6 +962,7 @@ const openapi: OpenAPISpec = {
|
|
|
917
962
|
type: 'object',
|
|
918
963
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
919
964
|
'x-resource-type': 'device',
|
|
965
|
+
'x-variant-group-key': 'locks',
|
|
920
966
|
},
|
|
921
967
|
{
|
|
922
968
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -1066,6 +1112,7 @@ const openapi: OpenAPISpec = {
|
|
|
1066
1112
|
type: 'object',
|
|
1067
1113
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
1068
1114
|
'x-resource-type': 'device',
|
|
1115
|
+
'x-variant-group-key': 'locks',
|
|
1069
1116
|
},
|
|
1070
1117
|
{
|
|
1071
1118
|
description:
|
|
@@ -1103,42 +1150,6 @@ const openapi: OpenAPISpec = {
|
|
|
1103
1150
|
type: 'object',
|
|
1104
1151
|
'x-resource-type': 'connected_account',
|
|
1105
1152
|
},
|
|
1106
|
-
{
|
|
1107
|
-
description:
|
|
1108
|
-
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
1109
|
-
properties: {
|
|
1110
|
-
created_at: {
|
|
1111
|
-
description:
|
|
1112
|
-
'Date and time at which Seam created the error.',
|
|
1113
|
-
format: 'date-time',
|
|
1114
|
-
type: 'string',
|
|
1115
|
-
},
|
|
1116
|
-
error_code: {
|
|
1117
|
-
description:
|
|
1118
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
1119
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
1120
|
-
type: 'string',
|
|
1121
|
-
},
|
|
1122
|
-
is_bridge_error: {
|
|
1123
|
-
description:
|
|
1124
|
-
'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
1125
|
-
type: 'boolean',
|
|
1126
|
-
},
|
|
1127
|
-
is_connected_account_error: {
|
|
1128
|
-
description:
|
|
1129
|
-
'Indicates whether the error is related specifically to the connected account.',
|
|
1130
|
-
type: 'boolean',
|
|
1131
|
-
},
|
|
1132
|
-
message: {
|
|
1133
|
-
description:
|
|
1134
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1135
|
-
type: 'string',
|
|
1136
|
-
},
|
|
1137
|
-
},
|
|
1138
|
-
required: ['created_at', 'message', 'error_code'],
|
|
1139
|
-
type: 'object',
|
|
1140
|
-
'x-resource-type': 'connected_account',
|
|
1141
|
-
},
|
|
1142
1153
|
],
|
|
1143
1154
|
},
|
|
1144
1155
|
type: 'array',
|
|
@@ -1526,33 +1537,6 @@ const openapi: OpenAPISpec = {
|
|
|
1526
1537
|
required: ['message', 'warning_code'],
|
|
1527
1538
|
type: 'object',
|
|
1528
1539
|
},
|
|
1529
|
-
{
|
|
1530
|
-
deprecated: true,
|
|
1531
|
-
description: 'Duplicate access code detected.',
|
|
1532
|
-
properties: {
|
|
1533
|
-
created_at: {
|
|
1534
|
-
description:
|
|
1535
|
-
'Date and time at which Seam created the warning.',
|
|
1536
|
-
format: 'date-time',
|
|
1537
|
-
type: 'string',
|
|
1538
|
-
},
|
|
1539
|
-
message: {
|
|
1540
|
-
description:
|
|
1541
|
-
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1542
|
-
type: 'string',
|
|
1543
|
-
},
|
|
1544
|
-
warning_code: {
|
|
1545
|
-
description:
|
|
1546
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1547
|
-
enum: ['schlage_detected_duplicate'],
|
|
1548
|
-
type: 'string',
|
|
1549
|
-
},
|
|
1550
|
-
},
|
|
1551
|
-
required: ['message', 'warning_code'],
|
|
1552
|
-
type: 'object',
|
|
1553
|
-
'x-deprecated':
|
|
1554
|
-
'Use `duplicate_code_on_device` error instead.',
|
|
1555
|
-
},
|
|
1556
1540
|
{
|
|
1557
1541
|
description:
|
|
1558
1542
|
"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.",
|
|
@@ -13223,6 +13207,51 @@ const openapi: OpenAPISpec = {
|
|
|
13223
13207
|
'x-resource-type': 'connected_account',
|
|
13224
13208
|
'x-variant-group-key': 'locks',
|
|
13225
13209
|
},
|
|
13210
|
+
{
|
|
13211
|
+
description:
|
|
13212
|
+
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
13213
|
+
properties: {
|
|
13214
|
+
created_at: {
|
|
13215
|
+
description:
|
|
13216
|
+
'Date and time at which Seam created the error.',
|
|
13217
|
+
format: 'date-time',
|
|
13218
|
+
type: 'string',
|
|
13219
|
+
},
|
|
13220
|
+
error_code: {
|
|
13221
|
+
description:
|
|
13222
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13223
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
13224
|
+
type: 'string',
|
|
13225
|
+
},
|
|
13226
|
+
is_connected_account_error: {
|
|
13227
|
+
description:
|
|
13228
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
13229
|
+
enum: [true],
|
|
13230
|
+
type: 'boolean',
|
|
13231
|
+
},
|
|
13232
|
+
is_device_error: {
|
|
13233
|
+
description:
|
|
13234
|
+
'Indicates that the error is not a device error.',
|
|
13235
|
+
enum: [false],
|
|
13236
|
+
type: 'boolean',
|
|
13237
|
+
},
|
|
13238
|
+
message: {
|
|
13239
|
+
description:
|
|
13240
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13241
|
+
type: 'string',
|
|
13242
|
+
},
|
|
13243
|
+
},
|
|
13244
|
+
required: [
|
|
13245
|
+
'message',
|
|
13246
|
+
'is_device_error',
|
|
13247
|
+
'created_at',
|
|
13248
|
+
'error_code',
|
|
13249
|
+
'is_connected_account_error',
|
|
13250
|
+
],
|
|
13251
|
+
type: 'object',
|
|
13252
|
+
'x-resource-type': 'connected_account',
|
|
13253
|
+
'x-variant-group-key': 'locks',
|
|
13254
|
+
},
|
|
13226
13255
|
{
|
|
13227
13256
|
deprecated: true,
|
|
13228
13257
|
description: 'Indicates that the device is offline.',
|
|
@@ -13523,6 +13552,7 @@ const openapi: OpenAPISpec = {
|
|
|
13523
13552
|
type: 'object',
|
|
13524
13553
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13525
13554
|
'x-resource-type': 'device',
|
|
13555
|
+
'x-variant-group-key': 'locks',
|
|
13526
13556
|
},
|
|
13527
13557
|
{
|
|
13528
13558
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -13672,6 +13702,7 @@ const openapi: OpenAPISpec = {
|
|
|
13672
13702
|
type: 'object',
|
|
13673
13703
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13674
13704
|
'x-resource-type': 'device',
|
|
13705
|
+
'x-variant-group-key': 'locks',
|
|
13675
13706
|
},
|
|
13676
13707
|
{
|
|
13677
13708
|
description:
|
|
@@ -13709,42 +13740,6 @@ const openapi: OpenAPISpec = {
|
|
|
13709
13740
|
type: 'object',
|
|
13710
13741
|
'x-resource-type': 'connected_account',
|
|
13711
13742
|
},
|
|
13712
|
-
{
|
|
13713
|
-
description:
|
|
13714
|
-
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
13715
|
-
properties: {
|
|
13716
|
-
created_at: {
|
|
13717
|
-
description:
|
|
13718
|
-
'Date and time at which Seam created the error.',
|
|
13719
|
-
format: 'date-time',
|
|
13720
|
-
type: 'string',
|
|
13721
|
-
},
|
|
13722
|
-
error_code: {
|
|
13723
|
-
description:
|
|
13724
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13725
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
13726
|
-
type: 'string',
|
|
13727
|
-
},
|
|
13728
|
-
is_bridge_error: {
|
|
13729
|
-
description:
|
|
13730
|
-
'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
13731
|
-
type: 'boolean',
|
|
13732
|
-
},
|
|
13733
|
-
is_connected_account_error: {
|
|
13734
|
-
description:
|
|
13735
|
-
'Indicates whether the error is related specifically to the connected account.',
|
|
13736
|
-
type: 'boolean',
|
|
13737
|
-
},
|
|
13738
|
-
message: {
|
|
13739
|
-
description:
|
|
13740
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13741
|
-
type: 'string',
|
|
13742
|
-
},
|
|
13743
|
-
},
|
|
13744
|
-
required: ['created_at', 'message', 'error_code'],
|
|
13745
|
-
type: 'object',
|
|
13746
|
-
'x-resource-type': 'connected_account',
|
|
13747
|
-
},
|
|
13748
13743
|
],
|
|
13749
13744
|
},
|
|
13750
13745
|
type: 'array',
|
|
@@ -16577,6 +16572,7 @@ const openapi: OpenAPISpec = {
|
|
|
16577
16572
|
type: 'object',
|
|
16578
16573
|
'x-deprecated':
|
|
16579
16574
|
'Use `hub_disconnected` device error instead.',
|
|
16575
|
+
'x-variant-group-key': 'locks',
|
|
16580
16576
|
},
|
|
16581
16577
|
{
|
|
16582
16578
|
description:
|
|
@@ -16630,8 +16626,7 @@ const openapi: OpenAPISpec = {
|
|
|
16630
16626
|
'x-variant-group-key': 'locks',
|
|
16631
16627
|
},
|
|
16632
16628
|
{
|
|
16633
|
-
description:
|
|
16634
|
-
'\n Indicates that the gateway signal is weak.\n ',
|
|
16629
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
16635
16630
|
properties: {
|
|
16636
16631
|
created_at: {
|
|
16637
16632
|
description:
|
|
@@ -16653,6 +16648,7 @@ const openapi: OpenAPISpec = {
|
|
|
16653
16648
|
},
|
|
16654
16649
|
required: ['message', 'created_at', 'warning_code'],
|
|
16655
16650
|
type: 'object',
|
|
16651
|
+
'x-variant-group-key': 'locks',
|
|
16656
16652
|
},
|
|
16657
16653
|
{
|
|
16658
16654
|
description:
|
|
@@ -16857,6 +16853,7 @@ const openapi: OpenAPISpec = {
|
|
|
16857
16853
|
},
|
|
16858
16854
|
required: ['message', 'created_at', 'warning_code'],
|
|
16859
16855
|
type: 'object',
|
|
16856
|
+
'x-variant-group-key': 'locks',
|
|
16860
16857
|
},
|
|
16861
16858
|
{
|
|
16862
16859
|
description:
|
|
@@ -16934,6 +16931,7 @@ const openapi: OpenAPISpec = {
|
|
|
16934
16931
|
},
|
|
16935
16932
|
required: ['message', 'created_at', 'warning_code'],
|
|
16936
16933
|
type: 'object',
|
|
16934
|
+
'x-variant-group-key': 'locks',
|
|
16937
16935
|
},
|
|
16938
16936
|
{
|
|
16939
16937
|
description:
|
|
@@ -16959,6 +16957,7 @@ const openapi: OpenAPISpec = {
|
|
|
16959
16957
|
},
|
|
16960
16958
|
required: ['message', 'created_at', 'warning_code'],
|
|
16961
16959
|
type: 'object',
|
|
16960
|
+
'x-variant-group-key': 'locks',
|
|
16962
16961
|
},
|
|
16963
16962
|
{
|
|
16964
16963
|
description:
|
|
@@ -16984,6 +16983,7 @@ const openapi: OpenAPISpec = {
|
|
|
16984
16983
|
},
|
|
16985
16984
|
required: ['message', 'created_at', 'warning_code'],
|
|
16986
16985
|
type: 'object',
|
|
16986
|
+
'x-variant-group-key': 'locks',
|
|
16987
16987
|
},
|
|
16988
16988
|
{
|
|
16989
16989
|
description:
|
|
@@ -29342,6 +29342,51 @@ const openapi: OpenAPISpec = {
|
|
|
29342
29342
|
'x-resource-type': 'connected_account',
|
|
29343
29343
|
'x-variant-group-key': 'locks',
|
|
29344
29344
|
},
|
|
29345
|
+
{
|
|
29346
|
+
description:
|
|
29347
|
+
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
29348
|
+
properties: {
|
|
29349
|
+
created_at: {
|
|
29350
|
+
description:
|
|
29351
|
+
'Date and time at which Seam created the error.',
|
|
29352
|
+
format: 'date-time',
|
|
29353
|
+
type: 'string',
|
|
29354
|
+
},
|
|
29355
|
+
error_code: {
|
|
29356
|
+
description:
|
|
29357
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29358
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
29359
|
+
type: 'string',
|
|
29360
|
+
},
|
|
29361
|
+
is_connected_account_error: {
|
|
29362
|
+
description:
|
|
29363
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
29364
|
+
enum: [true],
|
|
29365
|
+
type: 'boolean',
|
|
29366
|
+
},
|
|
29367
|
+
is_device_error: {
|
|
29368
|
+
description:
|
|
29369
|
+
'Indicates that the error is not a device error.',
|
|
29370
|
+
enum: [false],
|
|
29371
|
+
type: 'boolean',
|
|
29372
|
+
},
|
|
29373
|
+
message: {
|
|
29374
|
+
description:
|
|
29375
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29376
|
+
type: 'string',
|
|
29377
|
+
},
|
|
29378
|
+
},
|
|
29379
|
+
required: [
|
|
29380
|
+
'message',
|
|
29381
|
+
'is_device_error',
|
|
29382
|
+
'created_at',
|
|
29383
|
+
'error_code',
|
|
29384
|
+
'is_connected_account_error',
|
|
29385
|
+
],
|
|
29386
|
+
type: 'object',
|
|
29387
|
+
'x-resource-type': 'connected_account',
|
|
29388
|
+
'x-variant-group-key': 'locks',
|
|
29389
|
+
},
|
|
29345
29390
|
{
|
|
29346
29391
|
deprecated: true,
|
|
29347
29392
|
description: 'Indicates that the device is offline.',
|
|
@@ -29642,6 +29687,7 @@ const openapi: OpenAPISpec = {
|
|
|
29642
29687
|
type: 'object',
|
|
29643
29688
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29644
29689
|
'x-resource-type': 'device',
|
|
29690
|
+
'x-variant-group-key': 'locks',
|
|
29645
29691
|
},
|
|
29646
29692
|
{
|
|
29647
29693
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -29791,6 +29837,7 @@ const openapi: OpenAPISpec = {
|
|
|
29791
29837
|
type: 'object',
|
|
29792
29838
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29793
29839
|
'x-resource-type': 'device',
|
|
29840
|
+
'x-variant-group-key': 'locks',
|
|
29794
29841
|
},
|
|
29795
29842
|
{
|
|
29796
29843
|
description:
|
|
@@ -29828,42 +29875,6 @@ const openapi: OpenAPISpec = {
|
|
|
29828
29875
|
type: 'object',
|
|
29829
29876
|
'x-resource-type': 'connected_account',
|
|
29830
29877
|
},
|
|
29831
|
-
{
|
|
29832
|
-
description:
|
|
29833
|
-
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
29834
|
-
properties: {
|
|
29835
|
-
created_at: {
|
|
29836
|
-
description:
|
|
29837
|
-
'Date and time at which Seam created the error.',
|
|
29838
|
-
format: 'date-time',
|
|
29839
|
-
type: 'string',
|
|
29840
|
-
},
|
|
29841
|
-
error_code: {
|
|
29842
|
-
description:
|
|
29843
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29844
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
29845
|
-
type: 'string',
|
|
29846
|
-
},
|
|
29847
|
-
is_bridge_error: {
|
|
29848
|
-
description:
|
|
29849
|
-
'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
29850
|
-
type: 'boolean',
|
|
29851
|
-
},
|
|
29852
|
-
is_connected_account_error: {
|
|
29853
|
-
description:
|
|
29854
|
-
'Indicates whether the error is related specifically to the connected account.',
|
|
29855
|
-
type: 'boolean',
|
|
29856
|
-
},
|
|
29857
|
-
message: {
|
|
29858
|
-
description:
|
|
29859
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29860
|
-
type: 'string',
|
|
29861
|
-
},
|
|
29862
|
-
},
|
|
29863
|
-
required: ['created_at', 'message', 'error_code'],
|
|
29864
|
-
type: 'object',
|
|
29865
|
-
'x-resource-type': 'connected_account',
|
|
29866
|
-
},
|
|
29867
29878
|
],
|
|
29868
29879
|
},
|
|
29869
29880
|
type: 'array',
|
|
@@ -29940,33 +29951,6 @@ const openapi: OpenAPISpec = {
|
|
|
29940
29951
|
required: ['message', 'warning_code'],
|
|
29941
29952
|
type: 'object',
|
|
29942
29953
|
},
|
|
29943
|
-
{
|
|
29944
|
-
deprecated: true,
|
|
29945
|
-
description: 'Duplicate access code detected.',
|
|
29946
|
-
properties: {
|
|
29947
|
-
created_at: {
|
|
29948
|
-
description:
|
|
29949
|
-
'Date and time at which Seam created the warning.',
|
|
29950
|
-
format: 'date-time',
|
|
29951
|
-
type: 'string',
|
|
29952
|
-
},
|
|
29953
|
-
message: {
|
|
29954
|
-
description:
|
|
29955
|
-
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
29956
|
-
type: 'string',
|
|
29957
|
-
},
|
|
29958
|
-
warning_code: {
|
|
29959
|
-
description:
|
|
29960
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
29961
|
-
enum: ['schlage_detected_duplicate'],
|
|
29962
|
-
type: 'string',
|
|
29963
|
-
},
|
|
29964
|
-
},
|
|
29965
|
-
required: ['message', 'warning_code'],
|
|
29966
|
-
type: 'object',
|
|
29967
|
-
'x-deprecated':
|
|
29968
|
-
'Use `duplicate_code_on_device` error instead.',
|
|
29969
|
-
},
|
|
29970
29954
|
{
|
|
29971
29955
|
description:
|
|
29972
29956
|
"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.",
|
|
@@ -32455,6 +32439,51 @@ const openapi: OpenAPISpec = {
|
|
|
32455
32439
|
'x-resource-type': 'connected_account',
|
|
32456
32440
|
'x-variant-group-key': 'locks',
|
|
32457
32441
|
},
|
|
32442
|
+
{
|
|
32443
|
+
description:
|
|
32444
|
+
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
32445
|
+
properties: {
|
|
32446
|
+
created_at: {
|
|
32447
|
+
description:
|
|
32448
|
+
'Date and time at which Seam created the error.',
|
|
32449
|
+
format: 'date-time',
|
|
32450
|
+
type: 'string',
|
|
32451
|
+
},
|
|
32452
|
+
error_code: {
|
|
32453
|
+
description:
|
|
32454
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
32455
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
32456
|
+
type: 'string',
|
|
32457
|
+
},
|
|
32458
|
+
is_connected_account_error: {
|
|
32459
|
+
description:
|
|
32460
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
32461
|
+
enum: [true],
|
|
32462
|
+
type: 'boolean',
|
|
32463
|
+
},
|
|
32464
|
+
is_device_error: {
|
|
32465
|
+
description:
|
|
32466
|
+
'Indicates that the error is not a device error.',
|
|
32467
|
+
enum: [false],
|
|
32468
|
+
type: 'boolean',
|
|
32469
|
+
},
|
|
32470
|
+
message: {
|
|
32471
|
+
description:
|
|
32472
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32473
|
+
type: 'string',
|
|
32474
|
+
},
|
|
32475
|
+
},
|
|
32476
|
+
required: [
|
|
32477
|
+
'message',
|
|
32478
|
+
'is_device_error',
|
|
32479
|
+
'created_at',
|
|
32480
|
+
'error_code',
|
|
32481
|
+
'is_connected_account_error',
|
|
32482
|
+
],
|
|
32483
|
+
type: 'object',
|
|
32484
|
+
'x-resource-type': 'connected_account',
|
|
32485
|
+
'x-variant-group-key': 'locks',
|
|
32486
|
+
},
|
|
32458
32487
|
{
|
|
32459
32488
|
deprecated: true,
|
|
32460
32489
|
description: 'Indicates that the device is offline.',
|
|
@@ -32755,6 +32784,7 @@ const openapi: OpenAPISpec = {
|
|
|
32755
32784
|
type: 'object',
|
|
32756
32785
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32757
32786
|
'x-resource-type': 'device',
|
|
32787
|
+
'x-variant-group-key': 'locks',
|
|
32758
32788
|
},
|
|
32759
32789
|
{
|
|
32760
32790
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -32904,6 +32934,7 @@ const openapi: OpenAPISpec = {
|
|
|
32904
32934
|
type: 'object',
|
|
32905
32935
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32906
32936
|
'x-resource-type': 'device',
|
|
32937
|
+
'x-variant-group-key': 'locks',
|
|
32907
32938
|
},
|
|
32908
32939
|
{
|
|
32909
32940
|
description:
|
|
@@ -32941,42 +32972,6 @@ const openapi: OpenAPISpec = {
|
|
|
32941
32972
|
type: 'object',
|
|
32942
32973
|
'x-resource-type': 'connected_account',
|
|
32943
32974
|
},
|
|
32944
|
-
{
|
|
32945
|
-
description:
|
|
32946
|
-
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
32947
|
-
properties: {
|
|
32948
|
-
created_at: {
|
|
32949
|
-
description:
|
|
32950
|
-
'Date and time at which Seam created the error.',
|
|
32951
|
-
format: 'date-time',
|
|
32952
|
-
type: 'string',
|
|
32953
|
-
},
|
|
32954
|
-
error_code: {
|
|
32955
|
-
description:
|
|
32956
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
32957
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
32958
|
-
type: 'string',
|
|
32959
|
-
},
|
|
32960
|
-
is_bridge_error: {
|
|
32961
|
-
description:
|
|
32962
|
-
'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
32963
|
-
type: 'boolean',
|
|
32964
|
-
},
|
|
32965
|
-
is_connected_account_error: {
|
|
32966
|
-
description:
|
|
32967
|
-
'Indicates whether the error is related specifically to the connected account.',
|
|
32968
|
-
type: 'boolean',
|
|
32969
|
-
},
|
|
32970
|
-
message: {
|
|
32971
|
-
description:
|
|
32972
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32973
|
-
type: 'string',
|
|
32974
|
-
},
|
|
32975
|
-
},
|
|
32976
|
-
required: ['created_at', 'message', 'error_code'],
|
|
32977
|
-
type: 'object',
|
|
32978
|
-
'x-resource-type': 'connected_account',
|
|
32979
|
-
},
|
|
32980
32975
|
],
|
|
32981
32976
|
},
|
|
32982
32977
|
type: 'array',
|
|
@@ -33263,6 +33258,7 @@ const openapi: OpenAPISpec = {
|
|
|
33263
33258
|
type: 'object',
|
|
33264
33259
|
'x-deprecated':
|
|
33265
33260
|
'Use `hub_disconnected` device error instead.',
|
|
33261
|
+
'x-variant-group-key': 'locks',
|
|
33266
33262
|
},
|
|
33267
33263
|
{
|
|
33268
33264
|
description:
|
|
@@ -33316,8 +33312,7 @@ const openapi: OpenAPISpec = {
|
|
|
33316
33312
|
'x-variant-group-key': 'locks',
|
|
33317
33313
|
},
|
|
33318
33314
|
{
|
|
33319
|
-
description:
|
|
33320
|
-
'\n Indicates that the gateway signal is weak.\n ',
|
|
33315
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
33321
33316
|
properties: {
|
|
33322
33317
|
created_at: {
|
|
33323
33318
|
description:
|
|
@@ -33339,6 +33334,7 @@ const openapi: OpenAPISpec = {
|
|
|
33339
33334
|
},
|
|
33340
33335
|
required: ['message', 'created_at', 'warning_code'],
|
|
33341
33336
|
type: 'object',
|
|
33337
|
+
'x-variant-group-key': 'locks',
|
|
33342
33338
|
},
|
|
33343
33339
|
{
|
|
33344
33340
|
description:
|
|
@@ -33543,6 +33539,7 @@ const openapi: OpenAPISpec = {
|
|
|
33543
33539
|
},
|
|
33544
33540
|
required: ['message', 'created_at', 'warning_code'],
|
|
33545
33541
|
type: 'object',
|
|
33542
|
+
'x-variant-group-key': 'locks',
|
|
33546
33543
|
},
|
|
33547
33544
|
{
|
|
33548
33545
|
description:
|
|
@@ -33620,6 +33617,7 @@ const openapi: OpenAPISpec = {
|
|
|
33620
33617
|
},
|
|
33621
33618
|
required: ['message', 'created_at', 'warning_code'],
|
|
33622
33619
|
type: 'object',
|
|
33620
|
+
'x-variant-group-key': 'locks',
|
|
33623
33621
|
},
|
|
33624
33622
|
{
|
|
33625
33623
|
description:
|
|
@@ -33645,6 +33643,7 @@ const openapi: OpenAPISpec = {
|
|
|
33645
33643
|
},
|
|
33646
33644
|
required: ['message', 'created_at', 'warning_code'],
|
|
33647
33645
|
type: 'object',
|
|
33646
|
+
'x-variant-group-key': 'locks',
|
|
33648
33647
|
},
|
|
33649
33648
|
{
|
|
33650
33649
|
description:
|
|
@@ -33670,6 +33669,7 @@ const openapi: OpenAPISpec = {
|
|
|
33670
33669
|
},
|
|
33671
33670
|
required: ['message', 'created_at', 'warning_code'],
|
|
33672
33671
|
type: 'object',
|
|
33672
|
+
'x-variant-group-key': 'locks',
|
|
33673
33673
|
},
|
|
33674
33674
|
{
|
|
33675
33675
|
description:
|