@seamapi/types 1.373.3 → 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 +158 -63
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +789 -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 +61 -0
- package/lib/seam/connect/models/acs/acs-system.js +11 -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 +66 -8
- package/lib/seam/connect/openapi.js +140 -61
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +322 -33
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +12 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +10 -1
- package/src/lib/seam/connect/openapi.ts +159 -61
- package/src/lib/seam/connect/route-types.ts +353 -33
|
@@ -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,6 +13240,8 @@ 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
|
|
13243
|
+
acs_users_count?: number | undefined
|
|
13244
|
+
acs_access_group_count?: number | undefined
|
|
13153
13245
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13154
13246
|
external_type?:
|
|
13155
13247
|
| (
|
|
@@ -13233,6 +13325,15 @@ export interface Routes {
|
|
|
13233
13325
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13234
13326
|
error_code: 'seam_bridge_disconnected'
|
|
13235
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
|
+
}
|
|
13236
13337
|
| {
|
|
13237
13338
|
/** Date and time at which Seam created the error. */
|
|
13238
13339
|
created_at: string
|
|
@@ -13323,6 +13424,8 @@ export interface Routes {
|
|
|
13323
13424
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13324
13425
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13325
13426
|
acs_system_id: string
|
|
13427
|
+
acs_users_count?: number | undefined
|
|
13428
|
+
acs_access_group_count?: number | undefined
|
|
13326
13429
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13327
13430
|
external_type?:
|
|
13328
13431
|
| (
|
|
@@ -13406,6 +13509,15 @@ export interface Routes {
|
|
|
13406
13509
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13407
13510
|
error_code: 'seam_bridge_disconnected'
|
|
13408
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
|
+
}
|
|
13409
13521
|
| {
|
|
13410
13522
|
/** Date and time at which Seam created the error. */
|
|
13411
13523
|
created_at: string
|
|
@@ -13496,6 +13608,8 @@ export interface Routes {
|
|
|
13496
13608
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13497
13609
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13498
13610
|
acs_system_id: string
|
|
13611
|
+
acs_users_count?: number | undefined
|
|
13612
|
+
acs_access_group_count?: number | undefined
|
|
13499
13613
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13500
13614
|
external_type?:
|
|
13501
13615
|
| (
|
|
@@ -13579,6 +13693,15 @@ export interface Routes {
|
|
|
13579
13693
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13580
13694
|
error_code: 'seam_bridge_disconnected'
|
|
13581
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
|
+
}
|
|
13582
13705
|
| {
|
|
13583
13706
|
/** Date and time at which Seam created the error. */
|
|
13584
13707
|
created_at: string
|
|
@@ -17599,7 +17722,8 @@ export interface Routes {
|
|
|
17599
17722
|
/** Date and time at which Seam created the error. */
|
|
17600
17723
|
created_at: string
|
|
17601
17724
|
message: string
|
|
17602
|
-
is_connected_account_error
|
|
17725
|
+
is_connected_account_error?: boolean | undefined
|
|
17726
|
+
is_bridge_error?: boolean | undefined
|
|
17603
17727
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17604
17728
|
error_code: 'account_disconnected'
|
|
17605
17729
|
}
|
|
@@ -17607,7 +17731,8 @@ export interface Routes {
|
|
|
17607
17731
|
/** Date and time at which Seam created the error. */
|
|
17608
17732
|
created_at: string
|
|
17609
17733
|
message: string
|
|
17610
|
-
is_connected_account_error
|
|
17734
|
+
is_connected_account_error?: boolean | undefined
|
|
17735
|
+
is_bridge_error?: boolean | undefined
|
|
17611
17736
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17612
17737
|
error_code: 'invalid_credentials'
|
|
17613
17738
|
}
|
|
@@ -17615,7 +17740,17 @@ export interface Routes {
|
|
|
17615
17740
|
/** Date and time at which Seam created the error. */
|
|
17616
17741
|
created_at: string
|
|
17617
17742
|
message: string
|
|
17618
|
-
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
|
|
17619
17754
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17620
17755
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
17621
17756
|
salto_ks_metadata: {
|
|
@@ -17700,7 +17835,8 @@ export interface Routes {
|
|
|
17700
17835
|
/** Date and time at which Seam created the error. */
|
|
17701
17836
|
created_at: string
|
|
17702
17837
|
message: string
|
|
17703
|
-
is_connected_account_error
|
|
17838
|
+
is_connected_account_error?: boolean | undefined
|
|
17839
|
+
is_bridge_error?: boolean | undefined
|
|
17704
17840
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17705
17841
|
error_code: 'account_disconnected'
|
|
17706
17842
|
}
|
|
@@ -17708,7 +17844,8 @@ export interface Routes {
|
|
|
17708
17844
|
/** Date and time at which Seam created the error. */
|
|
17709
17845
|
created_at: string
|
|
17710
17846
|
message: string
|
|
17711
|
-
is_connected_account_error
|
|
17847
|
+
is_connected_account_error?: boolean | undefined
|
|
17848
|
+
is_bridge_error?: boolean | undefined
|
|
17712
17849
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17713
17850
|
error_code: 'invalid_credentials'
|
|
17714
17851
|
}
|
|
@@ -17716,7 +17853,17 @@ export interface Routes {
|
|
|
17716
17853
|
/** Date and time at which Seam created the error. */
|
|
17717
17854
|
created_at: string
|
|
17718
17855
|
message: string
|
|
17719
|
-
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
|
|
17720
17867
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17721
17868
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
17722
17869
|
salto_ks_metadata: {
|
|
@@ -17806,7 +17953,8 @@ export interface Routes {
|
|
|
17806
17953
|
/** Date and time at which Seam created the error. */
|
|
17807
17954
|
created_at: string
|
|
17808
17955
|
message: string
|
|
17809
|
-
is_connected_account_error
|
|
17956
|
+
is_connected_account_error?: boolean | undefined
|
|
17957
|
+
is_bridge_error?: boolean | undefined
|
|
17810
17958
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17811
17959
|
error_code: 'account_disconnected'
|
|
17812
17960
|
}
|
|
@@ -17814,7 +17962,8 @@ export interface Routes {
|
|
|
17814
17962
|
/** Date and time at which Seam created the error. */
|
|
17815
17963
|
created_at: string
|
|
17816
17964
|
message: string
|
|
17817
|
-
is_connected_account_error
|
|
17965
|
+
is_connected_account_error?: boolean | undefined
|
|
17966
|
+
is_bridge_error?: boolean | undefined
|
|
17818
17967
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17819
17968
|
error_code: 'invalid_credentials'
|
|
17820
17969
|
}
|
|
@@ -17822,7 +17971,17 @@ export interface Routes {
|
|
|
17822
17971
|
/** Date and time at which Seam created the error. */
|
|
17823
17972
|
created_at: string
|
|
17824
17973
|
message: string
|
|
17825
|
-
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
|
|
17826
17985
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17827
17986
|
error_code: 'salto_ks_subscription_limit_exceeded'
|
|
17828
17987
|
salto_ks_metadata: {
|
|
@@ -18689,10 +18848,20 @@ export interface Routes {
|
|
|
18689
18848
|
/** Date and time at which Seam created the error. */
|
|
18690
18849
|
created_at: string
|
|
18691
18850
|
message: string
|
|
18692
|
-
is_connected_account_error
|
|
18851
|
+
is_connected_account_error?: boolean | undefined
|
|
18852
|
+
is_bridge_error?: boolean | undefined
|
|
18693
18853
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
18694
18854
|
error_code: 'invalid_credentials'
|
|
18695
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
|
+
}
|
|
18696
18865
|
>
|
|
18697
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. */
|
|
18698
18867
|
warnings: Array<
|
|
@@ -19794,10 +19963,20 @@ export interface Routes {
|
|
|
19794
19963
|
/** Date and time at which Seam created the error. */
|
|
19795
19964
|
created_at: string
|
|
19796
19965
|
message: string
|
|
19797
|
-
is_connected_account_error
|
|
19966
|
+
is_connected_account_error?: boolean | undefined
|
|
19967
|
+
is_bridge_error?: boolean | undefined
|
|
19798
19968
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19799
19969
|
error_code: 'invalid_credentials'
|
|
19800
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
|
+
}
|
|
19801
19980
|
>
|
|
19802
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. */
|
|
19803
19982
|
warnings: Array<
|
|
@@ -20237,10 +20416,20 @@ export interface Routes {
|
|
|
20237
20416
|
/** Date and time at which Seam created the error. */
|
|
20238
20417
|
created_at: string
|
|
20239
20418
|
message: string
|
|
20240
|
-
is_connected_account_error
|
|
20419
|
+
is_connected_account_error?: boolean | undefined
|
|
20420
|
+
is_bridge_error?: boolean | undefined
|
|
20241
20421
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20242
20422
|
error_code: 'invalid_credentials'
|
|
20243
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
|
+
}
|
|
20244
20433
|
>
|
|
20245
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. */
|
|
20246
20435
|
warnings: Array<
|
|
@@ -20763,10 +20952,20 @@ export interface Routes {
|
|
|
20763
20952
|
/** Date and time at which Seam created the error. */
|
|
20764
20953
|
created_at: string
|
|
20765
20954
|
message: string
|
|
20766
|
-
is_connected_account_error
|
|
20955
|
+
is_connected_account_error?: boolean | undefined
|
|
20956
|
+
is_bridge_error?: boolean | undefined
|
|
20767
20957
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20768
20958
|
error_code: 'invalid_credentials'
|
|
20769
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
|
+
}
|
|
20770
20969
|
>
|
|
20771
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. */
|
|
20772
20971
|
warnings: Array<
|
|
@@ -24668,10 +24867,20 @@ export interface Routes {
|
|
|
24668
24867
|
/** Date and time at which Seam created the error. */
|
|
24669
24868
|
created_at: string
|
|
24670
24869
|
message: string
|
|
24671
|
-
is_connected_account_error
|
|
24870
|
+
is_connected_account_error?: boolean | undefined
|
|
24871
|
+
is_bridge_error?: boolean | undefined
|
|
24672
24872
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24673
24873
|
error_code: 'invalid_credentials'
|
|
24674
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
|
+
}
|
|
24675
24884
|
>
|
|
24676
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. */
|
|
24677
24886
|
warnings: Array<
|
|
@@ -25585,10 +25794,20 @@ export interface Routes {
|
|
|
25585
25794
|
/** Date and time at which Seam created the error. */
|
|
25586
25795
|
created_at: string
|
|
25587
25796
|
message: string
|
|
25588
|
-
is_connected_account_error
|
|
25797
|
+
is_connected_account_error?: boolean | undefined
|
|
25798
|
+
is_bridge_error?: boolean | undefined
|
|
25589
25799
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25590
25800
|
error_code: 'invalid_credentials'
|
|
25591
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
|
+
}
|
|
25592
25811
|
>
|
|
25593
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. */
|
|
25594
25813
|
warnings: Array<
|
|
@@ -26658,10 +26877,20 @@ export interface Routes {
|
|
|
26658
26877
|
/** Date and time at which Seam created the error. */
|
|
26659
26878
|
created_at: string
|
|
26660
26879
|
message: string
|
|
26661
|
-
is_connected_account_error
|
|
26880
|
+
is_connected_account_error?: boolean | undefined
|
|
26881
|
+
is_bridge_error?: boolean | undefined
|
|
26662
26882
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26663
26883
|
error_code: 'invalid_credentials'
|
|
26664
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
|
+
}
|
|
26665
26894
|
>
|
|
26666
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. */
|
|
26667
26896
|
warnings: Array<
|
|
@@ -27574,10 +27803,20 @@ export interface Routes {
|
|
|
27574
27803
|
/** Date and time at which Seam created the error. */
|
|
27575
27804
|
created_at: string
|
|
27576
27805
|
message: string
|
|
27577
|
-
is_connected_account_error
|
|
27806
|
+
is_connected_account_error?: boolean | undefined
|
|
27807
|
+
is_bridge_error?: boolean | undefined
|
|
27578
27808
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
27579
27809
|
error_code: 'invalid_credentials'
|
|
27580
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
|
+
}
|
|
27581
27820
|
>
|
|
27582
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. */
|
|
27583
27822
|
warnings: Array<
|
|
@@ -30856,10 +31095,20 @@ export interface Routes {
|
|
|
30856
31095
|
/** Date and time at which Seam created the error. */
|
|
30857
31096
|
created_at: string
|
|
30858
31097
|
message: string
|
|
30859
|
-
is_connected_account_error
|
|
31098
|
+
is_connected_account_error?: boolean | undefined
|
|
31099
|
+
is_bridge_error?: boolean | undefined
|
|
30860
31100
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
30861
31101
|
error_code: 'invalid_credentials'
|
|
30862
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
|
+
}
|
|
30863
31112
|
>
|
|
30864
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. */
|
|
30865
31114
|
warnings: Array<
|
|
@@ -31772,10 +32021,20 @@ export interface Routes {
|
|
|
31772
32021
|
/** Date and time at which Seam created the error. */
|
|
31773
32022
|
created_at: string
|
|
31774
32023
|
message: string
|
|
31775
|
-
is_connected_account_error
|
|
32024
|
+
is_connected_account_error?: boolean | undefined
|
|
32025
|
+
is_bridge_error?: boolean | undefined
|
|
31776
32026
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31777
32027
|
error_code: 'invalid_credentials'
|
|
31778
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
|
+
}
|
|
31779
32038
|
>
|
|
31780
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. */
|
|
31781
32040
|
warnings: Array<
|
|
@@ -38887,10 +39146,20 @@ export interface Routes {
|
|
|
38887
39146
|
/** Date and time at which Seam created the error. */
|
|
38888
39147
|
created_at: string
|
|
38889
39148
|
message: string
|
|
38890
|
-
is_connected_account_error
|
|
39149
|
+
is_connected_account_error?: boolean | undefined
|
|
39150
|
+
is_bridge_error?: boolean | undefined
|
|
38891
39151
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38892
39152
|
error_code: 'invalid_credentials'
|
|
38893
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
|
+
}
|
|
38894
39163
|
>
|
|
38895
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. */
|
|
38896
39165
|
warnings: Array<
|
|
@@ -42166,10 +42435,20 @@ export interface Routes {
|
|
|
42166
42435
|
/** Date and time at which Seam created the error. */
|
|
42167
42436
|
created_at: string
|
|
42168
42437
|
message: string
|
|
42169
|
-
is_connected_account_error
|
|
42438
|
+
is_connected_account_error?: boolean | undefined
|
|
42439
|
+
is_bridge_error?: boolean | undefined
|
|
42170
42440
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42171
42441
|
error_code: 'invalid_credentials'
|
|
42172
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
|
+
}
|
|
42173
42452
|
>
|
|
42174
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. */
|
|
42175
42454
|
warnings: Array<
|
|
@@ -43082,10 +43361,20 @@ export interface Routes {
|
|
|
43082
43361
|
/** Date and time at which Seam created the error. */
|
|
43083
43362
|
created_at: string
|
|
43084
43363
|
message: string
|
|
43085
|
-
is_connected_account_error
|
|
43364
|
+
is_connected_account_error?: boolean | undefined
|
|
43365
|
+
is_bridge_error?: boolean | undefined
|
|
43086
43366
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43087
43367
|
error_code: 'invalid_credentials'
|
|
43088
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
|
+
}
|
|
43089
43378
|
>
|
|
43090
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. */
|
|
43091
43380
|
warnings: Array<
|
|
@@ -48232,10 +48521,20 @@ export interface Routes {
|
|
|
48232
48521
|
/** Date and time at which Seam created the error. */
|
|
48233
48522
|
created_at: string
|
|
48234
48523
|
message: string
|
|
48235
|
-
is_connected_account_error
|
|
48524
|
+
is_connected_account_error?: boolean | undefined
|
|
48525
|
+
is_bridge_error?: boolean | undefined
|
|
48236
48526
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48237
48527
|
error_code: 'invalid_credentials'
|
|
48238
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
|
+
}
|
|
48239
48538
|
>
|
|
48240
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. */
|
|
48241
48540
|
warnings: Array<
|
|
@@ -49150,10 +49449,20 @@ export interface Routes {
|
|
|
49150
49449
|
/** Date and time at which Seam created the error. */
|
|
49151
49450
|
created_at: string
|
|
49152
49451
|
message: string
|
|
49153
|
-
is_connected_account_error
|
|
49452
|
+
is_connected_account_error?: boolean | undefined
|
|
49453
|
+
is_bridge_error?: boolean | undefined
|
|
49154
49454
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49155
49455
|
error_code: 'invalid_credentials'
|
|
49156
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
|
+
}
|
|
49157
49466
|
>
|
|
49158
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. */
|
|
49159
49468
|
warnings: Array<
|
|
@@ -49289,6 +49598,8 @@ export interface Routes {
|
|
|
49289
49598
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
49290
49599
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
49291
49600
|
acs_system_id: string
|
|
49601
|
+
acs_users_count?: number | undefined
|
|
49602
|
+
acs_access_group_count?: number | undefined
|
|
49292
49603
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
49293
49604
|
external_type?:
|
|
49294
49605
|
| (
|
|
@@ -49372,6 +49683,15 @@ export interface Routes {
|
|
|
49372
49683
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49373
49684
|
error_code: 'seam_bridge_disconnected'
|
|
49374
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
|
+
}
|
|
49375
49695
|
| {
|
|
49376
49696
|
/** Date and time at which Seam created the error. */
|
|
49377
49697
|
created_at: string
|