@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
16 lines • 451 B
TypeScript
import type { IncludePathsArray } from './include-paths-array.js';
/**
* Representation of the 'GoogleDriveConfig' schema.
*/
export type GoogleDriveConfig = {
/**
* @example "SHARED_DRIVE"
*/
resourceType: 'SHARED_FOLDER' | 'SHARED_DRIVE';
/**
* @example "0AGVUFpXcXc5Uk9PVA"
*/
resourceId?: string;
includePaths?: IncludePathsArray;
} & Record<string, any>;
//# sourceMappingURL=google-drive-config.d.ts.map