@seamapi/types 1.374.0 → 1.375.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +154 -63
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +767 -116
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +93 -15
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +93 -15
- package/lib/seam/connect/models/acs/acs-system.d.ts +55 -0
- package/lib/seam/connect/models/acs/acs-system.js +9 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +200 -48
- package/lib/seam/connect/models/connected-accounts/connected-account.js +9 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +118 -24
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +61 -15
- package/lib/seam/connect/openapi.d.ts +58 -8
- package/lib/seam/connect/openapi.js +138 -61
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +314 -33
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +10 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +10 -1
- package/src/lib/seam/connect/openapi.ts +157 -61
- package/src/lib/seam/connect/route-types.ts +345 -33
|
@@ -1224,9 +1224,18 @@ export interface Routes {
|
|
|
1224
1224
|
/** Date and time at which Seam created the error. */
|
|
1225
1225
|
created_at: string;
|
|
1226
1226
|
message: string;
|
|
1227
|
-
is_connected_account_error
|
|
1227
|
+
is_connected_account_error?: boolean | undefined;
|
|
1228
|
+
is_bridge_error?: boolean | undefined;
|
|
1228
1229
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1229
1230
|
error_code: 'invalid_credentials';
|
|
1231
|
+
} | {
|
|
1232
|
+
/** Date and time at which Seam created the error. */
|
|
1233
|
+
created_at: string;
|
|
1234
|
+
message: string;
|
|
1235
|
+
is_connected_account_error?: boolean | undefined;
|
|
1236
|
+
is_bridge_error?: boolean | undefined;
|
|
1237
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1238
|
+
error_code: 'bridge_disconnected';
|
|
1230
1239
|
}>;
|
|
1231
1240
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1232
1241
|
warnings: Array<{
|
|
@@ -1588,9 +1597,18 @@ export interface Routes {
|
|
|
1588
1597
|
/** Date and time at which Seam created the error. */
|
|
1589
1598
|
created_at: string;
|
|
1590
1599
|
message: string;
|
|
1591
|
-
is_connected_account_error
|
|
1600
|
+
is_connected_account_error?: boolean | undefined;
|
|
1601
|
+
is_bridge_error?: boolean | undefined;
|
|
1592
1602
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1593
1603
|
error_code: 'invalid_credentials';
|
|
1604
|
+
} | {
|
|
1605
|
+
/** Date and time at which Seam created the error. */
|
|
1606
|
+
created_at: string;
|
|
1607
|
+
message: string;
|
|
1608
|
+
is_connected_account_error?: boolean | undefined;
|
|
1609
|
+
is_bridge_error?: boolean | undefined;
|
|
1610
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1611
|
+
error_code: 'bridge_disconnected';
|
|
1594
1612
|
}>;
|
|
1595
1613
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1596
1614
|
warnings: Array<{
|
|
@@ -2920,9 +2938,18 @@ export interface Routes {
|
|
|
2920
2938
|
/** Date and time at which Seam created the error. */
|
|
2921
2939
|
created_at: string;
|
|
2922
2940
|
message: string;
|
|
2923
|
-
is_connected_account_error
|
|
2941
|
+
is_connected_account_error?: boolean | undefined;
|
|
2942
|
+
is_bridge_error?: boolean | undefined;
|
|
2924
2943
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2925
2944
|
error_code: 'invalid_credentials';
|
|
2945
|
+
} | {
|
|
2946
|
+
/** Date and time at which Seam created the error. */
|
|
2947
|
+
created_at: string;
|
|
2948
|
+
message: string;
|
|
2949
|
+
is_connected_account_error?: boolean | undefined;
|
|
2950
|
+
is_bridge_error?: boolean | undefined;
|
|
2951
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2952
|
+
error_code: 'bridge_disconnected';
|
|
2926
2953
|
}>;
|
|
2927
2954
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2928
2955
|
warnings: Array<{
|
|
@@ -3271,9 +3298,18 @@ export interface Routes {
|
|
|
3271
3298
|
/** Date and time at which Seam created the error. */
|
|
3272
3299
|
created_at: string;
|
|
3273
3300
|
message: string;
|
|
3274
|
-
is_connected_account_error
|
|
3301
|
+
is_connected_account_error?: boolean | undefined;
|
|
3302
|
+
is_bridge_error?: boolean | undefined;
|
|
3275
3303
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3276
3304
|
error_code: 'invalid_credentials';
|
|
3305
|
+
} | {
|
|
3306
|
+
/** Date and time at which Seam created the error. */
|
|
3307
|
+
created_at: string;
|
|
3308
|
+
message: string;
|
|
3309
|
+
is_connected_account_error?: boolean | undefined;
|
|
3310
|
+
is_bridge_error?: boolean | undefined;
|
|
3311
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3312
|
+
error_code: 'bridge_disconnected';
|
|
3277
3313
|
}>;
|
|
3278
3314
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3279
3315
|
warnings: Array<{
|
|
@@ -3621,9 +3657,18 @@ export interface Routes {
|
|
|
3621
3657
|
/** Date and time at which Seam created the error. */
|
|
3622
3658
|
created_at: string;
|
|
3623
3659
|
message: string;
|
|
3624
|
-
is_connected_account_error
|
|
3660
|
+
is_connected_account_error?: boolean | undefined;
|
|
3661
|
+
is_bridge_error?: boolean | undefined;
|
|
3625
3662
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3626
3663
|
error_code: 'invalid_credentials';
|
|
3664
|
+
} | {
|
|
3665
|
+
/** Date and time at which Seam created the error. */
|
|
3666
|
+
created_at: string;
|
|
3667
|
+
message: string;
|
|
3668
|
+
is_connected_account_error?: boolean | undefined;
|
|
3669
|
+
is_bridge_error?: boolean | undefined;
|
|
3670
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3671
|
+
error_code: 'bridge_disconnected';
|
|
3627
3672
|
}>;
|
|
3628
3673
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3629
3674
|
warnings: Array<{
|
|
@@ -3959,9 +4004,18 @@ export interface Routes {
|
|
|
3959
4004
|
/** Date and time at which Seam created the error. */
|
|
3960
4005
|
created_at: string;
|
|
3961
4006
|
message: string;
|
|
3962
|
-
is_connected_account_error
|
|
4007
|
+
is_connected_account_error?: boolean | undefined;
|
|
4008
|
+
is_bridge_error?: boolean | undefined;
|
|
3963
4009
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3964
4010
|
error_code: 'invalid_credentials';
|
|
4011
|
+
} | {
|
|
4012
|
+
/** Date and time at which Seam created the error. */
|
|
4013
|
+
created_at: string;
|
|
4014
|
+
message: string;
|
|
4015
|
+
is_connected_account_error?: boolean | undefined;
|
|
4016
|
+
is_bridge_error?: boolean | undefined;
|
|
4017
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4018
|
+
error_code: 'bridge_disconnected';
|
|
3965
4019
|
}>;
|
|
3966
4020
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3967
4021
|
warnings: Array<{
|
|
@@ -4305,9 +4359,18 @@ export interface Routes {
|
|
|
4305
4359
|
/** Date and time at which Seam created the error. */
|
|
4306
4360
|
created_at: string;
|
|
4307
4361
|
message: string;
|
|
4308
|
-
is_connected_account_error
|
|
4362
|
+
is_connected_account_error?: boolean | undefined;
|
|
4363
|
+
is_bridge_error?: boolean | undefined;
|
|
4309
4364
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4310
4365
|
error_code: 'invalid_credentials';
|
|
4366
|
+
} | {
|
|
4367
|
+
/** Date and time at which Seam created the error. */
|
|
4368
|
+
created_at: string;
|
|
4369
|
+
message: string;
|
|
4370
|
+
is_connected_account_error?: boolean | undefined;
|
|
4371
|
+
is_bridge_error?: boolean | undefined;
|
|
4372
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4373
|
+
error_code: 'bridge_disconnected';
|
|
4311
4374
|
}>;
|
|
4312
4375
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
4313
4376
|
warnings: Array<{
|
|
@@ -5613,9 +5676,18 @@ export interface Routes {
|
|
|
5613
5676
|
/** Date and time at which Seam created the error. */
|
|
5614
5677
|
created_at: string;
|
|
5615
5678
|
message: string;
|
|
5616
|
-
is_connected_account_error
|
|
5679
|
+
is_connected_account_error?: boolean | undefined;
|
|
5680
|
+
is_bridge_error?: boolean | undefined;
|
|
5617
5681
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5618
5682
|
error_code: 'invalid_credentials';
|
|
5683
|
+
} | {
|
|
5684
|
+
/** Date and time at which Seam created the error. */
|
|
5685
|
+
created_at: string;
|
|
5686
|
+
message: string;
|
|
5687
|
+
is_connected_account_error?: boolean | undefined;
|
|
5688
|
+
is_bridge_error?: boolean | undefined;
|
|
5689
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5690
|
+
error_code: 'bridge_disconnected';
|
|
5619
5691
|
}>;
|
|
5620
5692
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
5621
5693
|
warnings: Array<{
|
|
@@ -5941,9 +6013,18 @@ export interface Routes {
|
|
|
5941
6013
|
/** Date and time at which Seam created the error. */
|
|
5942
6014
|
created_at: string;
|
|
5943
6015
|
message: string;
|
|
5944
|
-
is_connected_account_error
|
|
6016
|
+
is_connected_account_error?: boolean | undefined;
|
|
6017
|
+
is_bridge_error?: boolean | undefined;
|
|
5945
6018
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5946
6019
|
error_code: 'invalid_credentials';
|
|
6020
|
+
} | {
|
|
6021
|
+
/** Date and time at which Seam created the error. */
|
|
6022
|
+
created_at: string;
|
|
6023
|
+
message: string;
|
|
6024
|
+
is_connected_account_error?: boolean | undefined;
|
|
6025
|
+
is_bridge_error?: boolean | undefined;
|
|
6026
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6027
|
+
error_code: 'bridge_disconnected';
|
|
5947
6028
|
}>;
|
|
5948
6029
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
5949
6030
|
warnings: Array<{
|
|
@@ -11270,6 +11351,14 @@ export interface Routes {
|
|
|
11270
11351
|
message: string;
|
|
11271
11352
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11272
11353
|
error_code: 'seam_bridge_disconnected';
|
|
11354
|
+
} | {
|
|
11355
|
+
/** Date and time at which Seam created the error. */
|
|
11356
|
+
created_at: string;
|
|
11357
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11358
|
+
message: string;
|
|
11359
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11360
|
+
error_code: 'bridge_disconnected';
|
|
11361
|
+
is_bridge_error?: boolean | undefined;
|
|
11273
11362
|
} | {
|
|
11274
11363
|
/** Date and time at which Seam created the error. */
|
|
11275
11364
|
created_at: string;
|
|
@@ -11401,6 +11490,14 @@ export interface Routes {
|
|
|
11401
11490
|
message: string;
|
|
11402
11491
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11403
11492
|
error_code: 'seam_bridge_disconnected';
|
|
11493
|
+
} | {
|
|
11494
|
+
/** Date and time at which Seam created the error. */
|
|
11495
|
+
created_at: string;
|
|
11496
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11497
|
+
message: string;
|
|
11498
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11499
|
+
error_code: 'bridge_disconnected';
|
|
11500
|
+
is_bridge_error?: boolean | undefined;
|
|
11404
11501
|
} | {
|
|
11405
11502
|
/** Date and time at which Seam created the error. */
|
|
11406
11503
|
created_at: string;
|
|
@@ -11532,6 +11629,14 @@ export interface Routes {
|
|
|
11532
11629
|
message: string;
|
|
11533
11630
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11534
11631
|
error_code: 'seam_bridge_disconnected';
|
|
11632
|
+
} | {
|
|
11633
|
+
/** Date and time at which Seam created the error. */
|
|
11634
|
+
created_at: string;
|
|
11635
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11636
|
+
message: string;
|
|
11637
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11638
|
+
error_code: 'bridge_disconnected';
|
|
11639
|
+
is_bridge_error?: boolean | undefined;
|
|
11535
11640
|
} | {
|
|
11536
11641
|
/** Date and time at which Seam created the error. */
|
|
11537
11642
|
created_at: string;
|
|
@@ -14944,21 +15049,32 @@ export interface Routes {
|
|
|
14944
15049
|
/** Date and time at which Seam created the error. */
|
|
14945
15050
|
created_at: string;
|
|
14946
15051
|
message: string;
|
|
14947
|
-
is_connected_account_error
|
|
15052
|
+
is_connected_account_error?: boolean | undefined;
|
|
15053
|
+
is_bridge_error?: boolean | undefined;
|
|
14948
15054
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14949
15055
|
error_code: 'account_disconnected';
|
|
14950
15056
|
} | {
|
|
14951
15057
|
/** Date and time at which Seam created the error. */
|
|
14952
15058
|
created_at: string;
|
|
14953
15059
|
message: string;
|
|
14954
|
-
is_connected_account_error
|
|
15060
|
+
is_connected_account_error?: boolean | undefined;
|
|
15061
|
+
is_bridge_error?: boolean | undefined;
|
|
14955
15062
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14956
15063
|
error_code: 'invalid_credentials';
|
|
14957
15064
|
} | {
|
|
14958
15065
|
/** Date and time at which Seam created the error. */
|
|
14959
15066
|
created_at: string;
|
|
14960
15067
|
message: string;
|
|
14961
|
-
is_connected_account_error
|
|
15068
|
+
is_connected_account_error?: boolean | undefined;
|
|
15069
|
+
is_bridge_error?: boolean | undefined;
|
|
15070
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15071
|
+
error_code: 'bridge_disconnected';
|
|
15072
|
+
} | {
|
|
15073
|
+
/** Date and time at which Seam created the error. */
|
|
15074
|
+
created_at: string;
|
|
15075
|
+
message: string;
|
|
15076
|
+
is_connected_account_error?: boolean | undefined;
|
|
15077
|
+
is_bridge_error?: boolean | undefined;
|
|
14962
15078
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14963
15079
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
14964
15080
|
salto_ks_metadata: {
|
|
@@ -15035,21 +15151,32 @@ export interface Routes {
|
|
|
15035
15151
|
/** Date and time at which Seam created the error. */
|
|
15036
15152
|
created_at: string;
|
|
15037
15153
|
message: string;
|
|
15038
|
-
is_connected_account_error
|
|
15154
|
+
is_connected_account_error?: boolean | undefined;
|
|
15155
|
+
is_bridge_error?: boolean | undefined;
|
|
15039
15156
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15040
15157
|
error_code: 'account_disconnected';
|
|
15041
15158
|
} | {
|
|
15042
15159
|
/** Date and time at which Seam created the error. */
|
|
15043
15160
|
created_at: string;
|
|
15044
15161
|
message: string;
|
|
15045
|
-
is_connected_account_error
|
|
15162
|
+
is_connected_account_error?: boolean | undefined;
|
|
15163
|
+
is_bridge_error?: boolean | undefined;
|
|
15046
15164
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15047
15165
|
error_code: 'invalid_credentials';
|
|
15048
15166
|
} | {
|
|
15049
15167
|
/** Date and time at which Seam created the error. */
|
|
15050
15168
|
created_at: string;
|
|
15051
15169
|
message: string;
|
|
15052
|
-
is_connected_account_error
|
|
15170
|
+
is_connected_account_error?: boolean | undefined;
|
|
15171
|
+
is_bridge_error?: boolean | undefined;
|
|
15172
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15173
|
+
error_code: 'bridge_disconnected';
|
|
15174
|
+
} | {
|
|
15175
|
+
/** Date and time at which Seam created the error. */
|
|
15176
|
+
created_at: string;
|
|
15177
|
+
message: string;
|
|
15178
|
+
is_connected_account_error?: boolean | undefined;
|
|
15179
|
+
is_bridge_error?: boolean | undefined;
|
|
15053
15180
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15054
15181
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
15055
15182
|
salto_ks_metadata: {
|
|
@@ -15131,21 +15258,32 @@ export interface Routes {
|
|
|
15131
15258
|
/** Date and time at which Seam created the error. */
|
|
15132
15259
|
created_at: string;
|
|
15133
15260
|
message: string;
|
|
15134
|
-
is_connected_account_error
|
|
15261
|
+
is_connected_account_error?: boolean | undefined;
|
|
15262
|
+
is_bridge_error?: boolean | undefined;
|
|
15135
15263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15136
15264
|
error_code: 'account_disconnected';
|
|
15137
15265
|
} | {
|
|
15138
15266
|
/** Date and time at which Seam created the error. */
|
|
15139
15267
|
created_at: string;
|
|
15140
15268
|
message: string;
|
|
15141
|
-
is_connected_account_error
|
|
15269
|
+
is_connected_account_error?: boolean | undefined;
|
|
15270
|
+
is_bridge_error?: boolean | undefined;
|
|
15142
15271
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15143
15272
|
error_code: 'invalid_credentials';
|
|
15144
15273
|
} | {
|
|
15145
15274
|
/** Date and time at which Seam created the error. */
|
|
15146
15275
|
created_at: string;
|
|
15147
15276
|
message: string;
|
|
15148
|
-
is_connected_account_error
|
|
15277
|
+
is_connected_account_error?: boolean | undefined;
|
|
15278
|
+
is_bridge_error?: boolean | undefined;
|
|
15279
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15280
|
+
error_code: 'bridge_disconnected';
|
|
15281
|
+
} | {
|
|
15282
|
+
/** Date and time at which Seam created the error. */
|
|
15283
|
+
created_at: string;
|
|
15284
|
+
message: string;
|
|
15285
|
+
is_connected_account_error?: boolean | undefined;
|
|
15286
|
+
is_bridge_error?: boolean | undefined;
|
|
15149
15287
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15150
15288
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
15151
15289
|
salto_ks_metadata: {
|
|
@@ -15803,9 +15941,18 @@ export interface Routes {
|
|
|
15803
15941
|
/** Date and time at which Seam created the error. */
|
|
15804
15942
|
created_at: string;
|
|
15805
15943
|
message: string;
|
|
15806
|
-
is_connected_account_error
|
|
15944
|
+
is_connected_account_error?: boolean | undefined;
|
|
15945
|
+
is_bridge_error?: boolean | undefined;
|
|
15807
15946
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15808
15947
|
error_code: 'invalid_credentials';
|
|
15948
|
+
} | {
|
|
15949
|
+
/** Date and time at which Seam created the error. */
|
|
15950
|
+
created_at: string;
|
|
15951
|
+
message: string;
|
|
15952
|
+
is_connected_account_error?: boolean | undefined;
|
|
15953
|
+
is_bridge_error?: boolean | undefined;
|
|
15954
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15955
|
+
error_code: 'bridge_disconnected';
|
|
15809
15956
|
}>;
|
|
15810
15957
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15811
15958
|
warnings: Array<{
|
|
@@ -16536,9 +16683,18 @@ export interface Routes {
|
|
|
16536
16683
|
/** Date and time at which Seam created the error. */
|
|
16537
16684
|
created_at: string;
|
|
16538
16685
|
message: string;
|
|
16539
|
-
is_connected_account_error
|
|
16686
|
+
is_connected_account_error?: boolean | undefined;
|
|
16687
|
+
is_bridge_error?: boolean | undefined;
|
|
16540
16688
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16541
16689
|
error_code: 'invalid_credentials';
|
|
16690
|
+
} | {
|
|
16691
|
+
/** Date and time at which Seam created the error. */
|
|
16692
|
+
created_at: string;
|
|
16693
|
+
message: string;
|
|
16694
|
+
is_connected_account_error?: boolean | undefined;
|
|
16695
|
+
is_bridge_error?: boolean | undefined;
|
|
16696
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16697
|
+
error_code: 'bridge_disconnected';
|
|
16542
16698
|
}>;
|
|
16543
16699
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16544
16700
|
warnings: Array<{
|
|
@@ -16842,9 +16998,18 @@ export interface Routes {
|
|
|
16842
16998
|
/** Date and time at which Seam created the error. */
|
|
16843
16999
|
created_at: string;
|
|
16844
17000
|
message: string;
|
|
16845
|
-
is_connected_account_error
|
|
17001
|
+
is_connected_account_error?: boolean | undefined;
|
|
17002
|
+
is_bridge_error?: boolean | undefined;
|
|
16846
17003
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16847
17004
|
error_code: 'invalid_credentials';
|
|
17005
|
+
} | {
|
|
17006
|
+
/** Date and time at which Seam created the error. */
|
|
17007
|
+
created_at: string;
|
|
17008
|
+
message: string;
|
|
17009
|
+
is_connected_account_error?: boolean | undefined;
|
|
17010
|
+
is_bridge_error?: boolean | undefined;
|
|
17011
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17012
|
+
error_code: 'bridge_disconnected';
|
|
16848
17013
|
}>;
|
|
16849
17014
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16850
17015
|
warnings: Array<{
|
|
@@ -17135,9 +17300,18 @@ export interface Routes {
|
|
|
17135
17300
|
/** Date and time at which Seam created the error. */
|
|
17136
17301
|
created_at: string;
|
|
17137
17302
|
message: string;
|
|
17138
|
-
is_connected_account_error
|
|
17303
|
+
is_connected_account_error?: boolean | undefined;
|
|
17304
|
+
is_bridge_error?: boolean | undefined;
|
|
17139
17305
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17140
17306
|
error_code: 'invalid_credentials';
|
|
17307
|
+
} | {
|
|
17308
|
+
/** Date and time at which Seam created the error. */
|
|
17309
|
+
created_at: string;
|
|
17310
|
+
message: string;
|
|
17311
|
+
is_connected_account_error?: boolean | undefined;
|
|
17312
|
+
is_bridge_error?: boolean | undefined;
|
|
17313
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17314
|
+
error_code: 'bridge_disconnected';
|
|
17141
17315
|
}>;
|
|
17142
17316
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
17143
17317
|
warnings: Array<{
|
|
@@ -20454,9 +20628,18 @@ export interface Routes {
|
|
|
20454
20628
|
/** Date and time at which Seam created the error. */
|
|
20455
20629
|
created_at: string;
|
|
20456
20630
|
message: string;
|
|
20457
|
-
is_connected_account_error
|
|
20631
|
+
is_connected_account_error?: boolean | undefined;
|
|
20632
|
+
is_bridge_error?: boolean | undefined;
|
|
20458
20633
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20459
20634
|
error_code: 'invalid_credentials';
|
|
20635
|
+
} | {
|
|
20636
|
+
/** Date and time at which Seam created the error. */
|
|
20637
|
+
created_at: string;
|
|
20638
|
+
message: string;
|
|
20639
|
+
is_connected_account_error?: boolean | undefined;
|
|
20640
|
+
is_bridge_error?: boolean | undefined;
|
|
20641
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20642
|
+
error_code: 'bridge_disconnected';
|
|
20460
20643
|
}>;
|
|
20461
20644
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
20462
20645
|
warnings: Array<{
|
|
@@ -21149,9 +21332,18 @@ export interface Routes {
|
|
|
21149
21332
|
/** Date and time at which Seam created the error. */
|
|
21150
21333
|
created_at: string;
|
|
21151
21334
|
message: string;
|
|
21152
|
-
is_connected_account_error
|
|
21335
|
+
is_connected_account_error?: boolean | undefined;
|
|
21336
|
+
is_bridge_error?: boolean | undefined;
|
|
21153
21337
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21154
21338
|
error_code: 'invalid_credentials';
|
|
21339
|
+
} | {
|
|
21340
|
+
/** Date and time at which Seam created the error. */
|
|
21341
|
+
created_at: string;
|
|
21342
|
+
message: string;
|
|
21343
|
+
is_connected_account_error?: boolean | undefined;
|
|
21344
|
+
is_bridge_error?: boolean | undefined;
|
|
21345
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21346
|
+
error_code: 'bridge_disconnected';
|
|
21155
21347
|
}>;
|
|
21156
21348
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
21157
21349
|
warnings: Array<{
|
|
@@ -21882,9 +22074,18 @@ export interface Routes {
|
|
|
21882
22074
|
/** Date and time at which Seam created the error. */
|
|
21883
22075
|
created_at: string;
|
|
21884
22076
|
message: string;
|
|
21885
|
-
is_connected_account_error
|
|
22077
|
+
is_connected_account_error?: boolean | undefined;
|
|
22078
|
+
is_bridge_error?: boolean | undefined;
|
|
21886
22079
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21887
22080
|
error_code: 'invalid_credentials';
|
|
22081
|
+
} | {
|
|
22082
|
+
/** Date and time at which Seam created the error. */
|
|
22083
|
+
created_at: string;
|
|
22084
|
+
message: string;
|
|
22085
|
+
is_connected_account_error?: boolean | undefined;
|
|
22086
|
+
is_bridge_error?: boolean | undefined;
|
|
22087
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22088
|
+
error_code: 'bridge_disconnected';
|
|
21888
22089
|
}>;
|
|
21889
22090
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
21890
22091
|
warnings: Array<{
|
|
@@ -22576,9 +22777,18 @@ export interface Routes {
|
|
|
22576
22777
|
/** Date and time at which Seam created the error. */
|
|
22577
22778
|
created_at: string;
|
|
22578
22779
|
message: string;
|
|
22579
|
-
is_connected_account_error
|
|
22780
|
+
is_connected_account_error?: boolean | undefined;
|
|
22781
|
+
is_bridge_error?: boolean | undefined;
|
|
22580
22782
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22581
22783
|
error_code: 'invalid_credentials';
|
|
22784
|
+
} | {
|
|
22785
|
+
/** Date and time at which Seam created the error. */
|
|
22786
|
+
created_at: string;
|
|
22787
|
+
message: string;
|
|
22788
|
+
is_connected_account_error?: boolean | undefined;
|
|
22789
|
+
is_bridge_error?: boolean | undefined;
|
|
22790
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22791
|
+
error_code: 'bridge_disconnected';
|
|
22582
22792
|
}>;
|
|
22583
22793
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
22584
22794
|
warnings: Array<{
|
|
@@ -25270,9 +25480,18 @@ export interface Routes {
|
|
|
25270
25480
|
/** Date and time at which Seam created the error. */
|
|
25271
25481
|
created_at: string;
|
|
25272
25482
|
message: string;
|
|
25273
|
-
is_connected_account_error
|
|
25483
|
+
is_connected_account_error?: boolean | undefined;
|
|
25484
|
+
is_bridge_error?: boolean | undefined;
|
|
25274
25485
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25275
25486
|
error_code: 'invalid_credentials';
|
|
25487
|
+
} | {
|
|
25488
|
+
/** Date and time at which Seam created the error. */
|
|
25489
|
+
created_at: string;
|
|
25490
|
+
message: string;
|
|
25491
|
+
is_connected_account_error?: boolean | undefined;
|
|
25492
|
+
is_bridge_error?: boolean | undefined;
|
|
25493
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25494
|
+
error_code: 'bridge_disconnected';
|
|
25276
25495
|
}>;
|
|
25277
25496
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
25278
25497
|
warnings: Array<{
|
|
@@ -25964,9 +26183,18 @@ export interface Routes {
|
|
|
25964
26183
|
/** Date and time at which Seam created the error. */
|
|
25965
26184
|
created_at: string;
|
|
25966
26185
|
message: string;
|
|
25967
|
-
is_connected_account_error
|
|
26186
|
+
is_connected_account_error?: boolean | undefined;
|
|
26187
|
+
is_bridge_error?: boolean | undefined;
|
|
25968
26188
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25969
26189
|
error_code: 'invalid_credentials';
|
|
26190
|
+
} | {
|
|
26191
|
+
/** Date and time at which Seam created the error. */
|
|
26192
|
+
created_at: string;
|
|
26193
|
+
message: string;
|
|
26194
|
+
is_connected_account_error?: boolean | undefined;
|
|
26195
|
+
is_bridge_error?: boolean | undefined;
|
|
26196
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26197
|
+
error_code: 'bridge_disconnected';
|
|
25970
26198
|
}>;
|
|
25971
26199
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
25972
26200
|
warnings: Array<{
|
|
@@ -31996,9 +32224,18 @@ export interface Routes {
|
|
|
31996
32224
|
/** Date and time at which Seam created the error. */
|
|
31997
32225
|
created_at: string;
|
|
31998
32226
|
message: string;
|
|
31999
|
-
is_connected_account_error
|
|
32227
|
+
is_connected_account_error?: boolean | undefined;
|
|
32228
|
+
is_bridge_error?: boolean | undefined;
|
|
32000
32229
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32001
32230
|
error_code: 'invalid_credentials';
|
|
32231
|
+
} | {
|
|
32232
|
+
/** Date and time at which Seam created the error. */
|
|
32233
|
+
created_at: string;
|
|
32234
|
+
message: string;
|
|
32235
|
+
is_connected_account_error?: boolean | undefined;
|
|
32236
|
+
is_bridge_error?: boolean | undefined;
|
|
32237
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32238
|
+
error_code: 'bridge_disconnected';
|
|
32002
32239
|
}>;
|
|
32003
32240
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
32004
32241
|
warnings: Array<{
|
|
@@ -34671,9 +34908,18 @@ export interface Routes {
|
|
|
34671
34908
|
/** Date and time at which Seam created the error. */
|
|
34672
34909
|
created_at: string;
|
|
34673
34910
|
message: string;
|
|
34674
|
-
is_connected_account_error
|
|
34911
|
+
is_connected_account_error?: boolean | undefined;
|
|
34912
|
+
is_bridge_error?: boolean | undefined;
|
|
34675
34913
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34676
34914
|
error_code: 'invalid_credentials';
|
|
34915
|
+
} | {
|
|
34916
|
+
/** Date and time at which Seam created the error. */
|
|
34917
|
+
created_at: string;
|
|
34918
|
+
message: string;
|
|
34919
|
+
is_connected_account_error?: boolean | undefined;
|
|
34920
|
+
is_bridge_error?: boolean | undefined;
|
|
34921
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34922
|
+
error_code: 'bridge_disconnected';
|
|
34677
34923
|
}>;
|
|
34678
34924
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
34679
34925
|
warnings: Array<{
|
|
@@ -35365,9 +35611,18 @@ export interface Routes {
|
|
|
35365
35611
|
/** Date and time at which Seam created the error. */
|
|
35366
35612
|
created_at: string;
|
|
35367
35613
|
message: string;
|
|
35368
|
-
is_connected_account_error
|
|
35614
|
+
is_connected_account_error?: boolean | undefined;
|
|
35615
|
+
is_bridge_error?: boolean | undefined;
|
|
35369
35616
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35370
35617
|
error_code: 'invalid_credentials';
|
|
35618
|
+
} | {
|
|
35619
|
+
/** Date and time at which Seam created the error. */
|
|
35620
|
+
created_at: string;
|
|
35621
|
+
message: string;
|
|
35622
|
+
is_connected_account_error?: boolean | undefined;
|
|
35623
|
+
is_bridge_error?: boolean | undefined;
|
|
35624
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35625
|
+
error_code: 'bridge_disconnected';
|
|
35371
35626
|
}>;
|
|
35372
35627
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
35373
35628
|
warnings: Array<{
|
|
@@ -39760,9 +40015,18 @@ export interface Routes {
|
|
|
39760
40015
|
/** Date and time at which Seam created the error. */
|
|
39761
40016
|
created_at: string;
|
|
39762
40017
|
message: string;
|
|
39763
|
-
is_connected_account_error
|
|
40018
|
+
is_connected_account_error?: boolean | undefined;
|
|
40019
|
+
is_bridge_error?: boolean | undefined;
|
|
39764
40020
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39765
40021
|
error_code: 'invalid_credentials';
|
|
40022
|
+
} | {
|
|
40023
|
+
/** Date and time at which Seam created the error. */
|
|
40024
|
+
created_at: string;
|
|
40025
|
+
message: string;
|
|
40026
|
+
is_connected_account_error?: boolean | undefined;
|
|
40027
|
+
is_bridge_error?: boolean | undefined;
|
|
40028
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40029
|
+
error_code: 'bridge_disconnected';
|
|
39766
40030
|
}>;
|
|
39767
40031
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
39768
40032
|
warnings: Array<{
|
|
@@ -40456,9 +40720,18 @@ export interface Routes {
|
|
|
40456
40720
|
/** Date and time at which Seam created the error. */
|
|
40457
40721
|
created_at: string;
|
|
40458
40722
|
message: string;
|
|
40459
|
-
is_connected_account_error
|
|
40723
|
+
is_connected_account_error?: boolean | undefined;
|
|
40724
|
+
is_bridge_error?: boolean | undefined;
|
|
40460
40725
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40461
40726
|
error_code: 'invalid_credentials';
|
|
40727
|
+
} | {
|
|
40728
|
+
/** Date and time at which Seam created the error. */
|
|
40729
|
+
created_at: string;
|
|
40730
|
+
message: string;
|
|
40731
|
+
is_connected_account_error?: boolean | undefined;
|
|
40732
|
+
is_bridge_error?: boolean | undefined;
|
|
40733
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40734
|
+
error_code: 'bridge_disconnected';
|
|
40462
40735
|
}>;
|
|
40463
40736
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
40464
40737
|
warnings: Array<{
|
|
@@ -40626,6 +40899,14 @@ export interface Routes {
|
|
|
40626
40899
|
message: string;
|
|
40627
40900
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40628
40901
|
error_code: 'seam_bridge_disconnected';
|
|
40902
|
+
} | {
|
|
40903
|
+
/** Date and time at which Seam created the error. */
|
|
40904
|
+
created_at: string;
|
|
40905
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40906
|
+
message: string;
|
|
40907
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40908
|
+
error_code: 'bridge_disconnected';
|
|
40909
|
+
is_bridge_error?: boolean | undefined;
|
|
40629
40910
|
} | {
|
|
40630
40911
|
/** Date and time at which Seam created the error. */
|
|
40631
40912
|
created_at: string;
|