@seamapi/types 1.989.0 → 1.990.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/lib/seam/connect/models/access-codes/managed-access-code.d.ts +39 -8
- package/lib/seam/connect/models/access-codes/managed-access-code.js +9 -2
- 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 -0
- package/lib/seam/connect/models/acs/acs-system.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-system.js +12 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +113 -10
- package/lib/seam/connect/models/devices/device.js +23 -0
- 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 +98 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +269 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +13 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +13 -0
- package/src/lib/seam/connect/models/devices/device.ts +26 -0
- package/src/lib/seam/connect/openapi.ts +114 -0
- package/src/lib/seam/connect/route-types.ts +296 -0
|
@@ -4576,6 +4576,32 @@ const openapi: OpenAPISpec = {
|
|
|
4576
4576
|
type: 'object',
|
|
4577
4577
|
'x-resource-type': 'acs_system',
|
|
4578
4578
|
},
|
|
4579
|
+
{
|
|
4580
|
+
description:
|
|
4581
|
+
"Indicates that Seam's integration user does not have sufficient permissions on the provider's system backing this [access control system](https://docs.seam.co/low-level-apis/access-systems). Access cannot be managed until permissions are restored. See the error message for specifics, then either reauthorize the connected account in Seam or grant the integration user the required permissions in the provider's system.",
|
|
4582
|
+
properties: {
|
|
4583
|
+
created_at: {
|
|
4584
|
+
description:
|
|
4585
|
+
'Date and time at which Seam created the error.',
|
|
4586
|
+
format: 'date-time',
|
|
4587
|
+
type: 'string',
|
|
4588
|
+
},
|
|
4589
|
+
error_code: {
|
|
4590
|
+
description:
|
|
4591
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4592
|
+
enum: ['insufficient_permissions'],
|
|
4593
|
+
type: 'string',
|
|
4594
|
+
},
|
|
4595
|
+
message: {
|
|
4596
|
+
description:
|
|
4597
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
4598
|
+
type: 'string',
|
|
4599
|
+
},
|
|
4600
|
+
},
|
|
4601
|
+
required: ['created_at', 'message', 'error_code'],
|
|
4602
|
+
type: 'object',
|
|
4603
|
+
'x-resource-type': 'acs_system',
|
|
4604
|
+
},
|
|
4579
4605
|
{
|
|
4580
4606
|
description:
|
|
4581
4607
|
'Indicates that the [access control system](https://docs.seam.co/low-level-apis/access-systems) has been disconnected. See [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system) to resolve the issue.',
|
|
@@ -13270,6 +13296,50 @@ const openapi: OpenAPISpec = {
|
|
|
13270
13296
|
'x-resource-type': 'connected_account',
|
|
13271
13297
|
'x-variant-group-key': 'locks',
|
|
13272
13298
|
},
|
|
13299
|
+
{
|
|
13300
|
+
description:
|
|
13301
|
+
"Indicates that Seam's integration user does not have sufficient permissions on the provider's system to which this device belongs, so Seam cannot manage access codes or unlock the device. See the error message for specifics, then either reauthorize the connected account in Seam or grant the integration user the required permissions in the provider's system.",
|
|
13302
|
+
properties: {
|
|
13303
|
+
created_at: {
|
|
13304
|
+
description:
|
|
13305
|
+
'Date and time at which Seam created the error.',
|
|
13306
|
+
format: 'date-time',
|
|
13307
|
+
type: 'string',
|
|
13308
|
+
},
|
|
13309
|
+
error_code: {
|
|
13310
|
+
description:
|
|
13311
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
13312
|
+
enum: ['insufficient_permissions'],
|
|
13313
|
+
type: 'string',
|
|
13314
|
+
},
|
|
13315
|
+
is_connected_account_error: {
|
|
13316
|
+
description:
|
|
13317
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
13318
|
+
enum: [true],
|
|
13319
|
+
type: 'boolean',
|
|
13320
|
+
},
|
|
13321
|
+
is_device_error: {
|
|
13322
|
+
description:
|
|
13323
|
+
'Indicates that the error is not a device error.',
|
|
13324
|
+
enum: [false],
|
|
13325
|
+
type: 'boolean',
|
|
13326
|
+
},
|
|
13327
|
+
message: {
|
|
13328
|
+
description:
|
|
13329
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
13330
|
+
type: 'string',
|
|
13331
|
+
},
|
|
13332
|
+
},
|
|
13333
|
+
required: [
|
|
13334
|
+
'message',
|
|
13335
|
+
'is_device_error',
|
|
13336
|
+
'created_at',
|
|
13337
|
+
'error_code',
|
|
13338
|
+
'is_connected_account_error',
|
|
13339
|
+
],
|
|
13340
|
+
type: 'object',
|
|
13341
|
+
'x-resource-type': 'connected_account',
|
|
13342
|
+
},
|
|
13273
13343
|
{
|
|
13274
13344
|
description:
|
|
13275
13345
|
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
@@ -34241,6 +34311,50 @@ const openapi: OpenAPISpec = {
|
|
|
34241
34311
|
'x-resource-type': 'connected_account',
|
|
34242
34312
|
'x-variant-group-key': 'locks',
|
|
34243
34313
|
},
|
|
34314
|
+
{
|
|
34315
|
+
description:
|
|
34316
|
+
"Indicates that Seam's integration user does not have sufficient permissions on the provider's system to which this device belongs, so Seam cannot manage access codes or unlock the device. See the error message for specifics, then either reauthorize the connected account in Seam or grant the integration user the required permissions in the provider's system.",
|
|
34317
|
+
properties: {
|
|
34318
|
+
created_at: {
|
|
34319
|
+
description:
|
|
34320
|
+
'Date and time at which Seam created the error.',
|
|
34321
|
+
format: 'date-time',
|
|
34322
|
+
type: 'string',
|
|
34323
|
+
},
|
|
34324
|
+
error_code: {
|
|
34325
|
+
description:
|
|
34326
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
34327
|
+
enum: ['insufficient_permissions'],
|
|
34328
|
+
type: 'string',
|
|
34329
|
+
},
|
|
34330
|
+
is_connected_account_error: {
|
|
34331
|
+
description:
|
|
34332
|
+
'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.',
|
|
34333
|
+
enum: [true],
|
|
34334
|
+
type: 'boolean',
|
|
34335
|
+
},
|
|
34336
|
+
is_device_error: {
|
|
34337
|
+
description:
|
|
34338
|
+
'Indicates that the error is not a device error.',
|
|
34339
|
+
enum: [false],
|
|
34340
|
+
type: 'boolean',
|
|
34341
|
+
},
|
|
34342
|
+
message: {
|
|
34343
|
+
description:
|
|
34344
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
34345
|
+
type: 'string',
|
|
34346
|
+
},
|
|
34347
|
+
},
|
|
34348
|
+
required: [
|
|
34349
|
+
'message',
|
|
34350
|
+
'is_device_error',
|
|
34351
|
+
'created_at',
|
|
34352
|
+
'error_code',
|
|
34353
|
+
'is_connected_account_error',
|
|
34354
|
+
],
|
|
34355
|
+
type: 'object',
|
|
34356
|
+
'x-resource-type': 'connected_account',
|
|
34357
|
+
},
|
|
34244
34358
|
{
|
|
34245
34359
|
description:
|
|
34246
34360
|
'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.',
|
|
@@ -15115,6 +15115,18 @@ export type Routes = {
|
|
|
15115
15115
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
15116
15116
|
is_connected_account_error: true
|
|
15117
15117
|
}
|
|
15118
|
+
| {
|
|
15119
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15120
|
+
message: string
|
|
15121
|
+
/** Indicates that the error is not a device error. */
|
|
15122
|
+
is_device_error: false
|
|
15123
|
+
/** Date and time at which Seam created the error. */
|
|
15124
|
+
created_at: string
|
|
15125
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15126
|
+
error_code: 'insufficient_permissions'
|
|
15127
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
15128
|
+
is_connected_account_error: true
|
|
15129
|
+
}
|
|
15118
15130
|
| {
|
|
15119
15131
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15120
15132
|
message: string
|
|
@@ -16164,6 +16176,14 @@ export type Routes = {
|
|
|
16164
16176
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16165
16177
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
16166
16178
|
}
|
|
16179
|
+
| {
|
|
16180
|
+
/** Date and time at which Seam created the error. */
|
|
16181
|
+
created_at: string
|
|
16182
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16183
|
+
message: string
|
|
16184
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16185
|
+
error_code: 'insufficient_permissions'
|
|
16186
|
+
}
|
|
16167
16187
|
| {
|
|
16168
16188
|
/** Date and time at which Seam created the error. */
|
|
16169
16189
|
created_at: string
|
|
@@ -23514,6 +23534,18 @@ export type Routes = {
|
|
|
23514
23534
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
23515
23535
|
is_connected_account_error: true
|
|
23516
23536
|
}
|
|
23537
|
+
| {
|
|
23538
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23539
|
+
message: string
|
|
23540
|
+
/** Indicates that the error is not a device error. */
|
|
23541
|
+
is_device_error: false
|
|
23542
|
+
/** Date and time at which Seam created the error. */
|
|
23543
|
+
created_at: string
|
|
23544
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23545
|
+
error_code: 'insufficient_permissions'
|
|
23546
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
23547
|
+
is_connected_account_error: true
|
|
23548
|
+
}
|
|
23517
23549
|
| {
|
|
23518
23550
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23519
23551
|
message: string
|
|
@@ -40609,6 +40641,14 @@ export type Routes = {
|
|
|
40609
40641
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40610
40642
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
40611
40643
|
}
|
|
40644
|
+
| {
|
|
40645
|
+
/** Date and time at which Seam created the error. */
|
|
40646
|
+
created_at: string
|
|
40647
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40648
|
+
message: string
|
|
40649
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40650
|
+
error_code: 'insufficient_permissions'
|
|
40651
|
+
}
|
|
40612
40652
|
| {
|
|
40613
40653
|
/** Date and time at which Seam created the error. */
|
|
40614
40654
|
created_at: string
|
|
@@ -40819,6 +40859,14 @@ export type Routes = {
|
|
|
40819
40859
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40820
40860
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
40821
40861
|
}
|
|
40862
|
+
| {
|
|
40863
|
+
/** Date and time at which Seam created the error. */
|
|
40864
|
+
created_at: string
|
|
40865
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40866
|
+
message: string
|
|
40867
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40868
|
+
error_code: 'insufficient_permissions'
|
|
40869
|
+
}
|
|
40822
40870
|
| {
|
|
40823
40871
|
/** Date and time at which Seam created the error. */
|
|
40824
40872
|
created_at: string
|
|
@@ -41025,6 +41073,14 @@ export type Routes = {
|
|
|
41025
41073
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
41026
41074
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
41027
41075
|
}
|
|
41076
|
+
| {
|
|
41077
|
+
/** Date and time at which Seam created the error. */
|
|
41078
|
+
created_at: string
|
|
41079
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41080
|
+
message: string
|
|
41081
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
41082
|
+
error_code: 'insufficient_permissions'
|
|
41083
|
+
}
|
|
41028
41084
|
| {
|
|
41029
41085
|
/** Date and time at which Seam created the error. */
|
|
41030
41086
|
created_at: string
|
|
@@ -51441,6 +51497,18 @@ export type Routes = {
|
|
|
51441
51497
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
51442
51498
|
is_connected_account_error: true
|
|
51443
51499
|
}
|
|
51500
|
+
| {
|
|
51501
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51502
|
+
message: string
|
|
51503
|
+
/** Indicates that the error is not a device error. */
|
|
51504
|
+
is_device_error: false
|
|
51505
|
+
/** Date and time at which Seam created the error. */
|
|
51506
|
+
created_at: string
|
|
51507
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51508
|
+
error_code: 'insufficient_permissions'
|
|
51509
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
51510
|
+
is_connected_account_error: true
|
|
51511
|
+
}
|
|
51444
51512
|
| {
|
|
51445
51513
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51446
51514
|
message: string
|
|
@@ -53561,6 +53629,18 @@ export type Routes = {
|
|
|
53561
53629
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
53562
53630
|
is_connected_account_error: true
|
|
53563
53631
|
}
|
|
53632
|
+
| {
|
|
53633
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53634
|
+
message: string
|
|
53635
|
+
/** Indicates that the error is not a device error. */
|
|
53636
|
+
is_device_error: false
|
|
53637
|
+
/** Date and time at which Seam created the error. */
|
|
53638
|
+
created_at: string
|
|
53639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53640
|
+
error_code: 'insufficient_permissions'
|
|
53641
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
53642
|
+
is_connected_account_error: true
|
|
53643
|
+
}
|
|
53564
53644
|
| {
|
|
53565
53645
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53566
53646
|
message: string
|
|
@@ -55666,6 +55746,18 @@ export type Routes = {
|
|
|
55666
55746
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
55667
55747
|
is_connected_account_error: true
|
|
55668
55748
|
}
|
|
55749
|
+
| {
|
|
55750
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55751
|
+
message: string
|
|
55752
|
+
/** Indicates that the error is not a device error. */
|
|
55753
|
+
is_device_error: false
|
|
55754
|
+
/** Date and time at which Seam created the error. */
|
|
55755
|
+
created_at: string
|
|
55756
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55757
|
+
error_code: 'insufficient_permissions'
|
|
55758
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
55759
|
+
is_connected_account_error: true
|
|
55760
|
+
}
|
|
55669
55761
|
| {
|
|
55670
55762
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55671
55763
|
message: string
|
|
@@ -56493,6 +56585,18 @@ export type Routes = {
|
|
|
56493
56585
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
56494
56586
|
is_connected_account_error: true
|
|
56495
56587
|
}
|
|
56588
|
+
| {
|
|
56589
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56590
|
+
message: string
|
|
56591
|
+
/** Indicates that the error is not a device error. */
|
|
56592
|
+
is_device_error: false
|
|
56593
|
+
/** Date and time at which Seam created the error. */
|
|
56594
|
+
created_at: string
|
|
56595
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
56596
|
+
error_code: 'insufficient_permissions'
|
|
56597
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
56598
|
+
is_connected_account_error: true
|
|
56599
|
+
}
|
|
56496
56600
|
| {
|
|
56497
56601
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56498
56602
|
message: string
|
|
@@ -68229,6 +68333,18 @@ export type Routes = {
|
|
|
68229
68333
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
68230
68334
|
is_connected_account_error: true
|
|
68231
68335
|
}
|
|
68336
|
+
| {
|
|
68337
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68338
|
+
message: string
|
|
68339
|
+
/** Indicates that the error is not a device error. */
|
|
68340
|
+
is_device_error: false
|
|
68341
|
+
/** Date and time at which Seam created the error. */
|
|
68342
|
+
created_at: string
|
|
68343
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68344
|
+
error_code: 'insufficient_permissions'
|
|
68345
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
68346
|
+
is_connected_account_error: true
|
|
68347
|
+
}
|
|
68232
68348
|
| {
|
|
68233
68349
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68234
68350
|
message: string
|
|
@@ -70103,6 +70219,18 @@ export type Routes = {
|
|
|
70103
70219
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
70104
70220
|
is_connected_account_error: true
|
|
70105
70221
|
}
|
|
70222
|
+
| {
|
|
70223
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70224
|
+
message: string
|
|
70225
|
+
/** Indicates that the error is not a device error. */
|
|
70226
|
+
is_device_error: false
|
|
70227
|
+
/** Date and time at which Seam created the error. */
|
|
70228
|
+
created_at: string
|
|
70229
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70230
|
+
error_code: 'insufficient_permissions'
|
|
70231
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
70232
|
+
is_connected_account_error: true
|
|
70233
|
+
}
|
|
70106
70234
|
| {
|
|
70107
70235
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70108
70236
|
message: string
|
|
@@ -72176,6 +72304,18 @@ export type Routes = {
|
|
|
72176
72304
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
72177
72305
|
is_connected_account_error: true
|
|
72178
72306
|
}
|
|
72307
|
+
| {
|
|
72308
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72309
|
+
message: string
|
|
72310
|
+
/** Indicates that the error is not a device error. */
|
|
72311
|
+
is_device_error: false
|
|
72312
|
+
/** Date and time at which Seam created the error. */
|
|
72313
|
+
created_at: string
|
|
72314
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72315
|
+
error_code: 'insufficient_permissions'
|
|
72316
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
72317
|
+
is_connected_account_error: true
|
|
72318
|
+
}
|
|
72179
72319
|
| {
|
|
72180
72320
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72181
72321
|
message: string
|
|
@@ -74049,6 +74189,18 @@ export type Routes = {
|
|
|
74049
74189
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
74050
74190
|
is_connected_account_error: true
|
|
74051
74191
|
}
|
|
74192
|
+
| {
|
|
74193
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74194
|
+
message: string
|
|
74195
|
+
/** Indicates that the error is not a device error. */
|
|
74196
|
+
is_device_error: false
|
|
74197
|
+
/** Date and time at which Seam created the error. */
|
|
74198
|
+
created_at: string
|
|
74199
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74200
|
+
error_code: 'insufficient_permissions'
|
|
74201
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
74202
|
+
is_connected_account_error: true
|
|
74203
|
+
}
|
|
74052
74204
|
| {
|
|
74053
74205
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74054
74206
|
message: string
|
|
@@ -84363,6 +84515,18 @@ export type Routes = {
|
|
|
84363
84515
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
84364
84516
|
is_connected_account_error: true
|
|
84365
84517
|
}
|
|
84518
|
+
| {
|
|
84519
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84520
|
+
message: string
|
|
84521
|
+
/** Indicates that the error is not a device error. */
|
|
84522
|
+
is_device_error: false
|
|
84523
|
+
/** Date and time at which Seam created the error. */
|
|
84524
|
+
created_at: string
|
|
84525
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84526
|
+
error_code: 'insufficient_permissions'
|
|
84527
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
84528
|
+
is_connected_account_error: true
|
|
84529
|
+
}
|
|
84366
84530
|
| {
|
|
84367
84531
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84368
84532
|
message: string
|
|
@@ -86236,6 +86400,18 @@ export type Routes = {
|
|
|
86236
86400
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
86237
86401
|
is_connected_account_error: true
|
|
86238
86402
|
}
|
|
86403
|
+
| {
|
|
86404
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86405
|
+
message: string
|
|
86406
|
+
/** Indicates that the error is not a device error. */
|
|
86407
|
+
is_device_error: false
|
|
86408
|
+
/** Date and time at which Seam created the error. */
|
|
86409
|
+
created_at: string
|
|
86410
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86411
|
+
error_code: 'insufficient_permissions'
|
|
86412
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
86413
|
+
is_connected_account_error: true
|
|
86414
|
+
}
|
|
86239
86415
|
| {
|
|
86240
86416
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86241
86417
|
message: string
|
|
@@ -106126,6 +106302,18 @@ export type Routes = {
|
|
|
106126
106302
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
106127
106303
|
is_connected_account_error: true
|
|
106128
106304
|
}
|
|
106305
|
+
| {
|
|
106306
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
106307
|
+
message: string
|
|
106308
|
+
/** Indicates that the error is not a device error. */
|
|
106309
|
+
is_device_error: false
|
|
106310
|
+
/** Date and time at which Seam created the error. */
|
|
106311
|
+
created_at: string
|
|
106312
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
106313
|
+
error_code: 'insufficient_permissions'
|
|
106314
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
106315
|
+
is_connected_account_error: true
|
|
106316
|
+
}
|
|
106129
106317
|
| {
|
|
106130
106318
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
106131
106319
|
message: string
|
|
@@ -107175,6 +107363,14 @@ export type Routes = {
|
|
|
107175
107363
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107176
107364
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
107177
107365
|
}
|
|
107366
|
+
| {
|
|
107367
|
+
/** Date and time at which Seam created the error. */
|
|
107368
|
+
created_at: string
|
|
107369
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107370
|
+
message: string
|
|
107371
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107372
|
+
error_code: 'insufficient_permissions'
|
|
107373
|
+
}
|
|
107178
107374
|
| {
|
|
107179
107375
|
/** Date and time at which Seam created the error. */
|
|
107180
107376
|
created_at: string
|
|
@@ -115458,6 +115654,18 @@ export type Routes = {
|
|
|
115458
115654
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
115459
115655
|
is_connected_account_error: true
|
|
115460
115656
|
}
|
|
115657
|
+
| {
|
|
115658
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115659
|
+
message: string
|
|
115660
|
+
/** Indicates that the error is not a device error. */
|
|
115661
|
+
is_device_error: false
|
|
115662
|
+
/** Date and time at which Seam created the error. */
|
|
115663
|
+
created_at: string
|
|
115664
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115665
|
+
error_code: 'insufficient_permissions'
|
|
115666
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
115667
|
+
is_connected_account_error: true
|
|
115668
|
+
}
|
|
115461
115669
|
| {
|
|
115462
115670
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115463
115671
|
message: string
|
|
@@ -121641,6 +121849,18 @@ export type Routes = {
|
|
|
121641
121849
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
121642
121850
|
is_connected_account_error: true
|
|
121643
121851
|
}
|
|
121852
|
+
| {
|
|
121853
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121854
|
+
message: string
|
|
121855
|
+
/** Indicates that the error is not a device error. */
|
|
121856
|
+
is_device_error: false
|
|
121857
|
+
/** Date and time at which Seam created the error. */
|
|
121858
|
+
created_at: string
|
|
121859
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
121860
|
+
error_code: 'insufficient_permissions'
|
|
121861
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
121862
|
+
is_connected_account_error: true
|
|
121863
|
+
}
|
|
121644
121864
|
| {
|
|
121645
121865
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121646
121866
|
message: string
|
|
@@ -123514,6 +123734,18 @@ export type Routes = {
|
|
|
123514
123734
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
123515
123735
|
is_connected_account_error: true
|
|
123516
123736
|
}
|
|
123737
|
+
| {
|
|
123738
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123739
|
+
message: string
|
|
123740
|
+
/** Indicates that the error is not a device error. */
|
|
123741
|
+
is_device_error: false
|
|
123742
|
+
/** Date and time at which Seam created the error. */
|
|
123743
|
+
created_at: string
|
|
123744
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123745
|
+
error_code: 'insufficient_permissions'
|
|
123746
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
123747
|
+
is_connected_account_error: true
|
|
123748
|
+
}
|
|
123517
123749
|
| {
|
|
123518
123750
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123519
123751
|
message: string
|
|
@@ -134769,6 +135001,18 @@ export type Routes = {
|
|
|
134769
135001
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
134770
135002
|
is_connected_account_error: true
|
|
134771
135003
|
}
|
|
135004
|
+
| {
|
|
135005
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135006
|
+
message: string
|
|
135007
|
+
/** Indicates that the error is not a device error. */
|
|
135008
|
+
is_device_error: false
|
|
135009
|
+
/** Date and time at which Seam created the error. */
|
|
135010
|
+
created_at: string
|
|
135011
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135012
|
+
error_code: 'insufficient_permissions'
|
|
135013
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
135014
|
+
is_connected_account_error: true
|
|
135015
|
+
}
|
|
134772
135016
|
| {
|
|
134773
135017
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134774
135018
|
message: string
|
|
@@ -136644,6 +136888,18 @@ export type Routes = {
|
|
|
136644
136888
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
136645
136889
|
is_connected_account_error: true
|
|
136646
136890
|
}
|
|
136891
|
+
| {
|
|
136892
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136893
|
+
message: string
|
|
136894
|
+
/** Indicates that the error is not a device error. */
|
|
136895
|
+
is_device_error: false
|
|
136896
|
+
/** Date and time at which Seam created the error. */
|
|
136897
|
+
created_at: string
|
|
136898
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
136899
|
+
error_code: 'insufficient_permissions'
|
|
136900
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
136901
|
+
is_connected_account_error: true
|
|
136902
|
+
}
|
|
136647
136903
|
| {
|
|
136648
136904
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136649
136905
|
message: string
|
|
@@ -137484,6 +137740,14 @@ export type Routes = {
|
|
|
137484
137740
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137485
137741
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
137486
137742
|
}
|
|
137743
|
+
| {
|
|
137744
|
+
/** Date and time at which Seam created the error. */
|
|
137745
|
+
created_at: string
|
|
137746
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137747
|
+
message: string
|
|
137748
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137749
|
+
error_code: 'insufficient_permissions'
|
|
137750
|
+
}
|
|
137487
137751
|
| {
|
|
137488
137752
|
/** Date and time at which Seam created the error. */
|
|
137489
137753
|
created_at: string
|
|
@@ -140084,6 +140348,18 @@ export type Routes = {
|
|
|
140084
140348
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
140085
140349
|
is_connected_account_error: true
|
|
140086
140350
|
}
|
|
140351
|
+
| {
|
|
140352
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140353
|
+
message: string
|
|
140354
|
+
/** Indicates that the error is not a device error. */
|
|
140355
|
+
is_device_error: false
|
|
140356
|
+
/** Date and time at which Seam created the error. */
|
|
140357
|
+
created_at: string
|
|
140358
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140359
|
+
error_code: 'insufficient_permissions'
|
|
140360
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
140361
|
+
is_connected_account_error: true
|
|
140362
|
+
}
|
|
140087
140363
|
| {
|
|
140088
140364
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140089
140365
|
message: string
|
|
@@ -140911,6 +141187,14 @@ export type Routes = {
|
|
|
140911
141187
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140912
141188
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
140913
141189
|
}
|
|
141190
|
+
| {
|
|
141191
|
+
/** Date and time at which Seam created the error. */
|
|
141192
|
+
created_at: string
|
|
141193
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141194
|
+
message: string
|
|
141195
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141196
|
+
error_code: 'insufficient_permissions'
|
|
141197
|
+
}
|
|
140914
141198
|
| {
|
|
140915
141199
|
/** Date and time at which Seam created the error. */
|
|
140916
141200
|
created_at: string
|
|
@@ -144282,6 +144566,18 @@ export type Routes = {
|
|
|
144282
144566
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
144283
144567
|
is_connected_account_error: true
|
|
144284
144568
|
}
|
|
144569
|
+
| {
|
|
144570
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
144571
|
+
message: string
|
|
144572
|
+
/** Indicates that the error is not a device error. */
|
|
144573
|
+
is_device_error: false
|
|
144574
|
+
/** Date and time at which Seam created the error. */
|
|
144575
|
+
created_at: string
|
|
144576
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
144577
|
+
error_code: 'insufficient_permissions'
|
|
144578
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
144579
|
+
is_connected_account_error: true
|
|
144580
|
+
}
|
|
144285
144581
|
| {
|
|
144286
144582
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
144287
144583
|
message: string
|