@seamapi/types 1.922.0 → 1.923.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 -156
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +484 -341
- package/dist/index.cjs +247 -156
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
- 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 -122
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -341
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device.ts +69 -33
- package/src/lib/seam/connect/openapi.ts +202 -148
- package/src/lib/seam/connect/route-types.ts +372 -372
|
@@ -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',
|
|
@@ -13223,6 +13234,51 @@ const openapi: OpenAPISpec = {
|
|
|
13223
13234
|
'x-resource-type': 'connected_account',
|
|
13224
13235
|
'x-variant-group-key': 'locks',
|
|
13225
13236
|
},
|
|
13237
|
+
{
|
|
13238
|
+
description:
|
|
13239
|
+
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
13240
|
+
properties: {
|
|
13241
|
+
created_at: {
|
|
13242
|
+
description:
|
|
13243
|
+
'Date and time at which Seam created the error.',
|
|
13244
|
+
format: 'date-time',
|
|
13245
|
+
type: 'string',
|
|
13246
|
+
},
|
|
13247
|
+
error_code: {
|
|
13248
|
+
description:
|
|
13249
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13250
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
13251
|
+
type: 'string',
|
|
13252
|
+
},
|
|
13253
|
+
is_connected_account_error: {
|
|
13254
|
+
description:
|
|
13255
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
13256
|
+
enum: [true],
|
|
13257
|
+
type: 'boolean',
|
|
13258
|
+
},
|
|
13259
|
+
is_device_error: {
|
|
13260
|
+
description:
|
|
13261
|
+
'Indicates that the error is not a device error.',
|
|
13262
|
+
enum: [false],
|
|
13263
|
+
type: 'boolean',
|
|
13264
|
+
},
|
|
13265
|
+
message: {
|
|
13266
|
+
description:
|
|
13267
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13268
|
+
type: 'string',
|
|
13269
|
+
},
|
|
13270
|
+
},
|
|
13271
|
+
required: [
|
|
13272
|
+
'message',
|
|
13273
|
+
'is_device_error',
|
|
13274
|
+
'created_at',
|
|
13275
|
+
'error_code',
|
|
13276
|
+
'is_connected_account_error',
|
|
13277
|
+
],
|
|
13278
|
+
type: 'object',
|
|
13279
|
+
'x-resource-type': 'connected_account',
|
|
13280
|
+
'x-variant-group-key': 'locks',
|
|
13281
|
+
},
|
|
13226
13282
|
{
|
|
13227
13283
|
deprecated: true,
|
|
13228
13284
|
description: 'Indicates that the device is offline.',
|
|
@@ -13523,6 +13579,7 @@ const openapi: OpenAPISpec = {
|
|
|
13523
13579
|
type: 'object',
|
|
13524
13580
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13525
13581
|
'x-resource-type': 'device',
|
|
13582
|
+
'x-variant-group-key': 'locks',
|
|
13526
13583
|
},
|
|
13527
13584
|
{
|
|
13528
13585
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -13672,6 +13729,7 @@ const openapi: OpenAPISpec = {
|
|
|
13672
13729
|
type: 'object',
|
|
13673
13730
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13674
13731
|
'x-resource-type': 'device',
|
|
13732
|
+
'x-variant-group-key': 'locks',
|
|
13675
13733
|
},
|
|
13676
13734
|
{
|
|
13677
13735
|
description:
|
|
@@ -13709,42 +13767,6 @@ const openapi: OpenAPISpec = {
|
|
|
13709
13767
|
type: 'object',
|
|
13710
13768
|
'x-resource-type': 'connected_account',
|
|
13711
13769
|
},
|
|
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
13770
|
],
|
|
13749
13771
|
},
|
|
13750
13772
|
type: 'array',
|
|
@@ -16577,6 +16599,7 @@ const openapi: OpenAPISpec = {
|
|
|
16577
16599
|
type: 'object',
|
|
16578
16600
|
'x-deprecated':
|
|
16579
16601
|
'Use `hub_disconnected` device error instead.',
|
|
16602
|
+
'x-variant-group-key': 'locks',
|
|
16580
16603
|
},
|
|
16581
16604
|
{
|
|
16582
16605
|
description:
|
|
@@ -16630,8 +16653,7 @@ const openapi: OpenAPISpec = {
|
|
|
16630
16653
|
'x-variant-group-key': 'locks',
|
|
16631
16654
|
},
|
|
16632
16655
|
{
|
|
16633
|
-
description:
|
|
16634
|
-
'\n Indicates that the gateway signal is weak.\n ',
|
|
16656
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
16635
16657
|
properties: {
|
|
16636
16658
|
created_at: {
|
|
16637
16659
|
description:
|
|
@@ -16653,6 +16675,7 @@ const openapi: OpenAPISpec = {
|
|
|
16653
16675
|
},
|
|
16654
16676
|
required: ['message', 'created_at', 'warning_code'],
|
|
16655
16677
|
type: 'object',
|
|
16678
|
+
'x-variant-group-key': 'locks',
|
|
16656
16679
|
},
|
|
16657
16680
|
{
|
|
16658
16681
|
description:
|
|
@@ -16857,6 +16880,7 @@ const openapi: OpenAPISpec = {
|
|
|
16857
16880
|
},
|
|
16858
16881
|
required: ['message', 'created_at', 'warning_code'],
|
|
16859
16882
|
type: 'object',
|
|
16883
|
+
'x-variant-group-key': 'locks',
|
|
16860
16884
|
},
|
|
16861
16885
|
{
|
|
16862
16886
|
description:
|
|
@@ -16934,6 +16958,7 @@ const openapi: OpenAPISpec = {
|
|
|
16934
16958
|
},
|
|
16935
16959
|
required: ['message', 'created_at', 'warning_code'],
|
|
16936
16960
|
type: 'object',
|
|
16961
|
+
'x-variant-group-key': 'locks',
|
|
16937
16962
|
},
|
|
16938
16963
|
{
|
|
16939
16964
|
description:
|
|
@@ -16959,6 +16984,7 @@ const openapi: OpenAPISpec = {
|
|
|
16959
16984
|
},
|
|
16960
16985
|
required: ['message', 'created_at', 'warning_code'],
|
|
16961
16986
|
type: 'object',
|
|
16987
|
+
'x-variant-group-key': 'locks',
|
|
16962
16988
|
},
|
|
16963
16989
|
{
|
|
16964
16990
|
description:
|
|
@@ -16984,6 +17010,7 @@ const openapi: OpenAPISpec = {
|
|
|
16984
17010
|
},
|
|
16985
17011
|
required: ['message', 'created_at', 'warning_code'],
|
|
16986
17012
|
type: 'object',
|
|
17013
|
+
'x-variant-group-key': 'locks',
|
|
16987
17014
|
},
|
|
16988
17015
|
{
|
|
16989
17016
|
description:
|
|
@@ -29342,6 +29369,51 @@ const openapi: OpenAPISpec = {
|
|
|
29342
29369
|
'x-resource-type': 'connected_account',
|
|
29343
29370
|
'x-variant-group-key': 'locks',
|
|
29344
29371
|
},
|
|
29372
|
+
{
|
|
29373
|
+
description:
|
|
29374
|
+
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
29375
|
+
properties: {
|
|
29376
|
+
created_at: {
|
|
29377
|
+
description:
|
|
29378
|
+
'Date and time at which Seam created the error.',
|
|
29379
|
+
format: 'date-time',
|
|
29380
|
+
type: 'string',
|
|
29381
|
+
},
|
|
29382
|
+
error_code: {
|
|
29383
|
+
description:
|
|
29384
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29385
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
29386
|
+
type: 'string',
|
|
29387
|
+
},
|
|
29388
|
+
is_connected_account_error: {
|
|
29389
|
+
description:
|
|
29390
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
29391
|
+
enum: [true],
|
|
29392
|
+
type: 'boolean',
|
|
29393
|
+
},
|
|
29394
|
+
is_device_error: {
|
|
29395
|
+
description:
|
|
29396
|
+
'Indicates that the error is not a device error.',
|
|
29397
|
+
enum: [false],
|
|
29398
|
+
type: 'boolean',
|
|
29399
|
+
},
|
|
29400
|
+
message: {
|
|
29401
|
+
description:
|
|
29402
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29403
|
+
type: 'string',
|
|
29404
|
+
},
|
|
29405
|
+
},
|
|
29406
|
+
required: [
|
|
29407
|
+
'message',
|
|
29408
|
+
'is_device_error',
|
|
29409
|
+
'created_at',
|
|
29410
|
+
'error_code',
|
|
29411
|
+
'is_connected_account_error',
|
|
29412
|
+
],
|
|
29413
|
+
type: 'object',
|
|
29414
|
+
'x-resource-type': 'connected_account',
|
|
29415
|
+
'x-variant-group-key': 'locks',
|
|
29416
|
+
},
|
|
29345
29417
|
{
|
|
29346
29418
|
deprecated: true,
|
|
29347
29419
|
description: 'Indicates that the device is offline.',
|
|
@@ -29642,6 +29714,7 @@ const openapi: OpenAPISpec = {
|
|
|
29642
29714
|
type: 'object',
|
|
29643
29715
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29644
29716
|
'x-resource-type': 'device',
|
|
29717
|
+
'x-variant-group-key': 'locks',
|
|
29645
29718
|
},
|
|
29646
29719
|
{
|
|
29647
29720
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -29791,6 +29864,7 @@ const openapi: OpenAPISpec = {
|
|
|
29791
29864
|
type: 'object',
|
|
29792
29865
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29793
29866
|
'x-resource-type': 'device',
|
|
29867
|
+
'x-variant-group-key': 'locks',
|
|
29794
29868
|
},
|
|
29795
29869
|
{
|
|
29796
29870
|
description:
|
|
@@ -29828,42 +29902,6 @@ const openapi: OpenAPISpec = {
|
|
|
29828
29902
|
type: 'object',
|
|
29829
29903
|
'x-resource-type': 'connected_account',
|
|
29830
29904
|
},
|
|
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
29905
|
],
|
|
29868
29906
|
},
|
|
29869
29907
|
type: 'array',
|
|
@@ -32455,6 +32493,51 @@ const openapi: OpenAPISpec = {
|
|
|
32455
32493
|
'x-resource-type': 'connected_account',
|
|
32456
32494
|
'x-variant-group-key': 'locks',
|
|
32457
32495
|
},
|
|
32496
|
+
{
|
|
32497
|
+
description:
|
|
32498
|
+
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
32499
|
+
properties: {
|
|
32500
|
+
created_at: {
|
|
32501
|
+
description:
|
|
32502
|
+
'Date and time at which Seam created the error.',
|
|
32503
|
+
format: 'date-time',
|
|
32504
|
+
type: 'string',
|
|
32505
|
+
},
|
|
32506
|
+
error_code: {
|
|
32507
|
+
description:
|
|
32508
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
32509
|
+
enum: ['dormakaba_sites_disconnected'],
|
|
32510
|
+
type: 'string',
|
|
32511
|
+
},
|
|
32512
|
+
is_connected_account_error: {
|
|
32513
|
+
description:
|
|
32514
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
32515
|
+
enum: [true],
|
|
32516
|
+
type: 'boolean',
|
|
32517
|
+
},
|
|
32518
|
+
is_device_error: {
|
|
32519
|
+
description:
|
|
32520
|
+
'Indicates that the error is not a device error.',
|
|
32521
|
+
enum: [false],
|
|
32522
|
+
type: 'boolean',
|
|
32523
|
+
},
|
|
32524
|
+
message: {
|
|
32525
|
+
description:
|
|
32526
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32527
|
+
type: 'string',
|
|
32528
|
+
},
|
|
32529
|
+
},
|
|
32530
|
+
required: [
|
|
32531
|
+
'message',
|
|
32532
|
+
'is_device_error',
|
|
32533
|
+
'created_at',
|
|
32534
|
+
'error_code',
|
|
32535
|
+
'is_connected_account_error',
|
|
32536
|
+
],
|
|
32537
|
+
type: 'object',
|
|
32538
|
+
'x-resource-type': 'connected_account',
|
|
32539
|
+
'x-variant-group-key': 'locks',
|
|
32540
|
+
},
|
|
32458
32541
|
{
|
|
32459
32542
|
deprecated: true,
|
|
32460
32543
|
description: 'Indicates that the device is offline.',
|
|
@@ -32755,6 +32838,7 @@ const openapi: OpenAPISpec = {
|
|
|
32755
32838
|
type: 'object',
|
|
32756
32839
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32757
32840
|
'x-resource-type': 'device',
|
|
32841
|
+
'x-variant-group-key': 'locks',
|
|
32758
32842
|
},
|
|
32759
32843
|
{
|
|
32760
32844
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -32904,6 +32988,7 @@ const openapi: OpenAPISpec = {
|
|
|
32904
32988
|
type: 'object',
|
|
32905
32989
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32906
32990
|
'x-resource-type': 'device',
|
|
32991
|
+
'x-variant-group-key': 'locks',
|
|
32907
32992
|
},
|
|
32908
32993
|
{
|
|
32909
32994
|
description:
|
|
@@ -32941,42 +33026,6 @@ const openapi: OpenAPISpec = {
|
|
|
32941
33026
|
type: 'object',
|
|
32942
33027
|
'x-resource-type': 'connected_account',
|
|
32943
33028
|
},
|
|
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
33029
|
],
|
|
32981
33030
|
},
|
|
32982
33031
|
type: 'array',
|
|
@@ -33263,6 +33312,7 @@ const openapi: OpenAPISpec = {
|
|
|
33263
33312
|
type: 'object',
|
|
33264
33313
|
'x-deprecated':
|
|
33265
33314
|
'Use `hub_disconnected` device error instead.',
|
|
33315
|
+
'x-variant-group-key': 'locks',
|
|
33266
33316
|
},
|
|
33267
33317
|
{
|
|
33268
33318
|
description:
|
|
@@ -33316,8 +33366,7 @@ const openapi: OpenAPISpec = {
|
|
|
33316
33366
|
'x-variant-group-key': 'locks',
|
|
33317
33367
|
},
|
|
33318
33368
|
{
|
|
33319
|
-
description:
|
|
33320
|
-
'\n Indicates that the gateway signal is weak.\n ',
|
|
33369
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
33321
33370
|
properties: {
|
|
33322
33371
|
created_at: {
|
|
33323
33372
|
description:
|
|
@@ -33339,6 +33388,7 @@ const openapi: OpenAPISpec = {
|
|
|
33339
33388
|
},
|
|
33340
33389
|
required: ['message', 'created_at', 'warning_code'],
|
|
33341
33390
|
type: 'object',
|
|
33391
|
+
'x-variant-group-key': 'locks',
|
|
33342
33392
|
},
|
|
33343
33393
|
{
|
|
33344
33394
|
description:
|
|
@@ -33543,6 +33593,7 @@ const openapi: OpenAPISpec = {
|
|
|
33543
33593
|
},
|
|
33544
33594
|
required: ['message', 'created_at', 'warning_code'],
|
|
33545
33595
|
type: 'object',
|
|
33596
|
+
'x-variant-group-key': 'locks',
|
|
33546
33597
|
},
|
|
33547
33598
|
{
|
|
33548
33599
|
description:
|
|
@@ -33620,6 +33671,7 @@ const openapi: OpenAPISpec = {
|
|
|
33620
33671
|
},
|
|
33621
33672
|
required: ['message', 'created_at', 'warning_code'],
|
|
33622
33673
|
type: 'object',
|
|
33674
|
+
'x-variant-group-key': 'locks',
|
|
33623
33675
|
},
|
|
33624
33676
|
{
|
|
33625
33677
|
description:
|
|
@@ -33645,6 +33697,7 @@ const openapi: OpenAPISpec = {
|
|
|
33645
33697
|
},
|
|
33646
33698
|
required: ['message', 'created_at', 'warning_code'],
|
|
33647
33699
|
type: 'object',
|
|
33700
|
+
'x-variant-group-key': 'locks',
|
|
33648
33701
|
},
|
|
33649
33702
|
{
|
|
33650
33703
|
description:
|
|
@@ -33670,6 +33723,7 @@ const openapi: OpenAPISpec = {
|
|
|
33670
33723
|
},
|
|
33671
33724
|
required: ['message', 'created_at', 'warning_code'],
|
|
33672
33725
|
type: 'object',
|
|
33726
|
+
'x-variant-group-key': 'locks',
|
|
33673
33727
|
},
|
|
33674
33728
|
{
|
|
33675
33729
|
description:
|