UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

14 lines 357 B
/** * Response after deleting documents in bulk. */ export type DocumentBulkDeleteResponse = { /** * List of successfully deleted document IDs */ deleted: string[]; /** * List of document IDs that were not found */ notFound: string[]; } & Record<string, any>; //# sourceMappingURL=document-bulk-delete-response.d.ts.map