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 WakeAgentRunRequest = { agentId: string; runId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; wakeAgentRunRequest: components.WakeAgentRunRequest; }; /** @internal */ export declare const WakeAgentRunRequest$inboundSchema: z.ZodType; /** @internal */ export type WakeAgentRunRequest$Outbound = { agent_id: string; run_id: string; "X-On-Behalf-Of"?: string | undefined; WakeAgentRunRequest: components.WakeAgentRunRequest$Outbound; }; /** @internal */ export declare const WakeAgentRunRequest$outboundSchema: z.ZodType; export declare function wakeAgentRunRequestToJSON(wakeAgentRunRequest: WakeAgentRunRequest): string; export declare function wakeAgentRunRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wakeagentrun.d.ts.map