UNPKG

@sap-ai-sdk/document-grounding

Version:

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

10 lines 395 B
import type { BasePipelineResponse } from './base-pipeline-response.js'; import type { S3Configuration } from './s-3-configuration.js'; /** * Representation of the 'S3PipelineGetResponse' schema. */ export type S3PipelineGetResponse = BasePipelineResponse & { type?: 'S3'; configuration: S3Configuration; } & Record<string, any>; //# sourceMappingURL=s-3-pipeline-get-response.d.ts.map