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 480 B
import type { BasePipelineResponse } from './base-pipeline-response.js'; import type { GoogleDriveConfigurationMinimal } from './google-drive-configuration-minimal.js'; /** * Representation of the 'GoogleDrivePipelineGetResponse' schema. */ export type GoogleDrivePipelineGetResponse = BasePipelineResponse & { type?: 'GoogleDrive'; configuration: GoogleDriveConfigurationMinimal; } & Record<string, any>; //# sourceMappingURL=google-drive-pipeline-get-response.d.ts.map