import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; /** * Result of a one-shot run */ export type PostApiSandboxRunResponse = { /** * The sandbox the run happened in. Already gone unless `keep` was true. */ sandboxId: string; /** * Preset that was resolved — useful when the default was taken. */ preset: string; /** * The command's real exit code. Never synthesised. */ exitCode: number; stdout: string; stderr: string; timedOut: boolean; /** * Whether teardown was CONFIRMED. False with `keep` false means the release failed and the box may still exist — the run result is still valid. */ tornDown: boolean; }; /** @internal */ export declare const PostApiSandboxRunResponse$inboundSchema: z.ZodMiniType; export declare function postApiSandboxRunResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=post-api-sandbox-run.d.ts.map