@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 • 417 B
TypeScript
import type { MetadataOperation } from './metadata-operation.js';
/**
* Representation of the 'MetadataKeyUpdate' schema.
*/
export type MetadataKeyUpdate = {
/**
* Key to update
* Min Length: 1.
*/
key: string;
/**
* Update operation executed for the key
*/
operations?: MetadataOperation[] | null;
} & Record<string, any>;
//# sourceMappingURL=metadata-key-update.d.ts.map