@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
20 lines • 822 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';
import type { SDMPipelineGetResponse } from './sdm-pipeline-get-response.js';
import type { WorkZonePipelineGetResponse } from './work-zone-pipeline-get-response.js';
/**
* Representation of the 'GetPipeline' schema.
*/
export type GetPipeline = ({
type: 'MSSharePoint';
} & MSSharePointPipelineGetResponse) | ({
type: 'S3';
} & S3PipelineGetResponse) | ({
type: 'SFTP';
} & SFTPPipelineGetResponse) | ({
type: 'SDM';
} & SDMPipelineGetResponse) | ({
type: 'WorkZone';
} & WorkZonePipelineGetResponse);
//# sourceMappingURL=get-pipeline.d.ts.map