@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
15 lines • 483 B
TypeScript
import type { MetadataKeyUpdate } from './metadata-key-update.js';
/**
* Representation of the 'MetadataUpdateItem' schema.
*/
export type MetadataUpdateItem = {
/**
* List of collection or document or chunk ids for which the metadata should be updated
*/
ids: string[];
/**
* List of metadata updates for the given resource ids
*/
metadataUpdates: MetadataKeyUpdate[];
} & Record<string, any>;
//# sourceMappingURL=metadata-update-item.d.ts.map