UNPKG

@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 477 B
import type { IncludePathsArray } from './include-paths-array.js'; /** * Representation of the 'GoogleDriveResourceDetail' schema. */ export type GoogleDriveResourceDetail = { /** * @example "SHARED_DRIVE" */ resourceType?: 'SHARED_FOLDER' | 'SHARED_DRIVE'; /** * @example "0AGVUFpXcXc5Uk9PVA" */ resourceId?: string; includePaths?: IncludePathsArray; } & Record<string, any>; //# sourceMappingURL=google-drive-resource-detail.d.ts.map