@seamapi/types 1.131.0 → 1.132.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.
@@ -1199,6 +1199,7 @@ export interface Routes {
1199
1199
  connected_account_ids: string[];
1200
1200
  image_url: string;
1201
1201
  image_alt_text: string;
1202
+ can_automate_enrollment?: boolean | undefined;
1202
1203
  };
1203
1204
  };
1204
1205
  };
@@ -1226,6 +1227,7 @@ export interface Routes {
1226
1227
  connected_account_ids: string[];
1227
1228
  image_url: string;
1228
1229
  image_alt_text: string;
1230
+ can_automate_enrollment?: boolean | undefined;
1229
1231
  }>;
1230
1232
  };
1231
1233
  };
@@ -7646,6 +7648,7 @@ export interface Routes {
7646
7648
  connected_account_ids: string[];
7647
7649
  image_url: string;
7648
7650
  image_alt_text: string;
7651
+ can_automate_enrollment?: boolean | undefined;
7649
7652
  }>;
7650
7653
  };
7651
7654
  };
@@ -0,0 +1,8 @@
1
+ import { z } from 'zod';
2
+ export declare const acs_system_capability_flags: z.ZodObject<{
3
+ can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
4
+ }, "strip", z.ZodTypeAny, {
5
+ can_automate_enrollment?: boolean | undefined;
6
+ }, {
7
+ can_automate_enrollment?: boolean | undefined;
8
+ }>;
@@ -0,0 +1,5 @@
1
+ import { z } from 'zod';
2
+ export const acs_system_capability_flags = z.object({
3
+ can_automate_enrollment: z.boolean().optional(),
4
+ });
5
+ //# sourceMappingURL=acs_system_capability_flags.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"acs_system_capability_flags.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/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,4 +1,5 @@
1
1
  export * from './access_group.js';
2
+ export * from './acs_system_capability_flags.js';
2
3
  export * from './credential.js';
3
4
  export * from './credential_pool.js';
4
5
  export * from './credential_provisioning_automation.js';
@@ -1,4 +1,5 @@
1
1
  export * from './access_group.js';
2
+ export * from './acs_system_capability_flags.js';
2
3
  export * from './credential.js';
3
4
  export * from './credential_pool.js';
4
5
  export * from './credential_provisioning_automation.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,sBAAsB,CAAA;AACpC,cAAc,yCAAyC,CAAA;AACvD,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,kCAAkC,CAAA;AAChD,cAAc,iBAAiB,CAAA;AAC/B,cAAc,sBAAsB,CAAA;AACpC,cAAc,yCAAyC,CAAA;AACvD,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA"}
@@ -2,17 +2,18 @@ import { z } from 'zod';
2
2
  export declare const acs_system_external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service"]>;
3
3
  export type AcsSystemExternalType = z.infer<typeof acs_system_external_type>;
4
4
  export declare const acs_system: z.ZodObject<{
5
+ name: z.ZodString;
6
+ workspace_id: z.ZodString;
7
+ created_at: z.ZodString;
5
8
  acs_system_id: z.ZodString;
6
9
  external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service"]>;
7
10
  external_type_display_name: z.ZodString;
8
11
  system_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service"]>;
9
12
  system_type_display_name: z.ZodString;
10
- name: z.ZodString;
11
- created_at: z.ZodString;
12
- workspace_id: z.ZodString;
13
13
  connected_account_ids: z.ZodArray<z.ZodString, "many">;
14
14
  image_url: z.ZodString;
15
15
  image_alt_text: z.ZodString;
16
+ can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
16
17
  }, "strip", z.ZodTypeAny, {
17
18
  name: string;
18
19
  workspace_id: string;
@@ -25,6 +26,7 @@ export declare const acs_system: z.ZodObject<{
25
26
  connected_account_ids: string[];
26
27
  image_url: string;
27
28
  image_alt_text: string;
29
+ can_automate_enrollment?: boolean | undefined;
28
30
  }, {
29
31
  name: string;
30
32
  workspace_id: string;
@@ -37,5 +39,6 @@ export declare const acs_system: z.ZodObject<{
37
39
  connected_account_ids: string[];
38
40
  image_url: string;
39
41
  image_alt_text: string;
42
+ can_automate_enrollment?: boolean | undefined;
40
43
  }>;
41
44
  export type AcsSystem = z.output<typeof acs_system>;
@@ -1,4 +1,5 @@
1
1
  import { z } from 'zod';
2
+ import { acs_system_capability_flags } from './acs_system_capability_flags.js';
2
3
  // If changed, update seam.acs_system.external_type generated column
3
4
  export const acs_system_external_type = z.enum([
4
5
  'pti_site',
@@ -9,7 +10,8 @@ export const acs_system_external_type = z.enum([
9
10
  'visionline_system',
10
11
  'assa_abloy_credential_service',
11
12
  ]);
12
- export const acs_system = z.object({
13
+ export const acs_system = z
14
+ .object({
13
15
  acs_system_id: z.string().uuid(),
14
16
  external_type: acs_system_external_type,
15
17
  external_type_display_name: z.string(),
@@ -23,5 +25,6 @@ export const acs_system = z.object({
23
25
  connected_account_ids: z.array(z.string()),
24
26
  image_url: z.string(),
25
27
  image_alt_text: z.string(),
26
- });
28
+ })
29
+ .merge(acs_system_capability_flags);
27
30
  //# sourceMappingURL=system.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,oEAAoE;AACpE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,eAAe;IACf,qCAAqC;IACrC,mBAAmB;IACnB,+BAA+B;CAChC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC1C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;CAC3B,CAAC,CAAA"}
1
+ {"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAA;AAE9E,oEAAoE;AACpE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,eAAe;IACf,qCAAqC;IACrC,mBAAmB;IACnB,+BAA+B;CAChC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC;KACxB,MAAM,CAAC;IACN,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC1C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;CAC3B,CAAC;KACD,KAAK,CAAC,2BAA2B,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.131.0",
3
+ "version": "1.132.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -185,6 +185,7 @@ export default {
185
185
  acs_system: {
186
186
  properties: {
187
187
  acs_system_id: { format: 'uuid', type: 'string' },
188
+ can_automate_enrollment: { type: 'boolean' },
188
189
  connected_account_ids: { items: { type: 'string' }, type: 'array' },
189
190
  created_at: { format: 'date-time', type: 'string' },
190
191
  external_type: {
@@ -1336,6 +1336,7 @@ export interface Routes {
1336
1336
  connected_account_ids: string[]
1337
1337
  image_url: string
1338
1338
  image_alt_text: string
1339
+ can_automate_enrollment?: boolean | undefined
1339
1340
  }
1340
1341
  }
1341
1342
  }
@@ -1377,6 +1378,7 @@ export interface Routes {
1377
1378
  connected_account_ids: string[]
1378
1379
  image_url: string
1379
1380
  image_alt_text: string
1381
+ can_automate_enrollment?: boolean | undefined
1380
1382
  }>
1381
1383
  }
1382
1384
  }
@@ -10524,6 +10526,7 @@ export interface Routes {
10524
10526
  connected_account_ids: string[]
10525
10527
  image_url: string
10526
10528
  image_alt_text: string
10529
+ can_automate_enrollment?: boolean | undefined
10527
10530
  }>
10528
10531
  }
10529
10532
  }
@@ -0,0 +1,5 @@
1
+ import { z } from 'zod'
2
+
3
+ export const acs_system_capability_flags = z.object({
4
+ can_automate_enrollment: z.boolean().optional(),
5
+ })
@@ -1,4 +1,5 @@
1
1
  export * from './access_group.js'
2
+ export * from './acs_system_capability_flags.js'
2
3
  export * from './credential.js'
3
4
  export * from './credential_pool.js'
4
5
  export * from './credential_provisioning_automation.js'
@@ -1,5 +1,7 @@
1
1
  import { z } from 'zod'
2
2
 
3
+ import { acs_system_capability_flags } from './acs_system_capability_flags.js'
4
+
3
5
  // If changed, update seam.acs_system.external_type generated column
4
6
  export const acs_system_external_type = z.enum([
5
7
  'pti_site',
@@ -13,22 +15,24 @@ export const acs_system_external_type = z.enum([
13
15
 
14
16
  export type AcsSystemExternalType = z.infer<typeof acs_system_external_type>
15
17
 
16
- export const acs_system = z.object({
17
- acs_system_id: z.string().uuid(),
18
- external_type: acs_system_external_type,
19
- external_type_display_name: z.string(),
20
- system_type: acs_system_external_type.describe(
21
- 'deprecated: use external_type',
22
- ),
23
- system_type_display_name: z
24
- .string()
25
- .describe('deprecated: use external_type_display_name'),
26
- name: z.string(),
27
- created_at: z.string().datetime(),
28
- workspace_id: z.string().uuid(),
29
- connected_account_ids: z.array(z.string()),
30
- image_url: z.string(),
31
- image_alt_text: z.string(),
32
- })
18
+ export const acs_system = z
19
+ .object({
20
+ acs_system_id: z.string().uuid(),
21
+ external_type: acs_system_external_type,
22
+ external_type_display_name: z.string(),
23
+ system_type: acs_system_external_type.describe(
24
+ 'deprecated: use external_type',
25
+ ),
26
+ system_type_display_name: z
27
+ .string()
28
+ .describe('deprecated: use external_type_display_name'),
29
+ name: z.string(),
30
+ created_at: z.string().datetime(),
31
+ workspace_id: z.string().uuid(),
32
+ connected_account_ids: z.array(z.string()),
33
+ image_url: z.string(),
34
+ image_alt_text: z.string(),
35
+ })
36
+ .merge(acs_system_capability_flags)
33
37
 
34
38
  export type AcsSystem = z.output<typeof acs_system>