import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CodeRuntime } from "./coderuntime.js"; export type CodeRequest = { sessionId: string; sessionToken?: string | null | undefined; runtime?: CodeRuntime | undefined; code: string; cwd?: string | null | undefined; env?: { [k: string]: string; } | undefined; timeoutSeconds?: number | undefined; }; /** @internal */ export declare const CodeRequest$inboundSchema: z.ZodType; /** @internal */ export type CodeRequest$Outbound = { session_id: string; session_token?: string | null | undefined; runtime?: string | undefined; code: string; cwd?: string | null | undefined; env?: { [k: string]: string; } | undefined; timeout_seconds: number; }; /** @internal */ export declare const CodeRequest$outboundSchema: z.ZodType; export declare function codeRequestToJSON(codeRequest: CodeRequest): string; export declare function codeRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=coderequest.d.ts.map