@seamapi/types 1.404.0 → 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 +504 -143
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +516 -23
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +55 -15
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- 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/models/custom-metadata.js +5 -2
- package/lib/seam/connect/models/custom-metadata.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +148 -9
- package/lib/seam/connect/openapi.js +378 -89
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +368 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +79 -15
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +172 -44
- package/src/lib/seam/connect/models/custom-metadata.ts +8 -4
- package/src/lib/seam/connect/openapi.ts +471 -89
- package/src/lib/seam/connect/route-types.ts +368 -14
|
@@ -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: {
|
|
@@ -18332,8 +18394,10 @@ export interface Routes {
|
|
|
18332
18394
|
queryParams: {}
|
|
18333
18395
|
jsonBody: {}
|
|
18334
18396
|
commonParams: {
|
|
18335
|
-
/** ID of the access system user that you want to remove from an access group. */
|
|
18336
|
-
acs_user_id
|
|
18397
|
+
/** ID of the access system user that you want to remove from an access group. You can only provide acs_user_id or user_identity_id. */
|
|
18398
|
+
acs_user_id?: string | undefined
|
|
18399
|
+
/** ID of the user identity that you want to remove from an access group. You can only provide acs_user_id or user_identity_id. */
|
|
18400
|
+
user_identity_id?: string | undefined
|
|
18337
18401
|
/** ID of the access group from which you want to remove an access system user. */
|
|
18338
18402
|
acs_access_group_id: string
|
|
18339
18403
|
}
|
|
@@ -18345,8 +18409,12 @@ export interface Routes {
|
|
|
18345
18409
|
method: 'POST'
|
|
18346
18410
|
queryParams: {}
|
|
18347
18411
|
jsonBody: {
|
|
18348
|
-
/** ID of the access system user for whom you want to revoke access. */
|
|
18349
|
-
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
|
|
18350
18418
|
}
|
|
18351
18419
|
commonParams: {}
|
|
18352
18420
|
formData: {}
|
|
@@ -18358,8 +18426,12 @@ export interface Routes {
|
|
|
18358
18426
|
queryParams: {}
|
|
18359
18427
|
jsonBody: {}
|
|
18360
18428
|
commonParams: {
|
|
18361
|
-
/** ID of the access system user that you want to suspend. */
|
|
18362
|
-
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
|
|
18363
18435
|
}
|
|
18364
18436
|
formData: {}
|
|
18365
18437
|
jsonResponse: {}
|
|
@@ -18835,8 +18907,12 @@ export interface Routes {
|
|
|
18835
18907
|
queryParams: {}
|
|
18836
18908
|
jsonBody: {}
|
|
18837
18909
|
commonParams: {
|
|
18838
|
-
/** ID of the access system user that you want to unsuspend. */
|
|
18839
|
-
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
|
|
18840
18916
|
}
|
|
18841
18917
|
formData: {}
|
|
18842
18918
|
jsonResponse: {}
|
|
@@ -18855,8 +18931,12 @@ export interface Routes {
|
|
|
18855
18931
|
ends_at: string
|
|
18856
18932
|
} | null)
|
|
18857
18933
|
| undefined
|
|
18858
|
-
/** ID of the
|
|
18859
|
-
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
|
|
18860
18940
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
18861
18941
|
full_name?: string | undefined
|
|
18862
18942
|
/**
|
|
@@ -21834,12 +21914,18 @@ export interface Routes {
|
|
|
21834
21914
|
|
|
21835
21915
|
To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
|
|
21836
21916
|
connect_webview: {
|
|
21917
|
+
/** ID of the Connect Webview. */
|
|
21837
21918
|
connect_webview_id: string
|
|
21919
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
|
|
21838
21920
|
workspace_id: string
|
|
21921
|
+
/** Date and time at which the Connect Webview was created. */
|
|
21839
21922
|
created_at: string
|
|
21923
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
|
|
21840
21924
|
connected_account_id: string | null
|
|
21925
|
+
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
21841
21926
|
url: string
|
|
21842
21927
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
21928
|
+
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
21843
21929
|
accepted_providers: string[]
|
|
21844
21930
|
/**
|
|
21845
21931
|
* @deprecated Unused. Will be removed. */
|
|
@@ -21847,15 +21933,25 @@ export interface Routes {
|
|
|
21847
21933
|
/**
|
|
21848
21934
|
* @deprecated Unused. Will be removed. */
|
|
21849
21935
|
any_device_allowed: boolean
|
|
21936
|
+
/** Indicates whether any provider is allowed. */
|
|
21850
21937
|
any_provider_allowed: boolean
|
|
21938
|
+
/** Indicates whether the user logged in successfully using the Connect Webview. */
|
|
21851
21939
|
login_successful: boolean
|
|
21940
|
+
/** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
|
|
21852
21941
|
status: 'pending' | 'failed' | 'authorized'
|
|
21942
|
+
/** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
|
|
21853
21943
|
custom_redirect_url: string | null
|
|
21944
|
+
/** URL to which the Connect Webview should redirect when an unexpected error occurs. */
|
|
21854
21945
|
custom_redirect_failure_url: string | null
|
|
21946
|
+
/** 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. */
|
|
21855
21947
|
custom_metadata: Record<string, string | boolean>
|
|
21948
|
+
/** 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. */
|
|
21856
21949
|
automatically_manage_new_devices: boolean
|
|
21950
|
+
/** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
|
|
21857
21951
|
wait_for_device_creation: boolean
|
|
21952
|
+
/** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
|
|
21858
21953
|
authorized_at: string | null
|
|
21954
|
+
/** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
21859
21955
|
selected_provider: string | null
|
|
21860
21956
|
}
|
|
21861
21957
|
}
|
|
@@ -21895,12 +21991,18 @@ export interface Routes {
|
|
|
21895
21991
|
|
|
21896
21992
|
To list all providers within a category, use `/devices/list_device_providers` with the desired `provider_category` filter. To list all provider keys, use `/devices/list_device_providers` with no filters. */
|
|
21897
21993
|
connect_webview: {
|
|
21994
|
+
/** ID of the Connect Webview. */
|
|
21898
21995
|
connect_webview_id: string
|
|
21996
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
|
|
21899
21997
|
workspace_id: string
|
|
21998
|
+
/** Date and time at which the Connect Webview was created. */
|
|
21900
21999
|
created_at: string
|
|
22000
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
|
|
21901
22001
|
connected_account_id: string | null
|
|
22002
|
+
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
21902
22003
|
url: string
|
|
21903
22004
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
22005
|
+
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
21904
22006
|
accepted_providers: string[]
|
|
21905
22007
|
/**
|
|
21906
22008
|
* @deprecated Unused. Will be removed. */
|
|
@@ -21908,15 +22010,25 @@ export interface Routes {
|
|
|
21908
22010
|
/**
|
|
21909
22011
|
* @deprecated Unused. Will be removed. */
|
|
21910
22012
|
any_device_allowed: boolean
|
|
22013
|
+
/** Indicates whether any provider is allowed. */
|
|
21911
22014
|
any_provider_allowed: boolean
|
|
22015
|
+
/** Indicates whether the user logged in successfully using the Connect Webview. */
|
|
21912
22016
|
login_successful: boolean
|
|
22017
|
+
/** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
|
|
21913
22018
|
status: 'pending' | 'failed' | 'authorized'
|
|
22019
|
+
/** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
|
|
21914
22020
|
custom_redirect_url: string | null
|
|
22021
|
+
/** URL to which the Connect Webview should redirect when an unexpected error occurs. */
|
|
21915
22022
|
custom_redirect_failure_url: string | null
|
|
22023
|
+
/** 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. */
|
|
21916
22024
|
custom_metadata: Record<string, string | boolean>
|
|
22025
|
+
/** 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. */
|
|
21917
22026
|
automatically_manage_new_devices: boolean
|
|
22027
|
+
/** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
|
|
21918
22028
|
wait_for_device_creation: boolean
|
|
22029
|
+
/** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
|
|
21919
22030
|
authorized_at: string | null
|
|
22031
|
+
/** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
21920
22032
|
selected_provider: string | null
|
|
21921
22033
|
}
|
|
21922
22034
|
}
|
|
@@ -21937,12 +22049,18 @@ export interface Routes {
|
|
|
21937
22049
|
formData: {}
|
|
21938
22050
|
jsonResponse: {
|
|
21939
22051
|
connect_webviews: Array<{
|
|
22052
|
+
/** ID of the Connect Webview. */
|
|
21940
22053
|
connect_webview_id: string
|
|
22054
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview. */
|
|
21941
22055
|
workspace_id: string
|
|
22056
|
+
/** Date and time at which the Connect Webview was created. */
|
|
21942
22057
|
created_at: string
|
|
22058
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview. */
|
|
21943
22059
|
connected_account_id: string | null
|
|
22060
|
+
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
21944
22061
|
url: string
|
|
21945
22062
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
22063
|
+
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
21946
22064
|
accepted_providers: string[]
|
|
21947
22065
|
/**
|
|
21948
22066
|
* @deprecated Unused. Will be removed. */
|
|
@@ -21950,15 +22068,25 @@ export interface Routes {
|
|
|
21950
22068
|
/**
|
|
21951
22069
|
* @deprecated Unused. Will be removed. */
|
|
21952
22070
|
any_device_allowed: boolean
|
|
22071
|
+
/** Indicates whether any provider is allowed. */
|
|
21953
22072
|
any_provider_allowed: boolean
|
|
22073
|
+
/** Indicates whether the user logged in successfully using the Connect Webview. */
|
|
21954
22074
|
login_successful: boolean
|
|
22075
|
+
/** Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview. */
|
|
21955
22076
|
status: 'pending' | 'failed' | 'authorized'
|
|
22077
|
+
/** URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs. */
|
|
21956
22078
|
custom_redirect_url: string | null
|
|
22079
|
+
/** URL to which the Connect Webview should redirect when an unexpected error occurs. */
|
|
21957
22080
|
custom_redirect_failure_url: string | null
|
|
22081
|
+
/** 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. */
|
|
21958
22082
|
custom_metadata: Record<string, string | boolean>
|
|
22083
|
+
/** 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. */
|
|
21959
22084
|
automatically_manage_new_devices: boolean
|
|
22085
|
+
/** Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview. */
|
|
21960
22086
|
wait_for_device_creation: boolean
|
|
22087
|
+
/** Date and time at which the user authorized (through the Connect Webview) the management of their devices. */
|
|
21961
22088
|
authorized_at: string | null
|
|
22089
|
+
/** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
21962
22090
|
selected_provider: string | null
|
|
21963
22091
|
}>
|
|
21964
22092
|
}
|
|
@@ -21995,25 +22123,39 @@ export interface Routes {
|
|
|
21995
22123
|
jsonResponse: {
|
|
21996
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. */
|
|
21997
22125
|
connected_account: {
|
|
22126
|
+
/** Unique identifier for the connected account. */
|
|
21998
22127
|
connected_account_id?: string | undefined
|
|
22128
|
+
/** Date and time at which the connected account was created. */
|
|
21999
22129
|
created_at?: string | undefined
|
|
22130
|
+
/** User identifier associated with the connected account. */
|
|
22000
22131
|
user_identifier?:
|
|
22001
22132
|
| {
|
|
22133
|
+
/** Username of the user identifier associated with the connected account. */
|
|
22002
22134
|
username?: string | undefined
|
|
22135
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
22003
22136
|
api_url?: string | undefined
|
|
22137
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
22004
22138
|
email?: string | undefined
|
|
22139
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
22005
22140
|
phone?: string | undefined
|
|
22141
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
22006
22142
|
exclusive?: boolean | undefined
|
|
22007
22143
|
}
|
|
22008
22144
|
| undefined
|
|
22145
|
+
/** Type of connected account. */
|
|
22009
22146
|
account_type?: string | undefined
|
|
22147
|
+
/** Display name for the connected account type. */
|
|
22010
22148
|
account_type_display_name: string
|
|
22149
|
+
/** Errors associated with the connected account. */
|
|
22011
22150
|
errors: Array<
|
|
22012
22151
|
| {
|
|
22013
22152
|
/** Date and time at which Seam created the error. */
|
|
22014
22153
|
created_at: string
|
|
22154
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22015
22155
|
message: string
|
|
22156
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22016
22157
|
is_connected_account_error?: boolean | undefined
|
|
22158
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22017
22159
|
is_bridge_error?: boolean | undefined
|
|
22018
22160
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22019
22161
|
error_code: 'account_disconnected'
|
|
@@ -22021,8 +22163,11 @@ export interface Routes {
|
|
|
22021
22163
|
| {
|
|
22022
22164
|
/** Date and time at which Seam created the error. */
|
|
22023
22165
|
created_at: string
|
|
22166
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22024
22167
|
message: string
|
|
22168
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22025
22169
|
is_connected_account_error?: boolean | undefined
|
|
22170
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22026
22171
|
is_bridge_error?: boolean | undefined
|
|
22027
22172
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22028
22173
|
error_code: 'invalid_credentials'
|
|
@@ -22030,8 +22175,11 @@ export interface Routes {
|
|
|
22030
22175
|
| {
|
|
22031
22176
|
/** Date and time at which Seam created the error. */
|
|
22032
22177
|
created_at: string
|
|
22178
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22033
22179
|
message: string
|
|
22180
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22034
22181
|
is_connected_account_error?: boolean | undefined
|
|
22182
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22035
22183
|
is_bridge_error?: boolean | undefined
|
|
22036
22184
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22037
22185
|
error_code: 'bridge_disconnected'
|
|
@@ -22039,25 +22187,36 @@ export interface Routes {
|
|
|
22039
22187
|
| {
|
|
22040
22188
|
/** Date and time at which Seam created the error. */
|
|
22041
22189
|
created_at: string
|
|
22190
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22042
22191
|
message: string
|
|
22192
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22043
22193
|
is_connected_account_error?: boolean | undefined
|
|
22194
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22044
22195
|
is_bridge_error?: boolean | undefined
|
|
22045
22196
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22046
22197
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
22198
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
22047
22199
|
salto_ks_metadata: {
|
|
22200
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
22048
22201
|
sites: Array<{
|
|
22202
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
22049
22203
|
site_id: string
|
|
22204
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
22050
22205
|
site_name: string
|
|
22206
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
22051
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. */
|
|
22052
22209
|
site_user_subscription_limit: number
|
|
22053
22210
|
}>
|
|
22054
22211
|
}
|
|
22055
22212
|
}
|
|
22056
22213
|
>
|
|
22214
|
+
/** Warnings associated with the connected account. */
|
|
22057
22215
|
warnings: Array<
|
|
22058
22216
|
| {
|
|
22059
22217
|
/** Date and time at which Seam created the warning. */
|
|
22060
22218
|
created_at: string
|
|
22219
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22061
22220
|
message: string
|
|
22062
22221
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22063
22222
|
warning_code: 'scheduled_maintenance_window'
|
|
@@ -22065,6 +22224,7 @@ export interface Routes {
|
|
|
22065
22224
|
| {
|
|
22066
22225
|
/** Date and time at which Seam created the warning. */
|
|
22067
22226
|
created_at: string
|
|
22227
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22068
22228
|
message: string
|
|
22069
22229
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22070
22230
|
warning_code: 'unknown_issue_with_connected_account'
|
|
@@ -22072,20 +22232,29 @@ export interface Routes {
|
|
|
22072
22232
|
| {
|
|
22073
22233
|
/** Date and time at which Seam created the warning. */
|
|
22074
22234
|
created_at: string
|
|
22235
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22075
22236
|
message: string
|
|
22076
22237
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22077
22238
|
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
22239
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
22078
22240
|
salto_ks_metadata: {
|
|
22241
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
22079
22242
|
sites: Array<{
|
|
22243
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
22080
22244
|
site_id: string
|
|
22245
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
22081
22246
|
site_name: string
|
|
22247
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
22082
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. */
|
|
22083
22250
|
subscribed_site_user_count: number
|
|
22084
22251
|
}>
|
|
22085
22252
|
}
|
|
22086
22253
|
}
|
|
22087
22254
|
>
|
|
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. */
|
|
22088
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. */
|
|
22089
22258
|
automatically_manage_new_devices: boolean
|
|
22090
22259
|
}
|
|
22091
22260
|
}
|
|
@@ -22109,25 +22278,39 @@ export interface Routes {
|
|
|
22109
22278
|
formData: {}
|
|
22110
22279
|
jsonResponse: {
|
|
22111
22280
|
connected_accounts: Array<{
|
|
22281
|
+
/** Unique identifier for the connected account. */
|
|
22112
22282
|
connected_account_id?: string | undefined
|
|
22283
|
+
/** Date and time at which the connected account was created. */
|
|
22113
22284
|
created_at?: string | undefined
|
|
22285
|
+
/** User identifier associated with the connected account. */
|
|
22114
22286
|
user_identifier?:
|
|
22115
22287
|
| {
|
|
22288
|
+
/** Username of the user identifier associated with the connected account. */
|
|
22116
22289
|
username?: string | undefined
|
|
22290
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
22117
22291
|
api_url?: string | undefined
|
|
22292
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
22118
22293
|
email?: string | undefined
|
|
22294
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
22119
22295
|
phone?: string | undefined
|
|
22296
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
22120
22297
|
exclusive?: boolean | undefined
|
|
22121
22298
|
}
|
|
22122
22299
|
| undefined
|
|
22300
|
+
/** Type of connected account. */
|
|
22123
22301
|
account_type?: string | undefined
|
|
22302
|
+
/** Display name for the connected account type. */
|
|
22124
22303
|
account_type_display_name: string
|
|
22304
|
+
/** Errors associated with the connected account. */
|
|
22125
22305
|
errors: Array<
|
|
22126
22306
|
| {
|
|
22127
22307
|
/** Date and time at which Seam created the error. */
|
|
22128
22308
|
created_at: string
|
|
22309
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22129
22310
|
message: string
|
|
22311
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22130
22312
|
is_connected_account_error?: boolean | undefined
|
|
22313
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22131
22314
|
is_bridge_error?: boolean | undefined
|
|
22132
22315
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22133
22316
|
error_code: 'account_disconnected'
|
|
@@ -22135,8 +22318,11 @@ export interface Routes {
|
|
|
22135
22318
|
| {
|
|
22136
22319
|
/** Date and time at which Seam created the error. */
|
|
22137
22320
|
created_at: string
|
|
22321
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22138
22322
|
message: string
|
|
22323
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22139
22324
|
is_connected_account_error?: boolean | undefined
|
|
22325
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22140
22326
|
is_bridge_error?: boolean | undefined
|
|
22141
22327
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22142
22328
|
error_code: 'invalid_credentials'
|
|
@@ -22144,8 +22330,11 @@ export interface Routes {
|
|
|
22144
22330
|
| {
|
|
22145
22331
|
/** Date and time at which Seam created the error. */
|
|
22146
22332
|
created_at: string
|
|
22333
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22147
22334
|
message: string
|
|
22335
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22148
22336
|
is_connected_account_error?: boolean | undefined
|
|
22337
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22149
22338
|
is_bridge_error?: boolean | undefined
|
|
22150
22339
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22151
22340
|
error_code: 'bridge_disconnected'
|
|
@@ -22153,25 +22342,36 @@ export interface Routes {
|
|
|
22153
22342
|
| {
|
|
22154
22343
|
/** Date and time at which Seam created the error. */
|
|
22155
22344
|
created_at: string
|
|
22345
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22156
22346
|
message: string
|
|
22347
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22157
22348
|
is_connected_account_error?: boolean | undefined
|
|
22349
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22158
22350
|
is_bridge_error?: boolean | undefined
|
|
22159
22351
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22160
22352
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
22353
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
22161
22354
|
salto_ks_metadata: {
|
|
22355
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
22162
22356
|
sites: Array<{
|
|
22357
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
22163
22358
|
site_id: string
|
|
22359
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
22164
22360
|
site_name: string
|
|
22361
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
22165
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. */
|
|
22166
22364
|
site_user_subscription_limit: number
|
|
22167
22365
|
}>
|
|
22168
22366
|
}
|
|
22169
22367
|
}
|
|
22170
22368
|
>
|
|
22369
|
+
/** Warnings associated with the connected account. */
|
|
22171
22370
|
warnings: Array<
|
|
22172
22371
|
| {
|
|
22173
22372
|
/** Date and time at which Seam created the warning. */
|
|
22174
22373
|
created_at: string
|
|
22374
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22175
22375
|
message: string
|
|
22176
22376
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22177
22377
|
warning_code: 'scheduled_maintenance_window'
|
|
@@ -22179,6 +22379,7 @@ export interface Routes {
|
|
|
22179
22379
|
| {
|
|
22180
22380
|
/** Date and time at which Seam created the warning. */
|
|
22181
22381
|
created_at: string
|
|
22382
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22182
22383
|
message: string
|
|
22183
22384
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22184
22385
|
warning_code: 'unknown_issue_with_connected_account'
|
|
@@ -22186,20 +22387,29 @@ export interface Routes {
|
|
|
22186
22387
|
| {
|
|
22187
22388
|
/** Date and time at which Seam created the warning. */
|
|
22188
22389
|
created_at: string
|
|
22390
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22189
22391
|
message: string
|
|
22190
22392
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22191
22393
|
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
22394
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
22192
22395
|
salto_ks_metadata: {
|
|
22396
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
22193
22397
|
sites: Array<{
|
|
22398
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
22194
22399
|
site_id: string
|
|
22400
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
22195
22401
|
site_name: string
|
|
22402
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
22196
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. */
|
|
22197
22405
|
subscribed_site_user_count: number
|
|
22198
22406
|
}>
|
|
22199
22407
|
}
|
|
22200
22408
|
}
|
|
22201
22409
|
>
|
|
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. */
|
|
22202
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. */
|
|
22203
22413
|
automatically_manage_new_devices: boolean
|
|
22204
22414
|
}>
|
|
22205
22415
|
/** Information about the current page of results. */
|
|
@@ -22230,25 +22440,39 @@ export interface Routes {
|
|
|
22230
22440
|
jsonResponse: {
|
|
22231
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. */
|
|
22232
22442
|
connected_account: {
|
|
22443
|
+
/** Unique identifier for the connected account. */
|
|
22233
22444
|
connected_account_id?: string | undefined
|
|
22445
|
+
/** Date and time at which the connected account was created. */
|
|
22234
22446
|
created_at?: string | undefined
|
|
22447
|
+
/** User identifier associated with the connected account. */
|
|
22235
22448
|
user_identifier?:
|
|
22236
22449
|
| {
|
|
22450
|
+
/** Username of the user identifier associated with the connected account. */
|
|
22237
22451
|
username?: string | undefined
|
|
22452
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
22238
22453
|
api_url?: string | undefined
|
|
22454
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
22239
22455
|
email?: string | undefined
|
|
22456
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
22240
22457
|
phone?: string | undefined
|
|
22458
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
22241
22459
|
exclusive?: boolean | undefined
|
|
22242
22460
|
}
|
|
22243
22461
|
| undefined
|
|
22462
|
+
/** Type of connected account. */
|
|
22244
22463
|
account_type?: string | undefined
|
|
22464
|
+
/** Display name for the connected account type. */
|
|
22245
22465
|
account_type_display_name: string
|
|
22466
|
+
/** Errors associated with the connected account. */
|
|
22246
22467
|
errors: Array<
|
|
22247
22468
|
| {
|
|
22248
22469
|
/** Date and time at which Seam created the error. */
|
|
22249
22470
|
created_at: string
|
|
22471
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22250
22472
|
message: string
|
|
22473
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22251
22474
|
is_connected_account_error?: boolean | undefined
|
|
22475
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22252
22476
|
is_bridge_error?: boolean | undefined
|
|
22253
22477
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22254
22478
|
error_code: 'account_disconnected'
|
|
@@ -22256,8 +22480,11 @@ export interface Routes {
|
|
|
22256
22480
|
| {
|
|
22257
22481
|
/** Date and time at which Seam created the error. */
|
|
22258
22482
|
created_at: string
|
|
22483
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22259
22484
|
message: string
|
|
22485
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22260
22486
|
is_connected_account_error?: boolean | undefined
|
|
22487
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22261
22488
|
is_bridge_error?: boolean | undefined
|
|
22262
22489
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22263
22490
|
error_code: 'invalid_credentials'
|
|
@@ -22265,8 +22492,11 @@ export interface Routes {
|
|
|
22265
22492
|
| {
|
|
22266
22493
|
/** Date and time at which Seam created the error. */
|
|
22267
22494
|
created_at: string
|
|
22495
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22268
22496
|
message: string
|
|
22497
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22269
22498
|
is_connected_account_error?: boolean | undefined
|
|
22499
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22270
22500
|
is_bridge_error?: boolean | undefined
|
|
22271
22501
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22272
22502
|
error_code: 'bridge_disconnected'
|
|
@@ -22274,25 +22504,36 @@ export interface Routes {
|
|
|
22274
22504
|
| {
|
|
22275
22505
|
/** Date and time at which Seam created the error. */
|
|
22276
22506
|
created_at: string
|
|
22507
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22277
22508
|
message: string
|
|
22509
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
22278
22510
|
is_connected_account_error?: boolean | undefined
|
|
22511
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
22279
22512
|
is_bridge_error?: boolean | undefined
|
|
22280
22513
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22281
22514
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
22515
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
22282
22516
|
salto_ks_metadata: {
|
|
22517
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
22283
22518
|
sites: Array<{
|
|
22519
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
22284
22520
|
site_id: string
|
|
22521
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
22285
22522
|
site_name: string
|
|
22523
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
22286
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. */
|
|
22287
22526
|
site_user_subscription_limit: number
|
|
22288
22527
|
}>
|
|
22289
22528
|
}
|
|
22290
22529
|
}
|
|
22291
22530
|
>
|
|
22531
|
+
/** Warnings associated with the connected account. */
|
|
22292
22532
|
warnings: Array<
|
|
22293
22533
|
| {
|
|
22294
22534
|
/** Date and time at which Seam created the warning. */
|
|
22295
22535
|
created_at: string
|
|
22536
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22296
22537
|
message: string
|
|
22297
22538
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22298
22539
|
warning_code: 'scheduled_maintenance_window'
|
|
@@ -22300,6 +22541,7 @@ export interface Routes {
|
|
|
22300
22541
|
| {
|
|
22301
22542
|
/** Date and time at which Seam created the warning. */
|
|
22302
22543
|
created_at: string
|
|
22544
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22303
22545
|
message: string
|
|
22304
22546
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22305
22547
|
warning_code: 'unknown_issue_with_connected_account'
|
|
@@ -22307,20 +22549,29 @@ export interface Routes {
|
|
|
22307
22549
|
| {
|
|
22308
22550
|
/** Date and time at which Seam created the warning. */
|
|
22309
22551
|
created_at: string
|
|
22552
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22310
22553
|
message: string
|
|
22311
22554
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22312
22555
|
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
22556
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
22313
22557
|
salto_ks_metadata: {
|
|
22558
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
22314
22559
|
sites: Array<{
|
|
22560
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
22315
22561
|
site_id: string
|
|
22562
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
22316
22563
|
site_name: string
|
|
22564
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
22317
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. */
|
|
22318
22567
|
subscribed_site_user_count: number
|
|
22319
22568
|
}>
|
|
22320
22569
|
}
|
|
22321
22570
|
}
|
|
22322
22571
|
>
|
|
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. */
|
|
22323
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. */
|
|
22324
22575
|
automatically_manage_new_devices: boolean
|
|
22325
22576
|
}
|
|
22326
22577
|
}
|
|
@@ -23201,8 +23452,11 @@ export interface Routes {
|
|
|
23201
23452
|
| {
|
|
23202
23453
|
/** Date and time at which Seam created the error. */
|
|
23203
23454
|
created_at: string
|
|
23455
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23204
23456
|
message: string
|
|
23457
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
23205
23458
|
is_connected_account_error?: boolean | undefined
|
|
23459
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
23206
23460
|
is_bridge_error?: boolean | undefined
|
|
23207
23461
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23208
23462
|
error_code: 'invalid_credentials'
|
|
@@ -23210,8 +23464,11 @@ export interface Routes {
|
|
|
23210
23464
|
| {
|
|
23211
23465
|
/** Date and time at which Seam created the error. */
|
|
23212
23466
|
created_at: string
|
|
23467
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23213
23468
|
message: string
|
|
23469
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
23214
23470
|
is_connected_account_error?: boolean | undefined
|
|
23471
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
23215
23472
|
is_bridge_error?: boolean | undefined
|
|
23216
23473
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23217
23474
|
error_code: 'bridge_disconnected'
|
|
@@ -23326,6 +23583,7 @@ export interface Routes {
|
|
|
23326
23583
|
created_at: string
|
|
23327
23584
|
/** Indicates whether Seam manages the device. */
|
|
23328
23585
|
is_managed: true
|
|
23586
|
+
/** 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. */
|
|
23329
23587
|
custom_metadata: Record<string, string | boolean>
|
|
23330
23588
|
can_remotely_unlock?: boolean | undefined
|
|
23331
23589
|
can_remotely_lock?: boolean | undefined
|
|
@@ -24384,8 +24642,11 @@ export interface Routes {
|
|
|
24384
24642
|
| {
|
|
24385
24643
|
/** Date and time at which Seam created the error. */
|
|
24386
24644
|
created_at: string
|
|
24645
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24387
24646
|
message: string
|
|
24647
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24388
24648
|
is_connected_account_error?: boolean | undefined
|
|
24649
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24389
24650
|
is_bridge_error?: boolean | undefined
|
|
24390
24651
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24391
24652
|
error_code: 'invalid_credentials'
|
|
@@ -24393,8 +24654,11 @@ export interface Routes {
|
|
|
24393
24654
|
| {
|
|
24394
24655
|
/** Date and time at which Seam created the error. */
|
|
24395
24656
|
created_at: string
|
|
24657
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24396
24658
|
message: string
|
|
24659
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24397
24660
|
is_connected_account_error?: boolean | undefined
|
|
24661
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24398
24662
|
is_bridge_error?: boolean | undefined
|
|
24399
24663
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24400
24664
|
error_code: 'bridge_disconnected'
|
|
@@ -24509,6 +24773,7 @@ export interface Routes {
|
|
|
24509
24773
|
created_at: string
|
|
24510
24774
|
/** Indicates whether Seam manages the device. */
|
|
24511
24775
|
is_managed: true
|
|
24776
|
+
/** 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. */
|
|
24512
24777
|
custom_metadata: Record<string, string | boolean>
|
|
24513
24778
|
can_remotely_unlock?: boolean | undefined
|
|
24514
24779
|
can_remotely_lock?: boolean | undefined
|
|
@@ -24836,8 +25101,11 @@ export interface Routes {
|
|
|
24836
25101
|
| {
|
|
24837
25102
|
/** Date and time at which Seam created the error. */
|
|
24838
25103
|
created_at: string
|
|
25104
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24839
25105
|
message: string
|
|
25106
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24840
25107
|
is_connected_account_error?: boolean | undefined
|
|
25108
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24841
25109
|
is_bridge_error?: boolean | undefined
|
|
24842
25110
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24843
25111
|
error_code: 'invalid_credentials'
|
|
@@ -24845,8 +25113,11 @@ export interface Routes {
|
|
|
24845
25113
|
| {
|
|
24846
25114
|
/** Date and time at which Seam created the error. */
|
|
24847
25115
|
created_at: string
|
|
25116
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24848
25117
|
message: string
|
|
25118
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24849
25119
|
is_connected_account_error?: boolean | undefined
|
|
25120
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
24850
25121
|
is_bridge_error?: boolean | undefined
|
|
24851
25122
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24852
25123
|
error_code: 'bridge_disconnected'
|
|
@@ -25385,8 +25656,11 @@ export interface Routes {
|
|
|
25385
25656
|
| {
|
|
25386
25657
|
/** Date and time at which Seam created the error. */
|
|
25387
25658
|
created_at: string
|
|
25659
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25388
25660
|
message: string
|
|
25661
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25389
25662
|
is_connected_account_error?: boolean | undefined
|
|
25663
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25390
25664
|
is_bridge_error?: boolean | undefined
|
|
25391
25665
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25392
25666
|
error_code: 'invalid_credentials'
|
|
@@ -25394,8 +25668,11 @@ export interface Routes {
|
|
|
25394
25668
|
| {
|
|
25395
25669
|
/** Date and time at which Seam created the error. */
|
|
25396
25670
|
created_at: string
|
|
25671
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25397
25672
|
message: string
|
|
25673
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25398
25674
|
is_connected_account_error?: boolean | undefined
|
|
25675
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25399
25676
|
is_bridge_error?: boolean | undefined
|
|
25400
25677
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25401
25678
|
error_code: 'bridge_disconnected'
|
|
@@ -29638,8 +29915,11 @@ export interface Routes {
|
|
|
29638
29915
|
| {
|
|
29639
29916
|
/** Date and time at which Seam created the error. */
|
|
29640
29917
|
created_at: string
|
|
29918
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29641
29919
|
message: string
|
|
29920
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
29642
29921
|
is_connected_account_error?: boolean | undefined
|
|
29922
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
29643
29923
|
is_bridge_error?: boolean | undefined
|
|
29644
29924
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
29645
29925
|
error_code: 'invalid_credentials'
|
|
@@ -29647,8 +29927,11 @@ export interface Routes {
|
|
|
29647
29927
|
| {
|
|
29648
29928
|
/** Date and time at which Seam created the error. */
|
|
29649
29929
|
created_at: string
|
|
29930
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29650
29931
|
message: string
|
|
29932
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
29651
29933
|
is_connected_account_error?: boolean | undefined
|
|
29934
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
29652
29935
|
is_bridge_error?: boolean | undefined
|
|
29653
29936
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
29654
29937
|
error_code: 'bridge_disconnected'
|
|
@@ -29763,6 +30046,7 @@ export interface Routes {
|
|
|
29763
30046
|
created_at: string
|
|
29764
30047
|
/** Indicates whether Seam manages the device. */
|
|
29765
30048
|
is_managed: true
|
|
30049
|
+
/** 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. */
|
|
29766
30050
|
custom_metadata: Record<string, string | boolean>
|
|
29767
30051
|
can_remotely_unlock?: boolean | undefined
|
|
29768
30052
|
can_remotely_lock?: boolean | undefined
|
|
@@ -30627,8 +30911,11 @@ export interface Routes {
|
|
|
30627
30911
|
| {
|
|
30628
30912
|
/** Date and time at which Seam created the error. */
|
|
30629
30913
|
created_at: string
|
|
30914
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30630
30915
|
message: string
|
|
30916
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
30631
30917
|
is_connected_account_error?: boolean | undefined
|
|
30918
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
30632
30919
|
is_bridge_error?: boolean | undefined
|
|
30633
30920
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
30634
30921
|
error_code: 'invalid_credentials'
|
|
@@ -30636,8 +30923,11 @@ export interface Routes {
|
|
|
30636
30923
|
| {
|
|
30637
30924
|
/** Date and time at which Seam created the error. */
|
|
30638
30925
|
created_at: string
|
|
30926
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30639
30927
|
message: string
|
|
30928
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
30640
30929
|
is_connected_account_error?: boolean | undefined
|
|
30930
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
30641
30931
|
is_bridge_error?: boolean | undefined
|
|
30642
30932
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
30643
30933
|
error_code: 'bridge_disconnected'
|
|
@@ -30752,6 +31042,7 @@ export interface Routes {
|
|
|
30752
31042
|
created_at: string
|
|
30753
31043
|
/** Indicates whether Seam manages the device. */
|
|
30754
31044
|
is_managed: true
|
|
31045
|
+
/** 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. */
|
|
30755
31046
|
custom_metadata: Record<string, string | boolean>
|
|
30756
31047
|
can_remotely_unlock?: boolean | undefined
|
|
30757
31048
|
can_remotely_lock?: boolean | undefined
|
|
@@ -31775,8 +32066,11 @@ export interface Routes {
|
|
|
31775
32066
|
| {
|
|
31776
32067
|
/** Date and time at which Seam created the error. */
|
|
31777
32068
|
created_at: string
|
|
32069
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31778
32070
|
message: string
|
|
32071
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
31779
32072
|
is_connected_account_error?: boolean | undefined
|
|
32073
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
31780
32074
|
is_bridge_error?: boolean | undefined
|
|
31781
32075
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31782
32076
|
error_code: 'invalid_credentials'
|
|
@@ -31784,8 +32078,11 @@ export interface Routes {
|
|
|
31784
32078
|
| {
|
|
31785
32079
|
/** Date and time at which Seam created the error. */
|
|
31786
32080
|
created_at: string
|
|
32081
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31787
32082
|
message: string
|
|
32083
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
31788
32084
|
is_connected_account_error?: boolean | undefined
|
|
32085
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
31789
32086
|
is_bridge_error?: boolean | undefined
|
|
31790
32087
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31791
32088
|
error_code: 'bridge_disconnected'
|
|
@@ -31900,6 +32197,7 @@ export interface Routes {
|
|
|
31900
32197
|
created_at: string
|
|
31901
32198
|
/** Indicates whether Seam manages the device. */
|
|
31902
32199
|
is_managed: true
|
|
32200
|
+
/** 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. */
|
|
31903
32201
|
custom_metadata: Record<string, string | boolean>
|
|
31904
32202
|
can_remotely_unlock?: boolean | undefined
|
|
31905
32203
|
can_remotely_lock?: boolean | undefined
|
|
@@ -32763,8 +33061,11 @@ export interface Routes {
|
|
|
32763
33061
|
| {
|
|
32764
33062
|
/** Date and time at which Seam created the error. */
|
|
32765
33063
|
created_at: string
|
|
33064
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32766
33065
|
message: string
|
|
33066
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
32767
33067
|
is_connected_account_error?: boolean | undefined
|
|
33068
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
32768
33069
|
is_bridge_error?: boolean | undefined
|
|
32769
33070
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32770
33071
|
error_code: 'invalid_credentials'
|
|
@@ -32772,8 +33073,11 @@ export interface Routes {
|
|
|
32772
33073
|
| {
|
|
32773
33074
|
/** Date and time at which Seam created the error. */
|
|
32774
33075
|
created_at: string
|
|
33076
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32775
33077
|
message: string
|
|
33078
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
32776
33079
|
is_connected_account_error?: boolean | undefined
|
|
33080
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
32777
33081
|
is_bridge_error?: boolean | undefined
|
|
32778
33082
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32779
33083
|
error_code: 'bridge_disconnected'
|
|
@@ -32888,6 +33192,7 @@ export interface Routes {
|
|
|
32888
33192
|
created_at: string
|
|
32889
33193
|
/** Indicates whether Seam manages the device. */
|
|
32890
33194
|
is_managed: true
|
|
33195
|
+
/** 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. */
|
|
32891
33196
|
custom_metadata: Record<string, string | boolean>
|
|
32892
33197
|
can_remotely_unlock?: boolean | undefined
|
|
32893
33198
|
can_remotely_lock?: boolean | undefined
|
|
@@ -39077,8 +39382,11 @@ export interface Routes {
|
|
|
39077
39382
|
| {
|
|
39078
39383
|
/** Date and time at which Seam created the error. */
|
|
39079
39384
|
created_at: string
|
|
39385
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39080
39386
|
message: string
|
|
39387
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
39081
39388
|
is_connected_account_error?: boolean | undefined
|
|
39389
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
39082
39390
|
is_bridge_error?: boolean | undefined
|
|
39083
39391
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39084
39392
|
error_code: 'invalid_credentials'
|
|
@@ -39086,8 +39394,11 @@ export interface Routes {
|
|
|
39086
39394
|
| {
|
|
39087
39395
|
/** Date and time at which Seam created the error. */
|
|
39088
39396
|
created_at: string
|
|
39397
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39089
39398
|
message: string
|
|
39399
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
39090
39400
|
is_connected_account_error?: boolean | undefined
|
|
39401
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
39091
39402
|
is_bridge_error?: boolean | undefined
|
|
39092
39403
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39093
39404
|
error_code: 'bridge_disconnected'
|
|
@@ -39202,6 +39513,7 @@ export interface Routes {
|
|
|
39202
39513
|
created_at: string
|
|
39203
39514
|
/** Indicates whether Seam manages the device. */
|
|
39204
39515
|
is_managed: true
|
|
39516
|
+
/** 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. */
|
|
39205
39517
|
custom_metadata: Record<string, string | boolean>
|
|
39206
39518
|
can_remotely_unlock?: boolean | undefined
|
|
39207
39519
|
can_remotely_lock?: boolean | undefined
|
|
@@ -40065,8 +40377,11 @@ export interface Routes {
|
|
|
40065
40377
|
| {
|
|
40066
40378
|
/** Date and time at which Seam created the error. */
|
|
40067
40379
|
created_at: string
|
|
40380
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40068
40381
|
message: string
|
|
40382
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
40069
40383
|
is_connected_account_error?: boolean | undefined
|
|
40384
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
40070
40385
|
is_bridge_error?: boolean | undefined
|
|
40071
40386
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40072
40387
|
error_code: 'invalid_credentials'
|
|
@@ -40074,8 +40389,11 @@ export interface Routes {
|
|
|
40074
40389
|
| {
|
|
40075
40390
|
/** Date and time at which Seam created the error. */
|
|
40076
40391
|
created_at: string
|
|
40392
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40077
40393
|
message: string
|
|
40394
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
40078
40395
|
is_connected_account_error?: boolean | undefined
|
|
40396
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
40079
40397
|
is_bridge_error?: boolean | undefined
|
|
40080
40398
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40081
40399
|
error_code: 'bridge_disconnected'
|
|
@@ -40190,6 +40508,7 @@ export interface Routes {
|
|
|
40190
40508
|
created_at: string
|
|
40191
40509
|
/** Indicates whether Seam manages the device. */
|
|
40192
40510
|
is_managed: true
|
|
40511
|
+
/** 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. */
|
|
40193
40512
|
custom_metadata: Record<string, string | boolean>
|
|
40194
40513
|
can_remotely_unlock?: boolean | undefined
|
|
40195
40514
|
can_remotely_lock?: boolean | undefined
|
|
@@ -50003,8 +50322,11 @@ export interface Routes {
|
|
|
50003
50322
|
| {
|
|
50004
50323
|
/** Date and time at which Seam created the error. */
|
|
50005
50324
|
created_at: string
|
|
50325
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50006
50326
|
message: string
|
|
50327
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
50007
50328
|
is_connected_account_error?: boolean | undefined
|
|
50329
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
50008
50330
|
is_bridge_error?: boolean | undefined
|
|
50009
50331
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50010
50332
|
error_code: 'invalid_credentials'
|
|
@@ -50012,8 +50334,11 @@ export interface Routes {
|
|
|
50012
50334
|
| {
|
|
50013
50335
|
/** Date and time at which Seam created the error. */
|
|
50014
50336
|
created_at: string
|
|
50337
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50015
50338
|
message: string
|
|
50339
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
50016
50340
|
is_connected_account_error?: boolean | undefined
|
|
50341
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
50017
50342
|
is_bridge_error?: boolean | undefined
|
|
50018
50343
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50019
50344
|
error_code: 'bridge_disconnected'
|
|
@@ -50128,6 +50453,7 @@ export interface Routes {
|
|
|
50128
50453
|
created_at: string
|
|
50129
50454
|
/** Indicates whether Seam manages the device. */
|
|
50130
50455
|
is_managed: true
|
|
50456
|
+
/** 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. */
|
|
50131
50457
|
custom_metadata: Record<string, string | boolean>
|
|
50132
50458
|
can_remotely_unlock?: boolean | undefined
|
|
50133
50459
|
can_remotely_lock?: boolean | undefined
|
|
@@ -53707,8 +54033,11 @@ export interface Routes {
|
|
|
53707
54033
|
| {
|
|
53708
54034
|
/** Date and time at which Seam created the error. */
|
|
53709
54035
|
created_at: string
|
|
54036
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53710
54037
|
message: string
|
|
54038
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
53711
54039
|
is_connected_account_error?: boolean | undefined
|
|
54040
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
53712
54041
|
is_bridge_error?: boolean | undefined
|
|
53713
54042
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53714
54043
|
error_code: 'invalid_credentials'
|
|
@@ -53716,8 +54045,11 @@ export interface Routes {
|
|
|
53716
54045
|
| {
|
|
53717
54046
|
/** Date and time at which Seam created the error. */
|
|
53718
54047
|
created_at: string
|
|
54048
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53719
54049
|
message: string
|
|
54050
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
53720
54051
|
is_connected_account_error?: boolean | undefined
|
|
54052
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
53721
54053
|
is_bridge_error?: boolean | undefined
|
|
53722
54054
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53723
54055
|
error_code: 'bridge_disconnected'
|
|
@@ -53832,6 +54164,7 @@ export interface Routes {
|
|
|
53832
54164
|
created_at: string
|
|
53833
54165
|
/** Indicates whether Seam manages the device. */
|
|
53834
54166
|
is_managed: true
|
|
54167
|
+
/** 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. */
|
|
53835
54168
|
custom_metadata: Record<string, string | boolean>
|
|
53836
54169
|
can_remotely_unlock?: boolean | undefined
|
|
53837
54170
|
can_remotely_lock?: boolean | undefined
|
|
@@ -54695,8 +55028,11 @@ export interface Routes {
|
|
|
54695
55028
|
| {
|
|
54696
55029
|
/** Date and time at which Seam created the error. */
|
|
54697
55030
|
created_at: string
|
|
55031
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54698
55032
|
message: string
|
|
55033
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54699
55034
|
is_connected_account_error?: boolean | undefined
|
|
55035
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
54700
55036
|
is_bridge_error?: boolean | undefined
|
|
54701
55037
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54702
55038
|
error_code: 'invalid_credentials'
|
|
@@ -54704,8 +55040,11 @@ export interface Routes {
|
|
|
54704
55040
|
| {
|
|
54705
55041
|
/** Date and time at which Seam created the error. */
|
|
54706
55042
|
created_at: string
|
|
55043
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54707
55044
|
message: string
|
|
55045
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54708
55046
|
is_connected_account_error?: boolean | undefined
|
|
55047
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
54709
55048
|
is_bridge_error?: boolean | undefined
|
|
54710
55049
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54711
55050
|
error_code: 'bridge_disconnected'
|
|
@@ -54820,6 +55159,7 @@ export interface Routes {
|
|
|
54820
55159
|
created_at: string
|
|
54821
55160
|
/** Indicates whether Seam manages the device. */
|
|
54822
55161
|
is_managed: true
|
|
55162
|
+
/** 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. */
|
|
54823
55163
|
custom_metadata: Record<string, string | boolean>
|
|
54824
55164
|
can_remotely_unlock?: boolean | undefined
|
|
54825
55165
|
can_remotely_lock?: boolean | undefined
|
|
@@ -62007,8 +62347,11 @@ export interface Routes {
|
|
|
62007
62347
|
| {
|
|
62008
62348
|
/** Date and time at which Seam created the error. */
|
|
62009
62349
|
created_at: string
|
|
62350
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62010
62351
|
message: string
|
|
62352
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
62011
62353
|
is_connected_account_error?: boolean | undefined
|
|
62354
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
62012
62355
|
is_bridge_error?: boolean | undefined
|
|
62013
62356
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62014
62357
|
error_code: 'invalid_credentials'
|
|
@@ -62016,8 +62359,11 @@ export interface Routes {
|
|
|
62016
62359
|
| {
|
|
62017
62360
|
/** Date and time at which Seam created the error. */
|
|
62018
62361
|
created_at: string
|
|
62362
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62019
62363
|
message: string
|
|
62364
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
62020
62365
|
is_connected_account_error?: boolean | undefined
|
|
62366
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
62021
62367
|
is_bridge_error?: boolean | undefined
|
|
62022
62368
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62023
62369
|
error_code: 'bridge_disconnected'
|
|
@@ -62132,6 +62478,7 @@ export interface Routes {
|
|
|
62132
62478
|
created_at: string
|
|
62133
62479
|
/** Indicates whether Seam manages the device. */
|
|
62134
62480
|
is_managed: true
|
|
62481
|
+
/** 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. */
|
|
62135
62482
|
custom_metadata: Record<string, string | boolean>
|
|
62136
62483
|
can_remotely_unlock?: boolean | undefined
|
|
62137
62484
|
can_remotely_lock?: boolean | undefined
|
|
@@ -62997,8 +63344,11 @@ export interface Routes {
|
|
|
62997
63344
|
| {
|
|
62998
63345
|
/** Date and time at which Seam created the error. */
|
|
62999
63346
|
created_at: string
|
|
63347
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63000
63348
|
message: string
|
|
63349
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
63001
63350
|
is_connected_account_error?: boolean | undefined
|
|
63351
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
63002
63352
|
is_bridge_error?: boolean | undefined
|
|
63003
63353
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
63004
63354
|
error_code: 'invalid_credentials'
|
|
@@ -63006,8 +63356,11 @@ export interface Routes {
|
|
|
63006
63356
|
| {
|
|
63007
63357
|
/** Date and time at which Seam created the error. */
|
|
63008
63358
|
created_at: string
|
|
63359
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63009
63360
|
message: string
|
|
63361
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
63010
63362
|
is_connected_account_error?: boolean | undefined
|
|
63363
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
63011
63364
|
is_bridge_error?: boolean | undefined
|
|
63012
63365
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
63013
63366
|
error_code: 'bridge_disconnected'
|
|
@@ -63122,6 +63475,7 @@ export interface Routes {
|
|
|
63122
63475
|
created_at: string
|
|
63123
63476
|
/** Indicates whether Seam manages the device. */
|
|
63124
63477
|
is_managed: true
|
|
63478
|
+
/** 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. */
|
|
63125
63479
|
custom_metadata: Record<string, string | boolean>
|
|
63126
63480
|
can_remotely_unlock?: boolean | undefined
|
|
63127
63481
|
can_remotely_lock?: boolean | undefined
|