import * as z from "zod/v3"; export type PatchWorkflowDto = { /** * Activate or deactivate the workflow */ active?: boolean | undefined; /** * New name for the workflow */ name?: string | undefined; /** * Updated description of the workflow */ description?: string | undefined; /** * Tags associated with the workflow */ tags?: Array | undefined; /** * The payload JSON Schema for the workflow */ payloadSchema?: { [k: string]: any; } | null | undefined; /** * Enable or disable payload schema validation */ validatePayload?: boolean | undefined; /** * Enable or disable translations for this workflow */ isTranslationEnabled?: boolean | undefined; }; /** @internal */ export type PatchWorkflowDto$Outbound = { active?: boolean | undefined; name?: string | undefined; description?: string | undefined; tags?: Array | undefined; payloadSchema?: { [k: string]: any; } | null | undefined; validatePayload?: boolean | undefined; isTranslationEnabled?: boolean | undefined; }; /** @internal */ export declare const PatchWorkflowDto$outboundSchema: z.ZodType; export declare function patchWorkflowDtoToJSON(patchWorkflowDto: PatchWorkflowDto): string; //# sourceMappingURL=patchworkflowdto.d.ts.map