@seamapi/types 1.374.0 → 1.375.1
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 +156 -65
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +775 -124
- 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 +58 -3
- package/lib/seam/connect/models/acs/acs-system.js +10 -2
- 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 +59 -9
- package/lib/seam/connect/openapi.js +139 -62
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +318 -37
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +11 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +10 -1
- package/src/lib/seam/connect/openapi.ts +158 -62
- package/src/lib/seam/connect/route-types.ts +349 -37
|
@@ -1430,10 +1430,20 @@ export interface Routes {
|
|
|
1430
1430
|
/** Date and time at which Seam created the error. */
|
|
1431
1431
|
created_at: string
|
|
1432
1432
|
message: string
|
|
1433
|
-
is_connected_account_error
|
|
1433
|
+
is_connected_account_error?: boolean | undefined
|
|
1434
|
+
is_bridge_error?: boolean | undefined
|
|
1434
1435
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1435
1436
|
error_code: 'invalid_credentials'
|
|
1436
1437
|
}
|
|
1438
|
+
| {
|
|
1439
|
+
/** Date and time at which Seam created the error. */
|
|
1440
|
+
created_at: string
|
|
1441
|
+
message: string
|
|
1442
|
+
is_connected_account_error?: boolean | undefined
|
|
1443
|
+
is_bridge_error?: boolean | undefined
|
|
1444
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1445
|
+
error_code: 'bridge_disconnected'
|
|
1446
|
+
}
|
|
1437
1447
|
>
|
|
1438
1448
|
/** 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. */
|
|
1439
1449
|
warnings: Array<
|
|
@@ -1846,10 +1856,20 @@ export interface Routes {
|
|
|
1846
1856
|
/** Date and time at which Seam created the error. */
|
|
1847
1857
|
created_at: string
|
|
1848
1858
|
message: string
|
|
1849
|
-
is_connected_account_error
|
|
1859
|
+
is_connected_account_error?: boolean | undefined
|
|
1860
|
+
is_bridge_error?: boolean | undefined
|
|
1850
1861
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1851
1862
|
error_code: 'invalid_credentials'
|
|
1852
1863
|
}
|
|
1864
|
+
| {
|
|
1865
|
+
/** Date and time at which Seam created the error. */
|
|
1866
|
+
created_at: string
|
|
1867
|
+
message: string
|
|
1868
|
+
is_connected_account_error?: boolean | undefined
|
|
1869
|
+
is_bridge_error?: boolean | undefined
|
|
1870
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1871
|
+
error_code: 'bridge_disconnected'
|
|
1872
|
+
}
|
|
1853
1873
|
>
|
|
1854
1874
|
/** 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. */
|
|
1855
1875
|
warnings: Array<
|
|
@@ -3398,10 +3418,20 @@ export interface Routes {
|
|
|
3398
3418
|
/** Date and time at which Seam created the error. */
|
|
3399
3419
|
created_at: string
|
|
3400
3420
|
message: string
|
|
3401
|
-
is_connected_account_error
|
|
3421
|
+
is_connected_account_error?: boolean | undefined
|
|
3422
|
+
is_bridge_error?: boolean | undefined
|
|
3402
3423
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3403
3424
|
error_code: 'invalid_credentials'
|
|
3404
3425
|
}
|
|
3426
|
+
| {
|
|
3427
|
+
/** Date and time at which Seam created the error. */
|
|
3428
|
+
created_at: string
|
|
3429
|
+
message: string
|
|
3430
|
+
is_connected_account_error?: boolean | undefined
|
|
3431
|
+
is_bridge_error?: boolean | undefined
|
|
3432
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3433
|
+
error_code: 'bridge_disconnected'
|
|
3434
|
+
}
|
|
3405
3435
|
>
|
|
3406
3436
|
/** 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. */
|
|
3407
3437
|
warnings: Array<
|
|
@@ -3801,10 +3831,20 @@ export interface Routes {
|
|
|
3801
3831
|
/** Date and time at which Seam created the error. */
|
|
3802
3832
|
created_at: string
|
|
3803
3833
|
message: string
|
|
3804
|
-
is_connected_account_error
|
|
3834
|
+
is_connected_account_error?: boolean | undefined
|
|
3835
|
+
is_bridge_error?: boolean | undefined
|
|
3805
3836
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3806
3837
|
error_code: 'invalid_credentials'
|
|
3807
3838
|
}
|
|
3839
|
+
| {
|
|
3840
|
+
/** Date and time at which Seam created the error. */
|
|
3841
|
+
created_at: string
|
|
3842
|
+
message: string
|
|
3843
|
+
is_connected_account_error?: boolean | undefined
|
|
3844
|
+
is_bridge_error?: boolean | undefined
|
|
3845
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3846
|
+
error_code: 'bridge_disconnected'
|
|
3847
|
+
}
|
|
3808
3848
|
>
|
|
3809
3849
|
/** 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. */
|
|
3810
3850
|
warnings: Array<
|
|
@@ -4203,10 +4243,20 @@ export interface Routes {
|
|
|
4203
4243
|
/** Date and time at which Seam created the error. */
|
|
4204
4244
|
created_at: string
|
|
4205
4245
|
message: string
|
|
4206
|
-
is_connected_account_error
|
|
4246
|
+
is_connected_account_error?: boolean | undefined
|
|
4247
|
+
is_bridge_error?: boolean | undefined
|
|
4207
4248
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4208
4249
|
error_code: 'invalid_credentials'
|
|
4209
4250
|
}
|
|
4251
|
+
| {
|
|
4252
|
+
/** Date and time at which Seam created the error. */
|
|
4253
|
+
created_at: string
|
|
4254
|
+
message: string
|
|
4255
|
+
is_connected_account_error?: boolean | undefined
|
|
4256
|
+
is_bridge_error?: boolean | undefined
|
|
4257
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4258
|
+
error_code: 'bridge_disconnected'
|
|
4259
|
+
}
|
|
4210
4260
|
>
|
|
4211
4261
|
/** 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. */
|
|
4212
4262
|
warnings: Array<
|
|
@@ -4593,10 +4643,20 @@ export interface Routes {
|
|
|
4593
4643
|
/** Date and time at which Seam created the error. */
|
|
4594
4644
|
created_at: string
|
|
4595
4645
|
message: string
|
|
4596
|
-
is_connected_account_error
|
|
4646
|
+
is_connected_account_error?: boolean | undefined
|
|
4647
|
+
is_bridge_error?: boolean | undefined
|
|
4597
4648
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4598
4649
|
error_code: 'invalid_credentials'
|
|
4599
4650
|
}
|
|
4651
|
+
| {
|
|
4652
|
+
/** Date and time at which Seam created the error. */
|
|
4653
|
+
created_at: string
|
|
4654
|
+
message: string
|
|
4655
|
+
is_connected_account_error?: boolean | undefined
|
|
4656
|
+
is_bridge_error?: boolean | undefined
|
|
4657
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4658
|
+
error_code: 'bridge_disconnected'
|
|
4659
|
+
}
|
|
4600
4660
|
>
|
|
4601
4661
|
/** 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. */
|
|
4602
4662
|
warnings: Array<
|
|
@@ -4991,10 +5051,20 @@ export interface Routes {
|
|
|
4991
5051
|
/** Date and time at which Seam created the error. */
|
|
4992
5052
|
created_at: string
|
|
4993
5053
|
message: string
|
|
4994
|
-
is_connected_account_error
|
|
5054
|
+
is_connected_account_error?: boolean | undefined
|
|
5055
|
+
is_bridge_error?: boolean | undefined
|
|
4995
5056
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4996
5057
|
error_code: 'invalid_credentials'
|
|
4997
5058
|
}
|
|
5059
|
+
| {
|
|
5060
|
+
/** Date and time at which Seam created the error. */
|
|
5061
|
+
created_at: string
|
|
5062
|
+
message: string
|
|
5063
|
+
is_connected_account_error?: boolean | undefined
|
|
5064
|
+
is_bridge_error?: boolean | undefined
|
|
5065
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5066
|
+
error_code: 'bridge_disconnected'
|
|
5067
|
+
}
|
|
4998
5068
|
>
|
|
4999
5069
|
/** 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. */
|
|
5000
5070
|
warnings: Array<
|
|
@@ -6519,10 +6589,20 @@ export interface Routes {
|
|
|
6519
6589
|
/** Date and time at which Seam created the error. */
|
|
6520
6590
|
created_at: string
|
|
6521
6591
|
message: string
|
|
6522
|
-
is_connected_account_error
|
|
6592
|
+
is_connected_account_error?: boolean | undefined
|
|
6593
|
+
is_bridge_error?: boolean | undefined
|
|
6523
6594
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6524
6595
|
error_code: 'invalid_credentials'
|
|
6525
6596
|
}
|
|
6597
|
+
| {
|
|
6598
|
+
/** Date and time at which Seam created the error. */
|
|
6599
|
+
created_at: string
|
|
6600
|
+
message: string
|
|
6601
|
+
is_connected_account_error?: boolean | undefined
|
|
6602
|
+
is_bridge_error?: boolean | undefined
|
|
6603
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6604
|
+
error_code: 'bridge_disconnected'
|
|
6605
|
+
}
|
|
6526
6606
|
>
|
|
6527
6607
|
/** 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. */
|
|
6528
6608
|
warnings: Array<
|
|
@@ -6899,10 +6979,20 @@ export interface Routes {
|
|
|
6899
6979
|
/** Date and time at which Seam created the error. */
|
|
6900
6980
|
created_at: string
|
|
6901
6981
|
message: string
|
|
6902
|
-
is_connected_account_error
|
|
6982
|
+
is_connected_account_error?: boolean | undefined
|
|
6983
|
+
is_bridge_error?: boolean | undefined
|
|
6903
6984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6904
6985
|
error_code: 'invalid_credentials'
|
|
6905
6986
|
}
|
|
6987
|
+
| {
|
|
6988
|
+
/** Date and time at which Seam created the error. */
|
|
6989
|
+
created_at: string
|
|
6990
|
+
message: string
|
|
6991
|
+
is_connected_account_error?: boolean | undefined
|
|
6992
|
+
is_bridge_error?: boolean | undefined
|
|
6993
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6994
|
+
error_code: 'bridge_disconnected'
|
|
6995
|
+
}
|
|
6906
6996
|
>
|
|
6907
6997
|
/** 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. */
|
|
6908
6998
|
warnings: Array<
|
|
@@ -13150,7 +13240,7 @@ export interface Routes {
|
|
|
13150
13240
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13151
13241
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13152
13242
|
acs_system_id: string
|
|
13153
|
-
|
|
13243
|
+
acs_user_count?: number | undefined
|
|
13154
13244
|
acs_access_group_count?: number | undefined
|
|
13155
13245
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13156
13246
|
external_type?:
|
|
@@ -13235,6 +13325,15 @@ export interface Routes {
|
|
|
13235
13325
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13236
13326
|
error_code: 'seam_bridge_disconnected'
|
|
13237
13327
|
}
|
|
13328
|
+
| {
|
|
13329
|
+
/** Date and time at which Seam created the error. */
|
|
13330
|
+
created_at: string
|
|
13331
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13332
|
+
message: string
|
|
13333
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13334
|
+
error_code: 'bridge_disconnected'
|
|
13335
|
+
is_bridge_error?: boolean | undefined
|
|
13336
|
+
}
|
|
13238
13337
|
| {
|
|
13239
13338
|
/** Date and time at which Seam created the error. */
|
|
13240
13339
|
created_at: string
|
|
@@ -13325,7 +13424,7 @@ export interface Routes {
|
|
|
13325
13424
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13326
13425
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13327
13426
|
acs_system_id: string
|
|
13328
|
-
|
|
13427
|
+
acs_user_count?: number | undefined
|
|
13329
13428
|
acs_access_group_count?: number | undefined
|
|
13330
13429
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13331
13430
|
external_type?:
|
|
@@ -13410,6 +13509,15 @@ export interface Routes {
|
|
|
13410
13509
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13411
13510
|
error_code: 'seam_bridge_disconnected'
|
|
13412
13511
|
}
|
|
13512
|
+
| {
|
|
13513
|
+
/** Date and time at which Seam created the error. */
|
|
13514
|
+
created_at: string
|
|
13515
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13516
|
+
message: string
|
|
13517
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13518
|
+
error_code: 'bridge_disconnected'
|
|
13519
|
+
is_bridge_error?: boolean | undefined
|
|
13520
|
+
}
|
|
13413
13521
|
| {
|
|
13414
13522
|
/** Date and time at which Seam created the error. */
|
|
13415
13523
|
created_at: string
|
|
@@ -13500,7 +13608,7 @@ export interface Routes {
|
|
|
13500
13608
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13501
13609
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13502
13610
|
acs_system_id: string
|
|
13503
|
-
|
|
13611
|
+
acs_user_count?: number | undefined
|
|
13504
13612
|
acs_access_group_count?: number | undefined
|
|
13505
13613
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13506
13614
|
external_type?:
|
|
@@ -13585,6 +13693,15 @@ export interface Routes {
|
|
|
13585
13693
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13586
13694
|
error_code: 'seam_bridge_disconnected'
|
|
13587
13695
|
}
|
|
13696
|
+
| {
|
|
13697
|
+
/** Date and time at which Seam created the error. */
|
|
13698
|
+
created_at: string
|
|
13699
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13700
|
+
message: string
|
|
13701
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13702
|
+
error_code: 'bridge_disconnected'
|
|
13703
|
+
is_bridge_error?: boolean | undefined
|
|
13704
|
+
}
|
|
13588
13705
|
| {
|
|
13589
13706
|
/** Date and time at which Seam created the error. */
|
|
13590
13707
|
created_at: string
|
|
@@ -17605,7 +17722,8 @@ export interface Routes {
|
|
|
17605
17722
|
/** Date and time at which Seam created the error. */
|
|
17606
17723
|
created_at: string
|
|
17607
17724
|
message: string
|
|
17608
|
-
is_connected_account_error
|
|
17725
|
+
is_connected_account_error?: boolean | undefined
|
|
17726
|
+
is_bridge_error?: boolean | undefined
|
|
17609
17727
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17610
17728
|
error_code: 'account_disconnected'
|
|
17611
17729
|
}
|
|
@@ -17613,7 +17731,8 @@ export interface Routes {
|
|
|
17613
17731
|
/** Date and time at which Seam created the error. */
|
|
17614
17732
|
created_at: string
|
|
17615
17733
|
message: string
|
|
17616
|
-
is_connected_account_error
|
|
17734
|
+
is_connected_account_error?: boolean | undefined
|
|
17735
|
+
is_bridge_error?: boolean | undefined
|
|
17617
17736
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17618
17737
|
error_code: 'invalid_credentials'
|
|
17619
17738
|
}
|
|
@@ -17621,7 +17740,17 @@ export interface Routes {
|
|
|
17621
17740
|
/** Date and time at which Seam created the error. */
|
|
17622
17741
|
created_at: string
|
|
17623
17742
|
message: string
|
|
17624
|
-
is_connected_account_error
|
|
17743
|
+
is_connected_account_error?: boolean | undefined
|
|
17744
|
+
is_bridge_error?: boolean | undefined
|
|
17745
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17746
|
+
error_code: 'bridge_disconnected'
|
|
17747
|
+
}
|
|
17748
|
+
| {
|
|
17749
|
+
/** Date and time at which Seam created the error. */
|
|
17750
|
+
created_at: string
|
|
17751
|
+
message: string
|
|
17752
|
+
is_connected_account_error?: boolean | undefined
|
|
17753
|
+
is_bridge_error?: boolean | undefined
|
|
17625
17754
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17626
17755
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
17627
17756
|
salto_ks_metadata: {
|
|
@@ -17706,7 +17835,8 @@ export interface Routes {
|
|
|
17706
17835
|
/** Date and time at which Seam created the error. */
|
|
17707
17836
|
created_at: string
|
|
17708
17837
|
message: string
|
|
17709
|
-
is_connected_account_error
|
|
17838
|
+
is_connected_account_error?: boolean | undefined
|
|
17839
|
+
is_bridge_error?: boolean | undefined
|
|
17710
17840
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17711
17841
|
error_code: 'account_disconnected'
|
|
17712
17842
|
}
|
|
@@ -17714,7 +17844,8 @@ export interface Routes {
|
|
|
17714
17844
|
/** Date and time at which Seam created the error. */
|
|
17715
17845
|
created_at: string
|
|
17716
17846
|
message: string
|
|
17717
|
-
is_connected_account_error
|
|
17847
|
+
is_connected_account_error?: boolean | undefined
|
|
17848
|
+
is_bridge_error?: boolean | undefined
|
|
17718
17849
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17719
17850
|
error_code: 'invalid_credentials'
|
|
17720
17851
|
}
|
|
@@ -17722,7 +17853,17 @@ export interface Routes {
|
|
|
17722
17853
|
/** Date and time at which Seam created the error. */
|
|
17723
17854
|
created_at: string
|
|
17724
17855
|
message: string
|
|
17725
|
-
is_connected_account_error
|
|
17856
|
+
is_connected_account_error?: boolean | undefined
|
|
17857
|
+
is_bridge_error?: boolean | undefined
|
|
17858
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17859
|
+
error_code: 'bridge_disconnected'
|
|
17860
|
+
}
|
|
17861
|
+
| {
|
|
17862
|
+
/** Date and time at which Seam created the error. */
|
|
17863
|
+
created_at: string
|
|
17864
|
+
message: string
|
|
17865
|
+
is_connected_account_error?: boolean | undefined
|
|
17866
|
+
is_bridge_error?: boolean | undefined
|
|
17726
17867
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17727
17868
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
17728
17869
|
salto_ks_metadata: {
|
|
@@ -17812,7 +17953,8 @@ export interface Routes {
|
|
|
17812
17953
|
/** Date and time at which Seam created the error. */
|
|
17813
17954
|
created_at: string
|
|
17814
17955
|
message: string
|
|
17815
|
-
is_connected_account_error
|
|
17956
|
+
is_connected_account_error?: boolean | undefined
|
|
17957
|
+
is_bridge_error?: boolean | undefined
|
|
17816
17958
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17817
17959
|
error_code: 'account_disconnected'
|
|
17818
17960
|
}
|
|
@@ -17820,7 +17962,8 @@ export interface Routes {
|
|
|
17820
17962
|
/** Date and time at which Seam created the error. */
|
|
17821
17963
|
created_at: string
|
|
17822
17964
|
message: string
|
|
17823
|
-
is_connected_account_error
|
|
17965
|
+
is_connected_account_error?: boolean | undefined
|
|
17966
|
+
is_bridge_error?: boolean | undefined
|
|
17824
17967
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17825
17968
|
error_code: 'invalid_credentials'
|
|
17826
17969
|
}
|
|
@@ -17828,7 +17971,17 @@ export interface Routes {
|
|
|
17828
17971
|
/** Date and time at which Seam created the error. */
|
|
17829
17972
|
created_at: string
|
|
17830
17973
|
message: string
|
|
17831
|
-
is_connected_account_error
|
|
17974
|
+
is_connected_account_error?: boolean | undefined
|
|
17975
|
+
is_bridge_error?: boolean | undefined
|
|
17976
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17977
|
+
error_code: 'bridge_disconnected'
|
|
17978
|
+
}
|
|
17979
|
+
| {
|
|
17980
|
+
/** Date and time at which Seam created the error. */
|
|
17981
|
+
created_at: string
|
|
17982
|
+
message: string
|
|
17983
|
+
is_connected_account_error?: boolean | undefined
|
|
17984
|
+
is_bridge_error?: boolean | undefined
|
|
17832
17985
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17833
17986
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
17834
17987
|
salto_ks_metadata: {
|
|
@@ -18695,10 +18848,20 @@ export interface Routes {
|
|
|
18695
18848
|
/** Date and time at which Seam created the error. */
|
|
18696
18849
|
created_at: string
|
|
18697
18850
|
message: string
|
|
18698
|
-
is_connected_account_error
|
|
18851
|
+
is_connected_account_error?: boolean | undefined
|
|
18852
|
+
is_bridge_error?: boolean | undefined
|
|
18699
18853
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
18700
18854
|
error_code: 'invalid_credentials'
|
|
18701
18855
|
}
|
|
18856
|
+
| {
|
|
18857
|
+
/** Date and time at which Seam created the error. */
|
|
18858
|
+
created_at: string
|
|
18859
|
+
message: string
|
|
18860
|
+
is_connected_account_error?: boolean | undefined
|
|
18861
|
+
is_bridge_error?: boolean | undefined
|
|
18862
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
18863
|
+
error_code: 'bridge_disconnected'
|
|
18864
|
+
}
|
|
18702
18865
|
>
|
|
18703
18866
|
/** 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. */
|
|
18704
18867
|
warnings: Array<
|
|
@@ -19800,10 +19963,20 @@ export interface Routes {
|
|
|
19800
19963
|
/** Date and time at which Seam created the error. */
|
|
19801
19964
|
created_at: string
|
|
19802
19965
|
message: string
|
|
19803
|
-
is_connected_account_error
|
|
19966
|
+
is_connected_account_error?: boolean | undefined
|
|
19967
|
+
is_bridge_error?: boolean | undefined
|
|
19804
19968
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19805
19969
|
error_code: 'invalid_credentials'
|
|
19806
19970
|
}
|
|
19971
|
+
| {
|
|
19972
|
+
/** Date and time at which Seam created the error. */
|
|
19973
|
+
created_at: string
|
|
19974
|
+
message: string
|
|
19975
|
+
is_connected_account_error?: boolean | undefined
|
|
19976
|
+
is_bridge_error?: boolean | undefined
|
|
19977
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19978
|
+
error_code: 'bridge_disconnected'
|
|
19979
|
+
}
|
|
19807
19980
|
>
|
|
19808
19981
|
/** 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. */
|
|
19809
19982
|
warnings: Array<
|
|
@@ -20243,10 +20416,20 @@ export interface Routes {
|
|
|
20243
20416
|
/** Date and time at which Seam created the error. */
|
|
20244
20417
|
created_at: string
|
|
20245
20418
|
message: string
|
|
20246
|
-
is_connected_account_error
|
|
20419
|
+
is_connected_account_error?: boolean | undefined
|
|
20420
|
+
is_bridge_error?: boolean | undefined
|
|
20247
20421
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20248
20422
|
error_code: 'invalid_credentials'
|
|
20249
20423
|
}
|
|
20424
|
+
| {
|
|
20425
|
+
/** Date and time at which Seam created the error. */
|
|
20426
|
+
created_at: string
|
|
20427
|
+
message: string
|
|
20428
|
+
is_connected_account_error?: boolean | undefined
|
|
20429
|
+
is_bridge_error?: boolean | undefined
|
|
20430
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20431
|
+
error_code: 'bridge_disconnected'
|
|
20432
|
+
}
|
|
20250
20433
|
>
|
|
20251
20434
|
/** 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. */
|
|
20252
20435
|
warnings: Array<
|
|
@@ -20769,10 +20952,20 @@ export interface Routes {
|
|
|
20769
20952
|
/** Date and time at which Seam created the error. */
|
|
20770
20953
|
created_at: string
|
|
20771
20954
|
message: string
|
|
20772
|
-
is_connected_account_error
|
|
20955
|
+
is_connected_account_error?: boolean | undefined
|
|
20956
|
+
is_bridge_error?: boolean | undefined
|
|
20773
20957
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20774
20958
|
error_code: 'invalid_credentials'
|
|
20775
20959
|
}
|
|
20960
|
+
| {
|
|
20961
|
+
/** Date and time at which Seam created the error. */
|
|
20962
|
+
created_at: string
|
|
20963
|
+
message: string
|
|
20964
|
+
is_connected_account_error?: boolean | undefined
|
|
20965
|
+
is_bridge_error?: boolean | undefined
|
|
20966
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20967
|
+
error_code: 'bridge_disconnected'
|
|
20968
|
+
}
|
|
20776
20969
|
>
|
|
20777
20970
|
/** 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. */
|
|
20778
20971
|
warnings: Array<
|
|
@@ -24674,10 +24867,20 @@ export interface Routes {
|
|
|
24674
24867
|
/** Date and time at which Seam created the error. */
|
|
24675
24868
|
created_at: string
|
|
24676
24869
|
message: string
|
|
24677
|
-
is_connected_account_error
|
|
24870
|
+
is_connected_account_error?: boolean | undefined
|
|
24871
|
+
is_bridge_error?: boolean | undefined
|
|
24678
24872
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24679
24873
|
error_code: 'invalid_credentials'
|
|
24680
24874
|
}
|
|
24875
|
+
| {
|
|
24876
|
+
/** Date and time at which Seam created the error. */
|
|
24877
|
+
created_at: string
|
|
24878
|
+
message: string
|
|
24879
|
+
is_connected_account_error?: boolean | undefined
|
|
24880
|
+
is_bridge_error?: boolean | undefined
|
|
24881
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24882
|
+
error_code: 'bridge_disconnected'
|
|
24883
|
+
}
|
|
24681
24884
|
>
|
|
24682
24885
|
/** 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. */
|
|
24683
24886
|
warnings: Array<
|
|
@@ -25591,10 +25794,20 @@ export interface Routes {
|
|
|
25591
25794
|
/** Date and time at which Seam created the error. */
|
|
25592
25795
|
created_at: string
|
|
25593
25796
|
message: string
|
|
25594
|
-
is_connected_account_error
|
|
25797
|
+
is_connected_account_error?: boolean | undefined
|
|
25798
|
+
is_bridge_error?: boolean | undefined
|
|
25595
25799
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25596
25800
|
error_code: 'invalid_credentials'
|
|
25597
25801
|
}
|
|
25802
|
+
| {
|
|
25803
|
+
/** Date and time at which Seam created the error. */
|
|
25804
|
+
created_at: string
|
|
25805
|
+
message: string
|
|
25806
|
+
is_connected_account_error?: boolean | undefined
|
|
25807
|
+
is_bridge_error?: boolean | undefined
|
|
25808
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25809
|
+
error_code: 'bridge_disconnected'
|
|
25810
|
+
}
|
|
25598
25811
|
>
|
|
25599
25812
|
/** 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. */
|
|
25600
25813
|
warnings: Array<
|
|
@@ -26664,10 +26877,20 @@ export interface Routes {
|
|
|
26664
26877
|
/** Date and time at which Seam created the error. */
|
|
26665
26878
|
created_at: string
|
|
26666
26879
|
message: string
|
|
26667
|
-
is_connected_account_error
|
|
26880
|
+
is_connected_account_error?: boolean | undefined
|
|
26881
|
+
is_bridge_error?: boolean | undefined
|
|
26668
26882
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26669
26883
|
error_code: 'invalid_credentials'
|
|
26670
26884
|
}
|
|
26885
|
+
| {
|
|
26886
|
+
/** Date and time at which Seam created the error. */
|
|
26887
|
+
created_at: string
|
|
26888
|
+
message: string
|
|
26889
|
+
is_connected_account_error?: boolean | undefined
|
|
26890
|
+
is_bridge_error?: boolean | undefined
|
|
26891
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26892
|
+
error_code: 'bridge_disconnected'
|
|
26893
|
+
}
|
|
26671
26894
|
>
|
|
26672
26895
|
/** 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. */
|
|
26673
26896
|
warnings: Array<
|
|
@@ -27580,10 +27803,20 @@ export interface Routes {
|
|
|
27580
27803
|
/** Date and time at which Seam created the error. */
|
|
27581
27804
|
created_at: string
|
|
27582
27805
|
message: string
|
|
27583
|
-
is_connected_account_error
|
|
27806
|
+
is_connected_account_error?: boolean | undefined
|
|
27807
|
+
is_bridge_error?: boolean | undefined
|
|
27584
27808
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27585
27809
|
error_code: 'invalid_credentials'
|
|
27586
27810
|
}
|
|
27811
|
+
| {
|
|
27812
|
+
/** Date and time at which Seam created the error. */
|
|
27813
|
+
created_at: string
|
|
27814
|
+
message: string
|
|
27815
|
+
is_connected_account_error?: boolean | undefined
|
|
27816
|
+
is_bridge_error?: boolean | undefined
|
|
27817
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27818
|
+
error_code: 'bridge_disconnected'
|
|
27819
|
+
}
|
|
27587
27820
|
>
|
|
27588
27821
|
/** 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. */
|
|
27589
27822
|
warnings: Array<
|
|
@@ -30862,10 +31095,20 @@ export interface Routes {
|
|
|
30862
31095
|
/** Date and time at which Seam created the error. */
|
|
30863
31096
|
created_at: string
|
|
30864
31097
|
message: string
|
|
30865
|
-
is_connected_account_error
|
|
31098
|
+
is_connected_account_error?: boolean | undefined
|
|
31099
|
+
is_bridge_error?: boolean | undefined
|
|
30866
31100
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
30867
31101
|
error_code: 'invalid_credentials'
|
|
30868
31102
|
}
|
|
31103
|
+
| {
|
|
31104
|
+
/** Date and time at which Seam created the error. */
|
|
31105
|
+
created_at: string
|
|
31106
|
+
message: string
|
|
31107
|
+
is_connected_account_error?: boolean | undefined
|
|
31108
|
+
is_bridge_error?: boolean | undefined
|
|
31109
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31110
|
+
error_code: 'bridge_disconnected'
|
|
31111
|
+
}
|
|
30869
31112
|
>
|
|
30870
31113
|
/** 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. */
|
|
30871
31114
|
warnings: Array<
|
|
@@ -31778,10 +32021,20 @@ export interface Routes {
|
|
|
31778
32021
|
/** Date and time at which Seam created the error. */
|
|
31779
32022
|
created_at: string
|
|
31780
32023
|
message: string
|
|
31781
|
-
is_connected_account_error
|
|
32024
|
+
is_connected_account_error?: boolean | undefined
|
|
32025
|
+
is_bridge_error?: boolean | undefined
|
|
31782
32026
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31783
32027
|
error_code: 'invalid_credentials'
|
|
31784
32028
|
}
|
|
32029
|
+
| {
|
|
32030
|
+
/** Date and time at which Seam created the error. */
|
|
32031
|
+
created_at: string
|
|
32032
|
+
message: string
|
|
32033
|
+
is_connected_account_error?: boolean | undefined
|
|
32034
|
+
is_bridge_error?: boolean | undefined
|
|
32035
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32036
|
+
error_code: 'bridge_disconnected'
|
|
32037
|
+
}
|
|
31785
32038
|
>
|
|
31786
32039
|
/** 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. */
|
|
31787
32040
|
warnings: Array<
|
|
@@ -38893,10 +39146,20 @@ export interface Routes {
|
|
|
38893
39146
|
/** Date and time at which Seam created the error. */
|
|
38894
39147
|
created_at: string
|
|
38895
39148
|
message: string
|
|
38896
|
-
is_connected_account_error
|
|
39149
|
+
is_connected_account_error?: boolean | undefined
|
|
39150
|
+
is_bridge_error?: boolean | undefined
|
|
38897
39151
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38898
39152
|
error_code: 'invalid_credentials'
|
|
38899
39153
|
}
|
|
39154
|
+
| {
|
|
39155
|
+
/** Date and time at which Seam created the error. */
|
|
39156
|
+
created_at: string
|
|
39157
|
+
message: string
|
|
39158
|
+
is_connected_account_error?: boolean | undefined
|
|
39159
|
+
is_bridge_error?: boolean | undefined
|
|
39160
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39161
|
+
error_code: 'bridge_disconnected'
|
|
39162
|
+
}
|
|
38900
39163
|
>
|
|
38901
39164
|
/** 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. */
|
|
38902
39165
|
warnings: Array<
|
|
@@ -42172,10 +42435,20 @@ export interface Routes {
|
|
|
42172
42435
|
/** Date and time at which Seam created the error. */
|
|
42173
42436
|
created_at: string
|
|
42174
42437
|
message: string
|
|
42175
|
-
is_connected_account_error
|
|
42438
|
+
is_connected_account_error?: boolean | undefined
|
|
42439
|
+
is_bridge_error?: boolean | undefined
|
|
42176
42440
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42177
42441
|
error_code: 'invalid_credentials'
|
|
42178
42442
|
}
|
|
42443
|
+
| {
|
|
42444
|
+
/** Date and time at which Seam created the error. */
|
|
42445
|
+
created_at: string
|
|
42446
|
+
message: string
|
|
42447
|
+
is_connected_account_error?: boolean | undefined
|
|
42448
|
+
is_bridge_error?: boolean | undefined
|
|
42449
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42450
|
+
error_code: 'bridge_disconnected'
|
|
42451
|
+
}
|
|
42179
42452
|
>
|
|
42180
42453
|
/** 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. */
|
|
42181
42454
|
warnings: Array<
|
|
@@ -43088,10 +43361,20 @@ export interface Routes {
|
|
|
43088
43361
|
/** Date and time at which Seam created the error. */
|
|
43089
43362
|
created_at: string
|
|
43090
43363
|
message: string
|
|
43091
|
-
is_connected_account_error
|
|
43364
|
+
is_connected_account_error?: boolean | undefined
|
|
43365
|
+
is_bridge_error?: boolean | undefined
|
|
43092
43366
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43093
43367
|
error_code: 'invalid_credentials'
|
|
43094
43368
|
}
|
|
43369
|
+
| {
|
|
43370
|
+
/** Date and time at which Seam created the error. */
|
|
43371
|
+
created_at: string
|
|
43372
|
+
message: string
|
|
43373
|
+
is_connected_account_error?: boolean | undefined
|
|
43374
|
+
is_bridge_error?: boolean | undefined
|
|
43375
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43376
|
+
error_code: 'bridge_disconnected'
|
|
43377
|
+
}
|
|
43095
43378
|
>
|
|
43096
43379
|
/** 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. */
|
|
43097
43380
|
warnings: Array<
|
|
@@ -48238,10 +48521,20 @@ export interface Routes {
|
|
|
48238
48521
|
/** Date and time at which Seam created the error. */
|
|
48239
48522
|
created_at: string
|
|
48240
48523
|
message: string
|
|
48241
|
-
is_connected_account_error
|
|
48524
|
+
is_connected_account_error?: boolean | undefined
|
|
48525
|
+
is_bridge_error?: boolean | undefined
|
|
48242
48526
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48243
48527
|
error_code: 'invalid_credentials'
|
|
48244
48528
|
}
|
|
48529
|
+
| {
|
|
48530
|
+
/** Date and time at which Seam created the error. */
|
|
48531
|
+
created_at: string
|
|
48532
|
+
message: string
|
|
48533
|
+
is_connected_account_error?: boolean | undefined
|
|
48534
|
+
is_bridge_error?: boolean | undefined
|
|
48535
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48536
|
+
error_code: 'bridge_disconnected'
|
|
48537
|
+
}
|
|
48245
48538
|
>
|
|
48246
48539
|
/** 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. */
|
|
48247
48540
|
warnings: Array<
|
|
@@ -49156,10 +49449,20 @@ export interface Routes {
|
|
|
49156
49449
|
/** Date and time at which Seam created the error. */
|
|
49157
49450
|
created_at: string
|
|
49158
49451
|
message: string
|
|
49159
|
-
is_connected_account_error
|
|
49452
|
+
is_connected_account_error?: boolean | undefined
|
|
49453
|
+
is_bridge_error?: boolean | undefined
|
|
49160
49454
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49161
49455
|
error_code: 'invalid_credentials'
|
|
49162
49456
|
}
|
|
49457
|
+
| {
|
|
49458
|
+
/** Date and time at which Seam created the error. */
|
|
49459
|
+
created_at: string
|
|
49460
|
+
message: string
|
|
49461
|
+
is_connected_account_error?: boolean | undefined
|
|
49462
|
+
is_bridge_error?: boolean | undefined
|
|
49463
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49464
|
+
error_code: 'bridge_disconnected'
|
|
49465
|
+
}
|
|
49163
49466
|
>
|
|
49164
49467
|
/** 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. */
|
|
49165
49468
|
warnings: Array<
|
|
@@ -49295,7 +49598,7 @@ export interface Routes {
|
|
|
49295
49598
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
49296
49599
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
49297
49600
|
acs_system_id: string
|
|
49298
|
-
|
|
49601
|
+
acs_user_count?: number | undefined
|
|
49299
49602
|
acs_access_group_count?: number | undefined
|
|
49300
49603
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
49301
49604
|
external_type?:
|
|
@@ -49380,6 +49683,15 @@ export interface Routes {
|
|
|
49380
49683
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49381
49684
|
error_code: 'seam_bridge_disconnected'
|
|
49382
49685
|
}
|
|
49686
|
+
| {
|
|
49687
|
+
/** Date and time at which Seam created the error. */
|
|
49688
|
+
created_at: string
|
|
49689
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49690
|
+
message: string
|
|
49691
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49692
|
+
error_code: 'bridge_disconnected'
|
|
49693
|
+
is_bridge_error?: boolean | undefined
|
|
49694
|
+
}
|
|
49383
49695
|
| {
|
|
49384
49696
|
/** Date and time at which Seam created the error. */
|
|
49385
49697
|
created_at: string
|