@appconda/sdk 1.0.683 → 1.0.686
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 +22 -0
- package/dist/modules/emploid/schema.js +25 -1
- package/dist/modules/emploid/service.d.ts +6 -0
- package/dist/modules/emploid/service.js +13 -1
- package/dist/modules/emploid/types.d.ts +13 -2
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/publish.sh +34 -2
- package/src/modules/emploid/schema.ts +29 -0
- package/src/modules/emploid/service.ts +26 -0
- package/src/modules/emploid/types.ts +15 -2
|
@@ -326,6 +326,28 @@ export declare const ChangeAgentflowProjectSchema: z.ZodObject<{
|
|
|
326
326
|
export declare const ListAgentFlowsSchema: z.ZodObject<{
|
|
327
327
|
tenantId: z.ZodString;
|
|
328
328
|
}, z.core.$strip>;
|
|
329
|
+
export declare const CreateDataModelAgentFlowSchema: z.ZodObject<{
|
|
330
|
+
tenantId: z.ZodString;
|
|
331
|
+
dataModelId: z.ZodString;
|
|
332
|
+
name: z.ZodString;
|
|
333
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
334
|
+
}, z.core.$strip>;
|
|
335
|
+
export declare const ListDataModelAgentFlowsSchema: z.ZodObject<{
|
|
336
|
+
tenantId: z.ZodString;
|
|
337
|
+
dataModelId: z.ZodString;
|
|
338
|
+
}, z.core.$strip>;
|
|
339
|
+
export declare const UpdateDataModelAgentFlowSchema: z.ZodObject<{
|
|
340
|
+
tenantId: z.ZodString;
|
|
341
|
+
dataModelId: z.ZodString;
|
|
342
|
+
agentFlowId: z.ZodString;
|
|
343
|
+
name: z.ZodString;
|
|
344
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
345
|
+
}, z.core.$strip>;
|
|
346
|
+
export declare const DeleteDataModelAgentFlowSchema: z.ZodObject<{
|
|
347
|
+
tenantId: z.ZodString;
|
|
348
|
+
dataModelId: z.ZodString;
|
|
349
|
+
agentFlowId: z.ZodString;
|
|
350
|
+
}, z.core.$strip>;
|
|
329
351
|
export declare const CreateAgentFlowFolderSchema: z.ZodObject<{
|
|
330
352
|
tenantId: z.ZodString;
|
|
331
353
|
name: z.ZodString;
|