import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Deletion status for a vector store. */ export type VectorStoreDeletionStatus = { /** * The ID of the deleted vector store. */ id: string; /** * The object type, which is always 'vector_store.deleted'. */ object: "vector_store.deleted"; /** * Whether the deletion was successful. */ deleted: boolean; }; /** @internal */ export declare const VectorStoreDeletionStatus$inboundSchema: z.ZodType; /** @internal */ export type VectorStoreDeletionStatus$Outbound = { id: string; object: "vector_store.deleted"; deleted: boolean; }; /** @internal */ export declare const VectorStoreDeletionStatus$outboundSchema: z.ZodType; export declare function vectorStoreDeletionStatusToJSON(vectorStoreDeletionStatus: VectorStoreDeletionStatus): string; export declare function vectorStoreDeletionStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vectorstoredeletionstatus.d.ts.map