import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LocalShellAction, LocalShellAction$Outbound } from "./localshellaction.js"; /** * Local shell call item: A local-shell execution request with command details and execution status. */ export type LocalShellCallWithId = { type: "local_shell_call"; /** * The unique ID of the message. */ id: string; callId: string; action: LocalShellAction; status: string; /** * 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 LocalShellCallWithId$inboundSchema: z.ZodType; /** @internal */ export type LocalShellCallWithId$Outbound = { type: "local_shell_call"; id: string; call_id: string; action: LocalShellAction$Outbound; status: string; response_id?: string | null | undefined; metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const LocalShellCallWithId$outboundSchema: z.ZodType; export declare function localShellCallWithIdToJSON(localShellCallWithId: LocalShellCallWithId): string; export declare function localShellCallWithIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=localshellcallwithid.d.ts.map