UNPKG

@sap-ai-sdk/document-grounding

Version:

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

14 lines 575 B
import type { BasePipelineMinimalResponse } from './base-pipeline-minimal-response.js'; import type { GoogleDriveConfigurationMinimal } from './google-drive-configuration-minimal.js'; /** * Representation of the 'GoogleDrivePipelineMinimalResponse' schema. */ export type GoogleDrivePipelineMinimalResponse = BasePipelineMinimalResponse & { type: 'GoogleDrive'; configuration?: GoogleDriveConfigurationMinimal; /** * @example true */ metadata?: boolean; } & Record<string, any>; //# sourceMappingURL=google-drive-pipeline-minimal-response.d.ts.map