@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.26 kB
TypeScript
import type { MSSharePointPipelineMinimalResponse } from './ms-share-point-pipeline-minimal-response.js';
import type { S3PipelineMinimalResponse } from './s-3-pipeline-minimal-response.js';
import type { SFTPPipelineMinimalResponse } from './sftp-pipeline-minimal-response.js';
import type { SDMPipelineMinimalResponse } from './sdm-pipeline-minimal-response.js';
import type { WorkZonePipelineMinimalResponse } from './work-zone-pipeline-minimal-response.js';
import type { ServiceNowPipelineMinimalResponse } from './service-now-pipeline-minimal-response.js';
import type { GoogleDrivePipelineMinimalResponse } from './google-drive-pipeline-minimal-response.js';
/**
* Representation of the 'PipelineMinimalResponse' schema.
*/
export type PipelineMinimalResponse = ({
type: 'MSSharePoint';
} & MSSharePointPipelineMinimalResponse) | ({
type: 'S3';
} & S3PipelineMinimalResponse) | ({
type: 'SFTP';
} & SFTPPipelineMinimalResponse) | ({
type: 'SDM';
} & SDMPipelineMinimalResponse) | ({
type: 'WorkZone';
} & WorkZonePipelineMinimalResponse) | ({
type: 'ServiceNow';
} & ServiceNowPipelineMinimalResponse) | ({
type: 'GoogleDrive';
} & GoogleDrivePipelineMinimalResponse);
//# sourceMappingURL=pipeline-minimal-response.d.ts.map