import { z } from 'zod'; /** * Zod schema for the GetRunResponse model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const getRunResponse: z.ZodLazy; id: z.ZodOptional; input: z.ZodOptional; status: z.ZodOptional; error: z.ZodOptional; nextStep: z.ZodOptional; startedAt: z.ZodOptional; state: z.ZodOptional; }, "strip", z.ZodTypeAny, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }>>>; workflowKey: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; } | undefined; createdAt?: string | undefined; id?: string | undefined; input?: any; workflowKey?: string | undefined; }, { status?: { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; } | undefined; createdAt?: string | undefined; id?: string | undefined; input?: any; workflowKey?: string | undefined; }>>; /** * * @typedef {GetRunResponse} getRunResponse * @property {string} * @property {string} * @property {any} * @property {GetRunResponseStatus} * @property {string} */ export type GetRunResponse = z.infer; /** * Zod schema for mapping API responses to the GetRunResponse application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const getRunResponseResponse: z.ZodLazy; id: z.ZodOptional; input: z.ZodOptional; status: z.ZodOptional; error: z.ZodOptional; next_step: z.ZodOptional; started_at: z.ZodOptional; state: z.ZodOptional; }, "strip", z.ZodTypeAny, { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; }, { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; }>, { completedAt: string | undefined; error: string | undefined; nextStep: number | undefined; startedAt: string | undefined; state: number | undefined; }, { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; }>>>; workflow_key: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: { completedAt: string | undefined; error: string | undefined; nextStep: number | undefined; startedAt: string | undefined; state: number | undefined; } | undefined; id?: string | undefined; created_at?: string | undefined; input?: any; workflow_key?: string | undefined; }, { status?: { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; } | undefined; id?: string | undefined; created_at?: string | undefined; input?: any; workflow_key?: string | undefined; }>, { createdAt: string | undefined; id: string | undefined; input: any; status: { completedAt: string | undefined; error: string | undefined; nextStep: number | undefined; startedAt: string | undefined; state: number | undefined; } | undefined; workflowKey: string | undefined; }, { status?: { state?: number | undefined; error?: string | undefined; completed_at?: string | undefined; next_step?: number | undefined; started_at?: string | undefined; } | undefined; id?: string | undefined; created_at?: string | undefined; input?: any; workflow_key?: string | undefined; }>>; /** * Zod schema for mapping the GetRunResponse application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const getRunResponseRequest: z.ZodLazy; id: z.ZodOptional; input: z.ZodOptional; status: z.ZodOptional; error: z.ZodOptional; nextStep: z.ZodOptional; startedAt: z.ZodOptional; state: z.ZodOptional; }, "strip", z.ZodTypeAny, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }>, { completed_at: string | undefined; error: string | undefined; next_step: number | undefined; started_at: string | undefined; state: number | undefined; }, { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; }>>>; workflowKey: z.ZodOptional; }, "strip", z.ZodTypeAny, { status?: { completed_at: string | undefined; error: string | undefined; next_step: number | undefined; started_at: string | undefined; state: number | undefined; } | undefined; createdAt?: string | undefined; id?: string | undefined; input?: any; workflowKey?: string | undefined; }, { status?: { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; } | undefined; createdAt?: string | undefined; id?: string | undefined; input?: any; workflowKey?: string | undefined; }>, { created_at: string | undefined; id: string | undefined; input: any; status: { completed_at: string | undefined; error: string | undefined; next_step: number | undefined; started_at: string | undefined; state: number | undefined; } | undefined; workflow_key: string | undefined; }, { status?: { state?: number | undefined; completedAt?: string | undefined; error?: string | undefined; nextStep?: number | undefined; startedAt?: string | undefined; } | undefined; createdAt?: string | undefined; id?: string | undefined; input?: any; workflowKey?: string | undefined; }>>; //# sourceMappingURL=get-run-response.d.ts.map