@seamapi/types 1.404.1 → 1.404.2
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 +395 -111
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +425 -21
- package/lib/seam/connect/models/connected-accounts/connected-account.js +121 -41
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +125 -9
- package/lib/seam/connect/openapi.js +313 -76
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +300 -12
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +172 -44
- package/src/lib/seam/connect/openapi.ts +389 -76
- package/src/lib/seam/connect/route-types.ts +300 -12
|
@@ -1718,8 +1718,11 @@ export interface Routes {
|
|
|
1718
1718
|
| {
|
|
1719
1719
|
/** Date and time at which Seam created the error. */
|
|
1720
1720
|
created_at: string
|
|
1721
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1721
1722
|
message: string
|
|
1723
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
1722
1724
|
is_connected_account_error?: boolean | undefined
|
|
1725
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
1723
1726
|
is_bridge_error?: boolean | undefined
|
|
1724
1727
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1725
1728
|
error_code: 'invalid_credentials'
|
|
@@ -1727,8 +1730,11 @@ export interface Routes {
|
|
|
1727
1730
|
| {
|
|
1728
1731
|
/** Date and time at which Seam created the error. */
|
|
1729
1732
|
created_at: string
|
|
1733
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1730
1734
|
message: string
|
|
1735
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
1731
1736
|
is_connected_account_error?: boolean | undefined
|
|
1737
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
1732
1738
|
is_bridge_error?: boolean | undefined
|
|
1733
1739
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1734
1740
|
error_code: 'bridge_disconnected'
|
|
@@ -2274,8 +2280,11 @@ export interface Routes {
|
|
|
2274
2280
|
| {
|
|
2275
2281
|
/** Date and time at which Seam created the error. */
|
|
2276
2282
|
created_at: string
|
|
2283
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2277
2284
|
message: string
|
|
2285
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
2278
2286
|
is_connected_account_error?: boolean | undefined
|
|
2287
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
2279
2288
|
is_bridge_error?: boolean | undefined
|
|
2280
2289
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2281
2290
|
error_code: 'invalid_credentials'
|
|
@@ -2283,8 +2292,11 @@ export interface Routes {
|
|
|
2283
2292
|
| {
|
|
2284
2293
|
/** Date and time at which Seam created the error. */
|
|
2285
2294
|
created_at: string
|
|
2295
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2286
2296
|
message: string
|
|
2297
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
2287
2298
|
is_connected_account_error?: boolean | undefined
|
|
2299
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
2288
2300
|
is_bridge_error?: boolean | undefined
|
|
2289
2301
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2290
2302
|
error_code: 'bridge_disconnected'
|
|
@@ -4133,8 +4145,11 @@ export interface Routes {
|
|
|
4133
4145
|
| {
|
|
4134
4146
|
/** Date and time at which Seam created the error. */
|
|
4135
4147
|
created_at: string
|
|
4148
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4136
4149
|
message: string
|
|
4150
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4137
4151
|
is_connected_account_error?: boolean | undefined
|
|
4152
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4138
4153
|
is_bridge_error?: boolean | undefined
|
|
4139
4154
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4140
4155
|
error_code: 'invalid_credentials'
|
|
@@ -4142,8 +4157,11 @@ export interface Routes {
|
|
|
4142
4157
|
| {
|
|
4143
4158
|
/** Date and time at which Seam created the error. */
|
|
4144
4159
|
created_at: string
|
|
4160
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4145
4161
|
message: string
|
|
4162
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4146
4163
|
is_connected_account_error?: boolean | undefined
|
|
4164
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4147
4165
|
is_bridge_error?: boolean | undefined
|
|
4148
4166
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4149
4167
|
error_code: 'bridge_disconnected'
|
|
@@ -4663,8 +4681,11 @@ export interface Routes {
|
|
|
4663
4681
|
| {
|
|
4664
4682
|
/** Date and time at which Seam created the error. */
|
|
4665
4683
|
created_at: string
|
|
4684
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4666
4685
|
message: string
|
|
4686
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4667
4687
|
is_connected_account_error?: boolean | undefined
|
|
4688
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4668
4689
|
is_bridge_error?: boolean | undefined
|
|
4669
4690
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4670
4691
|
error_code: 'invalid_credentials'
|
|
@@ -4672,8 +4693,11 @@ export interface Routes {
|
|
|
4672
4693
|
| {
|
|
4673
4694
|
/** Date and time at which Seam created the error. */
|
|
4674
4695
|
created_at: string
|
|
4696
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4675
4697
|
message: string
|
|
4698
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4676
4699
|
is_connected_account_error?: boolean | undefined
|
|
4700
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4677
4701
|
is_bridge_error?: boolean | undefined
|
|
4678
4702
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4679
4703
|
error_code: 'bridge_disconnected'
|
|
@@ -5201,8 +5225,11 @@ export interface Routes {
|
|
|
5201
5225
|
| {
|
|
5202
5226
|
/** Date and time at which Seam created the error. */
|
|
5203
5227
|
created_at: string
|
|
5228
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5204
5229
|
message: string
|
|
5230
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5205
5231
|
is_connected_account_error?: boolean | undefined
|
|
5232
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5206
5233
|
is_bridge_error?: boolean | undefined
|
|
5207
5234
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5208
5235
|
error_code: 'invalid_credentials'
|
|
@@ -5210,8 +5237,11 @@ export interface Routes {
|
|
|
5210
5237
|
| {
|
|
5211
5238
|
/** Date and time at which Seam created the error. */
|
|
5212
5239
|
created_at: string
|
|
5240
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5213
5241
|
message: string
|
|
5242
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5214
5243
|
is_connected_account_error?: boolean | undefined
|
|
5244
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5215
5245
|
is_bridge_error?: boolean | undefined
|
|
5216
5246
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5217
5247
|
error_code: 'bridge_disconnected'
|
|
@@ -5717,8 +5747,11 @@ export interface Routes {
|
|
|
5717
5747
|
| {
|
|
5718
5748
|
/** Date and time at which Seam created the error. */
|
|
5719
5749
|
created_at: string
|
|
5750
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5720
5751
|
message: string
|
|
5752
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5721
5753
|
is_connected_account_error?: boolean | undefined
|
|
5754
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5722
5755
|
is_bridge_error?: boolean | undefined
|
|
5723
5756
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5724
5757
|
error_code: 'invalid_credentials'
|
|
@@ -5726,8 +5759,11 @@ export interface Routes {
|
|
|
5726
5759
|
| {
|
|
5727
5760
|
/** Date and time at which Seam created the error. */
|
|
5728
5761
|
created_at: string
|
|
5762
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5729
5763
|
message: string
|
|
5764
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5730
5765
|
is_connected_account_error?: boolean | undefined
|
|
5766
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5731
5767
|
is_bridge_error?: boolean | undefined
|
|
5732
5768
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5733
5769
|
error_code: 'bridge_disconnected'
|
|
@@ -6266,8 +6302,11 @@ export interface Routes {
|
|
|
6266
6302
|
| {
|
|
6267
6303
|
/** Date and time at which Seam created the error. */
|
|
6268
6304
|
created_at: string
|
|
6305
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6269
6306
|
message: string
|
|
6307
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
6270
6308
|
is_connected_account_error?: boolean | undefined
|
|
6309
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
6271
6310
|
is_bridge_error?: boolean | undefined
|
|
6272
6311
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6273
6312
|
error_code: 'invalid_credentials'
|
|
@@ -6275,8 +6314,11 @@ export interface Routes {
|
|
|
6275
6314
|
| {
|
|
6276
6315
|
/** Date and time at which Seam created the error. */
|
|
6277
6316
|
created_at: string
|
|
6317
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6278
6318
|
message: string
|
|
6319
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
6279
6320
|
is_connected_account_error?: boolean | undefined
|
|
6321
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
6280
6322
|
is_bridge_error?: boolean | undefined
|
|
6281
6323
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6282
6324
|
error_code: 'bridge_disconnected'
|
|
@@ -8112,8 +8154,11 @@ export interface Routes {
|
|
|
8112
8154
|
| {
|
|
8113
8155
|
/** Date and time at which Seam created the error. */
|
|
8114
8156
|
created_at: string
|
|
8157
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8115
8158
|
message: string
|
|
8159
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
8116
8160
|
is_connected_account_error?: boolean | undefined
|
|
8161
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
8117
8162
|
is_bridge_error?: boolean | undefined
|
|
8118
8163
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8119
8164
|
error_code: 'invalid_credentials'
|
|
@@ -8121,8 +8166,11 @@ export interface Routes {
|
|
|
8121
8166
|
| {
|
|
8122
8167
|
/** Date and time at which Seam created the error. */
|
|
8123
8168
|
created_at: string
|
|
8169
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8124
8170
|
message: string
|
|
8171
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
8125
8172
|
is_connected_account_error?: boolean | undefined
|
|
8173
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
8126
8174
|
is_bridge_error?: boolean | undefined
|
|
8127
8175
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8128
8176
|
error_code: 'bridge_disconnected'
|
|
@@ -8618,8 +8666,11 @@ export interface Routes {
|
|
|
8618
8666
|
| {
|
|
8619
8667
|
/** Date and time at which Seam created the error. */
|
|
8620
8668
|
created_at: string
|
|
8669
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8621
8670
|
message: string
|
|
8671
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
8622
8672
|
is_connected_account_error?: boolean | undefined
|
|
8673
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
8623
8674
|
is_bridge_error?: boolean | undefined
|
|
8624
8675
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8625
8676
|
error_code: 'invalid_credentials'
|
|
@@ -8627,8 +8678,11 @@ export interface Routes {
|
|
|
8627
8678
|
| {
|
|
8628
8679
|
/** Date and time at which Seam created the error. */
|
|
8629
8680
|
created_at: string
|
|
8681
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8630
8682
|
message: string
|
|
8683
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
8631
8684
|
is_connected_account_error?: boolean | undefined
|
|
8685
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
8632
8686
|
is_bridge_error?: boolean | undefined
|
|
8633
8687
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8634
8688
|
error_code: 'bridge_disconnected'
|
|
@@ -17734,8 +17788,12 @@ export interface Routes {
|
|
|
17734
17788
|
queryParams: {}
|
|
17735
17789
|
jsonBody: {}
|
|
17736
17790
|
commonParams: {
|
|
17737
|
-
/** ID of the access system user that you want to delete. */
|
|
17738
|
-
acs_user_id
|
|
17791
|
+
/** ID of the access system user that you want to delete. You must provide either acs_user_id or user_identity_id */
|
|
17792
|
+
acs_user_id?: string | undefined
|
|
17793
|
+
/** ID of the user identity that you want to delete. You must provide either acs_user_id or user_identity_id. If you provide user_identity_id, you must also provide acs_system_id. */
|
|
17794
|
+
user_identity_id?: string | undefined
|
|
17795
|
+
/** ID of the access system that you want to delete. You must provide acs_system_id with user_identity_id. */
|
|
17796
|
+
acs_system_id?: string | undefined
|
|
17739
17797
|
}
|
|
17740
17798
|
formData: {}
|
|
17741
17799
|
jsonResponse: {}
|
|
@@ -17746,8 +17804,12 @@ export interface Routes {
|
|
|
17746
17804
|
queryParams: {}
|
|
17747
17805
|
jsonBody: {}
|
|
17748
17806
|
commonParams: {
|
|
17749
|
-
/** ID of the access system user that you want to get. */
|
|
17750
|
-
acs_user_id
|
|
17807
|
+
/** ID of the access system user that you want to get. You can only provide acs_user_id or user_identity_id. */
|
|
17808
|
+
acs_user_id?: string | undefined
|
|
17809
|
+
/** ID of the user identity that you want to get. You can only provide acs_user_id or user_identity_id. */
|
|
17810
|
+
user_identity_id?: string | undefined
|
|
17811
|
+
/** ID of the access system that you want to get. You can only provide acs_user_id or user_identity_id. */
|
|
17812
|
+
acs_system_id?: string | undefined
|
|
17751
17813
|
}
|
|
17752
17814
|
formData: {}
|
|
17753
17815
|
jsonResponse: {
|
|
@@ -18347,8 +18409,12 @@ export interface Routes {
|
|
|
18347
18409
|
method: 'POST'
|
|
18348
18410
|
queryParams: {}
|
|
18349
18411
|
jsonBody: {
|
|
18350
|
-
/** ID of the access system user for whom you want to revoke access. */
|
|
18351
|
-
acs_user_id
|
|
18412
|
+
/** ID of the access system user for whom you want to revoke access. You can only provide acs_user_id or user_identity_id. */
|
|
18413
|
+
acs_user_id?: string | undefined
|
|
18414
|
+
/** ID of the user identity for whom you want to revoke access. You can only provide acs_user_id or user_identity_id. */
|
|
18415
|
+
user_identity_id?: string | undefined
|
|
18416
|
+
/** ID of the access system for which you want to revoke access. You can only provide acs_system_id with user_identity_id. */
|
|
18417
|
+
acs_system_id?: string | undefined
|
|
18352
18418
|
}
|
|
18353
18419
|
commonParams: {}
|
|
18354
18420
|
formData: {}
|
|
@@ -18360,8 +18426,12 @@ export interface Routes {
|
|
|
18360
18426
|
queryParams: {}
|
|
18361
18427
|
jsonBody: {}
|
|
18362
18428
|
commonParams: {
|
|
18363
|
-
/** ID of the access system user that you want to suspend. */
|
|
18364
|
-
acs_user_id
|
|
18429
|
+
/** ID of the access system user that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id. */
|
|
18430
|
+
acs_user_id?: string | undefined
|
|
18431
|
+
/** ID of the user identity that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id. */
|
|
18432
|
+
user_identity_id?: string | undefined
|
|
18433
|
+
/** ID of the access system that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id. */
|
|
18434
|
+
acs_system_id?: string | undefined
|
|
18365
18435
|
}
|
|
18366
18436
|
formData: {}
|
|
18367
18437
|
jsonResponse: {}
|
|
@@ -18837,8 +18907,12 @@ export interface Routes {
|
|
|
18837
18907
|
queryParams: {}
|
|
18838
18908
|
jsonBody: {}
|
|
18839
18909
|
commonParams: {
|
|
18840
|
-
/** ID of the access system user that you want to unsuspend. */
|
|
18841
|
-
acs_user_id
|
|
18910
|
+
/** ID of the access system user that you want to unsuspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id. */
|
|
18911
|
+
acs_user_id?: string | undefined
|
|
18912
|
+
/** ID of the user identity that you want to unsuspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id. */
|
|
18913
|
+
user_identity_id?: string | undefined
|
|
18914
|
+
/** ID of the access system of the user that you want to unsuspend. You can only provide acs_system_id with user_identity_id. */
|
|
18915
|
+
acs_system_id?: string | undefined
|
|
18842
18916
|
}
|
|
18843
18917
|
formData: {}
|
|
18844
18918
|
jsonResponse: {}
|
|
@@ -18857,8 +18931,12 @@ export interface Routes {
|
|
|
18857
18931
|
ends_at: string
|
|
18858
18932
|
} | null)
|
|
18859
18933
|
| undefined
|
|
18860
|
-
/** ID of the
|
|
18861
|
-
acs_user_id
|
|
18934
|
+
/** ID of the access system user that you want to update. You can only provide acs_user_id or user_identity_id. */
|
|
18935
|
+
acs_user_id?: string | undefined
|
|
18936
|
+
/** ID of the user identity that you want to update. You can only provide acs_user_id or user_identity_id. If you provide user_identity_id, you must also provide acs_system_id. */
|
|
18937
|
+
user_identity_id?: string | undefined
|
|
18938
|
+
/** ID of the access system that you want to update. You can only provide acs_system_id with user_identity_id. */
|
|
18939
|
+
acs_system_id?: string | undefined
|
|
18862
18940
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
18863
18941
|
full_name?: string | undefined
|
|
18864
18942
|
/**
|
|
@@ -22045,25 +22123,39 @@ export interface Routes {
|
|
|
22045
22123
|
jsonResponse: {
|
|
22046
22124
|
/** Represents a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). A connected account is an external third-party account to which your user has authorized Seam to get access, for example, an August account with a list of door locks. */
|
|
22047
22125
|
connected_account: {
|
|
22126
|
+
/** Unique identifier for the connected account. */
|
|
22048
22127
|
connected_account_id?: string | undefined
|
|
22128
|
+
/** Date and time at which the connected account was created. */
|
|
22049
22129
|
created_at?: string | undefined
|
|
22130
|
+
/** User identifier associated with the connected account. */
|
|
22050
22131
|
user_identifier?:
|
|
22051
22132
|
| {
|
|
22133
|
+
/** Username of the user identifier associated with the connected account. */
|
|
22052
22134
|
username?: string | undefined
|
|
22135
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
22053
22136
|
api_url?: string | undefined
|
|
22137
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
22054
22138
|
email?: string | undefined
|
|
22139
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
22055
22140
|
phone?: string | undefined
|
|
22141
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
22056
22142
|
exclusive?: boolean | undefined
|
|
22057
22143
|
}
|
|
22058
22144
|
| undefined
|
|
22145
|
+
/** Type of connected account. */
|
|
22059
22146
|
account_type?: string | undefined
|
|
22147
|
+
/** Display name for the connected account type. */
|
|
22060
22148
|
account_type_display_name: string
|
|
22149
|
+
/** Errors associated with the connected account. */
|
|
22061
22150
|
errors: Array<
|
|
22062
22151
|
| {
|
|
22063
22152
|
/** Date and time at which Seam created the error. */
|
|
22064
22153
|
created_at: string
|
|
22154
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22065
22155
|
message: string
|
|
22156
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22066
22157
|
is_connected_account_error?: boolean | undefined
|
|
22158
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22067
22159
|
is_bridge_error?: boolean | undefined
|
|
22068
22160
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22069
22161
|
error_code: 'account_disconnected'
|
|
@@ -22071,8 +22163,11 @@ export interface Routes {
|
|
|
22071
22163
|
| {
|
|
22072
22164
|
/** Date and time at which Seam created the error. */
|
|
22073
22165
|
created_at: string
|
|
22166
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22074
22167
|
message: string
|
|
22168
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22075
22169
|
is_connected_account_error?: boolean | undefined
|
|
22170
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22076
22171
|
is_bridge_error?: boolean | undefined
|
|
22077
22172
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22078
22173
|
error_code: 'invalid_credentials'
|
|
@@ -22080,8 +22175,11 @@ export interface Routes {
|
|
|
22080
22175
|
| {
|
|
22081
22176
|
/** Date and time at which Seam created the error. */
|
|
22082
22177
|
created_at: string
|
|
22178
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22083
22179
|
message: string
|
|
22180
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22084
22181
|
is_connected_account_error?: boolean | undefined
|
|
22182
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22085
22183
|
is_bridge_error?: boolean | undefined
|
|
22086
22184
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22087
22185
|
error_code: 'bridge_disconnected'
|
|
@@ -22089,25 +22187,36 @@ export interface Routes {
|
|
|
22089
22187
|
| {
|
|
22090
22188
|
/** Date and time at which Seam created the error. */
|
|
22091
22189
|
created_at: string
|
|
22190
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22092
22191
|
message: string
|
|
22192
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22093
22193
|
is_connected_account_error?: boolean | undefined
|
|
22194
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22094
22195
|
is_bridge_error?: boolean | undefined
|
|
22095
22196
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22096
22197
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
22198
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
22097
22199
|
salto_ks_metadata: {
|
|
22200
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
22098
22201
|
sites: Array<{
|
|
22202
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
22099
22203
|
site_id: string
|
|
22204
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
22100
22205
|
site_name: string
|
|
22206
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
22101
22207
|
subscribed_site_user_count: number
|
|
22208
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
22102
22209
|
site_user_subscription_limit: number
|
|
22103
22210
|
}>
|
|
22104
22211
|
}
|
|
22105
22212
|
}
|
|
22106
22213
|
>
|
|
22214
|
+
/** Warnings associated with the connected account. */
|
|
22107
22215
|
warnings: Array<
|
|
22108
22216
|
| {
|
|
22109
22217
|
/** Date and time at which Seam created the warning. */
|
|
22110
22218
|
created_at: string
|
|
22219
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22111
22220
|
message: string
|
|
22112
22221
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22113
22222
|
warning_code: 'scheduled_maintenance_window'
|
|
@@ -22115,6 +22224,7 @@ export interface Routes {
|
|
|
22115
22224
|
| {
|
|
22116
22225
|
/** Date and time at which Seam created the warning. */
|
|
22117
22226
|
created_at: string
|
|
22227
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22118
22228
|
message: string
|
|
22119
22229
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22120
22230
|
warning_code: 'unknown_issue_with_connected_account'
|
|
@@ -22122,14 +22232,21 @@ export interface Routes {
|
|
|
22122
22232
|
| {
|
|
22123
22233
|
/** Date and time at which Seam created the warning. */
|
|
22124
22234
|
created_at: string
|
|
22235
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22125
22236
|
message: string
|
|
22126
22237
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22127
22238
|
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
22239
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
22128
22240
|
salto_ks_metadata: {
|
|
22241
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
22129
22242
|
sites: Array<{
|
|
22243
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
22130
22244
|
site_id: string
|
|
22245
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
22131
22246
|
site_name: string
|
|
22247
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
22132
22248
|
site_user_subscription_limit: number
|
|
22249
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
22133
22250
|
subscribed_site_user_count: number
|
|
22134
22251
|
}>
|
|
22135
22252
|
}
|
|
@@ -22137,6 +22254,7 @@ export interface Routes {
|
|
|
22137
22254
|
>
|
|
22138
22255
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
22139
22256
|
custom_metadata: Record<string, string | boolean>
|
|
22257
|
+
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
22140
22258
|
automatically_manage_new_devices: boolean
|
|
22141
22259
|
}
|
|
22142
22260
|
}
|
|
@@ -22160,25 +22278,39 @@ export interface Routes {
|
|
|
22160
22278
|
formData: {}
|
|
22161
22279
|
jsonResponse: {
|
|
22162
22280
|
connected_accounts: Array<{
|
|
22281
|
+
/** Unique identifier for the connected account. */
|
|
22163
22282
|
connected_account_id?: string | undefined
|
|
22283
|
+
/** Date and time at which the connected account was created. */
|
|
22164
22284
|
created_at?: string | undefined
|
|
22285
|
+
/** User identifier associated with the connected account. */
|
|
22165
22286
|
user_identifier?:
|
|
22166
22287
|
| {
|
|
22288
|
+
/** Username of the user identifier associated with the connected account. */
|
|
22167
22289
|
username?: string | undefined
|
|
22290
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
22168
22291
|
api_url?: string | undefined
|
|
22292
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
22169
22293
|
email?: string | undefined
|
|
22294
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
22170
22295
|
phone?: string | undefined
|
|
22296
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
22171
22297
|
exclusive?: boolean | undefined
|
|
22172
22298
|
}
|
|
22173
22299
|
| undefined
|
|
22300
|
+
/** Type of connected account. */
|
|
22174
22301
|
account_type?: string | undefined
|
|
22302
|
+
/** Display name for the connected account type. */
|
|
22175
22303
|
account_type_display_name: string
|
|
22304
|
+
/** Errors associated with the connected account. */
|
|
22176
22305
|
errors: Array<
|
|
22177
22306
|
| {
|
|
22178
22307
|
/** Date and time at which Seam created the error. */
|
|
22179
22308
|
created_at: string
|
|
22309
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22180
22310
|
message: string
|
|
22311
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22181
22312
|
is_connected_account_error?: boolean | undefined
|
|
22313
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22182
22314
|
is_bridge_error?: boolean | undefined
|
|
22183
22315
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22184
22316
|
error_code: 'account_disconnected'
|
|
@@ -22186,8 +22318,11 @@ export interface Routes {
|
|
|
22186
22318
|
| {
|
|
22187
22319
|
/** Date and time at which Seam created the error. */
|
|
22188
22320
|
created_at: string
|
|
22321
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22189
22322
|
message: string
|
|
22323
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22190
22324
|
is_connected_account_error?: boolean | undefined
|
|
22325
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22191
22326
|
is_bridge_error?: boolean | undefined
|
|
22192
22327
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22193
22328
|
error_code: 'invalid_credentials'
|
|
@@ -22195,8 +22330,11 @@ export interface Routes {
|
|
|
22195
22330
|
| {
|
|
22196
22331
|
/** Date and time at which Seam created the error. */
|
|
22197
22332
|
created_at: string
|
|
22333
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22198
22334
|
message: string
|
|
22335
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22199
22336
|
is_connected_account_error?: boolean | undefined
|
|
22337
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22200
22338
|
is_bridge_error?: boolean | undefined
|
|
22201
22339
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22202
22340
|
error_code: 'bridge_disconnected'
|
|
@@ -22204,25 +22342,36 @@ export interface Routes {
|
|
|
22204
22342
|
| {
|
|
22205
22343
|
/** Date and time at which Seam created the error. */
|
|
22206
22344
|
created_at: string
|
|
22345
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22207
22346
|
message: string
|
|
22347
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22208
22348
|
is_connected_account_error?: boolean | undefined
|
|
22349
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22209
22350
|
is_bridge_error?: boolean | undefined
|
|
22210
22351
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22211
22352
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
22353
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
22212
22354
|
salto_ks_metadata: {
|
|
22355
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
22213
22356
|
sites: Array<{
|
|
22357
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
22214
22358
|
site_id: string
|
|
22359
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
22215
22360
|
site_name: string
|
|
22361
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
22216
22362
|
subscribed_site_user_count: number
|
|
22363
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
22217
22364
|
site_user_subscription_limit: number
|
|
22218
22365
|
}>
|
|
22219
22366
|
}
|
|
22220
22367
|
}
|
|
22221
22368
|
>
|
|
22369
|
+
/** Warnings associated with the connected account. */
|
|
22222
22370
|
warnings: Array<
|
|
22223
22371
|
| {
|
|
22224
22372
|
/** Date and time at which Seam created the warning. */
|
|
22225
22373
|
created_at: string
|
|
22374
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22226
22375
|
message: string
|
|
22227
22376
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22228
22377
|
warning_code: 'scheduled_maintenance_window'
|
|
@@ -22230,6 +22379,7 @@ export interface Routes {
|
|
|
22230
22379
|
| {
|
|
22231
22380
|
/** Date and time at which Seam created the warning. */
|
|
22232
22381
|
created_at: string
|
|
22382
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22233
22383
|
message: string
|
|
22234
22384
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22235
22385
|
warning_code: 'unknown_issue_with_connected_account'
|
|
@@ -22237,14 +22387,21 @@ export interface Routes {
|
|
|
22237
22387
|
| {
|
|
22238
22388
|
/** Date and time at which Seam created the warning. */
|
|
22239
22389
|
created_at: string
|
|
22390
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22240
22391
|
message: string
|
|
22241
22392
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22242
22393
|
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
22394
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
22243
22395
|
salto_ks_metadata: {
|
|
22396
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
22244
22397
|
sites: Array<{
|
|
22398
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
22245
22399
|
site_id: string
|
|
22400
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
22246
22401
|
site_name: string
|
|
22402
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
22247
22403
|
site_user_subscription_limit: number
|
|
22404
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
22248
22405
|
subscribed_site_user_count: number
|
|
22249
22406
|
}>
|
|
22250
22407
|
}
|
|
@@ -22252,6 +22409,7 @@ export interface Routes {
|
|
|
22252
22409
|
>
|
|
22253
22410
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
22254
22411
|
custom_metadata: Record<string, string | boolean>
|
|
22412
|
+
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
22255
22413
|
automatically_manage_new_devices: boolean
|
|
22256
22414
|
}>
|
|
22257
22415
|
/** Information about the current page of results. */
|
|
@@ -22282,25 +22440,39 @@ export interface Routes {
|
|
|
22282
22440
|
jsonResponse: {
|
|
22283
22441
|
/** Represents a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). A connected account is an external third-party account to which your user has authorized Seam to get access, for example, an August account with a list of door locks. */
|
|
22284
22442
|
connected_account: {
|
|
22443
|
+
/** Unique identifier for the connected account. */
|
|
22285
22444
|
connected_account_id?: string | undefined
|
|
22445
|
+
/** Date and time at which the connected account was created. */
|
|
22286
22446
|
created_at?: string | undefined
|
|
22447
|
+
/** User identifier associated with the connected account. */
|
|
22287
22448
|
user_identifier?:
|
|
22288
22449
|
| {
|
|
22450
|
+
/** Username of the user identifier associated with the connected account. */
|
|
22289
22451
|
username?: string | undefined
|
|
22452
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
22290
22453
|
api_url?: string | undefined
|
|
22454
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
22291
22455
|
email?: string | undefined
|
|
22456
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
22292
22457
|
phone?: string | undefined
|
|
22458
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
22293
22459
|
exclusive?: boolean | undefined
|
|
22294
22460
|
}
|
|
22295
22461
|
| undefined
|
|
22462
|
+
/** Type of connected account. */
|
|
22296
22463
|
account_type?: string | undefined
|
|
22464
|
+
/** Display name for the connected account type. */
|
|
22297
22465
|
account_type_display_name: string
|
|
22466
|
+
/** Errors associated with the connected account. */
|
|
22298
22467
|
errors: Array<
|
|
22299
22468
|
| {
|
|
22300
22469
|
/** Date and time at which Seam created the error. */
|
|
22301
22470
|
created_at: string
|
|
22471
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22302
22472
|
message: string
|
|
22473
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22303
22474
|
is_connected_account_error?: boolean | undefined
|
|
22475
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22304
22476
|
is_bridge_error?: boolean | undefined
|
|
22305
22477
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22306
22478
|
error_code: 'account_disconnected'
|
|
@@ -22308,8 +22480,11 @@ export interface Routes {
|
|
|
22308
22480
|
| {
|
|
22309
22481
|
/** Date and time at which Seam created the error. */
|
|
22310
22482
|
created_at: string
|
|
22483
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22311
22484
|
message: string
|
|
22485
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22312
22486
|
is_connected_account_error?: boolean | undefined
|
|
22487
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22313
22488
|
is_bridge_error?: boolean | undefined
|
|
22314
22489
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22315
22490
|
error_code: 'invalid_credentials'
|
|
@@ -22317,8 +22492,11 @@ export interface Routes {
|
|
|
22317
22492
|
| {
|
|
22318
22493
|
/** Date and time at which Seam created the error. */
|
|
22319
22494
|
created_at: string
|
|
22495
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22320
22496
|
message: string
|
|
22497
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22321
22498
|
is_connected_account_error?: boolean | undefined
|
|
22499
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22322
22500
|
is_bridge_error?: boolean | undefined
|
|
22323
22501
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22324
22502
|
error_code: 'bridge_disconnected'
|
|
@@ -22326,25 +22504,36 @@ export interface Routes {
|
|
|
22326
22504
|
| {
|
|
22327
22505
|
/** Date and time at which Seam created the error. */
|
|
22328
22506
|
created_at: string
|
|
22507
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22329
22508
|
message: string
|
|
22509
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22330
22510
|
is_connected_account_error?: boolean | undefined
|
|
22511
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22331
22512
|
is_bridge_error?: boolean | undefined
|
|
22332
22513
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22333
22514
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
22515
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
22334
22516
|
salto_ks_metadata: {
|
|
22517
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
22335
22518
|
sites: Array<{
|
|
22519
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
22336
22520
|
site_id: string
|
|
22521
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
22337
22522
|
site_name: string
|
|
22523
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
22338
22524
|
subscribed_site_user_count: number
|
|
22525
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
22339
22526
|
site_user_subscription_limit: number
|
|
22340
22527
|
}>
|
|
22341
22528
|
}
|
|
22342
22529
|
}
|
|
22343
22530
|
>
|
|
22531
|
+
/** Warnings associated with the connected account. */
|
|
22344
22532
|
warnings: Array<
|
|
22345
22533
|
| {
|
|
22346
22534
|
/** Date and time at which Seam created the warning. */
|
|
22347
22535
|
created_at: string
|
|
22536
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22348
22537
|
message: string
|
|
22349
22538
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22350
22539
|
warning_code: 'scheduled_maintenance_window'
|
|
@@ -22352,6 +22541,7 @@ export interface Routes {
|
|
|
22352
22541
|
| {
|
|
22353
22542
|
/** Date and time at which Seam created the warning. */
|
|
22354
22543
|
created_at: string
|
|
22544
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22355
22545
|
message: string
|
|
22356
22546
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22357
22547
|
warning_code: 'unknown_issue_with_connected_account'
|
|
@@ -22359,14 +22549,21 @@ export interface Routes {
|
|
|
22359
22549
|
| {
|
|
22360
22550
|
/** Date and time at which Seam created the warning. */
|
|
22361
22551
|
created_at: string
|
|
22552
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22362
22553
|
message: string
|
|
22363
22554
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22364
22555
|
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
22556
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
22365
22557
|
salto_ks_metadata: {
|
|
22558
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
22366
22559
|
sites: Array<{
|
|
22560
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
22367
22561
|
site_id: string
|
|
22562
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
22368
22563
|
site_name: string
|
|
22564
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
22369
22565
|
site_user_subscription_limit: number
|
|
22566
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
22370
22567
|
subscribed_site_user_count: number
|
|
22371
22568
|
}>
|
|
22372
22569
|
}
|
|
@@ -22374,6 +22571,7 @@ export interface Routes {
|
|
|
22374
22571
|
>
|
|
22375
22572
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
22376
22573
|
custom_metadata: Record<string, string | boolean>
|
|
22574
|
+
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
22377
22575
|
automatically_manage_new_devices: boolean
|
|
22378
22576
|
}
|
|
22379
22577
|
}
|
|
@@ -23254,8 +23452,11 @@ export interface Routes {
|
|
|
23254
23452
|
| {
|
|
23255
23453
|
/** Date and time at which Seam created the error. */
|
|
23256
23454
|
created_at: string
|
|
23455
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23257
23456
|
message: string
|
|
23457
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
23258
23458
|
is_connected_account_error?: boolean | undefined
|
|
23459
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
23259
23460
|
is_bridge_error?: boolean | undefined
|
|
23260
23461
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23261
23462
|
error_code: 'invalid_credentials'
|
|
@@ -23263,8 +23464,11 @@ export interface Routes {
|
|
|
23263
23464
|
| {
|
|
23264
23465
|
/** Date and time at which Seam created the error. */
|
|
23265
23466
|
created_at: string
|
|
23467
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23266
23468
|
message: string
|
|
23469
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
23267
23470
|
is_connected_account_error?: boolean | undefined
|
|
23471
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
23268
23472
|
is_bridge_error?: boolean | undefined
|
|
23269
23473
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23270
23474
|
error_code: 'bridge_disconnected'
|
|
@@ -24438,8 +24642,11 @@ export interface Routes {
|
|
|
24438
24642
|
| {
|
|
24439
24643
|
/** Date and time at which Seam created the error. */
|
|
24440
24644
|
created_at: string
|
|
24645
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24441
24646
|
message: string
|
|
24647
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24442
24648
|
is_connected_account_error?: boolean | undefined
|
|
24649
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24443
24650
|
is_bridge_error?: boolean | undefined
|
|
24444
24651
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24445
24652
|
error_code: 'invalid_credentials'
|
|
@@ -24447,8 +24654,11 @@ export interface Routes {
|
|
|
24447
24654
|
| {
|
|
24448
24655
|
/** Date and time at which Seam created the error. */
|
|
24449
24656
|
created_at: string
|
|
24657
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24450
24658
|
message: string
|
|
24659
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24451
24660
|
is_connected_account_error?: boolean | undefined
|
|
24661
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24452
24662
|
is_bridge_error?: boolean | undefined
|
|
24453
24663
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24454
24664
|
error_code: 'bridge_disconnected'
|
|
@@ -24891,8 +25101,11 @@ export interface Routes {
|
|
|
24891
25101
|
| {
|
|
24892
25102
|
/** Date and time at which Seam created the error. */
|
|
24893
25103
|
created_at: string
|
|
25104
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24894
25105
|
message: string
|
|
25106
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24895
25107
|
is_connected_account_error?: boolean | undefined
|
|
25108
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24896
25109
|
is_bridge_error?: boolean | undefined
|
|
24897
25110
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24898
25111
|
error_code: 'invalid_credentials'
|
|
@@ -24900,8 +25113,11 @@ export interface Routes {
|
|
|
24900
25113
|
| {
|
|
24901
25114
|
/** Date and time at which Seam created the error. */
|
|
24902
25115
|
created_at: string
|
|
25116
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24903
25117
|
message: string
|
|
25118
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24904
25119
|
is_connected_account_error?: boolean | undefined
|
|
25120
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24905
25121
|
is_bridge_error?: boolean | undefined
|
|
24906
25122
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24907
25123
|
error_code: 'bridge_disconnected'
|
|
@@ -25440,8 +25656,11 @@ export interface Routes {
|
|
|
25440
25656
|
| {
|
|
25441
25657
|
/** Date and time at which Seam created the error. */
|
|
25442
25658
|
created_at: string
|
|
25659
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25443
25660
|
message: string
|
|
25661
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25444
25662
|
is_connected_account_error?: boolean | undefined
|
|
25663
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25445
25664
|
is_bridge_error?: boolean | undefined
|
|
25446
25665
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25447
25666
|
error_code: 'invalid_credentials'
|
|
@@ -25449,8 +25668,11 @@ export interface Routes {
|
|
|
25449
25668
|
| {
|
|
25450
25669
|
/** Date and time at which Seam created the error. */
|
|
25451
25670
|
created_at: string
|
|
25671
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25452
25672
|
message: string
|
|
25673
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25453
25674
|
is_connected_account_error?: boolean | undefined
|
|
25675
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25454
25676
|
is_bridge_error?: boolean | undefined
|
|
25455
25677
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25456
25678
|
error_code: 'bridge_disconnected'
|
|
@@ -29693,8 +29915,11 @@ export interface Routes {
|
|
|
29693
29915
|
| {
|
|
29694
29916
|
/** Date and time at which Seam created the error. */
|
|
29695
29917
|
created_at: string
|
|
29918
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29696
29919
|
message: string
|
|
29920
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
29697
29921
|
is_connected_account_error?: boolean | undefined
|
|
29922
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
29698
29923
|
is_bridge_error?: boolean | undefined
|
|
29699
29924
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
29700
29925
|
error_code: 'invalid_credentials'
|
|
@@ -29702,8 +29927,11 @@ export interface Routes {
|
|
|
29702
29927
|
| {
|
|
29703
29928
|
/** Date and time at which Seam created the error. */
|
|
29704
29929
|
created_at: string
|
|
29930
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29705
29931
|
message: string
|
|
29932
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
29706
29933
|
is_connected_account_error?: boolean | undefined
|
|
29934
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
29707
29935
|
is_bridge_error?: boolean | undefined
|
|
29708
29936
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
29709
29937
|
error_code: 'bridge_disconnected'
|
|
@@ -30683,8 +30911,11 @@ export interface Routes {
|
|
|
30683
30911
|
| {
|
|
30684
30912
|
/** Date and time at which Seam created the error. */
|
|
30685
30913
|
created_at: string
|
|
30914
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30686
30915
|
message: string
|
|
30916
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
30687
30917
|
is_connected_account_error?: boolean | undefined
|
|
30918
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
30688
30919
|
is_bridge_error?: boolean | undefined
|
|
30689
30920
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
30690
30921
|
error_code: 'invalid_credentials'
|
|
@@ -30692,8 +30923,11 @@ export interface Routes {
|
|
|
30692
30923
|
| {
|
|
30693
30924
|
/** Date and time at which Seam created the error. */
|
|
30694
30925
|
created_at: string
|
|
30926
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30695
30927
|
message: string
|
|
30928
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
30696
30929
|
is_connected_account_error?: boolean | undefined
|
|
30930
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
30697
30931
|
is_bridge_error?: boolean | undefined
|
|
30698
30932
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
30699
30933
|
error_code: 'bridge_disconnected'
|
|
@@ -31832,8 +32066,11 @@ export interface Routes {
|
|
|
31832
32066
|
| {
|
|
31833
32067
|
/** Date and time at which Seam created the error. */
|
|
31834
32068
|
created_at: string
|
|
32069
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31835
32070
|
message: string
|
|
32071
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
31836
32072
|
is_connected_account_error?: boolean | undefined
|
|
32073
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
31837
32074
|
is_bridge_error?: boolean | undefined
|
|
31838
32075
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31839
32076
|
error_code: 'invalid_credentials'
|
|
@@ -31841,8 +32078,11 @@ export interface Routes {
|
|
|
31841
32078
|
| {
|
|
31842
32079
|
/** Date and time at which Seam created the error. */
|
|
31843
32080
|
created_at: string
|
|
32081
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31844
32082
|
message: string
|
|
32083
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
31845
32084
|
is_connected_account_error?: boolean | undefined
|
|
32085
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
31846
32086
|
is_bridge_error?: boolean | undefined
|
|
31847
32087
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31848
32088
|
error_code: 'bridge_disconnected'
|
|
@@ -32821,8 +33061,11 @@ export interface Routes {
|
|
|
32821
33061
|
| {
|
|
32822
33062
|
/** Date and time at which Seam created the error. */
|
|
32823
33063
|
created_at: string
|
|
33064
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32824
33065
|
message: string
|
|
33066
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
32825
33067
|
is_connected_account_error?: boolean | undefined
|
|
33068
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
32826
33069
|
is_bridge_error?: boolean | undefined
|
|
32827
33070
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32828
33071
|
error_code: 'invalid_credentials'
|
|
@@ -32830,8 +33073,11 @@ export interface Routes {
|
|
|
32830
33073
|
| {
|
|
32831
33074
|
/** Date and time at which Seam created the error. */
|
|
32832
33075
|
created_at: string
|
|
33076
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32833
33077
|
message: string
|
|
33078
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
32834
33079
|
is_connected_account_error?: boolean | undefined
|
|
33080
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
32835
33081
|
is_bridge_error?: boolean | undefined
|
|
32836
33082
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32837
33083
|
error_code: 'bridge_disconnected'
|
|
@@ -39136,8 +39382,11 @@ export interface Routes {
|
|
|
39136
39382
|
| {
|
|
39137
39383
|
/** Date and time at which Seam created the error. */
|
|
39138
39384
|
created_at: string
|
|
39385
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39139
39386
|
message: string
|
|
39387
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
39140
39388
|
is_connected_account_error?: boolean | undefined
|
|
39389
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
39141
39390
|
is_bridge_error?: boolean | undefined
|
|
39142
39391
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39143
39392
|
error_code: 'invalid_credentials'
|
|
@@ -39145,8 +39394,11 @@ export interface Routes {
|
|
|
39145
39394
|
| {
|
|
39146
39395
|
/** Date and time at which Seam created the error. */
|
|
39147
39396
|
created_at: string
|
|
39397
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39148
39398
|
message: string
|
|
39399
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
39149
39400
|
is_connected_account_error?: boolean | undefined
|
|
39401
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
39150
39402
|
is_bridge_error?: boolean | undefined
|
|
39151
39403
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39152
39404
|
error_code: 'bridge_disconnected'
|
|
@@ -40125,8 +40377,11 @@ export interface Routes {
|
|
|
40125
40377
|
| {
|
|
40126
40378
|
/** Date and time at which Seam created the error. */
|
|
40127
40379
|
created_at: string
|
|
40380
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40128
40381
|
message: string
|
|
40382
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
40129
40383
|
is_connected_account_error?: boolean | undefined
|
|
40384
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
40130
40385
|
is_bridge_error?: boolean | undefined
|
|
40131
40386
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40132
40387
|
error_code: 'invalid_credentials'
|
|
@@ -40134,8 +40389,11 @@ export interface Routes {
|
|
|
40134
40389
|
| {
|
|
40135
40390
|
/** Date and time at which Seam created the error. */
|
|
40136
40391
|
created_at: string
|
|
40392
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40137
40393
|
message: string
|
|
40394
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
40138
40395
|
is_connected_account_error?: boolean | undefined
|
|
40396
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
40139
40397
|
is_bridge_error?: boolean | undefined
|
|
40140
40398
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40141
40399
|
error_code: 'bridge_disconnected'
|
|
@@ -50064,8 +50322,11 @@ export interface Routes {
|
|
|
50064
50322
|
| {
|
|
50065
50323
|
/** Date and time at which Seam created the error. */
|
|
50066
50324
|
created_at: string
|
|
50325
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50067
50326
|
message: string
|
|
50327
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
50068
50328
|
is_connected_account_error?: boolean | undefined
|
|
50329
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
50069
50330
|
is_bridge_error?: boolean | undefined
|
|
50070
50331
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50071
50332
|
error_code: 'invalid_credentials'
|
|
@@ -50073,8 +50334,11 @@ export interface Routes {
|
|
|
50073
50334
|
| {
|
|
50074
50335
|
/** Date and time at which Seam created the error. */
|
|
50075
50336
|
created_at: string
|
|
50337
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50076
50338
|
message: string
|
|
50339
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
50077
50340
|
is_connected_account_error?: boolean | undefined
|
|
50341
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
50078
50342
|
is_bridge_error?: boolean | undefined
|
|
50079
50343
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50080
50344
|
error_code: 'bridge_disconnected'
|
|
@@ -53769,8 +54033,11 @@ export interface Routes {
|
|
|
53769
54033
|
| {
|
|
53770
54034
|
/** Date and time at which Seam created the error. */
|
|
53771
54035
|
created_at: string
|
|
54036
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53772
54037
|
message: string
|
|
54038
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
53773
54039
|
is_connected_account_error?: boolean | undefined
|
|
54040
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
53774
54041
|
is_bridge_error?: boolean | undefined
|
|
53775
54042
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53776
54043
|
error_code: 'invalid_credentials'
|
|
@@ -53778,8 +54045,11 @@ export interface Routes {
|
|
|
53778
54045
|
| {
|
|
53779
54046
|
/** Date and time at which Seam created the error. */
|
|
53780
54047
|
created_at: string
|
|
54048
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53781
54049
|
message: string
|
|
54050
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
53782
54051
|
is_connected_account_error?: boolean | undefined
|
|
54052
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
53783
54053
|
is_bridge_error?: boolean | undefined
|
|
53784
54054
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53785
54055
|
error_code: 'bridge_disconnected'
|
|
@@ -54758,8 +55028,11 @@ export interface Routes {
|
|
|
54758
55028
|
| {
|
|
54759
55029
|
/** Date and time at which Seam created the error. */
|
|
54760
55030
|
created_at: string
|
|
55031
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54761
55032
|
message: string
|
|
55033
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54762
55034
|
is_connected_account_error?: boolean | undefined
|
|
55035
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
54763
55036
|
is_bridge_error?: boolean | undefined
|
|
54764
55037
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54765
55038
|
error_code: 'invalid_credentials'
|
|
@@ -54767,8 +55040,11 @@ export interface Routes {
|
|
|
54767
55040
|
| {
|
|
54768
55041
|
/** Date and time at which Seam created the error. */
|
|
54769
55042
|
created_at: string
|
|
55043
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54770
55044
|
message: string
|
|
55045
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54771
55046
|
is_connected_account_error?: boolean | undefined
|
|
55047
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
54772
55048
|
is_bridge_error?: boolean | undefined
|
|
54773
55049
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54774
55050
|
error_code: 'bridge_disconnected'
|
|
@@ -62071,8 +62347,11 @@ export interface Routes {
|
|
|
62071
62347
|
| {
|
|
62072
62348
|
/** Date and time at which Seam created the error. */
|
|
62073
62349
|
created_at: string
|
|
62350
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62074
62351
|
message: string
|
|
62352
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
62075
62353
|
is_connected_account_error?: boolean | undefined
|
|
62354
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
62076
62355
|
is_bridge_error?: boolean | undefined
|
|
62077
62356
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62078
62357
|
error_code: 'invalid_credentials'
|
|
@@ -62080,8 +62359,11 @@ export interface Routes {
|
|
|
62080
62359
|
| {
|
|
62081
62360
|
/** Date and time at which Seam created the error. */
|
|
62082
62361
|
created_at: string
|
|
62362
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62083
62363
|
message: string
|
|
62364
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
62084
62365
|
is_connected_account_error?: boolean | undefined
|
|
62366
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
62085
62367
|
is_bridge_error?: boolean | undefined
|
|
62086
62368
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62087
62369
|
error_code: 'bridge_disconnected'
|
|
@@ -63062,8 +63344,11 @@ export interface Routes {
|
|
|
63062
63344
|
| {
|
|
63063
63345
|
/** Date and time at which Seam created the error. */
|
|
63064
63346
|
created_at: string
|
|
63347
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63065
63348
|
message: string
|
|
63349
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
63066
63350
|
is_connected_account_error?: boolean | undefined
|
|
63351
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
63067
63352
|
is_bridge_error?: boolean | undefined
|
|
63068
63353
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
63069
63354
|
error_code: 'invalid_credentials'
|
|
@@ -63071,8 +63356,11 @@ export interface Routes {
|
|
|
63071
63356
|
| {
|
|
63072
63357
|
/** Date and time at which Seam created the error. */
|
|
63073
63358
|
created_at: string
|
|
63359
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63074
63360
|
message: string
|
|
63361
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
63075
63362
|
is_connected_account_error?: boolean | undefined
|
|
63363
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
63076
63364
|
is_bridge_error?: boolean | undefined
|
|
63077
63365
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
63078
63366
|
error_code: 'bridge_disconnected'
|