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 ListVectorStoreFilesInBatchQueryParamOrder: { 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 ListVectorStoreFilesInBatchQueryParamOrder = ClosedEnum; /** * Filter by file status. One of in_progress, completed, failed, cancelled. */ export declare const QueryParamFilter: { 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 QueryParamFilter = ClosedEnum; export type ListVectorStoreFilesInBatchRequest = { vectorStoreId: string; batchId: string; limit?: number | undefined; /** * Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. */ order?: ListVectorStoreFilesInBatchQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; /** * Filter by file status. One of in_progress, completed, failed, cancelled. */ filter?: QueryParamFilter | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListVectorStoreFilesInBatchQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListVectorStoreFilesInBatchQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamFilter$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamFilter$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListVectorStoreFilesInBatchRequest$inboundSchema: z.ZodType; /** @internal */ export type ListVectorStoreFilesInBatchRequest$Outbound = { vector_store_id: string; batch_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 ListVectorStoreFilesInBatchRequest$outboundSchema: z.ZodType; export declare function listVectorStoreFilesInBatchRequestToJSON(listVectorStoreFilesInBatchRequest: ListVectorStoreFilesInBatchRequest): string; export declare function listVectorStoreFilesInBatchRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listvectorstorefilesinbatch.d.ts.map