import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { VectorStore, VectorStore$Outbound } from "./vectorstore.js"; /** * A list of vector stores. */ export type VectorStoreList = { /** * The object type, which is always 'list'. */ object: "list"; /** * Array of vector store 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 VectorStoreList$inboundSchema: z.ZodType; /** @internal */ export type VectorStoreList$Outbound = { object: "list"; data: Array; first_id: string; last_id: string; has_more: boolean; }; /** @internal */ export declare const VectorStoreList$outboundSchema: z.ZodType; export declare function vectorStoreListToJSON(vectorStoreList: VectorStoreList): string; export declare function vectorStoreListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vectorstorelist.d.ts.map