@seamapi/types 1.158.0 → 1.159.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.
@@ -1242,6 +1242,7 @@ export interface Routes {
1242
1242
  image_url: string;
1243
1243
  image_alt_text: string;
1244
1244
  can_automate_enrollment?: boolean | undefined;
1245
+ can_create_acs_access_groups?: boolean | undefined;
1245
1246
  };
1246
1247
  };
1247
1248
  };
@@ -1278,6 +1279,7 @@ export interface Routes {
1278
1279
  image_url: string;
1279
1280
  image_alt_text: string;
1280
1281
  can_automate_enrollment?: boolean | undefined;
1282
+ can_create_acs_access_groups?: boolean | undefined;
1281
1283
  }>;
1282
1284
  };
1283
1285
  };
@@ -8596,6 +8598,7 @@ export interface Routes {
8596
8598
  image_url: string;
8597
8599
  image_alt_text: string;
8598
8600
  can_automate_enrollment?: boolean | undefined;
8601
+ can_create_acs_access_groups?: boolean | undefined;
8599
8602
  }>;
8600
8603
  };
8601
8604
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.158.0",
3
+ "version": "1.159.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -2,4 +2,5 @@ import { z } from 'zod'
2
2
 
3
3
  export const acs_system_capability_flags = z.object({
4
4
  can_automate_enrollment: z.boolean().optional(),
5
+ can_create_acs_access_groups: z.boolean().optional(),
5
6
  })
@@ -377,6 +377,7 @@ export default {
377
377
  properties: {
378
378
  acs_system_id: { format: 'uuid', type: 'string' },
379
379
  can_automate_enrollment: { type: 'boolean' },
380
+ can_create_acs_access_groups: { type: 'boolean' },
380
381
  connected_account_ids: { items: { type: 'string' }, type: 'array' },
381
382
  created_at: { format: 'date-time', type: 'string' },
382
383
  external_type: {
@@ -1388,6 +1388,7 @@ export interface Routes {
1388
1388
  image_url: string
1389
1389
  image_alt_text: string
1390
1390
  can_automate_enrollment?: boolean | undefined
1391
+ can_create_acs_access_groups?: boolean | undefined
1391
1392
  }
1392
1393
  }
1393
1394
  }
@@ -1446,6 +1447,7 @@ export interface Routes {
1446
1447
  image_url: string
1447
1448
  image_alt_text: string
1448
1449
  can_automate_enrollment?: boolean | undefined
1450
+ can_create_acs_access_groups?: boolean | undefined
1449
1451
  }>
1450
1452
  }
1451
1453
  }
@@ -11919,6 +11921,7 @@ export interface Routes {
11919
11921
  image_url: string
11920
11922
  image_alt_text: string
11921
11923
  can_automate_enrollment?: boolean | undefined
11924
+ can_create_acs_access_groups?: boolean | undefined
11922
11925
  }>
11923
11926
  }
11924
11927
  }