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 ListFilesQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type ListFilesQueryParamOrder = ClosedEnum; export declare const QueryParamPurpose: { readonly Assistants: "assistants"; readonly Batch: "batch"; readonly FineTune: "fine-tune"; readonly Vision: "vision"; readonly UserData: "user_data"; readonly Evals: "evals"; }; export type QueryParamPurpose = ClosedEnum; export type ListFilesRequest = { after?: string | undefined; limit?: number | undefined; order?: ListFilesQueryParamOrder | undefined; purpose?: QueryParamPurpose | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListFilesQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListFilesQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamPurpose$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamPurpose$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListFilesRequest$inboundSchema: z.ZodType; /** @internal */ export type ListFilesRequest$Outbound = { after?: string | undefined; limit: number; order: string; purpose?: string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListFilesRequest$outboundSchema: z.ZodType; export declare function listFilesRequestToJSON(listFilesRequest: ListFilesRequest): string; export declare function listFilesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listfiles.d.ts.map