UNPKG

@sap-ai-sdk/document-grounding

Version:

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

18 lines 525 B
import type { DocumentMetadata } from './document-metadata.js'; /** * Representation of the 'DocumentMetadataUpdate' schema. */ export type DocumentMetadataUpdate = { /** * Unique identifier of the document to update. * @example "550e8400-e29b-41d4-a716-446655440000" * Format: "uuid". */ id: string; /** * Metadata updates for this document. * Max Items: 10. */ metadata: DocumentMetadata[]; } & Record<string, any>; //# sourceMappingURL=document-metadata-update.d.ts.map