import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { VectorStoreFile, VectorStoreFile$Outbound } from "./vectorstorefile.js"; /** * A list of vector store files. */ export type VectorStoreFileList = { /** * The object type, which is always 'list'. */ object: "list"; /** * Array of vector store file objects. */ data: Array; /** * The ID of the first object in the list. */ firstId: string; /** * The ID of the last object in the list. */ lastId: string; /** * Whether there are more objects available. */ hasMore: boolean; }; /** @internal */ export declare const VectorStoreFileList$inboundSchema: z.ZodType; /** @internal */ export type VectorStoreFileList$Outbound = { object: "list"; data: Array; first_id: string; last_id: string; has_more: boolean; }; /** @internal */ export declare const VectorStoreFileList$outboundSchema: z.ZodType; export declare function vectorStoreFileListToJSON(vectorStoreFileList: VectorStoreFileList): string; export declare function vectorStoreFileListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vectorstorefilelist.d.ts.map