UNPKG

@sap-ai-sdk/document-grounding

Version:

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

26 lines 1.14 kB
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'; import type { ServiceNowPipelineGetResponse } from './service-now-pipeline-get-response.js'; import type { GoogleDrivePipelineGetResponse } from './google-drive-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) | ({ type: 'ServiceNow'; } & ServiceNowPipelineGetResponse) | ({ type: 'GoogleDrive'; } & GoogleDrivePipelineGetResponse); //# sourceMappingURL=get-pipeline.d.ts.map