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"; /** * Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. */ export declare const ListVectorStoreFilesQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. */ export type ListVectorStoreFilesQueryParamOrder = ClosedEnum; /** * Filter by file status. One of in_progress, completed, failed, cancelled. */ export declare const Filter: { readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Failed: "failed"; readonly Cancelled: "cancelled"; }; /** * Filter by file status. One of in_progress, completed, failed, cancelled. */ export type Filter = ClosedEnum; export type ListVectorStoreFilesRequest = { vectorStoreId: string; limit?: number | undefined; /** * Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. */ order?: ListVectorStoreFilesQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; /** * Filter by file status. One of in_progress, completed, failed, cancelled. */ filter?: Filter | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListVectorStoreFilesQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListVectorStoreFilesQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Filter$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Filter$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListVectorStoreFilesRequest$inboundSchema: z.ZodType; /** @internal */ export type ListVectorStoreFilesRequest$Outbound = { vector_store_id: string; limit: number; order: string; after?: string | undefined; before?: string | undefined; filter?: string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListVectorStoreFilesRequest$outboundSchema: z.ZodType; export declare function listVectorStoreFilesRequestToJSON(listVectorStoreFilesRequest: ListVectorStoreFilesRequest): string; export declare function listVectorStoreFilesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listvectorstorefiles.d.ts.map