UNPKG

@sap-ai-sdk/document-grounding

Version:

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

11 lines 459 B
import type { MetaData } from './meta-data.js'; import type { GoogleDriveConfigurationStruct } from './google-drive-configuration-struct.js'; /** * Representation of the 'GoogleDrivePipelineCreateRequest' schema. */ export type GoogleDrivePipelineCreateRequest = { type: 'GoogleDrive'; metadata?: MetaData; configuration: GoogleDriveConfigurationStruct; } & Record<string, any>; //# sourceMappingURL=google-drive-pipeline-create-request.d.ts.map