import { z } from 'zod'; /** * List Flows Input Schema * Query parameters for listing workflows */ export declare const ListFlowsInputSchema: z.ZodObject<{ _page: z.ZodOptional; _limit: z.ZodOptional; _sortBy: z.ZodOptional; _order: z.ZodOptional; _expand: z.ZodOptional; _select: z.ZodOptional>; name: z.ZodOptional; description: z.ZodOptional; createdAt: z.ZodOptional; updatedAt: z.ZodOptional; lastRun: z.ZodOptional; status: z.ZodOptional; scheduleType: z.ZodOptional; creator: z.ZodOptional; lastEditor: z.ZodOptional; }, z.core.$strip>; /** * List Flows Output Schema * Response structure for listing workflows */ export declare const ListFlowsOutputSchema: z.ZodObject<{}, z.core.$loose>; /** * Get Flow Input Schema * Path and query parameters for getting a specific workflow */ export declare const GetFlowInputSchema: z.ZodObject<{ _expand: z.ZodOptional; _select: z.ZodOptional>; flowId: z.ZodString; }, z.core.$strip>; /** * Get Flow Output Schema * Response structure for getting a specific workflow */ export declare const GetFlowOutputSchema: z.ZodObject<{}, z.core.$loose>; /** * Update Flow Status Input Schema * Path and body parameters for enabling/disabling a workflow */ export declare const UpdateFlowStatusInputSchema: z.ZodObject<{ flowId: z.ZodString; isActive: z.ZodBoolean; }, z.core.$strip>; /** * Update Flow Status Output Schema * Response structure for updating workflow status */ export declare const UpdateFlowStatusOutputSchema: z.ZodObject<{}, z.core.$loose>; /** * Delete Flow Input Schema * Path parameter for deleting a workflow */ export declare const DeleteFlowInputSchema: z.ZodObject<{ flowId: z.ZodString; }, z.core.$strip>; /** * Delete Flow Output Schema * Response structure for deleting a workflow */ export declare const DeleteFlowOutputSchema: z.ZodObject<{}, z.core.$loose>; /** * List Flow Runs Input Schema * Path and query parameters for listing workflow runs */ export declare const ListFlowRunsInputSchema: z.ZodObject<{ flowId: z.ZodString; _limit: z.ZodOptional; _select: z.ZodOptional>; status: z.ZodOptional; }, z.core.$strip>; /** * List Flow Runs Output Schema * Response structure for listing workflow runs */ export declare const ListFlowRunsOutputSchema: z.ZodObject<{}, z.core.$loose>; export type ListFlowsInput = z.infer; export type ListFlowsOutput = z.infer; export type GetFlowInput = z.infer; export type GetFlowOutput = z.infer; export type UpdateFlowStatusInput = z.infer; export type UpdateFlowStatusOutput = z.infer; export type DeleteFlowInput = z.infer; export type DeleteFlowOutput = z.infer; export type ListFlowRunsInput = z.infer; export type ListFlowRunsOutput = z.infer;