@seamapi/types 1.161.0 → 1.162.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.
- package/dist/connect.cjs +2 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js +2 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js.map +1 -1
- package/lib/seam/connect/models/acs/system.d.ts +6 -0
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs_system_capability_flags.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
package/dist/connect.d.cts
CHANGED
|
@@ -474,12 +474,18 @@ declare const _default: {
|
|
|
474
474
|
format: string;
|
|
475
475
|
type: string;
|
|
476
476
|
};
|
|
477
|
+
can_add_acs_users_to_acs_access_groups: {
|
|
478
|
+
type: string;
|
|
479
|
+
};
|
|
477
480
|
can_automate_enrollment: {
|
|
478
481
|
type: string;
|
|
479
482
|
};
|
|
480
483
|
can_create_acs_access_groups: {
|
|
481
484
|
type: string;
|
|
482
485
|
};
|
|
486
|
+
can_remove_acs_users_from_acs_access_groups: {
|
|
487
|
+
type: string;
|
|
488
|
+
};
|
|
483
489
|
connected_account_ids: {
|
|
484
490
|
items: {
|
|
485
491
|
type: string;
|
|
@@ -16999,6 +17005,8 @@ interface Routes {
|
|
|
16999
17005
|
image_alt_text: string;
|
|
17000
17006
|
can_automate_enrollment?: boolean | undefined;
|
|
17001
17007
|
can_create_acs_access_groups?: boolean | undefined;
|
|
17008
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
17009
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
17002
17010
|
};
|
|
17003
17011
|
};
|
|
17004
17012
|
};
|
|
@@ -17036,6 +17044,8 @@ interface Routes {
|
|
|
17036
17044
|
image_alt_text: string;
|
|
17037
17045
|
can_automate_enrollment?: boolean | undefined;
|
|
17038
17046
|
can_create_acs_access_groups?: boolean | undefined;
|
|
17047
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
17048
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
17039
17049
|
}>;
|
|
17040
17050
|
};
|
|
17041
17051
|
};
|
|
@@ -24367,6 +24377,8 @@ interface Routes {
|
|
|
24367
24377
|
image_alt_text: string;
|
|
24368
24378
|
can_automate_enrollment?: boolean | undefined;
|
|
24369
24379
|
can_create_acs_access_groups?: boolean | undefined;
|
|
24380
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
24381
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
24370
24382
|
}>;
|
|
24371
24383
|
};
|
|
24372
24384
|
};
|
|
@@ -2,10 +2,16 @@ 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
4
|
can_create_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
5
|
+
can_remove_acs_users_from_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
6
|
+
can_add_acs_users_to_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
5
7
|
}, "strip", z.ZodTypeAny, {
|
|
6
8
|
can_automate_enrollment?: boolean | undefined;
|
|
7
9
|
can_create_acs_access_groups?: boolean | undefined;
|
|
10
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
11
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
8
12
|
}, {
|
|
9
13
|
can_automate_enrollment?: boolean | undefined;
|
|
10
14
|
can_create_acs_access_groups?: boolean | undefined;
|
|
15
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
16
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
11
17
|
}>;
|
|
@@ -2,5 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export const acs_system_capability_flags = z.object({
|
|
3
3
|
can_automate_enrollment: z.boolean().optional(),
|
|
4
4
|
can_create_acs_access_groups: z.boolean().optional(),
|
|
5
|
+
can_remove_acs_users_from_acs_access_groups: z.boolean().optional(),
|
|
6
|
+
can_add_acs_users_to_acs_access_groups: z.boolean().optional(),
|
|
5
7
|
});
|
|
6
8
|
//# 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;IAC/C,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;
|
|
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;IACpD,2CAA2C,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACnE,sCAAsC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC/D,CAAC,CAAA"}
|
|
@@ -16,6 +16,8 @@ export declare const acs_system: z.ZodObject<{
|
|
|
16
16
|
image_alt_text: z.ZodString;
|
|
17
17
|
can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
18
18
|
can_create_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
19
|
+
can_remove_acs_users_from_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
20
|
+
can_add_acs_users_to_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
19
21
|
}, "strip", z.ZodTypeAny, {
|
|
20
22
|
name: string;
|
|
21
23
|
created_at: string;
|
|
@@ -30,6 +32,8 @@ export declare const acs_system: z.ZodObject<{
|
|
|
30
32
|
system_type_display_name?: string | undefined;
|
|
31
33
|
can_automate_enrollment?: boolean | undefined;
|
|
32
34
|
can_create_acs_access_groups?: boolean | undefined;
|
|
35
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
36
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
33
37
|
}, {
|
|
34
38
|
name: string;
|
|
35
39
|
created_at: string;
|
|
@@ -44,5 +48,7 @@ export declare const acs_system: z.ZodObject<{
|
|
|
44
48
|
system_type_display_name?: string | undefined;
|
|
45
49
|
can_automate_enrollment?: boolean | undefined;
|
|
46
50
|
can_create_acs_access_groups?: boolean | undefined;
|
|
51
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
52
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
47
53
|
}>;
|
|
48
54
|
export type AcsSystem = z.output<typeof acs_system>;
|
|
@@ -400,12 +400,18 @@ declare const _default: {
|
|
|
400
400
|
format: string;
|
|
401
401
|
type: string;
|
|
402
402
|
};
|
|
403
|
+
can_add_acs_users_to_acs_access_groups: {
|
|
404
|
+
type: string;
|
|
405
|
+
};
|
|
403
406
|
can_automate_enrollment: {
|
|
404
407
|
type: string;
|
|
405
408
|
};
|
|
406
409
|
can_create_acs_access_groups: {
|
|
407
410
|
type: string;
|
|
408
411
|
};
|
|
412
|
+
can_remove_acs_users_from_acs_access_groups: {
|
|
413
|
+
type: string;
|
|
414
|
+
};
|
|
409
415
|
connected_account_ids: {
|
|
410
416
|
items: {
|
|
411
417
|
type: string;
|
|
@@ -357,8 +357,10 @@ export default {
|
|
|
357
357
|
acs_system: {
|
|
358
358
|
properties: {
|
|
359
359
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
360
|
+
can_add_acs_users_to_acs_access_groups: { type: 'boolean' },
|
|
360
361
|
can_automate_enrollment: { type: 'boolean' },
|
|
361
362
|
can_create_acs_access_groups: { type: 'boolean' },
|
|
363
|
+
can_remove_acs_users_from_acs_access_groups: { type: 'boolean' },
|
|
362
364
|
connected_account_ids: { items: { type: 'string' }, type: 'array' },
|
|
363
365
|
created_at: { format: 'date-time', type: 'string' },
|
|
364
366
|
external_type: {
|