@seamapi/types 1.404.1 → 1.404.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +395 -111
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +425 -21
- package/lib/seam/connect/models/connected-accounts/connected-account.js +121 -41
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +125 -9
- package/lib/seam/connect/openapi.js +313 -76
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +300 -12
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +172 -44
- package/src/lib/seam/connect/openapi.ts +389 -76
- package/src/lib/seam/connect/route-types.ts +300 -12
|
@@ -1490,16 +1490,22 @@ export interface Routes {
|
|
|
1490
1490
|
} | {
|
|
1491
1491
|
/** Date and time at which Seam created the error. */
|
|
1492
1492
|
created_at: string;
|
|
1493
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1493
1494
|
message: string;
|
|
1495
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
1494
1496
|
is_connected_account_error?: boolean | undefined;
|
|
1497
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
1495
1498
|
is_bridge_error?: boolean | undefined;
|
|
1496
1499
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1497
1500
|
error_code: 'invalid_credentials';
|
|
1498
1501
|
} | {
|
|
1499
1502
|
/** Date and time at which Seam created the error. */
|
|
1500
1503
|
created_at: string;
|
|
1504
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1501
1505
|
message: string;
|
|
1506
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
1502
1507
|
is_connected_account_error?: boolean | undefined;
|
|
1508
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
1503
1509
|
is_bridge_error?: boolean | undefined;
|
|
1504
1510
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1505
1511
|
error_code: 'bridge_disconnected';
|
|
@@ -1992,16 +1998,22 @@ export interface Routes {
|
|
|
1992
1998
|
} | {
|
|
1993
1999
|
/** Date and time at which Seam created the error. */
|
|
1994
2000
|
created_at: string;
|
|
2001
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1995
2002
|
message: string;
|
|
2003
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
1996
2004
|
is_connected_account_error?: boolean | undefined;
|
|
2005
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
1997
2006
|
is_bridge_error?: boolean | undefined;
|
|
1998
2007
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1999
2008
|
error_code: 'invalid_credentials';
|
|
2000
2009
|
} | {
|
|
2001
2010
|
/** Date and time at which Seam created the error. */
|
|
2002
2011
|
created_at: string;
|
|
2012
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2003
2013
|
message: string;
|
|
2014
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
2004
2015
|
is_connected_account_error?: boolean | undefined;
|
|
2016
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
2005
2017
|
is_bridge_error?: boolean | undefined;
|
|
2006
2018
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2007
2019
|
error_code: 'bridge_disconnected';
|
|
@@ -3608,16 +3620,22 @@ export interface Routes {
|
|
|
3608
3620
|
} | {
|
|
3609
3621
|
/** Date and time at which Seam created the error. */
|
|
3610
3622
|
created_at: string;
|
|
3623
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3611
3624
|
message: string;
|
|
3625
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
3612
3626
|
is_connected_account_error?: boolean | undefined;
|
|
3627
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
3613
3628
|
is_bridge_error?: boolean | undefined;
|
|
3614
3629
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3615
3630
|
error_code: 'invalid_credentials';
|
|
3616
3631
|
} | {
|
|
3617
3632
|
/** Date and time at which Seam created the error. */
|
|
3618
3633
|
created_at: string;
|
|
3634
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3619
3635
|
message: string;
|
|
3636
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
3620
3637
|
is_connected_account_error?: boolean | undefined;
|
|
3638
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
3621
3639
|
is_bridge_error?: boolean | undefined;
|
|
3622
3640
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3623
3641
|
error_code: 'bridge_disconnected';
|
|
@@ -4084,16 +4102,22 @@ export interface Routes {
|
|
|
4084
4102
|
} | {
|
|
4085
4103
|
/** Date and time at which Seam created the error. */
|
|
4086
4104
|
created_at: string;
|
|
4105
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4087
4106
|
message: string;
|
|
4107
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4088
4108
|
is_connected_account_error?: boolean | undefined;
|
|
4109
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4089
4110
|
is_bridge_error?: boolean | undefined;
|
|
4090
4111
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4091
4112
|
error_code: 'invalid_credentials';
|
|
4092
4113
|
} | {
|
|
4093
4114
|
/** Date and time at which Seam created the error. */
|
|
4094
4115
|
created_at: string;
|
|
4116
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4095
4117
|
message: string;
|
|
4118
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4096
4119
|
is_connected_account_error?: boolean | undefined;
|
|
4120
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4097
4121
|
is_bridge_error?: boolean | undefined;
|
|
4098
4122
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4099
4123
|
error_code: 'bridge_disconnected';
|
|
@@ -4568,16 +4592,22 @@ export interface Routes {
|
|
|
4568
4592
|
} | {
|
|
4569
4593
|
/** Date and time at which Seam created the error. */
|
|
4570
4594
|
created_at: string;
|
|
4595
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4571
4596
|
message: string;
|
|
4597
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4572
4598
|
is_connected_account_error?: boolean | undefined;
|
|
4599
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4573
4600
|
is_bridge_error?: boolean | undefined;
|
|
4574
4601
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4575
4602
|
error_code: 'invalid_credentials';
|
|
4576
4603
|
} | {
|
|
4577
4604
|
/** Date and time at which Seam created the error. */
|
|
4578
4605
|
created_at: string;
|
|
4606
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4579
4607
|
message: string;
|
|
4608
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
4580
4609
|
is_connected_account_error?: boolean | undefined;
|
|
4610
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
4581
4611
|
is_bridge_error?: boolean | undefined;
|
|
4582
4612
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4583
4613
|
error_code: 'bridge_disconnected';
|
|
@@ -5030,16 +5060,22 @@ export interface Routes {
|
|
|
5030
5060
|
} | {
|
|
5031
5061
|
/** Date and time at which Seam created the error. */
|
|
5032
5062
|
created_at: string;
|
|
5063
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5033
5064
|
message: string;
|
|
5065
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5034
5066
|
is_connected_account_error?: boolean | undefined;
|
|
5067
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5035
5068
|
is_bridge_error?: boolean | undefined;
|
|
5036
5069
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5037
5070
|
error_code: 'invalid_credentials';
|
|
5038
5071
|
} | {
|
|
5039
5072
|
/** Date and time at which Seam created the error. */
|
|
5040
5073
|
created_at: string;
|
|
5074
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5041
5075
|
message: string;
|
|
5076
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5042
5077
|
is_connected_account_error?: boolean | undefined;
|
|
5078
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5043
5079
|
is_bridge_error?: boolean | undefined;
|
|
5044
5080
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5045
5081
|
error_code: 'bridge_disconnected';
|
|
@@ -5525,16 +5561,22 @@ export interface Routes {
|
|
|
5525
5561
|
} | {
|
|
5526
5562
|
/** Date and time at which Seam created the error. */
|
|
5527
5563
|
created_at: string;
|
|
5564
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5528
5565
|
message: string;
|
|
5566
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5529
5567
|
is_connected_account_error?: boolean | undefined;
|
|
5568
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5530
5569
|
is_bridge_error?: boolean | undefined;
|
|
5531
5570
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5532
5571
|
error_code: 'invalid_credentials';
|
|
5533
5572
|
} | {
|
|
5534
5573
|
/** Date and time at which Seam created the error. */
|
|
5535
5574
|
created_at: string;
|
|
5575
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5536
5576
|
message: string;
|
|
5577
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5537
5578
|
is_connected_account_error?: boolean | undefined;
|
|
5579
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
5538
5580
|
is_bridge_error?: boolean | undefined;
|
|
5539
5581
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5540
5582
|
error_code: 'bridge_disconnected';
|
|
@@ -7128,16 +7170,22 @@ export interface Routes {
|
|
|
7128
7170
|
} | {
|
|
7129
7171
|
/** Date and time at which Seam created the error. */
|
|
7130
7172
|
created_at: string;
|
|
7173
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7131
7174
|
message: string;
|
|
7175
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
7132
7176
|
is_connected_account_error?: boolean | undefined;
|
|
7177
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
7133
7178
|
is_bridge_error?: boolean | undefined;
|
|
7134
7179
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7135
7180
|
error_code: 'invalid_credentials';
|
|
7136
7181
|
} | {
|
|
7137
7182
|
/** Date and time at which Seam created the error. */
|
|
7138
7183
|
created_at: string;
|
|
7184
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7139
7185
|
message: string;
|
|
7186
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
7140
7187
|
is_connected_account_error?: boolean | undefined;
|
|
7188
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
7141
7189
|
is_bridge_error?: boolean | undefined;
|
|
7142
7190
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7143
7191
|
error_code: 'bridge_disconnected';
|
|
@@ -7580,16 +7628,22 @@ export interface Routes {
|
|
|
7580
7628
|
} | {
|
|
7581
7629
|
/** Date and time at which Seam created the error. */
|
|
7582
7630
|
created_at: string;
|
|
7631
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7583
7632
|
message: string;
|
|
7633
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
7584
7634
|
is_connected_account_error?: boolean | undefined;
|
|
7635
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
7585
7636
|
is_bridge_error?: boolean | undefined;
|
|
7586
7637
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7587
7638
|
error_code: 'invalid_credentials';
|
|
7588
7639
|
} | {
|
|
7589
7640
|
/** Date and time at which Seam created the error. */
|
|
7590
7641
|
created_at: string;
|
|
7642
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7591
7643
|
message: string;
|
|
7644
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
7592
7645
|
is_connected_account_error?: boolean | undefined;
|
|
7646
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
7593
7647
|
is_bridge_error?: boolean | undefined;
|
|
7594
7648
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7595
7649
|
error_code: 'bridge_disconnected';
|
|
@@ -15292,8 +15346,12 @@ export interface Routes {
|
|
|
15292
15346
|
queryParams: {};
|
|
15293
15347
|
jsonBody: {};
|
|
15294
15348
|
commonParams: {
|
|
15295
|
-
/** ID of the access system user that you want to delete. */
|
|
15296
|
-
acs_user_id
|
|
15349
|
+
/** ID of the access system user that you want to delete. You must provide either acs_user_id or user_identity_id */
|
|
15350
|
+
acs_user_id?: string | undefined;
|
|
15351
|
+
/** 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. */
|
|
15352
|
+
user_identity_id?: string | undefined;
|
|
15353
|
+
/** ID of the access system that you want to delete. You must provide acs_system_id with user_identity_id. */
|
|
15354
|
+
acs_system_id?: string | undefined;
|
|
15297
15355
|
};
|
|
15298
15356
|
formData: {};
|
|
15299
15357
|
jsonResponse: {};
|
|
@@ -15304,8 +15362,12 @@ export interface Routes {
|
|
|
15304
15362
|
queryParams: {};
|
|
15305
15363
|
jsonBody: {};
|
|
15306
15364
|
commonParams: {
|
|
15307
|
-
/** ID of the access system user that you want to get. */
|
|
15308
|
-
acs_user_id
|
|
15365
|
+
/** ID of the access system user that you want to get. You can only provide acs_user_id or user_identity_id. */
|
|
15366
|
+
acs_user_id?: string | undefined;
|
|
15367
|
+
/** ID of the user identity that you want to get. You can only provide acs_user_id or user_identity_id. */
|
|
15368
|
+
user_identity_id?: string | undefined;
|
|
15369
|
+
/** ID of the access system that you want to get. You can only provide acs_user_id or user_identity_id. */
|
|
15370
|
+
acs_system_id?: string | undefined;
|
|
15309
15371
|
};
|
|
15310
15372
|
formData: {};
|
|
15311
15373
|
jsonResponse: {
|
|
@@ -15816,8 +15878,12 @@ export interface Routes {
|
|
|
15816
15878
|
method: 'POST';
|
|
15817
15879
|
queryParams: {};
|
|
15818
15880
|
jsonBody: {
|
|
15819
|
-
/** ID of the access system user for whom you want to revoke access. */
|
|
15820
|
-
acs_user_id
|
|
15881
|
+
/** ID of the access system user for whom you want to revoke access. You can only provide acs_user_id or user_identity_id. */
|
|
15882
|
+
acs_user_id?: string | undefined;
|
|
15883
|
+
/** ID of the user identity for whom you want to revoke access. You can only provide acs_user_id or user_identity_id. */
|
|
15884
|
+
user_identity_id?: string | undefined;
|
|
15885
|
+
/** ID of the access system for which you want to revoke access. You can only provide acs_system_id with user_identity_id. */
|
|
15886
|
+
acs_system_id?: string | undefined;
|
|
15821
15887
|
};
|
|
15822
15888
|
commonParams: {};
|
|
15823
15889
|
formData: {};
|
|
@@ -15829,8 +15895,12 @@ export interface Routes {
|
|
|
15829
15895
|
queryParams: {};
|
|
15830
15896
|
jsonBody: {};
|
|
15831
15897
|
commonParams: {
|
|
15832
|
-
/** ID of the access system user that you want to suspend. */
|
|
15833
|
-
acs_user_id
|
|
15898
|
+
/** 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. */
|
|
15899
|
+
acs_user_id?: string | undefined;
|
|
15900
|
+
/** 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. */
|
|
15901
|
+
user_identity_id?: string | undefined;
|
|
15902
|
+
/** 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. */
|
|
15903
|
+
acs_system_id?: string | undefined;
|
|
15834
15904
|
};
|
|
15835
15905
|
formData: {};
|
|
15836
15906
|
jsonResponse: {};
|
|
@@ -16240,8 +16310,12 @@ export interface Routes {
|
|
|
16240
16310
|
queryParams: {};
|
|
16241
16311
|
jsonBody: {};
|
|
16242
16312
|
commonParams: {
|
|
16243
|
-
/** ID of the access system user that you want to unsuspend. */
|
|
16244
|
-
acs_user_id
|
|
16313
|
+
/** 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. */
|
|
16314
|
+
acs_user_id?: string | undefined;
|
|
16315
|
+
/** 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. */
|
|
16316
|
+
user_identity_id?: string | undefined;
|
|
16317
|
+
/** ID of the access system of the user that you want to unsuspend. You can only provide acs_system_id with user_identity_id. */
|
|
16318
|
+
acs_system_id?: string | undefined;
|
|
16245
16319
|
};
|
|
16246
16320
|
formData: {};
|
|
16247
16321
|
jsonResponse: {};
|
|
@@ -16258,8 +16332,12 @@ export interface Routes {
|
|
|
16258
16332
|
/** Ending timestamp for the access system user's access. */
|
|
16259
16333
|
ends_at: string;
|
|
16260
16334
|
} | null) | undefined;
|
|
16261
|
-
/** ID of the
|
|
16262
|
-
acs_user_id
|
|
16335
|
+
/** ID of the access system user that you want to update. You can only provide acs_user_id or user_identity_id. */
|
|
16336
|
+
acs_user_id?: string | undefined;
|
|
16337
|
+
/** 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. */
|
|
16338
|
+
user_identity_id?: string | undefined;
|
|
16339
|
+
/** ID of the access system that you want to update. You can only provide acs_system_id with user_identity_id. */
|
|
16340
|
+
acs_system_id?: string | undefined;
|
|
16263
16341
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
16264
16342
|
full_name?: string | undefined;
|
|
16265
16343
|
/**
|
|
@@ -19003,87 +19081,127 @@ export interface Routes {
|
|
|
19003
19081
|
jsonResponse: {
|
|
19004
19082
|
/** 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. */
|
|
19005
19083
|
connected_account: {
|
|
19084
|
+
/** Unique identifier for the connected account. */
|
|
19006
19085
|
connected_account_id?: string | undefined;
|
|
19086
|
+
/** Date and time at which the connected account was created. */
|
|
19007
19087
|
created_at?: string | undefined;
|
|
19088
|
+
/** User identifier associated with the connected account. */
|
|
19008
19089
|
user_identifier?: {
|
|
19090
|
+
/** Username of the user identifier associated with the connected account. */
|
|
19009
19091
|
username?: string | undefined;
|
|
19092
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
19010
19093
|
api_url?: string | undefined;
|
|
19094
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
19011
19095
|
email?: string | undefined;
|
|
19096
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
19012
19097
|
phone?: string | undefined;
|
|
19098
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
19013
19099
|
exclusive?: boolean | undefined;
|
|
19014
19100
|
} | undefined;
|
|
19101
|
+
/** Type of connected account. */
|
|
19015
19102
|
account_type?: string | undefined;
|
|
19103
|
+
/** Display name for the connected account type. */
|
|
19016
19104
|
account_type_display_name: string;
|
|
19105
|
+
/** Errors associated with the connected account. */
|
|
19017
19106
|
errors: Array<{
|
|
19018
19107
|
/** Date and time at which Seam created the error. */
|
|
19019
19108
|
created_at: string;
|
|
19109
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19020
19110
|
message: string;
|
|
19111
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19021
19112
|
is_connected_account_error?: boolean | undefined;
|
|
19113
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19022
19114
|
is_bridge_error?: boolean | undefined;
|
|
19023
19115
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19024
19116
|
error_code: 'account_disconnected';
|
|
19025
19117
|
} | {
|
|
19026
19118
|
/** Date and time at which Seam created the error. */
|
|
19027
19119
|
created_at: string;
|
|
19120
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19028
19121
|
message: string;
|
|
19122
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19029
19123
|
is_connected_account_error?: boolean | undefined;
|
|
19124
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19030
19125
|
is_bridge_error?: boolean | undefined;
|
|
19031
19126
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19032
19127
|
error_code: 'invalid_credentials';
|
|
19033
19128
|
} | {
|
|
19034
19129
|
/** Date and time at which Seam created the error. */
|
|
19035
19130
|
created_at: string;
|
|
19131
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19036
19132
|
message: string;
|
|
19133
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19037
19134
|
is_connected_account_error?: boolean | undefined;
|
|
19135
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19038
19136
|
is_bridge_error?: boolean | undefined;
|
|
19039
19137
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19040
19138
|
error_code: 'bridge_disconnected';
|
|
19041
19139
|
} | {
|
|
19042
19140
|
/** Date and time at which Seam created the error. */
|
|
19043
19141
|
created_at: string;
|
|
19142
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19044
19143
|
message: string;
|
|
19144
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19045
19145
|
is_connected_account_error?: boolean | undefined;
|
|
19146
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19046
19147
|
is_bridge_error?: boolean | undefined;
|
|
19047
19148
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19048
19149
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
19150
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
19049
19151
|
salto_ks_metadata: {
|
|
19152
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
19050
19153
|
sites: Array<{
|
|
19154
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
19051
19155
|
site_id: string;
|
|
19156
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
19052
19157
|
site_name: string;
|
|
19158
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
19053
19159
|
subscribed_site_user_count: number;
|
|
19160
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
19054
19161
|
site_user_subscription_limit: number;
|
|
19055
19162
|
}>;
|
|
19056
19163
|
};
|
|
19057
19164
|
}>;
|
|
19165
|
+
/** Warnings associated with the connected account. */
|
|
19058
19166
|
warnings: Array<{
|
|
19059
19167
|
/** Date and time at which Seam created the warning. */
|
|
19060
19168
|
created_at: string;
|
|
19169
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19061
19170
|
message: string;
|
|
19062
19171
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19063
19172
|
warning_code: 'scheduled_maintenance_window';
|
|
19064
19173
|
} | {
|
|
19065
19174
|
/** Date and time at which Seam created the warning. */
|
|
19066
19175
|
created_at: string;
|
|
19176
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19067
19177
|
message: string;
|
|
19068
19178
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19069
19179
|
warning_code: 'unknown_issue_with_connected_account';
|
|
19070
19180
|
} | {
|
|
19071
19181
|
/** Date and time at which Seam created the warning. */
|
|
19072
19182
|
created_at: string;
|
|
19183
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19073
19184
|
message: string;
|
|
19074
19185
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19075
19186
|
warning_code: 'salto_ks_subscription_limit_almost_reached';
|
|
19187
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
19076
19188
|
salto_ks_metadata: {
|
|
19189
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
19077
19190
|
sites: Array<{
|
|
19191
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
19078
19192
|
site_id: string;
|
|
19193
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
19079
19194
|
site_name: string;
|
|
19195
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
19080
19196
|
site_user_subscription_limit: number;
|
|
19197
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
19081
19198
|
subscribed_site_user_count: number;
|
|
19082
19199
|
}>;
|
|
19083
19200
|
};
|
|
19084
19201
|
}>;
|
|
19085
19202
|
/** 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. */
|
|
19086
19203
|
custom_metadata: Record<string, string | boolean>;
|
|
19204
|
+
/** 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. */
|
|
19087
19205
|
automatically_manage_new_devices: boolean;
|
|
19088
19206
|
};
|
|
19089
19207
|
};
|
|
@@ -19107,87 +19225,127 @@ export interface Routes {
|
|
|
19107
19225
|
formData: {};
|
|
19108
19226
|
jsonResponse: {
|
|
19109
19227
|
connected_accounts: Array<{
|
|
19228
|
+
/** Unique identifier for the connected account. */
|
|
19110
19229
|
connected_account_id?: string | undefined;
|
|
19230
|
+
/** Date and time at which the connected account was created. */
|
|
19111
19231
|
created_at?: string | undefined;
|
|
19232
|
+
/** User identifier associated with the connected account. */
|
|
19112
19233
|
user_identifier?: {
|
|
19234
|
+
/** Username of the user identifier associated with the connected account. */
|
|
19113
19235
|
username?: string | undefined;
|
|
19236
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
19114
19237
|
api_url?: string | undefined;
|
|
19238
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
19115
19239
|
email?: string | undefined;
|
|
19240
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
19116
19241
|
phone?: string | undefined;
|
|
19242
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
19117
19243
|
exclusive?: boolean | undefined;
|
|
19118
19244
|
} | undefined;
|
|
19245
|
+
/** Type of connected account. */
|
|
19119
19246
|
account_type?: string | undefined;
|
|
19247
|
+
/** Display name for the connected account type. */
|
|
19120
19248
|
account_type_display_name: string;
|
|
19249
|
+
/** Errors associated with the connected account. */
|
|
19121
19250
|
errors: Array<{
|
|
19122
19251
|
/** Date and time at which Seam created the error. */
|
|
19123
19252
|
created_at: string;
|
|
19253
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19124
19254
|
message: string;
|
|
19255
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19125
19256
|
is_connected_account_error?: boolean | undefined;
|
|
19257
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19126
19258
|
is_bridge_error?: boolean | undefined;
|
|
19127
19259
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19128
19260
|
error_code: 'account_disconnected';
|
|
19129
19261
|
} | {
|
|
19130
19262
|
/** Date and time at which Seam created the error. */
|
|
19131
19263
|
created_at: string;
|
|
19264
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19132
19265
|
message: string;
|
|
19266
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19133
19267
|
is_connected_account_error?: boolean | undefined;
|
|
19268
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19134
19269
|
is_bridge_error?: boolean | undefined;
|
|
19135
19270
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19136
19271
|
error_code: 'invalid_credentials';
|
|
19137
19272
|
} | {
|
|
19138
19273
|
/** Date and time at which Seam created the error. */
|
|
19139
19274
|
created_at: string;
|
|
19275
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19140
19276
|
message: string;
|
|
19277
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19141
19278
|
is_connected_account_error?: boolean | undefined;
|
|
19279
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19142
19280
|
is_bridge_error?: boolean | undefined;
|
|
19143
19281
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19144
19282
|
error_code: 'bridge_disconnected';
|
|
19145
19283
|
} | {
|
|
19146
19284
|
/** Date and time at which Seam created the error. */
|
|
19147
19285
|
created_at: string;
|
|
19286
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19148
19287
|
message: string;
|
|
19288
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19149
19289
|
is_connected_account_error?: boolean | undefined;
|
|
19290
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19150
19291
|
is_bridge_error?: boolean | undefined;
|
|
19151
19292
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19152
19293
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
19294
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
19153
19295
|
salto_ks_metadata: {
|
|
19296
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
19154
19297
|
sites: Array<{
|
|
19298
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
19155
19299
|
site_id: string;
|
|
19300
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
19156
19301
|
site_name: string;
|
|
19302
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
19157
19303
|
subscribed_site_user_count: number;
|
|
19304
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
19158
19305
|
site_user_subscription_limit: number;
|
|
19159
19306
|
}>;
|
|
19160
19307
|
};
|
|
19161
19308
|
}>;
|
|
19309
|
+
/** Warnings associated with the connected account. */
|
|
19162
19310
|
warnings: Array<{
|
|
19163
19311
|
/** Date and time at which Seam created the warning. */
|
|
19164
19312
|
created_at: string;
|
|
19313
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19165
19314
|
message: string;
|
|
19166
19315
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19167
19316
|
warning_code: 'scheduled_maintenance_window';
|
|
19168
19317
|
} | {
|
|
19169
19318
|
/** Date and time at which Seam created the warning. */
|
|
19170
19319
|
created_at: string;
|
|
19320
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19171
19321
|
message: string;
|
|
19172
19322
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19173
19323
|
warning_code: 'unknown_issue_with_connected_account';
|
|
19174
19324
|
} | {
|
|
19175
19325
|
/** Date and time at which Seam created the warning. */
|
|
19176
19326
|
created_at: string;
|
|
19327
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19177
19328
|
message: string;
|
|
19178
19329
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19179
19330
|
warning_code: 'salto_ks_subscription_limit_almost_reached';
|
|
19331
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
19180
19332
|
salto_ks_metadata: {
|
|
19333
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
19181
19334
|
sites: Array<{
|
|
19335
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
19182
19336
|
site_id: string;
|
|
19337
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
19183
19338
|
site_name: string;
|
|
19339
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
19184
19340
|
site_user_subscription_limit: number;
|
|
19341
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
19185
19342
|
subscribed_site_user_count: number;
|
|
19186
19343
|
}>;
|
|
19187
19344
|
};
|
|
19188
19345
|
}>;
|
|
19189
19346
|
/** 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. */
|
|
19190
19347
|
custom_metadata: Record<string, string | boolean>;
|
|
19348
|
+
/** 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. */
|
|
19191
19349
|
automatically_manage_new_devices: boolean;
|
|
19192
19350
|
}>;
|
|
19193
19351
|
/** Information about the current page of results. */
|
|
@@ -19218,87 +19376,127 @@ export interface Routes {
|
|
|
19218
19376
|
jsonResponse: {
|
|
19219
19377
|
/** 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. */
|
|
19220
19378
|
connected_account: {
|
|
19379
|
+
/** Unique identifier for the connected account. */
|
|
19221
19380
|
connected_account_id?: string | undefined;
|
|
19381
|
+
/** Date and time at which the connected account was created. */
|
|
19222
19382
|
created_at?: string | undefined;
|
|
19383
|
+
/** User identifier associated with the connected account. */
|
|
19223
19384
|
user_identifier?: {
|
|
19385
|
+
/** Username of the user identifier associated with the connected account. */
|
|
19224
19386
|
username?: string | undefined;
|
|
19387
|
+
/** API URL for the user identifier associated with the connected account. */
|
|
19225
19388
|
api_url?: string | undefined;
|
|
19389
|
+
/** Email address of the user identifier associated with the connected account. */
|
|
19226
19390
|
email?: string | undefined;
|
|
19391
|
+
/** Phone number of the user identifier associated with the connected account. */
|
|
19227
19392
|
phone?: string | undefined;
|
|
19393
|
+
/** Indicates whether the user identifier associated with the connected account is exclusive. */
|
|
19228
19394
|
exclusive?: boolean | undefined;
|
|
19229
19395
|
} | undefined;
|
|
19396
|
+
/** Type of connected account. */
|
|
19230
19397
|
account_type?: string | undefined;
|
|
19398
|
+
/** Display name for the connected account type. */
|
|
19231
19399
|
account_type_display_name: string;
|
|
19400
|
+
/** Errors associated with the connected account. */
|
|
19232
19401
|
errors: Array<{
|
|
19233
19402
|
/** Date and time at which Seam created the error. */
|
|
19234
19403
|
created_at: string;
|
|
19404
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19235
19405
|
message: string;
|
|
19406
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19236
19407
|
is_connected_account_error?: boolean | undefined;
|
|
19408
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19237
19409
|
is_bridge_error?: boolean | undefined;
|
|
19238
19410
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19239
19411
|
error_code: 'account_disconnected';
|
|
19240
19412
|
} | {
|
|
19241
19413
|
/** Date and time at which Seam created the error. */
|
|
19242
19414
|
created_at: string;
|
|
19415
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19243
19416
|
message: string;
|
|
19417
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19244
19418
|
is_connected_account_error?: boolean | undefined;
|
|
19419
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19245
19420
|
is_bridge_error?: boolean | undefined;
|
|
19246
19421
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19247
19422
|
error_code: 'invalid_credentials';
|
|
19248
19423
|
} | {
|
|
19249
19424
|
/** Date and time at which Seam created the error. */
|
|
19250
19425
|
created_at: string;
|
|
19426
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19251
19427
|
message: string;
|
|
19428
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19252
19429
|
is_connected_account_error?: boolean | undefined;
|
|
19430
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19253
19431
|
is_bridge_error?: boolean | undefined;
|
|
19254
19432
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19255
19433
|
error_code: 'bridge_disconnected';
|
|
19256
19434
|
} | {
|
|
19257
19435
|
/** Date and time at which Seam created the error. */
|
|
19258
19436
|
created_at: string;
|
|
19437
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19259
19438
|
message: string;
|
|
19439
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19260
19440
|
is_connected_account_error?: boolean | undefined;
|
|
19441
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19261
19442
|
is_bridge_error?: boolean | undefined;
|
|
19262
19443
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19263
19444
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
19445
|
+
/** Salto KS metadata associated with the connected account that has an error. */
|
|
19264
19446
|
salto_ks_metadata: {
|
|
19447
|
+
/** Salto sites associated with the connected account that has an error. */
|
|
19265
19448
|
sites: Array<{
|
|
19449
|
+
/** ID of a Salto site associated with the connected account that has an error. */
|
|
19266
19450
|
site_id: string;
|
|
19451
|
+
/** Name of a Salto site associated with the connected account that has an error. */
|
|
19267
19452
|
site_name: string;
|
|
19453
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has an error. */
|
|
19268
19454
|
subscribed_site_user_count: number;
|
|
19455
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has an error. */
|
|
19269
19456
|
site_user_subscription_limit: number;
|
|
19270
19457
|
}>;
|
|
19271
19458
|
};
|
|
19272
19459
|
}>;
|
|
19460
|
+
/** Warnings associated with the connected account. */
|
|
19273
19461
|
warnings: Array<{
|
|
19274
19462
|
/** Date and time at which Seam created the warning. */
|
|
19275
19463
|
created_at: string;
|
|
19464
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19276
19465
|
message: string;
|
|
19277
19466
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19278
19467
|
warning_code: 'scheduled_maintenance_window';
|
|
19279
19468
|
} | {
|
|
19280
19469
|
/** Date and time at which Seam created the warning. */
|
|
19281
19470
|
created_at: string;
|
|
19471
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19282
19472
|
message: string;
|
|
19283
19473
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19284
19474
|
warning_code: 'unknown_issue_with_connected_account';
|
|
19285
19475
|
} | {
|
|
19286
19476
|
/** Date and time at which Seam created the warning. */
|
|
19287
19477
|
created_at: string;
|
|
19478
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19288
19479
|
message: string;
|
|
19289
19480
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19290
19481
|
warning_code: 'salto_ks_subscription_limit_almost_reached';
|
|
19482
|
+
/** Salto KS metadata associated with the connected account that has a warning. */
|
|
19291
19483
|
salto_ks_metadata: {
|
|
19484
|
+
/** Salto sites associated with the connected account that has a warning. */
|
|
19292
19485
|
sites: Array<{
|
|
19486
|
+
/** ID of a Salto site associated with the connected account that has a warning. */
|
|
19293
19487
|
site_id: string;
|
|
19488
|
+
/** Name of a Salto site associated with the connected account that has a warning. */
|
|
19294
19489
|
site_name: string;
|
|
19490
|
+
/** Subscription limit of site users for a Salto site associated with the connected account that has a warning. */
|
|
19295
19491
|
site_user_subscription_limit: number;
|
|
19492
|
+
/** Count of subscribed site users for a Salto site associated with the connected account that has a warning. */
|
|
19296
19493
|
subscribed_site_user_count: number;
|
|
19297
19494
|
}>;
|
|
19298
19495
|
};
|
|
19299
19496
|
}>;
|
|
19300
19497
|
/** 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. */
|
|
19301
19498
|
custom_metadata: Record<string, string | boolean>;
|
|
19499
|
+
/** 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. */
|
|
19302
19500
|
automatically_manage_new_devices: boolean;
|
|
19303
19501
|
};
|
|
19304
19502
|
};
|
|
@@ -19964,16 +20162,22 @@ export interface Routes {
|
|
|
19964
20162
|
} | {
|
|
19965
20163
|
/** Date and time at which Seam created the error. */
|
|
19966
20164
|
created_at: string;
|
|
20165
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19967
20166
|
message: string;
|
|
20167
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19968
20168
|
is_connected_account_error?: boolean | undefined;
|
|
20169
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19969
20170
|
is_bridge_error?: boolean | undefined;
|
|
19970
20171
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19971
20172
|
error_code: 'invalid_credentials';
|
|
19972
20173
|
} | {
|
|
19973
20174
|
/** Date and time at which Seam created the error. */
|
|
19974
20175
|
created_at: string;
|
|
20176
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19975
20177
|
message: string;
|
|
20178
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
19976
20179
|
is_connected_account_error?: boolean | undefined;
|
|
20180
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
19977
20181
|
is_bridge_error?: boolean | undefined;
|
|
19978
20182
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19979
20183
|
error_code: 'bridge_disconnected';
|
|
@@ -20760,16 +20964,22 @@ export interface Routes {
|
|
|
20760
20964
|
} | {
|
|
20761
20965
|
/** Date and time at which Seam created the error. */
|
|
20762
20966
|
created_at: string;
|
|
20967
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20763
20968
|
message: string;
|
|
20969
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
20764
20970
|
is_connected_account_error?: boolean | undefined;
|
|
20971
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
20765
20972
|
is_bridge_error?: boolean | undefined;
|
|
20766
20973
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20767
20974
|
error_code: 'invalid_credentials';
|
|
20768
20975
|
} | {
|
|
20769
20976
|
/** Date and time at which Seam created the error. */
|
|
20770
20977
|
created_at: string;
|
|
20978
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20771
20979
|
message: string;
|
|
20980
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
20772
20981
|
is_connected_account_error?: boolean | undefined;
|
|
20982
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
20773
20983
|
is_bridge_error?: boolean | undefined;
|
|
20774
20984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20775
20985
|
error_code: 'bridge_disconnected';
|
|
@@ -21072,16 +21282,22 @@ export interface Routes {
|
|
|
21072
21282
|
} | {
|
|
21073
21283
|
/** Date and time at which Seam created the error. */
|
|
21074
21284
|
created_at: string;
|
|
21285
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21075
21286
|
message: string;
|
|
21287
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
21076
21288
|
is_connected_account_error?: boolean | undefined;
|
|
21289
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
21077
21290
|
is_bridge_error?: boolean | undefined;
|
|
21078
21291
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21079
21292
|
error_code: 'invalid_credentials';
|
|
21080
21293
|
} | {
|
|
21081
21294
|
/** Date and time at which Seam created the error. */
|
|
21082
21295
|
created_at: string;
|
|
21296
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21083
21297
|
message: string;
|
|
21298
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
21084
21299
|
is_connected_account_error?: boolean | undefined;
|
|
21300
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
21085
21301
|
is_bridge_error?: boolean | undefined;
|
|
21086
21302
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21087
21303
|
error_code: 'bridge_disconnected';
|
|
@@ -21382,16 +21598,22 @@ export interface Routes {
|
|
|
21382
21598
|
} | {
|
|
21383
21599
|
/** Date and time at which Seam created the error. */
|
|
21384
21600
|
created_at: string;
|
|
21601
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21385
21602
|
message: string;
|
|
21603
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
21386
21604
|
is_connected_account_error?: boolean | undefined;
|
|
21605
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
21387
21606
|
is_bridge_error?: boolean | undefined;
|
|
21388
21607
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21389
21608
|
error_code: 'invalid_credentials';
|
|
21390
21609
|
} | {
|
|
21391
21610
|
/** Date and time at which Seam created the error. */
|
|
21392
21611
|
created_at: string;
|
|
21612
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21393
21613
|
message: string;
|
|
21614
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
21394
21615
|
is_connected_account_error?: boolean | undefined;
|
|
21616
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
21395
21617
|
is_bridge_error?: boolean | undefined;
|
|
21396
21618
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21397
21619
|
error_code: 'bridge_disconnected';
|
|
@@ -25000,16 +25222,22 @@ export interface Routes {
|
|
|
25000
25222
|
} | {
|
|
25001
25223
|
/** Date and time at which Seam created the error. */
|
|
25002
25224
|
created_at: string;
|
|
25225
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25003
25226
|
message: string;
|
|
25227
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25004
25228
|
is_connected_account_error?: boolean | undefined;
|
|
25229
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25005
25230
|
is_bridge_error?: boolean | undefined;
|
|
25006
25231
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25007
25232
|
error_code: 'invalid_credentials';
|
|
25008
25233
|
} | {
|
|
25009
25234
|
/** Date and time at which Seam created the error. */
|
|
25010
25235
|
created_at: string;
|
|
25236
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25011
25237
|
message: string;
|
|
25238
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25012
25239
|
is_connected_account_error?: boolean | undefined;
|
|
25240
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25013
25241
|
is_bridge_error?: boolean | undefined;
|
|
25014
25242
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25015
25243
|
error_code: 'bridge_disconnected';
|
|
@@ -25755,16 +25983,22 @@ export interface Routes {
|
|
|
25755
25983
|
} | {
|
|
25756
25984
|
/** Date and time at which Seam created the error. */
|
|
25757
25985
|
created_at: string;
|
|
25986
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25758
25987
|
message: string;
|
|
25988
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25759
25989
|
is_connected_account_error?: boolean | undefined;
|
|
25990
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25760
25991
|
is_bridge_error?: boolean | undefined;
|
|
25761
25992
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25762
25993
|
error_code: 'invalid_credentials';
|
|
25763
25994
|
} | {
|
|
25764
25995
|
/** Date and time at which Seam created the error. */
|
|
25765
25996
|
created_at: string;
|
|
25997
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
25766
25998
|
message: string;
|
|
25999
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
25767
26000
|
is_connected_account_error?: boolean | undefined;
|
|
26001
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
25768
26002
|
is_bridge_error?: boolean | undefined;
|
|
25769
26003
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25770
26004
|
error_code: 'bridge_disconnected';
|
|
@@ -26551,16 +26785,22 @@ export interface Routes {
|
|
|
26551
26785
|
} | {
|
|
26552
26786
|
/** Date and time at which Seam created the error. */
|
|
26553
26787
|
created_at: string;
|
|
26788
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
26554
26789
|
message: string;
|
|
26790
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
26555
26791
|
is_connected_account_error?: boolean | undefined;
|
|
26792
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
26556
26793
|
is_bridge_error?: boolean | undefined;
|
|
26557
26794
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26558
26795
|
error_code: 'invalid_credentials';
|
|
26559
26796
|
} | {
|
|
26560
26797
|
/** Date and time at which Seam created the error. */
|
|
26561
26798
|
created_at: string;
|
|
26799
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
26562
26800
|
message: string;
|
|
26801
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
26563
26802
|
is_connected_account_error?: boolean | undefined;
|
|
26803
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
26564
26804
|
is_bridge_error?: boolean | undefined;
|
|
26565
26805
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26566
26806
|
error_code: 'bridge_disconnected';
|
|
@@ -27305,16 +27545,22 @@ export interface Routes {
|
|
|
27305
27545
|
} | {
|
|
27306
27546
|
/** Date and time at which Seam created the error. */
|
|
27307
27547
|
created_at: string;
|
|
27548
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27308
27549
|
message: string;
|
|
27550
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
27309
27551
|
is_connected_account_error?: boolean | undefined;
|
|
27552
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
27310
27553
|
is_bridge_error?: boolean | undefined;
|
|
27311
27554
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27312
27555
|
error_code: 'invalid_credentials';
|
|
27313
27556
|
} | {
|
|
27314
27557
|
/** Date and time at which Seam created the error. */
|
|
27315
27558
|
created_at: string;
|
|
27559
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27316
27560
|
message: string;
|
|
27561
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
27317
27562
|
is_connected_account_error?: boolean | undefined;
|
|
27563
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
27318
27564
|
is_bridge_error?: boolean | undefined;
|
|
27319
27565
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27320
27566
|
error_code: 'bridge_disconnected';
|
|
@@ -32599,16 +32845,22 @@ export interface Routes {
|
|
|
32599
32845
|
} | {
|
|
32600
32846
|
/** Date and time at which Seam created the error. */
|
|
32601
32847
|
created_at: string;
|
|
32848
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32602
32849
|
message: string;
|
|
32850
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
32603
32851
|
is_connected_account_error?: boolean | undefined;
|
|
32852
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
32604
32853
|
is_bridge_error?: boolean | undefined;
|
|
32605
32854
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32606
32855
|
error_code: 'invalid_credentials';
|
|
32607
32856
|
} | {
|
|
32608
32857
|
/** Date and time at which Seam created the error. */
|
|
32609
32858
|
created_at: string;
|
|
32859
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32610
32860
|
message: string;
|
|
32861
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
32611
32862
|
is_connected_account_error?: boolean | undefined;
|
|
32863
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
32612
32864
|
is_bridge_error?: boolean | undefined;
|
|
32613
32865
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32614
32866
|
error_code: 'bridge_disconnected';
|
|
@@ -33353,16 +33605,22 @@ export interface Routes {
|
|
|
33353
33605
|
} | {
|
|
33354
33606
|
/** Date and time at which Seam created the error. */
|
|
33355
33607
|
created_at: string;
|
|
33608
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33356
33609
|
message: string;
|
|
33610
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
33357
33611
|
is_connected_account_error?: boolean | undefined;
|
|
33612
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
33358
33613
|
is_bridge_error?: boolean | undefined;
|
|
33359
33614
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33360
33615
|
error_code: 'invalid_credentials';
|
|
33361
33616
|
} | {
|
|
33362
33617
|
/** Date and time at which Seam created the error. */
|
|
33363
33618
|
created_at: string;
|
|
33619
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33364
33620
|
message: string;
|
|
33621
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
33365
33622
|
is_connected_account_error?: boolean | undefined;
|
|
33623
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
33366
33624
|
is_bridge_error?: boolean | undefined;
|
|
33367
33625
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33368
33626
|
error_code: 'bridge_disconnected';
|
|
@@ -41819,16 +42077,22 @@ export interface Routes {
|
|
|
41819
42077
|
} | {
|
|
41820
42078
|
/** Date and time at which Seam created the error. */
|
|
41821
42079
|
created_at: string;
|
|
42080
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41822
42081
|
message: string;
|
|
42082
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
41823
42083
|
is_connected_account_error?: boolean | undefined;
|
|
42084
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
41824
42085
|
is_bridge_error?: boolean | undefined;
|
|
41825
42086
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
41826
42087
|
error_code: 'invalid_credentials';
|
|
41827
42088
|
} | {
|
|
41828
42089
|
/** Date and time at which Seam created the error. */
|
|
41829
42090
|
created_at: string;
|
|
42091
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41830
42092
|
message: string;
|
|
42093
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
41831
42094
|
is_connected_account_error?: boolean | undefined;
|
|
42095
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
41832
42096
|
is_bridge_error?: boolean | undefined;
|
|
41833
42097
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
41834
42098
|
error_code: 'bridge_disconnected';
|
|
@@ -44863,16 +45127,22 @@ export interface Routes {
|
|
|
44863
45127
|
} | {
|
|
44864
45128
|
/** Date and time at which Seam created the error. */
|
|
44865
45129
|
created_at: string;
|
|
45130
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44866
45131
|
message: string;
|
|
45132
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
44867
45133
|
is_connected_account_error?: boolean | undefined;
|
|
45134
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
44868
45135
|
is_bridge_error?: boolean | undefined;
|
|
44869
45136
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44870
45137
|
error_code: 'invalid_credentials';
|
|
44871
45138
|
} | {
|
|
44872
45139
|
/** Date and time at which Seam created the error. */
|
|
44873
45140
|
created_at: string;
|
|
45141
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44874
45142
|
message: string;
|
|
45143
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
44875
45144
|
is_connected_account_error?: boolean | undefined;
|
|
45145
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
44876
45146
|
is_bridge_error?: boolean | undefined;
|
|
44877
45147
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44878
45148
|
error_code: 'bridge_disconnected';
|
|
@@ -45617,16 +45887,22 @@ export interface Routes {
|
|
|
45617
45887
|
} | {
|
|
45618
45888
|
/** Date and time at which Seam created the error. */
|
|
45619
45889
|
created_at: string;
|
|
45890
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45620
45891
|
message: string;
|
|
45892
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
45621
45893
|
is_connected_account_error?: boolean | undefined;
|
|
45894
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
45622
45895
|
is_bridge_error?: boolean | undefined;
|
|
45623
45896
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45624
45897
|
error_code: 'invalid_credentials';
|
|
45625
45898
|
} | {
|
|
45626
45899
|
/** Date and time at which Seam created the error. */
|
|
45627
45900
|
created_at: string;
|
|
45901
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
45628
45902
|
message: string;
|
|
45903
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
45629
45904
|
is_connected_account_error?: boolean | undefined;
|
|
45905
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
45630
45906
|
is_bridge_error?: boolean | undefined;
|
|
45631
45907
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
45632
45908
|
error_code: 'bridge_disconnected';
|
|
@@ -51910,16 +52186,22 @@ export interface Routes {
|
|
|
51910
52186
|
} | {
|
|
51911
52187
|
/** Date and time at which Seam created the error. */
|
|
51912
52188
|
created_at: string;
|
|
52189
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51913
52190
|
message: string;
|
|
52191
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
51914
52192
|
is_connected_account_error?: boolean | undefined;
|
|
52193
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
51915
52194
|
is_bridge_error?: boolean | undefined;
|
|
51916
52195
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51917
52196
|
error_code: 'invalid_credentials';
|
|
51918
52197
|
} | {
|
|
51919
52198
|
/** Date and time at which Seam created the error. */
|
|
51920
52199
|
created_at: string;
|
|
52200
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51921
52201
|
message: string;
|
|
52202
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
51922
52203
|
is_connected_account_error?: boolean | undefined;
|
|
52204
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
51923
52205
|
is_bridge_error?: boolean | undefined;
|
|
51924
52206
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51925
52207
|
error_code: 'bridge_disconnected';
|
|
@@ -52666,16 +52948,22 @@ export interface Routes {
|
|
|
52666
52948
|
} | {
|
|
52667
52949
|
/** Date and time at which Seam created the error. */
|
|
52668
52950
|
created_at: string;
|
|
52951
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52669
52952
|
message: string;
|
|
52953
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
52670
52954
|
is_connected_account_error?: boolean | undefined;
|
|
52955
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
52671
52956
|
is_bridge_error?: boolean | undefined;
|
|
52672
52957
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52673
52958
|
error_code: 'invalid_credentials';
|
|
52674
52959
|
} | {
|
|
52675
52960
|
/** Date and time at which Seam created the error. */
|
|
52676
52961
|
created_at: string;
|
|
52962
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52677
52963
|
message: string;
|
|
52964
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
52678
52965
|
is_connected_account_error?: boolean | undefined;
|
|
52966
|
+
/** Indicates whether the error is related to Seam Bridge. */
|
|
52679
52967
|
is_bridge_error?: boolean | undefined;
|
|
52680
52968
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52681
52969
|
error_code: 'bridge_disconnected';
|