import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkflowControllerSyncRequest = { workflowId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; /** * Sync workflow details */ syncWorkflowDto: components.SyncWorkflowDto; }; export type WorkflowControllerSyncResponse = { headers: { [k: string]: Array; }; result: components.WorkflowResponseDto; }; /** @internal */ export type WorkflowControllerSyncRequest$Outbound = { workflowId: string; "idempotency-key"?: string | undefined; SyncWorkflowDto: components.SyncWorkflowDto$Outbound; }; /** @internal */ export declare const WorkflowControllerSyncRequest$outboundSchema: z.ZodType; export declare function workflowControllerSyncRequestToJSON(workflowControllerSyncRequest: WorkflowControllerSyncRequest): string; /** @internal */ export declare const WorkflowControllerSyncResponse$inboundSchema: z.ZodType; export declare function workflowControllerSyncResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowcontrollersync.d.ts.map