@appconda/sdk 1.0.683 → 1.0.685

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.
@@ -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;