@seamapi/types 1.158.0 → 1.160.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
  };
@@ -3367,6 +3369,7 @@ export interface Routes {
3367
3369
  event?: {
3368
3370
  event_id: string;
3369
3371
  device_id?: string | undefined;
3372
+ action_attempt_id?: string | undefined;
3370
3373
  event_type: string;
3371
3374
  workspace_id: string;
3372
3375
  created_at: string;
@@ -3397,6 +3400,7 @@ export interface Routes {
3397
3400
  events: Array<{
3398
3401
  event_id: string;
3399
3402
  device_id?: string | undefined;
3403
+ action_attempt_id?: string | undefined;
3400
3404
  event_type: string;
3401
3405
  workspace_id: string;
3402
3406
  created_at: string;
@@ -8596,6 +8600,7 @@ export interface Routes {
8596
8600
  image_url: string;
8597
8601
  image_alt_text: string;
8598
8602
  can_automate_enrollment?: boolean | undefined;
8603
+ can_create_acs_access_groups?: boolean | undefined;
8599
8604
  }>;
8600
8605
  };
8601
8606
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.158.0",
3
+ "version": "1.160.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: {
@@ -2078,6 +2079,7 @@ export default {
2078
2079
  },
2079
2080
  event: {
2080
2081
  properties: {
2082
+ action_attempt_id: { format: 'uuid', type: 'string' },
2081
2083
  created_at: { format: 'date-time', type: 'string' },
2082
2084
  device_id: { format: 'uuid', type: 'string' },
2083
2085
  event_id: { format: 'uuid', type: 'string' },
@@ -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
  }
@@ -4491,6 +4493,7 @@ export interface Routes {
4491
4493
  | {
4492
4494
  event_id: string
4493
4495
  device_id?: string | undefined
4496
+ action_attempt_id?: string | undefined
4494
4497
  event_type: string
4495
4498
  workspace_id: string
4496
4499
  created_at: string
@@ -4630,6 +4633,7 @@ export interface Routes {
4630
4633
  events: Array<{
4631
4634
  event_id: string
4632
4635
  device_id?: string | undefined
4636
+ action_attempt_id?: string | undefined
4633
4637
  event_type: string
4634
4638
  workspace_id: string
4635
4639
  created_at: string
@@ -11919,6 +11923,7 @@ export interface Routes {
11919
11923
  image_url: string
11920
11924
  image_alt_text: string
11921
11925
  can_automate_enrollment?: boolean | undefined
11926
+ can_create_acs_access_groups?: boolean | undefined
11922
11927
  }>
11923
11928
  }
11924
11929
  }