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"; /** * Function call item: A call to a function tool, including function name and JSON-string arguments. */ export type FunctionToolCall = { type: "function_call"; arguments: string; callId: string; name: string; id?: string | undefined; /** * 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; }; /** @internal */ export declare const FunctionToolCall$inboundSchema: z.ZodType; /** @internal */ export type FunctionToolCall$Outbound = { type: "function_call"; arguments: string; call_id: string; name: string; id?: string | undefined; status?: string | undefined; }; /** @internal */ export declare const FunctionToolCall$outboundSchema: z.ZodType; export declare function functionToolCallToJSON(functionToolCall: FunctionToolCall): string; export declare function functionToolCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=functiontoolcall.d.ts.map