@seamapi/types 1.375.0 → 1.375.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +3 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -8
- package/lib/seam/connect/models/acs/acs-system.d.ts +3 -3
- package/lib/seam/connect/models/acs/acs-system.js +1 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -1
- package/lib/seam/connect/openapi.js +2 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -2
- package/src/lib/seam/connect/route-types.ts +4 -4
|
@@ -11302,7 +11302,7 @@ export interface Routes {
|
|
|
11302
11302
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
11303
11303
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11304
11304
|
acs_system_id: string;
|
|
11305
|
-
|
|
11305
|
+
acs_user_count?: number | undefined;
|
|
11306
11306
|
acs_access_group_count?: number | undefined;
|
|
11307
11307
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11308
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;
|
|
@@ -11441,7 +11441,7 @@ export interface Routes {
|
|
|
11441
11441
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
11442
11442
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11443
11443
|
acs_system_id: string;
|
|
11444
|
-
|
|
11444
|
+
acs_user_count?: number | undefined;
|
|
11445
11445
|
acs_access_group_count?: number | undefined;
|
|
11446
11446
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11447
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;
|
|
@@ -11580,7 +11580,7 @@ export interface Routes {
|
|
|
11580
11580
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
11581
11581
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
11582
11582
|
acs_system_id: string;
|
|
11583
|
-
|
|
11583
|
+
acs_user_count?: number | undefined;
|
|
11584
11584
|
acs_access_group_count?: number | undefined;
|
|
11585
11585
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
11586
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;
|
|
@@ -40850,7 +40850,7 @@ export interface Routes {
|
|
|
40850
40850
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
40851
40851
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
40852
40852
|
acs_system_id: string;
|
|
40853
|
-
|
|
40853
|
+
acs_user_count?: number | undefined;
|
|
40854
40854
|
acs_access_group_count?: number | undefined;
|
|
40855
40855
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
40856
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;
|
package/package.json
CHANGED
|
@@ -245,7 +245,7 @@ export const acs_system = z
|
|
|
245
245
|
.describe(
|
|
246
246
|
'ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
247
247
|
),
|
|
248
|
-
|
|
248
|
+
acs_user_count: z.number().optional(),
|
|
249
249
|
acs_access_group_count: z.number().optional(),
|
|
250
250
|
external_type: acs_system_external_type
|
|
251
251
|
.describe(
|
|
@@ -1825,7 +1825,7 @@ export default {
|
|
|
1825
1825
|
format: 'uuid',
|
|
1826
1826
|
type: 'string',
|
|
1827
1827
|
},
|
|
1828
|
-
|
|
1828
|
+
acs_user_count: { format: 'float', type: 'number' },
|
|
1829
1829
|
can_add_acs_users_to_acs_access_groups: {
|
|
1830
1830
|
description:
|
|
1831
1831
|
'Indicates whether the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) supports [adding users to access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#add-an-acs-user-to-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems).',
|
|
@@ -20325,7 +20325,7 @@ export default {
|
|
|
20325
20325
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
20326
20326
|
post: {
|
|
20327
20327
|
description:
|
|
20328
|
-
'Returns a list of all credential manager ACS systems that are compatible with a specified
|
|
20328
|
+
'Returns a list of all credential manager ACS systems that are compatible with a specified [access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nSpecify the ACS system for which you want to retrieve all compatible credential manager ACS systems by including the corresponding `acs_system_id` in the request body.',
|
|
20329
20329
|
operationId: 'acsSystemsListCompatibleCredentialManagerAcsSystemsPost',
|
|
20330
20330
|
requestBody: {
|
|
20331
20331
|
content: {
|
|
@@ -13240,7 +13240,7 @@ export interface Routes {
|
|
|
13240
13240
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13241
13241
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13242
13242
|
acs_system_id: string
|
|
13243
|
-
|
|
13243
|
+
acs_user_count?: number | undefined
|
|
13244
13244
|
acs_access_group_count?: number | undefined
|
|
13245
13245
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13246
13246
|
external_type?:
|
|
@@ -13424,7 +13424,7 @@ export interface Routes {
|
|
|
13424
13424
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13425
13425
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13426
13426
|
acs_system_id: string
|
|
13427
|
-
|
|
13427
|
+
acs_user_count?: number | undefined
|
|
13428
13428
|
acs_access_group_count?: number | undefined
|
|
13429
13429
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13430
13430
|
external_type?:
|
|
@@ -13608,7 +13608,7 @@ export interface Routes {
|
|
|
13608
13608
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
13609
13609
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
13610
13610
|
acs_system_id: string
|
|
13611
|
-
|
|
13611
|
+
acs_user_count?: number | undefined
|
|
13612
13612
|
acs_access_group_count?: number | undefined
|
|
13613
13613
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
13614
13614
|
external_type?:
|
|
@@ -49598,7 +49598,7 @@ export interface Routes {
|
|
|
49598
49598
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
49599
49599
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
49600
49600
|
acs_system_id: string
|
|
49601
|
-
|
|
49601
|
+
acs_user_count?: number | undefined
|
|
49602
49602
|
acs_access_group_count?: number | undefined
|
|
49603
49603
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
49604
49604
|
external_type?:
|