@seamapi/types 1.373.3 → 1.374.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 CHANGED
@@ -2274,6 +2274,8 @@ var acs_system = zod.z.object({
2274
2274
  acs_system_id: zod.z.string().uuid().describe(
2275
2275
  "ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems)."
2276
2276
  ),
2277
+ acs_users_count: zod.z.number().optional(),
2278
+ acs_access_group_count: zod.z.number().optional(),
2277
2279
  external_type: acs_system_external_type.describe(
2278
2280
  "Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type."
2279
2281
  ).optional(),
@@ -5818,11 +5820,13 @@ var openapi_default = {
5818
5820
  acs_system: {
5819
5821
  description: "Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nWithin an `acs_system`, create [`acs_user`s](https://docs.seam.co/latest/api/acs/users#acs_user) and [`acs_credential`s](https://docs.seam.co/latest/api/acs/credentials#acs_credential) to grant access to the `acs_user`s.\n\nFor details about the resources associated with an access control system, see the [access control systems namespace](https://docs.seam.co/latest/api/acs).",
5820
5822
  properties: {
5823
+ acs_access_group_count: { format: "float", type: "number" },
5821
5824
  acs_system_id: {
5822
5825
  description: "ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems).",
5823
5826
  format: "uuid",
5824
5827
  type: "string"
5825
5828
  },
5829
+ acs_users_count: { format: "float", type: "number" },
5826
5830
  can_add_acs_users_to_acs_access_groups: {
5827
5831
  description: "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).",
5828
5832
  type: "boolean"