@seamapi/types 1.157.2 → 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.
@@ -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: {