@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.
@@ -477,6 +477,9 @@ declare const _default: {
477
477
  can_automate_enrollment: {
478
478
  type: string;
479
479
  };
480
+ can_create_acs_access_groups: {
481
+ type: string;
482
+ };
480
483
  connected_account_ids: {
481
484
  items: {
482
485
  type: string;
@@ -16988,6 +16991,7 @@ interface Routes {
16988
16991
  image_url: string;
16989
16992
  image_alt_text: string;
16990
16993
  can_automate_enrollment?: boolean | undefined;
16994
+ can_create_acs_access_groups?: boolean | undefined;
16991
16995
  };
16992
16996
  };
16993
16997
  };
@@ -17024,6 +17028,7 @@ interface Routes {
17024
17028
  image_url: string;
17025
17029
  image_alt_text: string;
17026
17030
  can_automate_enrollment?: boolean | undefined;
17031
+ can_create_acs_access_groups?: boolean | undefined;
17027
17032
  }>;
17028
17033
  };
17029
17034
  };
@@ -24342,6 +24347,7 @@ interface Routes {
24342
24347
  image_url: string;
24343
24348
  image_alt_text: string;
24344
24349
  can_automate_enrollment?: boolean | undefined;
24350
+ can_create_acs_access_groups?: boolean | undefined;
24345
24351
  }>;
24346
24352
  };
24347
24353
  };
@@ -1,8 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  export declare const acs_system_capability_flags: z.ZodObject<{
3
3
  can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
4
+ can_create_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
4
5
  }, "strip", z.ZodTypeAny, {
5
6
  can_automate_enrollment?: boolean | undefined;
7
+ can_create_acs_access_groups?: boolean | undefined;
6
8
  }, {
7
9
  can_automate_enrollment?: boolean | undefined;
10
+ can_create_acs_access_groups?: boolean | undefined;
8
11
  }>;
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export const acs_system_capability_flags = z.object({
3
3
  can_automate_enrollment: z.boolean().optional(),
4
+ can_create_acs_access_groups: z.boolean().optional(),
4
5
  });
5
6
  //# sourceMappingURL=acs_system_capability_flags.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"acs_system_capability_flags.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs_system_capability_flags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAChD,CAAC,CAAA"}
1
+ {"version":3,"file":"acs_system_capability_flags.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs_system_capability_flags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/C,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACrD,CAAC,CAAA"}
@@ -15,6 +15,7 @@ export declare const acs_system: z.ZodObject<{
15
15
  image_url: z.ZodString;
16
16
  image_alt_text: z.ZodString;
17
17
  can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
18
+ can_create_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
18
19
  }, "strip", z.ZodTypeAny, {
19
20
  name: string;
20
21
  created_at: string;
@@ -28,6 +29,7 @@ export declare const acs_system: z.ZodObject<{
28
29
  system_type?: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "assa_abloy_credential_service" | "latch_building" | undefined;
29
30
  system_type_display_name?: string | undefined;
30
31
  can_automate_enrollment?: boolean | undefined;
32
+ can_create_acs_access_groups?: boolean | undefined;
31
33
  }, {
32
34
  name: string;
33
35
  created_at: string;
@@ -41,5 +43,6 @@ export declare const acs_system: z.ZodObject<{
41
43
  system_type?: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "assa_abloy_credential_service" | "latch_building" | undefined;
42
44
  system_type_display_name?: string | undefined;
43
45
  can_automate_enrollment?: boolean | undefined;
46
+ can_create_acs_access_groups?: boolean | undefined;
44
47
  }>;
45
48
  export type AcsSystem = z.output<typeof acs_system>;
@@ -403,6 +403,9 @@ declare const _default: {
403
403
  can_automate_enrollment: {
404
404
  type: string;
405
405
  };
406
+ can_create_acs_access_groups: {
407
+ type: string;
408
+ };
406
409
  connected_account_ids: {
407
410
  items: {
408
411
  type: string;
@@ -358,6 +358,7 @@ export default {
358
358
  properties: {
359
359
  acs_system_id: { format: 'uuid', type: 'string' },
360
360
  can_automate_enrollment: { type: 'boolean' },
361
+ can_create_acs_access_groups: { type: 'boolean' },
361
362
  connected_account_ids: { items: { type: 'string' }, type: 'array' },
362
363
  created_at: { format: 'date-time', type: 'string' },
363
364
  external_type: {