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"; export declare const QueryParamInclude: { readonly WebSearchCallActionSources: "web_search_call.action.sources"; readonly CodeInterpreterCallOutputs: "code_interpreter_call.outputs"; readonly ComputerCallOutputOutputImageUrl: "computer_call_output.output.image_url"; readonly FileSearchCallResults: "file_search_call.results"; readonly MessageInputImageImageUrl: "message.input_image.image_url"; readonly MessageOutputTextLogprobs: "message.output_text.logprobs"; readonly ReasoningEncryptedContent: "reasoning.encrypted_content"; }; export type QueryParamInclude = ClosedEnum; /** * The order to return the input items in. 'asc' returns oldest items first, 'desc' returns newest items first. Defaults to 'desc' (newest first). */ export declare const ListInputItemsQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * The order to return the input items in. 'asc' returns oldest items first, 'desc' returns newest items first. Defaults to 'desc' (newest first). */ export type ListInputItemsQueryParamOrder = ClosedEnum; export type ListInputItemsRequest = { responseId: string; after?: string | undefined; include?: Array | undefined; limit?: number | undefined; /** * The order to return the input items in. 'asc' returns oldest items first, 'desc' returns newest items first. Defaults to 'desc' (newest first). */ order?: ListInputItemsQueryParamOrder | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const QueryParamInclude$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamInclude$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListInputItemsQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListInputItemsQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListInputItemsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListInputItemsRequest$Outbound = { response_id: string; after?: string | undefined; include?: Array | undefined; limit: number; order?: string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListInputItemsRequest$outboundSchema: z.ZodType; export declare function listInputItemsRequestToJSON(listInputItemsRequest: ListInputItemsRequest): string; export declare function listInputItemsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listinputitems.d.ts.map