UNPKG

@sap-ai-sdk/document-grounding

Version:

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

14 lines 583 B
import type { BasePipelineMinimalResponse } from './base-pipeline-minimal-response.js'; import type { MSSharePointConfigurationMinimal } from './ms-share-point-configuration-minimal.js'; /** * Representation of the 'MSSharePointPipelineMinimalResponse' schema. */ export type MSSharePointPipelineMinimalResponse = BasePipelineMinimalResponse & { type: 'MSSharePoint'; configuration: MSSharePointConfigurationMinimal; /** * @example true */ metadata?: boolean; } & Record<string, any>; //# sourceMappingURL=ms-share-point-pipeline-minimal-response.d.ts.map