@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
31 lines • 819 B
TypeScript
/**
* Representation of the 'PipelinePostRequst' schema.
*/
export type PipelinePostRequst = {
/**
* @example "MSSharePoint"
*/
type: string;
configuration: {
/**
* @example "destination-name"
*/
destination: string;
sharePoint?: {
site?: {
/**
* @example "sharepoint-site-name"
*/
name?: string;
/**
* @example [
* "/testFolder1",
* "testFolder2"
* ]
*/
includePaths?: string[];
} & Record<string, any>;
} & Record<string, any>;
} & Record<string, any>;
} & Record<string, any>;
//# sourceMappingURL=pipeline-post-requst.d.ts.map