import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ShellCallAction, ShellCallAction$Outbound } from "./shellcallaction.js"; export declare const ShellCallWithIdStatus: { readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Incomplete: "incomplete"; }; export type ShellCallWithIdStatus = ClosedEnum; /** * Shell call item: A hosted-container shell execution request with a command and status. */ export type ShellCallWithId = { type: "shell_call"; /** * The unique ID of the message. */ id: string; callId: string; action: ShellCallAction; status: ShellCallWithIdStatus; /** * 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 ShellCallWithIdStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ShellCallWithIdStatus$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ShellCallWithId$inboundSchema: z.ZodType; /** @internal */ export type ShellCallWithId$Outbound = { type: "shell_call"; id: string; call_id: string; action: ShellCallAction$Outbound; status: string; response_id?: string | null | undefined; metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const ShellCallWithId$outboundSchema: z.ZodType; export declare function shellCallWithIdToJSON(shellCallWithId: ShellCallWithId): string; export declare function shellCallWithIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shellcallwithid.d.ts.map