import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Status } from "./status.js"; /** * Local shell call output item: The captured output payload returned by a local-shell tool call. */ export type LocalShellCallOutputWithId = { type: "local_shell_call_output"; /** * The unique ID of the message. */ id: string; output: string; /** * The processing status of an individual item. 'in_progress' means currently processing, 'completed' means finished successfully, 'incomplete' means processing stopped before completion. */ status?: Status | undefined; /** * The ID of the response that created this item, if any. */ responseId?: string | null | undefined; /** * Metadata from the response that created this item, if any. */ metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const LocalShellCallOutputWithId$inboundSchema: z.ZodType; /** @internal */ export type LocalShellCallOutputWithId$Outbound = { type: "local_shell_call_output"; id: string; output: string; status?: string | undefined; response_id?: string | null | undefined; metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const LocalShellCallOutputWithId$outboundSchema: z.ZodType; export declare function localShellCallOutputWithIdToJSON(localShellCallOutputWithId: LocalShellCallOutputWithId): string; export declare function localShellCallOutputWithIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=localshellcalloutputwithid.d.ts.map