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 509 B
import type { MetadataConfigurationRequest } from './metadata-configuration-request.js'; /** * Representation of the 'MetadataConfigurationResponse' schema. */ export type MetadataConfigurationResponse = MetadataConfigurationRequest & { /** * Status of metadata enumeration for the configuration. * @example "IN_PROGRESS" */ enumerationStatus?: 'NEW' | 'IN_PROGRESS' | 'COMPLETED' | 'ERROR' | any; } & Record<string, any>; //# sourceMappingURL=metadata-configuration-response.d.ts.map