@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 • 545 B
TypeScript
import type { MSSharePointPipelineGetResponse } from './ms-share-point-pipeline-get-response.js';
import type { S3PipelineGetResponse } from './s-3-pipeline-get-response.js';
import type { SFTPPipelineGetResponse } from './sftp-pipeline-get-response.js';
/**
* Representation of the 'GetPipeline' schema.
*/
export type GetPipeline = ({
type: 'MSSharePoint';
} & MSSharePointPipelineGetResponse) | ({
type: 'S3';
} & S3PipelineGetResponse) | ({
type: 'SFTP';
} & SFTPPipelineGetResponse);
//# sourceMappingURL=get-pipeline.d.ts.map