UNPKG

@sap-ai-sdk/document-grounding

Version:

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

16 lines 451 B
import type { DocumentMetadata } from './document-metadata.js'; /** * Representation of the 'BatchUpdateDocumentSuccess' schema. */ export type BatchUpdateDocumentSuccess = { /** * Unique identifier of the document. * Format: "uuid". */ id: string; /** * Metadata updates for this document. */ metadata: DocumentMetadata[]; } & Record<string, any>; //# sourceMappingURL=batch-update-document-success.d.ts.map