@appconda/sdk 1.0.620 → 1.0.623
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/modules/emploid/schema.d.ts +8 -0
- package/dist/modules/emploid/schema.js +9 -1
- package/dist/modules/emploid/service.d.ts +4 -2
- package/dist/modules/emploid/service.js +7 -1
- package/dist/modules/emploid/types.d.ts +4 -0
- package/dist/modules/emploid/types.js +1 -1
- package/dist/modules/rbac/index.d.ts +3 -0
- package/dist/modules/rbac/index.js +4 -0
- package/dist/modules/rbac/schema.d.ts +64 -0
- package/dist/modules/rbac/schema.js +55 -0
- package/dist/modules/rbac/service.d.ts +45 -0
- package/dist/modules/rbac/service.js +67 -0
- package/dist/modules/rbac/types.d.ts +55 -0
- package/dist/modules/rbac/types.js +2 -0
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +10 -0
- package/src/modules/emploid/service.ts +10 -2
- package/src/modules/emploid/types.ts +5 -0
|
@@ -196,6 +196,14 @@ export declare const UpdateAgentFlowSchema: z.ZodObject<{
|
|
|
196
196
|
name: z.ZodOptional<z.ZodString>;
|
|
197
197
|
description: z.ZodOptional<z.ZodString>;
|
|
198
198
|
}, z.core.$strip>;
|
|
199
|
+
export declare const DeleteAgentFlowSchema: z.ZodObject<{
|
|
200
|
+
id: z.ZodString;
|
|
201
|
+
}, z.core.$strip>;
|
|
202
|
+
export declare const DuplicateAgentFlowSchema: z.ZodObject<{
|
|
203
|
+
id: z.ZodString;
|
|
204
|
+
name: z.ZodString;
|
|
205
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
206
|
+
}, z.core.$strip>;
|
|
199
207
|
export declare const ChangeAgentflowProjectSchema: z.ZodObject<{
|
|
200
208
|
id: z.ZodString;
|
|
201
209
|
projectId: z.ZodString;
|