@seamapi/types 1.921.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 +315 -186
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +484 -341
- package/dist/index.cjs +315 -186
- 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/access-grants/access-grant.js +6 -1
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.js +14 -8
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- 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/models/user-identities/user-identity.js +7 -4
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +196 -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/access-grants/access-grant.ts +6 -1
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +17 -8
- package/src/lib/seam/connect/models/devices/device.ts +69 -33
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +22 -21
- package/src/lib/seam/connect/openapi.ts +225 -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',
|
|
@@ -1926,6 +1937,8 @@ const openapi: OpenAPISpec = {
|
|
|
1926
1937
|
discriminator: { propertyName: 'error_code' },
|
|
1927
1938
|
oneOf: [
|
|
1928
1939
|
{
|
|
1940
|
+
description:
|
|
1941
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
1929
1942
|
properties: {
|
|
1930
1943
|
created_at: {
|
|
1931
1944
|
description:
|
|
@@ -1953,6 +1966,7 @@ const openapi: OpenAPISpec = {
|
|
|
1953
1966
|
},
|
|
1954
1967
|
required: ['created_at', 'message', 'error_code'],
|
|
1955
1968
|
type: 'object',
|
|
1969
|
+
'x-resource-type': 'access_grant',
|
|
1956
1970
|
},
|
|
1957
1971
|
],
|
|
1958
1972
|
},
|
|
@@ -11724,6 +11738,7 @@ const openapi: OpenAPISpec = {
|
|
|
11724
11738
|
'is_bridge_socks_server_healthy',
|
|
11725
11739
|
],
|
|
11726
11740
|
type: 'object',
|
|
11741
|
+
'x-resource-type': 'bridge_client_session',
|
|
11727
11742
|
},
|
|
11728
11743
|
{
|
|
11729
11744
|
description:
|
|
@@ -11749,6 +11764,7 @@ const openapi: OpenAPISpec = {
|
|
|
11749
11764
|
},
|
|
11750
11765
|
required: ['message', 'created_at', 'error_code'],
|
|
11751
11766
|
type: 'object',
|
|
11767
|
+
'x-resource-type': 'bridge_client_session',
|
|
11752
11768
|
},
|
|
11753
11769
|
],
|
|
11754
11770
|
},
|
|
@@ -13218,6 +13234,51 @@ const openapi: OpenAPISpec = {
|
|
|
13218
13234
|
'x-resource-type': 'connected_account',
|
|
13219
13235
|
'x-variant-group-key': 'locks',
|
|
13220
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
|
+
},
|
|
13221
13282
|
{
|
|
13222
13283
|
deprecated: true,
|
|
13223
13284
|
description: 'Indicates that the device is offline.',
|
|
@@ -13518,6 +13579,7 @@ const openapi: OpenAPISpec = {
|
|
|
13518
13579
|
type: 'object',
|
|
13519
13580
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13520
13581
|
'x-resource-type': 'device',
|
|
13582
|
+
'x-variant-group-key': 'locks',
|
|
13521
13583
|
},
|
|
13522
13584
|
{
|
|
13523
13585
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -13667,6 +13729,7 @@ const openapi: OpenAPISpec = {
|
|
|
13667
13729
|
type: 'object',
|
|
13668
13730
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13669
13731
|
'x-resource-type': 'device',
|
|
13732
|
+
'x-variant-group-key': 'locks',
|
|
13670
13733
|
},
|
|
13671
13734
|
{
|
|
13672
13735
|
description:
|
|
@@ -13704,42 +13767,6 @@ const openapi: OpenAPISpec = {
|
|
|
13704
13767
|
type: 'object',
|
|
13705
13768
|
'x-resource-type': 'connected_account',
|
|
13706
13769
|
},
|
|
13707
|
-
{
|
|
13708
|
-
description:
|
|
13709
|
-
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
13710
|
-
properties: {
|
|
13711
|
-
created_at: {
|
|
13712
|
-
description:
|
|
13713
|
-
'Date and time at which Seam created the error.',
|
|
13714
|
-
format: 'date-time',
|
|
13715
|
-
type: 'string',
|
|
13716
|
-
},
|
|
13717
|
-
error_code: {
|
|
13718
|
-
description:
|
|
13719
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13720
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
13721
|
-
type: 'string',
|
|
13722
|
-
},
|
|
13723
|
-
is_bridge_error: {
|
|
13724
|
-
description:
|
|
13725
|
-
'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
13726
|
-
type: 'boolean',
|
|
13727
|
-
},
|
|
13728
|
-
is_connected_account_error: {
|
|
13729
|
-
description:
|
|
13730
|
-
'Indicates whether the error is related specifically to the connected account.',
|
|
13731
|
-
type: 'boolean',
|
|
13732
|
-
},
|
|
13733
|
-
message: {
|
|
13734
|
-
description:
|
|
13735
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13736
|
-
type: 'string',
|
|
13737
|
-
},
|
|
13738
|
-
},
|
|
13739
|
-
required: ['created_at', 'message', 'error_code'],
|
|
13740
|
-
type: 'object',
|
|
13741
|
-
'x-resource-type': 'connected_account',
|
|
13742
|
-
},
|
|
13743
13770
|
],
|
|
13744
13771
|
},
|
|
13745
13772
|
type: 'array',
|
|
@@ -16572,6 +16599,7 @@ const openapi: OpenAPISpec = {
|
|
|
16572
16599
|
type: 'object',
|
|
16573
16600
|
'x-deprecated':
|
|
16574
16601
|
'Use `hub_disconnected` device error instead.',
|
|
16602
|
+
'x-variant-group-key': 'locks',
|
|
16575
16603
|
},
|
|
16576
16604
|
{
|
|
16577
16605
|
description:
|
|
@@ -16625,8 +16653,7 @@ const openapi: OpenAPISpec = {
|
|
|
16625
16653
|
'x-variant-group-key': 'locks',
|
|
16626
16654
|
},
|
|
16627
16655
|
{
|
|
16628
|
-
description:
|
|
16629
|
-
'\n Indicates that the gateway signal is weak.\n ',
|
|
16656
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
16630
16657
|
properties: {
|
|
16631
16658
|
created_at: {
|
|
16632
16659
|
description:
|
|
@@ -16648,6 +16675,7 @@ const openapi: OpenAPISpec = {
|
|
|
16648
16675
|
},
|
|
16649
16676
|
required: ['message', 'created_at', 'warning_code'],
|
|
16650
16677
|
type: 'object',
|
|
16678
|
+
'x-variant-group-key': 'locks',
|
|
16651
16679
|
},
|
|
16652
16680
|
{
|
|
16653
16681
|
description:
|
|
@@ -16852,6 +16880,7 @@ const openapi: OpenAPISpec = {
|
|
|
16852
16880
|
},
|
|
16853
16881
|
required: ['message', 'created_at', 'warning_code'],
|
|
16854
16882
|
type: 'object',
|
|
16883
|
+
'x-variant-group-key': 'locks',
|
|
16855
16884
|
},
|
|
16856
16885
|
{
|
|
16857
16886
|
description:
|
|
@@ -16929,6 +16958,7 @@ const openapi: OpenAPISpec = {
|
|
|
16929
16958
|
},
|
|
16930
16959
|
required: ['message', 'created_at', 'warning_code'],
|
|
16931
16960
|
type: 'object',
|
|
16961
|
+
'x-variant-group-key': 'locks',
|
|
16932
16962
|
},
|
|
16933
16963
|
{
|
|
16934
16964
|
description:
|
|
@@ -16954,6 +16984,7 @@ const openapi: OpenAPISpec = {
|
|
|
16954
16984
|
},
|
|
16955
16985
|
required: ['message', 'created_at', 'warning_code'],
|
|
16956
16986
|
type: 'object',
|
|
16987
|
+
'x-variant-group-key': 'locks',
|
|
16957
16988
|
},
|
|
16958
16989
|
{
|
|
16959
16990
|
description:
|
|
@@ -16979,6 +17010,7 @@ const openapi: OpenAPISpec = {
|
|
|
16979
17010
|
},
|
|
16980
17011
|
required: ['message', 'created_at', 'warning_code'],
|
|
16981
17012
|
type: 'object',
|
|
17013
|
+
'x-variant-group-key': 'locks',
|
|
16982
17014
|
},
|
|
16983
17015
|
{
|
|
16984
17016
|
description:
|
|
@@ -28227,6 +28259,7 @@ const openapi: OpenAPISpec = {
|
|
|
28227
28259
|
'acs_system_id',
|
|
28228
28260
|
],
|
|
28229
28261
|
type: 'object',
|
|
28262
|
+
'x-resource-type': 'user_identity',
|
|
28230
28263
|
},
|
|
28231
28264
|
],
|
|
28232
28265
|
},
|
|
@@ -29336,6 +29369,51 @@ const openapi: OpenAPISpec = {
|
|
|
29336
29369
|
'x-resource-type': 'connected_account',
|
|
29337
29370
|
'x-variant-group-key': 'locks',
|
|
29338
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
|
+
},
|
|
29339
29417
|
{
|
|
29340
29418
|
deprecated: true,
|
|
29341
29419
|
description: 'Indicates that the device is offline.',
|
|
@@ -29636,6 +29714,7 @@ const openapi: OpenAPISpec = {
|
|
|
29636
29714
|
type: 'object',
|
|
29637
29715
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29638
29716
|
'x-resource-type': 'device',
|
|
29717
|
+
'x-variant-group-key': 'locks',
|
|
29639
29718
|
},
|
|
29640
29719
|
{
|
|
29641
29720
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -29785,6 +29864,7 @@ const openapi: OpenAPISpec = {
|
|
|
29785
29864
|
type: 'object',
|
|
29786
29865
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29787
29866
|
'x-resource-type': 'device',
|
|
29867
|
+
'x-variant-group-key': 'locks',
|
|
29788
29868
|
},
|
|
29789
29869
|
{
|
|
29790
29870
|
description:
|
|
@@ -29822,42 +29902,6 @@ const openapi: OpenAPISpec = {
|
|
|
29822
29902
|
type: 'object',
|
|
29823
29903
|
'x-resource-type': 'connected_account',
|
|
29824
29904
|
},
|
|
29825
|
-
{
|
|
29826
|
-
description:
|
|
29827
|
-
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
29828
|
-
properties: {
|
|
29829
|
-
created_at: {
|
|
29830
|
-
description:
|
|
29831
|
-
'Date and time at which Seam created the error.',
|
|
29832
|
-
format: 'date-time',
|
|
29833
|
-
type: 'string',
|
|
29834
|
-
},
|
|
29835
|
-
error_code: {
|
|
29836
|
-
description:
|
|
29837
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
29838
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
29839
|
-
type: 'string',
|
|
29840
|
-
},
|
|
29841
|
-
is_bridge_error: {
|
|
29842
|
-
description:
|
|
29843
|
-
'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
29844
|
-
type: 'boolean',
|
|
29845
|
-
},
|
|
29846
|
-
is_connected_account_error: {
|
|
29847
|
-
description:
|
|
29848
|
-
'Indicates whether the error is related specifically to the connected account.',
|
|
29849
|
-
type: 'boolean',
|
|
29850
|
-
},
|
|
29851
|
-
message: {
|
|
29852
|
-
description:
|
|
29853
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
29854
|
-
type: 'string',
|
|
29855
|
-
},
|
|
29856
|
-
},
|
|
29857
|
-
required: ['created_at', 'message', 'error_code'],
|
|
29858
|
-
type: 'object',
|
|
29859
|
-
'x-resource-type': 'connected_account',
|
|
29860
|
-
},
|
|
29861
29905
|
],
|
|
29862
29906
|
},
|
|
29863
29907
|
type: 'array',
|
|
@@ -32449,6 +32493,51 @@ const openapi: OpenAPISpec = {
|
|
|
32449
32493
|
'x-resource-type': 'connected_account',
|
|
32450
32494
|
'x-variant-group-key': 'locks',
|
|
32451
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
|
+
},
|
|
32452
32541
|
{
|
|
32453
32542
|
deprecated: true,
|
|
32454
32543
|
description: 'Indicates that the device is offline.',
|
|
@@ -32749,6 +32838,7 @@ const openapi: OpenAPISpec = {
|
|
|
32749
32838
|
type: 'object',
|
|
32750
32839
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32751
32840
|
'x-resource-type': 'device',
|
|
32841
|
+
'x-variant-group-key': 'locks',
|
|
32752
32842
|
},
|
|
32753
32843
|
{
|
|
32754
32844
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -32898,6 +32988,7 @@ const openapi: OpenAPISpec = {
|
|
|
32898
32988
|
type: 'object',
|
|
32899
32989
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32900
32990
|
'x-resource-type': 'device',
|
|
32991
|
+
'x-variant-group-key': 'locks',
|
|
32901
32992
|
},
|
|
32902
32993
|
{
|
|
32903
32994
|
description:
|
|
@@ -32935,42 +33026,6 @@ const openapi: OpenAPISpec = {
|
|
|
32935
33026
|
type: 'object',
|
|
32936
33027
|
'x-resource-type': 'connected_account',
|
|
32937
33028
|
},
|
|
32938
|
-
{
|
|
32939
|
-
description:
|
|
32940
|
-
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
32941
|
-
properties: {
|
|
32942
|
-
created_at: {
|
|
32943
|
-
description:
|
|
32944
|
-
'Date and time at which Seam created the error.',
|
|
32945
|
-
format: 'date-time',
|
|
32946
|
-
type: 'string',
|
|
32947
|
-
},
|
|
32948
|
-
error_code: {
|
|
32949
|
-
description:
|
|
32950
|
-
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
32951
|
-
enum: ['dormakaba_sites_disconnected'],
|
|
32952
|
-
type: 'string',
|
|
32953
|
-
},
|
|
32954
|
-
is_bridge_error: {
|
|
32955
|
-
description:
|
|
32956
|
-
'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).',
|
|
32957
|
-
type: 'boolean',
|
|
32958
|
-
},
|
|
32959
|
-
is_connected_account_error: {
|
|
32960
|
-
description:
|
|
32961
|
-
'Indicates whether the error is related specifically to the connected account.',
|
|
32962
|
-
type: 'boolean',
|
|
32963
|
-
},
|
|
32964
|
-
message: {
|
|
32965
|
-
description:
|
|
32966
|
-
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32967
|
-
type: 'string',
|
|
32968
|
-
},
|
|
32969
|
-
},
|
|
32970
|
-
required: ['created_at', 'message', 'error_code'],
|
|
32971
|
-
type: 'object',
|
|
32972
|
-
'x-resource-type': 'connected_account',
|
|
32973
|
-
},
|
|
32974
33029
|
],
|
|
32975
33030
|
},
|
|
32976
33031
|
type: 'array',
|
|
@@ -33257,6 +33312,7 @@ const openapi: OpenAPISpec = {
|
|
|
33257
33312
|
type: 'object',
|
|
33258
33313
|
'x-deprecated':
|
|
33259
33314
|
'Use `hub_disconnected` device error instead.',
|
|
33315
|
+
'x-variant-group-key': 'locks',
|
|
33260
33316
|
},
|
|
33261
33317
|
{
|
|
33262
33318
|
description:
|
|
@@ -33310,8 +33366,7 @@ const openapi: OpenAPISpec = {
|
|
|
33310
33366
|
'x-variant-group-key': 'locks',
|
|
33311
33367
|
},
|
|
33312
33368
|
{
|
|
33313
|
-
description:
|
|
33314
|
-
'\n Indicates that the gateway signal is weak.\n ',
|
|
33369
|
+
description: 'Indicates that the gateway signal is weak.',
|
|
33315
33370
|
properties: {
|
|
33316
33371
|
created_at: {
|
|
33317
33372
|
description:
|
|
@@ -33333,6 +33388,7 @@ const openapi: OpenAPISpec = {
|
|
|
33333
33388
|
},
|
|
33334
33389
|
required: ['message', 'created_at', 'warning_code'],
|
|
33335
33390
|
type: 'object',
|
|
33391
|
+
'x-variant-group-key': 'locks',
|
|
33336
33392
|
},
|
|
33337
33393
|
{
|
|
33338
33394
|
description:
|
|
@@ -33537,6 +33593,7 @@ const openapi: OpenAPISpec = {
|
|
|
33537
33593
|
},
|
|
33538
33594
|
required: ['message', 'created_at', 'warning_code'],
|
|
33539
33595
|
type: 'object',
|
|
33596
|
+
'x-variant-group-key': 'locks',
|
|
33540
33597
|
},
|
|
33541
33598
|
{
|
|
33542
33599
|
description:
|
|
@@ -33614,6 +33671,7 @@ const openapi: OpenAPISpec = {
|
|
|
33614
33671
|
},
|
|
33615
33672
|
required: ['message', 'created_at', 'warning_code'],
|
|
33616
33673
|
type: 'object',
|
|
33674
|
+
'x-variant-group-key': 'locks',
|
|
33617
33675
|
},
|
|
33618
33676
|
{
|
|
33619
33677
|
description:
|
|
@@ -33639,6 +33697,7 @@ const openapi: OpenAPISpec = {
|
|
|
33639
33697
|
},
|
|
33640
33698
|
required: ['message', 'created_at', 'warning_code'],
|
|
33641
33699
|
type: 'object',
|
|
33700
|
+
'x-variant-group-key': 'locks',
|
|
33642
33701
|
},
|
|
33643
33702
|
{
|
|
33644
33703
|
description:
|
|
@@ -33664,6 +33723,7 @@ const openapi: OpenAPISpec = {
|
|
|
33664
33723
|
},
|
|
33665
33724
|
required: ['message', 'created_at', 'warning_code'],
|
|
33666
33725
|
type: 'object',
|
|
33726
|
+
'x-variant-group-key': 'locks',
|
|
33667
33727
|
},
|
|
33668
33728
|
{
|
|
33669
33729
|
description:
|
|
@@ -33984,6 +34044,7 @@ const openapi: OpenAPISpec = {
|
|
|
33984
34044
|
'acs_system_id',
|
|
33985
34045
|
],
|
|
33986
34046
|
type: 'object',
|
|
34047
|
+
'x-resource-type': 'user_identity',
|
|
33987
34048
|
},
|
|
33988
34049
|
],
|
|
33989
34050
|
},
|
|
@@ -38487,6 +38548,8 @@ const openapi: OpenAPISpec = {
|
|
|
38487
38548
|
discriminator: { propertyName: 'error_code' },
|
|
38488
38549
|
oneOf: [
|
|
38489
38550
|
{
|
|
38551
|
+
description:
|
|
38552
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
38490
38553
|
properties: {
|
|
38491
38554
|
created_at: {
|
|
38492
38555
|
description:
|
|
@@ -38520,6 +38583,7 @@ const openapi: OpenAPISpec = {
|
|
|
38520
38583
|
'error_code',
|
|
38521
38584
|
],
|
|
38522
38585
|
type: 'object',
|
|
38586
|
+
'x-resource-type': 'access_grant',
|
|
38523
38587
|
},
|
|
38524
38588
|
],
|
|
38525
38589
|
},
|
|
@@ -39196,6 +39260,8 @@ const openapi: OpenAPISpec = {
|
|
|
39196
39260
|
discriminator: { propertyName: 'error_code' },
|
|
39197
39261
|
oneOf: [
|
|
39198
39262
|
{
|
|
39263
|
+
description:
|
|
39264
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
39199
39265
|
properties: {
|
|
39200
39266
|
created_at: {
|
|
39201
39267
|
description:
|
|
@@ -39229,6 +39295,7 @@ const openapi: OpenAPISpec = {
|
|
|
39229
39295
|
'error_code',
|
|
39230
39296
|
],
|
|
39231
39297
|
type: 'object',
|
|
39298
|
+
'x-resource-type': 'access_grant',
|
|
39232
39299
|
},
|
|
39233
39300
|
],
|
|
39234
39301
|
},
|
|
@@ -39951,6 +40018,8 @@ const openapi: OpenAPISpec = {
|
|
|
39951
40018
|
discriminator: { propertyName: 'error_code' },
|
|
39952
40019
|
oneOf: [
|
|
39953
40020
|
{
|
|
40021
|
+
description:
|
|
40022
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
39954
40023
|
properties: {
|
|
39955
40024
|
created_at: {
|
|
39956
40025
|
description:
|
|
@@ -39984,6 +40053,7 @@ const openapi: OpenAPISpec = {
|
|
|
39984
40053
|
'error_code',
|
|
39985
40054
|
],
|
|
39986
40055
|
type: 'object',
|
|
40056
|
+
'x-resource-type': 'access_grant',
|
|
39987
40057
|
},
|
|
39988
40058
|
],
|
|
39989
40059
|
},
|
|
@@ -40698,6 +40768,8 @@ const openapi: OpenAPISpec = {
|
|
|
40698
40768
|
discriminator: { propertyName: 'error_code' },
|
|
40699
40769
|
oneOf: [
|
|
40700
40770
|
{
|
|
40771
|
+
description:
|
|
40772
|
+
'Indicates that Seam could not create one or more of the requested access methods for the access grant.',
|
|
40701
40773
|
properties: {
|
|
40702
40774
|
created_at: {
|
|
40703
40775
|
description:
|
|
@@ -40731,6 +40803,7 @@ const openapi: OpenAPISpec = {
|
|
|
40731
40803
|
'error_code',
|
|
40732
40804
|
],
|
|
40733
40805
|
type: 'object',
|
|
40806
|
+
'x-resource-type': 'access_grant',
|
|
40734
40807
|
},
|
|
40735
40808
|
],
|
|
40736
40809
|
},
|
|
@@ -85558,6 +85631,7 @@ const openapi: OpenAPISpec = {
|
|
|
85558
85631
|
'acs_system_id',
|
|
85559
85632
|
],
|
|
85560
85633
|
type: 'object',
|
|
85634
|
+
'x-resource-type': 'user_identity',
|
|
85561
85635
|
},
|
|
85562
85636
|
],
|
|
85563
85637
|
},
|
|
@@ -85807,6 +85881,7 @@ const openapi: OpenAPISpec = {
|
|
|
85807
85881
|
'acs_system_id',
|
|
85808
85882
|
],
|
|
85809
85883
|
type: 'object',
|
|
85884
|
+
'x-resource-type': 'user_identity',
|
|
85810
85885
|
},
|
|
85811
85886
|
],
|
|
85812
85887
|
},
|
|
@@ -86084,6 +86159,7 @@ const openapi: OpenAPISpec = {
|
|
|
86084
86159
|
'acs_system_id',
|
|
86085
86160
|
],
|
|
86086
86161
|
type: 'object',
|
|
86162
|
+
'x-resource-type': 'user_identity',
|
|
86087
86163
|
},
|
|
86088
86164
|
],
|
|
86089
86165
|
},
|
|
@@ -86356,6 +86432,7 @@ const openapi: OpenAPISpec = {
|
|
|
86356
86432
|
'acs_system_id',
|
|
86357
86433
|
],
|
|
86358
86434
|
type: 'object',
|
|
86435
|
+
'x-resource-type': 'user_identity',
|
|
86359
86436
|
},
|
|
86360
86437
|
],
|
|
86361
86438
|
},
|