@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
|
@@ -1224,9 +1224,18 @@ export interface Routes {
|
|
|
1224
1224
|
/** Date and time at which Seam created the error. */
|
|
1225
1225
|
created_at: string;
|
|
1226
1226
|
message: string;
|
|
1227
|
-
is_connected_account_error
|
|
1227
|
+
is_connected_account_error?: boolean | undefined;
|
|
1228
|
+
is_bridge_error?: boolean | undefined;
|
|
1228
1229
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1229
1230
|
error_code: 'invalid_credentials';
|
|
1231
|
+
} | {
|
|
1232
|
+
/** Date and time at which Seam created the error. */
|
|
1233
|
+
created_at: string;
|
|
1234
|
+
message: string;
|
|
1235
|
+
is_connected_account_error?: boolean | undefined;
|
|
1236
|
+
is_bridge_error?: boolean | undefined;
|
|
1237
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1238
|
+
error_code: 'bridge_disconnected';
|
|
1230
1239
|
}>;
|
|
1231
1240
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1232
1241
|
warnings: Array<{
|
|
@@ -1588,9 +1597,18 @@ export interface Routes {
|
|
|
1588
1597
|
/** Date and time at which Seam created the error. */
|
|
1589
1598
|
created_at: string;
|
|
1590
1599
|
message: string;
|
|
1591
|
-
is_connected_account_error
|
|
1600
|
+
is_connected_account_error?: boolean | undefined;
|
|
1601
|
+
is_bridge_error?: boolean | undefined;
|
|
1592
1602
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1593
1603
|
error_code: 'invalid_credentials';
|
|
1604
|
+
} | {
|
|
1605
|
+
/** Date and time at which Seam created the error. */
|
|
1606
|
+
created_at: string;
|
|
1607
|
+
message: string;
|
|
1608
|
+
is_connected_account_error?: boolean | undefined;
|
|
1609
|
+
is_bridge_error?: boolean | undefined;
|
|
1610
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1611
|
+
error_code: 'bridge_disconnected';
|
|
1594
1612
|
}>;
|
|
1595
1613
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
1596
1614
|
warnings: Array<{
|
|
@@ -2920,9 +2938,18 @@ export interface Routes {
|
|
|
2920
2938
|
/** Date and time at which Seam created the error. */
|
|
2921
2939
|
created_at: string;
|
|
2922
2940
|
message: string;
|
|
2923
|
-
is_connected_account_error
|
|
2941
|
+
is_connected_account_error?: boolean | undefined;
|
|
2942
|
+
is_bridge_error?: boolean | undefined;
|
|
2924
2943
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2925
2944
|
error_code: 'invalid_credentials';
|
|
2945
|
+
} | {
|
|
2946
|
+
/** Date and time at which Seam created the error. */
|
|
2947
|
+
created_at: string;
|
|
2948
|
+
message: string;
|
|
2949
|
+
is_connected_account_error?: boolean | undefined;
|
|
2950
|
+
is_bridge_error?: boolean | undefined;
|
|
2951
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2952
|
+
error_code: 'bridge_disconnected';
|
|
2926
2953
|
}>;
|
|
2927
2954
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
2928
2955
|
warnings: Array<{
|
|
@@ -3271,9 +3298,18 @@ export interface Routes {
|
|
|
3271
3298
|
/** Date and time at which Seam created the error. */
|
|
3272
3299
|
created_at: string;
|
|
3273
3300
|
message: string;
|
|
3274
|
-
is_connected_account_error
|
|
3301
|
+
is_connected_account_error?: boolean | undefined;
|
|
3302
|
+
is_bridge_error?: boolean | undefined;
|
|
3275
3303
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3276
3304
|
error_code: 'invalid_credentials';
|
|
3305
|
+
} | {
|
|
3306
|
+
/** Date and time at which Seam created the error. */
|
|
3307
|
+
created_at: string;
|
|
3308
|
+
message: string;
|
|
3309
|
+
is_connected_account_error?: boolean | undefined;
|
|
3310
|
+
is_bridge_error?: boolean | undefined;
|
|
3311
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3312
|
+
error_code: 'bridge_disconnected';
|
|
3277
3313
|
}>;
|
|
3278
3314
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3279
3315
|
warnings: Array<{
|
|
@@ -3621,9 +3657,18 @@ export interface Routes {
|
|
|
3621
3657
|
/** Date and time at which Seam created the error. */
|
|
3622
3658
|
created_at: string;
|
|
3623
3659
|
message: string;
|
|
3624
|
-
is_connected_account_error
|
|
3660
|
+
is_connected_account_error?: boolean | undefined;
|
|
3661
|
+
is_bridge_error?: boolean | undefined;
|
|
3625
3662
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3626
3663
|
error_code: 'invalid_credentials';
|
|
3664
|
+
} | {
|
|
3665
|
+
/** Date and time at which Seam created the error. */
|
|
3666
|
+
created_at: string;
|
|
3667
|
+
message: string;
|
|
3668
|
+
is_connected_account_error?: boolean | undefined;
|
|
3669
|
+
is_bridge_error?: boolean | undefined;
|
|
3670
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3671
|
+
error_code: 'bridge_disconnected';
|
|
3627
3672
|
}>;
|
|
3628
3673
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3629
3674
|
warnings: Array<{
|
|
@@ -3959,9 +4004,18 @@ export interface Routes {
|
|
|
3959
4004
|
/** Date and time at which Seam created the error. */
|
|
3960
4005
|
created_at: string;
|
|
3961
4006
|
message: string;
|
|
3962
|
-
is_connected_account_error
|
|
4007
|
+
is_connected_account_error?: boolean | undefined;
|
|
4008
|
+
is_bridge_error?: boolean | undefined;
|
|
3963
4009
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3964
4010
|
error_code: 'invalid_credentials';
|
|
4011
|
+
} | {
|
|
4012
|
+
/** Date and time at which Seam created the error. */
|
|
4013
|
+
created_at: string;
|
|
4014
|
+
message: string;
|
|
4015
|
+
is_connected_account_error?: boolean | undefined;
|
|
4016
|
+
is_bridge_error?: boolean | undefined;
|
|
4017
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4018
|
+
error_code: 'bridge_disconnected';
|
|
3965
4019
|
}>;
|
|
3966
4020
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
3967
4021
|
warnings: Array<{
|
|
@@ -4305,9 +4359,18 @@ export interface Routes {
|
|
|
4305
4359
|
/** Date and time at which Seam created the error. */
|
|
4306
4360
|
created_at: string;
|
|
4307
4361
|
message: string;
|
|
4308
|
-
is_connected_account_error
|
|
4362
|
+
is_connected_account_error?: boolean | undefined;
|
|
4363
|
+
is_bridge_error?: boolean | undefined;
|
|
4309
4364
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4310
4365
|
error_code: 'invalid_credentials';
|
|
4366
|
+
} | {
|
|
4367
|
+
/** Date and time at which Seam created the error. */
|
|
4368
|
+
created_at: string;
|
|
4369
|
+
message: string;
|
|
4370
|
+
is_connected_account_error?: boolean | undefined;
|
|
4371
|
+
is_bridge_error?: boolean | undefined;
|
|
4372
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4373
|
+
error_code: 'bridge_disconnected';
|
|
4311
4374
|
}>;
|
|
4312
4375
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
4313
4376
|
warnings: Array<{
|
|
@@ -5613,9 +5676,18 @@ export interface Routes {
|
|
|
5613
5676
|
/** Date and time at which Seam created the error. */
|
|
5614
5677
|
created_at: string;
|
|
5615
5678
|
message: string;
|
|
5616
|
-
is_connected_account_error
|
|
5679
|
+
is_connected_account_error?: boolean | undefined;
|
|
5680
|
+
is_bridge_error?: boolean | undefined;
|
|
5617
5681
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5618
5682
|
error_code: 'invalid_credentials';
|
|
5683
|
+
} | {
|
|
5684
|
+
/** Date and time at which Seam created the error. */
|
|
5685
|
+
created_at: string;
|
|
5686
|
+
message: string;
|
|
5687
|
+
is_connected_account_error?: boolean | undefined;
|
|
5688
|
+
is_bridge_error?: boolean | undefined;
|
|
5689
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5690
|
+
error_code: 'bridge_disconnected';
|
|
5619
5691
|
}>;
|
|
5620
5692
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
5621
5693
|
warnings: Array<{
|
|
@@ -5941,9 +6013,18 @@ export interface Routes {
|
|
|
5941
6013
|
/** Date and time at which Seam created the error. */
|
|
5942
6014
|
created_at: string;
|
|
5943
6015
|
message: string;
|
|
5944
|
-
is_connected_account_error
|
|
6016
|
+
is_connected_account_error?: boolean | undefined;
|
|
6017
|
+
is_bridge_error?: boolean | undefined;
|
|
5945
6018
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5946
6019
|
error_code: 'invalid_credentials';
|
|
6020
|
+
} | {
|
|
6021
|
+
/** Date and time at which Seam created the error. */
|
|
6022
|
+
created_at: string;
|
|
6023
|
+
message: string;
|
|
6024
|
+
is_connected_account_error?: boolean | undefined;
|
|
6025
|
+
is_bridge_error?: boolean | undefined;
|
|
6026
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6027
|
+
error_code: 'bridge_disconnected';
|
|
5947
6028
|
}>;
|
|
5948
6029
|
/** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
|
|
5949
6030
|
warnings: Array<{
|
|
@@ -11221,6 +11302,8 @@ export interface Routes {
|
|
|
11221
11302
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
11222
11303
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11223
11304
|
acs_system_id: string;
|
|
11305
|
+
acs_users_count?: number | undefined;
|
|
11306
|
+
acs_access_group_count?: number | undefined;
|
|
11224
11307
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11225
11308
|
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
11226
11309
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
@@ -11268,6 +11351,14 @@ export interface Routes {
|
|
|
11268
11351
|
message: string;
|
|
11269
11352
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11270
11353
|
error_code: 'seam_bridge_disconnected';
|
|
11354
|
+
} | {
|
|
11355
|
+
/** Date and time at which Seam created the error. */
|
|
11356
|
+
created_at: string;
|
|
11357
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11358
|
+
message: string;
|
|
11359
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11360
|
+
error_code: 'bridge_disconnected';
|
|
11361
|
+
is_bridge_error?: boolean | undefined;
|
|
11271
11362
|
} | {
|
|
11272
11363
|
/** Date and time at which Seam created the error. */
|
|
11273
11364
|
created_at: string;
|
|
@@ -11350,6 +11441,8 @@ export interface Routes {
|
|
|
11350
11441
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
11351
11442
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11352
11443
|
acs_system_id: string;
|
|
11444
|
+
acs_users_count?: number | undefined;
|
|
11445
|
+
acs_access_group_count?: number | undefined;
|
|
11353
11446
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11354
11447
|
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
11355
11448
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
@@ -11397,6 +11490,14 @@ export interface Routes {
|
|
|
11397
11490
|
message: string;
|
|
11398
11491
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11399
11492
|
error_code: 'seam_bridge_disconnected';
|
|
11493
|
+
} | {
|
|
11494
|
+
/** Date and time at which Seam created the error. */
|
|
11495
|
+
created_at: string;
|
|
11496
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11497
|
+
message: string;
|
|
11498
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11499
|
+
error_code: 'bridge_disconnected';
|
|
11500
|
+
is_bridge_error?: boolean | undefined;
|
|
11400
11501
|
} | {
|
|
11401
11502
|
/** Date and time at which Seam created the error. */
|
|
11402
11503
|
created_at: string;
|
|
@@ -11479,6 +11580,8 @@ export interface Routes {
|
|
|
11479
11580
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
11480
11581
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11481
11582
|
acs_system_id: string;
|
|
11583
|
+
acs_users_count?: number | undefined;
|
|
11584
|
+
acs_access_group_count?: number | undefined;
|
|
11482
11585
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11483
11586
|
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
11484
11587
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
@@ -11526,6 +11629,14 @@ export interface Routes {
|
|
|
11526
11629
|
message: string;
|
|
11527
11630
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11528
11631
|
error_code: 'seam_bridge_disconnected';
|
|
11632
|
+
} | {
|
|
11633
|
+
/** Date and time at which Seam created the error. */
|
|
11634
|
+
created_at: string;
|
|
11635
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11636
|
+
message: string;
|
|
11637
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11638
|
+
error_code: 'bridge_disconnected';
|
|
11639
|
+
is_bridge_error?: boolean | undefined;
|
|
11529
11640
|
} | {
|
|
11530
11641
|
/** Date and time at which Seam created the error. */
|
|
11531
11642
|
created_at: string;
|
|
@@ -14938,21 +15049,32 @@ export interface Routes {
|
|
|
14938
15049
|
/** Date and time at which Seam created the error. */
|
|
14939
15050
|
created_at: string;
|
|
14940
15051
|
message: string;
|
|
14941
|
-
is_connected_account_error
|
|
15052
|
+
is_connected_account_error?: boolean | undefined;
|
|
15053
|
+
is_bridge_error?: boolean | undefined;
|
|
14942
15054
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14943
15055
|
error_code: 'account_disconnected';
|
|
14944
15056
|
} | {
|
|
14945
15057
|
/** Date and time at which Seam created the error. */
|
|
14946
15058
|
created_at: string;
|
|
14947
15059
|
message: string;
|
|
14948
|
-
is_connected_account_error
|
|
15060
|
+
is_connected_account_error?: boolean | undefined;
|
|
15061
|
+
is_bridge_error?: boolean | undefined;
|
|
14949
15062
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14950
15063
|
error_code: 'invalid_credentials';
|
|
14951
15064
|
} | {
|
|
14952
15065
|
/** Date and time at which Seam created the error. */
|
|
14953
15066
|
created_at: string;
|
|
14954
15067
|
message: string;
|
|
14955
|
-
is_connected_account_error
|
|
15068
|
+
is_connected_account_error?: boolean | undefined;
|
|
15069
|
+
is_bridge_error?: boolean | undefined;
|
|
15070
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15071
|
+
error_code: 'bridge_disconnected';
|
|
15072
|
+
} | {
|
|
15073
|
+
/** Date and time at which Seam created the error. */
|
|
15074
|
+
created_at: string;
|
|
15075
|
+
message: string;
|
|
15076
|
+
is_connected_account_error?: boolean | undefined;
|
|
15077
|
+
is_bridge_error?: boolean | undefined;
|
|
14956
15078
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14957
15079
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
14958
15080
|
salto_ks_metadata: {
|
|
@@ -15029,21 +15151,32 @@ export interface Routes {
|
|
|
15029
15151
|
/** Date and time at which Seam created the error. */
|
|
15030
15152
|
created_at: string;
|
|
15031
15153
|
message: string;
|
|
15032
|
-
is_connected_account_error
|
|
15154
|
+
is_connected_account_error?: boolean | undefined;
|
|
15155
|
+
is_bridge_error?: boolean | undefined;
|
|
15033
15156
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15034
15157
|
error_code: 'account_disconnected';
|
|
15035
15158
|
} | {
|
|
15036
15159
|
/** Date and time at which Seam created the error. */
|
|
15037
15160
|
created_at: string;
|
|
15038
15161
|
message: string;
|
|
15039
|
-
is_connected_account_error
|
|
15162
|
+
is_connected_account_error?: boolean | undefined;
|
|
15163
|
+
is_bridge_error?: boolean | undefined;
|
|
15040
15164
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15041
15165
|
error_code: 'invalid_credentials';
|
|
15042
15166
|
} | {
|
|
15043
15167
|
/** Date and time at which Seam created the error. */
|
|
15044
15168
|
created_at: string;
|
|
15045
15169
|
message: string;
|
|
15046
|
-
is_connected_account_error
|
|
15170
|
+
is_connected_account_error?: boolean | undefined;
|
|
15171
|
+
is_bridge_error?: boolean | undefined;
|
|
15172
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15173
|
+
error_code: 'bridge_disconnected';
|
|
15174
|
+
} | {
|
|
15175
|
+
/** Date and time at which Seam created the error. */
|
|
15176
|
+
created_at: string;
|
|
15177
|
+
message: string;
|
|
15178
|
+
is_connected_account_error?: boolean | undefined;
|
|
15179
|
+
is_bridge_error?: boolean | undefined;
|
|
15047
15180
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15048
15181
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
15049
15182
|
salto_ks_metadata: {
|
|
@@ -15125,21 +15258,32 @@ export interface Routes {
|
|
|
15125
15258
|
/** Date and time at which Seam created the error. */
|
|
15126
15259
|
created_at: string;
|
|
15127
15260
|
message: string;
|
|
15128
|
-
is_connected_account_error
|
|
15261
|
+
is_connected_account_error?: boolean | undefined;
|
|
15262
|
+
is_bridge_error?: boolean | undefined;
|
|
15129
15263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15130
15264
|
error_code: 'account_disconnected';
|
|
15131
15265
|
} | {
|
|
15132
15266
|
/** Date and time at which Seam created the error. */
|
|
15133
15267
|
created_at: string;
|
|
15134
15268
|
message: string;
|
|
15135
|
-
is_connected_account_error
|
|
15269
|
+
is_connected_account_error?: boolean | undefined;
|
|
15270
|
+
is_bridge_error?: boolean | undefined;
|
|
15136
15271
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15137
15272
|
error_code: 'invalid_credentials';
|
|
15138
15273
|
} | {
|
|
15139
15274
|
/** Date and time at which Seam created the error. */
|
|
15140
15275
|
created_at: string;
|
|
15141
15276
|
message: string;
|
|
15142
|
-
is_connected_account_error
|
|
15277
|
+
is_connected_account_error?: boolean | undefined;
|
|
15278
|
+
is_bridge_error?: boolean | undefined;
|
|
15279
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15280
|
+
error_code: 'bridge_disconnected';
|
|
15281
|
+
} | {
|
|
15282
|
+
/** Date and time at which Seam created the error. */
|
|
15283
|
+
created_at: string;
|
|
15284
|
+
message: string;
|
|
15285
|
+
is_connected_account_error?: boolean | undefined;
|
|
15286
|
+
is_bridge_error?: boolean | undefined;
|
|
15143
15287
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15144
15288
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
15145
15289
|
salto_ks_metadata: {
|
|
@@ -15797,9 +15941,18 @@ export interface Routes {
|
|
|
15797
15941
|
/** Date and time at which Seam created the error. */
|
|
15798
15942
|
created_at: string;
|
|
15799
15943
|
message: string;
|
|
15800
|
-
is_connected_account_error
|
|
15944
|
+
is_connected_account_error?: boolean | undefined;
|
|
15945
|
+
is_bridge_error?: boolean | undefined;
|
|
15801
15946
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15802
15947
|
error_code: 'invalid_credentials';
|
|
15948
|
+
} | {
|
|
15949
|
+
/** Date and time at which Seam created the error. */
|
|
15950
|
+
created_at: string;
|
|
15951
|
+
message: string;
|
|
15952
|
+
is_connected_account_error?: boolean | undefined;
|
|
15953
|
+
is_bridge_error?: boolean | undefined;
|
|
15954
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15955
|
+
error_code: 'bridge_disconnected';
|
|
15803
15956
|
}>;
|
|
15804
15957
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
15805
15958
|
warnings: Array<{
|
|
@@ -16530,9 +16683,18 @@ export interface Routes {
|
|
|
16530
16683
|
/** Date and time at which Seam created the error. */
|
|
16531
16684
|
created_at: string;
|
|
16532
16685
|
message: string;
|
|
16533
|
-
is_connected_account_error
|
|
16686
|
+
is_connected_account_error?: boolean | undefined;
|
|
16687
|
+
is_bridge_error?: boolean | undefined;
|
|
16534
16688
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16535
16689
|
error_code: 'invalid_credentials';
|
|
16690
|
+
} | {
|
|
16691
|
+
/** Date and time at which Seam created the error. */
|
|
16692
|
+
created_at: string;
|
|
16693
|
+
message: string;
|
|
16694
|
+
is_connected_account_error?: boolean | undefined;
|
|
16695
|
+
is_bridge_error?: boolean | undefined;
|
|
16696
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16697
|
+
error_code: 'bridge_disconnected';
|
|
16536
16698
|
}>;
|
|
16537
16699
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16538
16700
|
warnings: Array<{
|
|
@@ -16836,9 +16998,18 @@ export interface Routes {
|
|
|
16836
16998
|
/** Date and time at which Seam created the error. */
|
|
16837
16999
|
created_at: string;
|
|
16838
17000
|
message: string;
|
|
16839
|
-
is_connected_account_error
|
|
17001
|
+
is_connected_account_error?: boolean | undefined;
|
|
17002
|
+
is_bridge_error?: boolean | undefined;
|
|
16840
17003
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16841
17004
|
error_code: 'invalid_credentials';
|
|
17005
|
+
} | {
|
|
17006
|
+
/** Date and time at which Seam created the error. */
|
|
17007
|
+
created_at: string;
|
|
17008
|
+
message: string;
|
|
17009
|
+
is_connected_account_error?: boolean | undefined;
|
|
17010
|
+
is_bridge_error?: boolean | undefined;
|
|
17011
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17012
|
+
error_code: 'bridge_disconnected';
|
|
16842
17013
|
}>;
|
|
16843
17014
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16844
17015
|
warnings: Array<{
|
|
@@ -17129,9 +17300,18 @@ export interface Routes {
|
|
|
17129
17300
|
/** Date and time at which Seam created the error. */
|
|
17130
17301
|
created_at: string;
|
|
17131
17302
|
message: string;
|
|
17132
|
-
is_connected_account_error
|
|
17303
|
+
is_connected_account_error?: boolean | undefined;
|
|
17304
|
+
is_bridge_error?: boolean | undefined;
|
|
17133
17305
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17134
17306
|
error_code: 'invalid_credentials';
|
|
17307
|
+
} | {
|
|
17308
|
+
/** Date and time at which Seam created the error. */
|
|
17309
|
+
created_at: string;
|
|
17310
|
+
message: string;
|
|
17311
|
+
is_connected_account_error?: boolean | undefined;
|
|
17312
|
+
is_bridge_error?: boolean | undefined;
|
|
17313
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17314
|
+
error_code: 'bridge_disconnected';
|
|
17135
17315
|
}>;
|
|
17136
17316
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
17137
17317
|
warnings: Array<{
|
|
@@ -20448,9 +20628,18 @@ export interface Routes {
|
|
|
20448
20628
|
/** Date and time at which Seam created the error. */
|
|
20449
20629
|
created_at: string;
|
|
20450
20630
|
message: string;
|
|
20451
|
-
is_connected_account_error
|
|
20631
|
+
is_connected_account_error?: boolean | undefined;
|
|
20632
|
+
is_bridge_error?: boolean | undefined;
|
|
20452
20633
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20453
20634
|
error_code: 'invalid_credentials';
|
|
20635
|
+
} | {
|
|
20636
|
+
/** Date and time at which Seam created the error. */
|
|
20637
|
+
created_at: string;
|
|
20638
|
+
message: string;
|
|
20639
|
+
is_connected_account_error?: boolean | undefined;
|
|
20640
|
+
is_bridge_error?: boolean | undefined;
|
|
20641
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20642
|
+
error_code: 'bridge_disconnected';
|
|
20454
20643
|
}>;
|
|
20455
20644
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
20456
20645
|
warnings: Array<{
|
|
@@ -21143,9 +21332,18 @@ export interface Routes {
|
|
|
21143
21332
|
/** Date and time at which Seam created the error. */
|
|
21144
21333
|
created_at: string;
|
|
21145
21334
|
message: string;
|
|
21146
|
-
is_connected_account_error
|
|
21335
|
+
is_connected_account_error?: boolean | undefined;
|
|
21336
|
+
is_bridge_error?: boolean | undefined;
|
|
21147
21337
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21148
21338
|
error_code: 'invalid_credentials';
|
|
21339
|
+
} | {
|
|
21340
|
+
/** Date and time at which Seam created the error. */
|
|
21341
|
+
created_at: string;
|
|
21342
|
+
message: string;
|
|
21343
|
+
is_connected_account_error?: boolean | undefined;
|
|
21344
|
+
is_bridge_error?: boolean | undefined;
|
|
21345
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21346
|
+
error_code: 'bridge_disconnected';
|
|
21149
21347
|
}>;
|
|
21150
21348
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
21151
21349
|
warnings: Array<{
|
|
@@ -21876,9 +22074,18 @@ export interface Routes {
|
|
|
21876
22074
|
/** Date and time at which Seam created the error. */
|
|
21877
22075
|
created_at: string;
|
|
21878
22076
|
message: string;
|
|
21879
|
-
is_connected_account_error
|
|
22077
|
+
is_connected_account_error?: boolean | undefined;
|
|
22078
|
+
is_bridge_error?: boolean | undefined;
|
|
21880
22079
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21881
22080
|
error_code: 'invalid_credentials';
|
|
22081
|
+
} | {
|
|
22082
|
+
/** Date and time at which Seam created the error. */
|
|
22083
|
+
created_at: string;
|
|
22084
|
+
message: string;
|
|
22085
|
+
is_connected_account_error?: boolean | undefined;
|
|
22086
|
+
is_bridge_error?: boolean | undefined;
|
|
22087
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22088
|
+
error_code: 'bridge_disconnected';
|
|
21882
22089
|
}>;
|
|
21883
22090
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
21884
22091
|
warnings: Array<{
|
|
@@ -22570,9 +22777,18 @@ export interface Routes {
|
|
|
22570
22777
|
/** Date and time at which Seam created the error. */
|
|
22571
22778
|
created_at: string;
|
|
22572
22779
|
message: string;
|
|
22573
|
-
is_connected_account_error
|
|
22780
|
+
is_connected_account_error?: boolean | undefined;
|
|
22781
|
+
is_bridge_error?: boolean | undefined;
|
|
22574
22782
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22575
22783
|
error_code: 'invalid_credentials';
|
|
22784
|
+
} | {
|
|
22785
|
+
/** Date and time at which Seam created the error. */
|
|
22786
|
+
created_at: string;
|
|
22787
|
+
message: string;
|
|
22788
|
+
is_connected_account_error?: boolean | undefined;
|
|
22789
|
+
is_bridge_error?: boolean | undefined;
|
|
22790
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22791
|
+
error_code: 'bridge_disconnected';
|
|
22576
22792
|
}>;
|
|
22577
22793
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
22578
22794
|
warnings: Array<{
|
|
@@ -25264,9 +25480,18 @@ export interface Routes {
|
|
|
25264
25480
|
/** Date and time at which Seam created the error. */
|
|
25265
25481
|
created_at: string;
|
|
25266
25482
|
message: string;
|
|
25267
|
-
is_connected_account_error
|
|
25483
|
+
is_connected_account_error?: boolean | undefined;
|
|
25484
|
+
is_bridge_error?: boolean | undefined;
|
|
25268
25485
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25269
25486
|
error_code: 'invalid_credentials';
|
|
25487
|
+
} | {
|
|
25488
|
+
/** Date and time at which Seam created the error. */
|
|
25489
|
+
created_at: string;
|
|
25490
|
+
message: string;
|
|
25491
|
+
is_connected_account_error?: boolean | undefined;
|
|
25492
|
+
is_bridge_error?: boolean | undefined;
|
|
25493
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25494
|
+
error_code: 'bridge_disconnected';
|
|
25270
25495
|
}>;
|
|
25271
25496
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
25272
25497
|
warnings: Array<{
|
|
@@ -25958,9 +26183,18 @@ export interface Routes {
|
|
|
25958
26183
|
/** Date and time at which Seam created the error. */
|
|
25959
26184
|
created_at: string;
|
|
25960
26185
|
message: string;
|
|
25961
|
-
is_connected_account_error
|
|
26186
|
+
is_connected_account_error?: boolean | undefined;
|
|
26187
|
+
is_bridge_error?: boolean | undefined;
|
|
25962
26188
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25963
26189
|
error_code: 'invalid_credentials';
|
|
26190
|
+
} | {
|
|
26191
|
+
/** Date and time at which Seam created the error. */
|
|
26192
|
+
created_at: string;
|
|
26193
|
+
message: string;
|
|
26194
|
+
is_connected_account_error?: boolean | undefined;
|
|
26195
|
+
is_bridge_error?: boolean | undefined;
|
|
26196
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26197
|
+
error_code: 'bridge_disconnected';
|
|
25964
26198
|
}>;
|
|
25965
26199
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
25966
26200
|
warnings: Array<{
|
|
@@ -31990,9 +32224,18 @@ export interface Routes {
|
|
|
31990
32224
|
/** Date and time at which Seam created the error. */
|
|
31991
32225
|
created_at: string;
|
|
31992
32226
|
message: string;
|
|
31993
|
-
is_connected_account_error
|
|
32227
|
+
is_connected_account_error?: boolean | undefined;
|
|
32228
|
+
is_bridge_error?: boolean | undefined;
|
|
31994
32229
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31995
32230
|
error_code: 'invalid_credentials';
|
|
32231
|
+
} | {
|
|
32232
|
+
/** Date and time at which Seam created the error. */
|
|
32233
|
+
created_at: string;
|
|
32234
|
+
message: string;
|
|
32235
|
+
is_connected_account_error?: boolean | undefined;
|
|
32236
|
+
is_bridge_error?: boolean | undefined;
|
|
32237
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32238
|
+
error_code: 'bridge_disconnected';
|
|
31996
32239
|
}>;
|
|
31997
32240
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
31998
32241
|
warnings: Array<{
|
|
@@ -34665,9 +34908,18 @@ export interface Routes {
|
|
|
34665
34908
|
/** Date and time at which Seam created the error. */
|
|
34666
34909
|
created_at: string;
|
|
34667
34910
|
message: string;
|
|
34668
|
-
is_connected_account_error
|
|
34911
|
+
is_connected_account_error?: boolean | undefined;
|
|
34912
|
+
is_bridge_error?: boolean | undefined;
|
|
34669
34913
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34670
34914
|
error_code: 'invalid_credentials';
|
|
34915
|
+
} | {
|
|
34916
|
+
/** Date and time at which Seam created the error. */
|
|
34917
|
+
created_at: string;
|
|
34918
|
+
message: string;
|
|
34919
|
+
is_connected_account_error?: boolean | undefined;
|
|
34920
|
+
is_bridge_error?: boolean | undefined;
|
|
34921
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34922
|
+
error_code: 'bridge_disconnected';
|
|
34671
34923
|
}>;
|
|
34672
34924
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
34673
34925
|
warnings: Array<{
|
|
@@ -35359,9 +35611,18 @@ export interface Routes {
|
|
|
35359
35611
|
/** Date and time at which Seam created the error. */
|
|
35360
35612
|
created_at: string;
|
|
35361
35613
|
message: string;
|
|
35362
|
-
is_connected_account_error
|
|
35614
|
+
is_connected_account_error?: boolean | undefined;
|
|
35615
|
+
is_bridge_error?: boolean | undefined;
|
|
35363
35616
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35364
35617
|
error_code: 'invalid_credentials';
|
|
35618
|
+
} | {
|
|
35619
|
+
/** Date and time at which Seam created the error. */
|
|
35620
|
+
created_at: string;
|
|
35621
|
+
message: string;
|
|
35622
|
+
is_connected_account_error?: boolean | undefined;
|
|
35623
|
+
is_bridge_error?: boolean | undefined;
|
|
35624
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35625
|
+
error_code: 'bridge_disconnected';
|
|
35365
35626
|
}>;
|
|
35366
35627
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
35367
35628
|
warnings: Array<{
|
|
@@ -39754,9 +40015,18 @@ export interface Routes {
|
|
|
39754
40015
|
/** Date and time at which Seam created the error. */
|
|
39755
40016
|
created_at: string;
|
|
39756
40017
|
message: string;
|
|
39757
|
-
is_connected_account_error
|
|
40018
|
+
is_connected_account_error?: boolean | undefined;
|
|
40019
|
+
is_bridge_error?: boolean | undefined;
|
|
39758
40020
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39759
40021
|
error_code: 'invalid_credentials';
|
|
40022
|
+
} | {
|
|
40023
|
+
/** Date and time at which Seam created the error. */
|
|
40024
|
+
created_at: string;
|
|
40025
|
+
message: string;
|
|
40026
|
+
is_connected_account_error?: boolean | undefined;
|
|
40027
|
+
is_bridge_error?: boolean | undefined;
|
|
40028
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40029
|
+
error_code: 'bridge_disconnected';
|
|
39760
40030
|
}>;
|
|
39761
40031
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
39762
40032
|
warnings: Array<{
|
|
@@ -40450,9 +40720,18 @@ export interface Routes {
|
|
|
40450
40720
|
/** Date and time at which Seam created the error. */
|
|
40451
40721
|
created_at: string;
|
|
40452
40722
|
message: string;
|
|
40453
|
-
is_connected_account_error
|
|
40723
|
+
is_connected_account_error?: boolean | undefined;
|
|
40724
|
+
is_bridge_error?: boolean | undefined;
|
|
40454
40725
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40455
40726
|
error_code: 'invalid_credentials';
|
|
40727
|
+
} | {
|
|
40728
|
+
/** Date and time at which Seam created the error. */
|
|
40729
|
+
created_at: string;
|
|
40730
|
+
message: string;
|
|
40731
|
+
is_connected_account_error?: boolean | undefined;
|
|
40732
|
+
is_bridge_error?: boolean | undefined;
|
|
40733
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40734
|
+
error_code: 'bridge_disconnected';
|
|
40456
40735
|
}>;
|
|
40457
40736
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
40458
40737
|
warnings: Array<{
|
|
@@ -40571,6 +40850,8 @@ export interface Routes {
|
|
|
40571
40850
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
40572
40851
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
40573
40852
|
acs_system_id: string;
|
|
40853
|
+
acs_users_count?: number | undefined;
|
|
40854
|
+
acs_access_group_count?: number | undefined;
|
|
40574
40855
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
40575
40856
|
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
|
|
40576
40857
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
@@ -40618,6 +40899,14 @@ export interface Routes {
|
|
|
40618
40899
|
message: string;
|
|
40619
40900
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40620
40901
|
error_code: 'seam_bridge_disconnected';
|
|
40902
|
+
} | {
|
|
40903
|
+
/** Date and time at which Seam created the error. */
|
|
40904
|
+
created_at: string;
|
|
40905
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40906
|
+
message: string;
|
|
40907
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
40908
|
+
error_code: 'bridge_disconnected';
|
|
40909
|
+
is_bridge_error?: boolean | undefined;
|
|
40621
40910
|
} | {
|
|
40622
40911
|
/** Date and time at which Seam created the error. */
|
|
40623
40912
|
created_at: string;
|