UNPKG

@sap-ai-sdk/document-grounding

Version:

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

12 lines 353 B
import type { MetadataOperationEnum } from './metadata-operation-enum.js'; /** * Representation of the 'MetadataOperation' schema. */ export type MetadataOperation = { op: MetadataOperationEnum; /** * List of values to update. */ values?: string[] | null; } & Record<string, any>; //# sourceMappingURL=metadata-operation.d.ts.map