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 file. */ export type VectorStoreFileDeletionStatus = { /** * The ID of the deleted file. */ id: string; /** * The object type, which is always 'vector_store.file.deleted'. */ object: "vector_store.file.deleted"; /** * Whether the deletion was successful. */ deleted: boolean; }; /** @internal */ export declare const VectorStoreFileDeletionStatus$inboundSchema: z.ZodType; /** @internal */ export type VectorStoreFileDeletionStatus$Outbound = { id: string; object: "vector_store.file.deleted"; deleted: boolean; }; /** @internal */ export declare const VectorStoreFileDeletionStatus$outboundSchema: z.ZodType; export declare function vectorStoreFileDeletionStatusToJSON(vectorStoreFileDeletionStatus: VectorStoreFileDeletionStatus): string; export declare function vectorStoreFileDeletionStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vectorstorefiledeletionstatus.d.ts.map