@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
39 lines • 964 B
TypeScript
/**
* Representation of the 'Pipeline' schema.
*/
export type Pipeline = {
/**
* @example "uuid"
*/
id?: string;
/**
* @example "MSSharePoint"
*/
type?: string;
configuration?: {
/**
* @example "destination-name"
*/
destination?: string;
sharePoint?: {
site?: {
/**
* @example "sharepoint-site-id"
*/
id?: string;
/**
* @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.d.ts.map