@seamapi/types 1.161.0 → 1.162.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.
@@ -1243,6 +1243,8 @@ export interface Routes {
1243
1243
  image_alt_text: string;
1244
1244
  can_automate_enrollment?: boolean | undefined;
1245
1245
  can_create_acs_access_groups?: boolean | undefined;
1246
+ can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
1247
+ can_add_acs_users_to_acs_access_groups?: boolean | undefined;
1246
1248
  };
1247
1249
  };
1248
1250
  };
@@ -1280,6 +1282,8 @@ export interface Routes {
1280
1282
  image_alt_text: string;
1281
1283
  can_automate_enrollment?: boolean | undefined;
1282
1284
  can_create_acs_access_groups?: boolean | undefined;
1285
+ can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
1286
+ can_add_acs_users_to_acs_access_groups?: boolean | undefined;
1283
1287
  }>;
1284
1288
  };
1285
1289
  };
@@ -8611,6 +8615,8 @@ export interface Routes {
8611
8615
  image_alt_text: string;
8612
8616
  can_automate_enrollment?: boolean | undefined;
8613
8617
  can_create_acs_access_groups?: boolean | undefined;
8618
+ can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
8619
+ can_add_acs_users_to_acs_access_groups?: boolean | undefined;
8614
8620
  }>;
8615
8621
  };
8616
8622
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.161.0",
3
+ "version": "1.162.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -3,4 +3,6 @@ import { z } from 'zod'
3
3
  export const acs_system_capability_flags = z.object({
4
4
  can_automate_enrollment: z.boolean().optional(),
5
5
  can_create_acs_access_groups: z.boolean().optional(),
6
+ can_remove_acs_users_from_acs_access_groups: z.boolean().optional(),
7
+ can_add_acs_users_to_acs_access_groups: z.boolean().optional(),
6
8
  })
@@ -376,8 +376,10 @@ export default {
376
376
  acs_system: {
377
377
  properties: {
378
378
  acs_system_id: { format: 'uuid', type: 'string' },
379
+ can_add_acs_users_to_acs_access_groups: { type: 'boolean' },
379
380
  can_automate_enrollment: { type: 'boolean' },
380
381
  can_create_acs_access_groups: { type: 'boolean' },
382
+ can_remove_acs_users_from_acs_access_groups: { type: 'boolean' },
381
383
  connected_account_ids: { items: { type: 'string' }, type: 'array' },
382
384
  created_at: { format: 'date-time', type: 'string' },
383
385
  external_type: {
@@ -1389,6 +1389,8 @@ export interface Routes {
1389
1389
  image_alt_text: string
1390
1390
  can_automate_enrollment?: boolean | undefined
1391
1391
  can_create_acs_access_groups?: boolean | undefined
1392
+ can_remove_acs_users_from_acs_access_groups?: boolean | undefined
1393
+ can_add_acs_users_to_acs_access_groups?: boolean | undefined
1392
1394
  }
1393
1395
  }
1394
1396
  }
@@ -1448,6 +1450,8 @@ export interface Routes {
1448
1450
  image_alt_text: string
1449
1451
  can_automate_enrollment?: boolean | undefined
1450
1452
  can_create_acs_access_groups?: boolean | undefined
1453
+ can_remove_acs_users_from_acs_access_groups?: boolean | undefined
1454
+ can_add_acs_users_to_acs_access_groups?: boolean | undefined
1451
1455
  }>
1452
1456
  }
1453
1457
  }
@@ -11934,6 +11938,8 @@ export interface Routes {
11934
11938
  image_alt_text: string
11935
11939
  can_automate_enrollment?: boolean | undefined
11936
11940
  can_create_acs_access_groups?: boolean | undefined
11941
+ can_remove_acs_users_from_acs_access_groups?: boolean | undefined
11942
+ can_add_acs_users_to_acs_access_groups?: boolean | undefined
11937
11943
  }>
11938
11944
  }
11939
11945
  }