UNPKG

@sap-ai-sdk/document-grounding

Version:

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

37 lines 1.09 kB
import type { DocumentMetadata } from './document-metadata.js'; /** * Representation of the 'ConfigurationDocument' schema. */ export type ConfigurationDocument = { /** * Unique identifier for the document. * @example "3cba7512-b07a-58e6-a442-c83996a0b3bb" */ id?: string; /** * Title of the document. * @example "Quarterly Report" */ title?: string; /** * Absolute file path of the document in the repository. * @example "/sites/team/finance/Q1/report.pdf" */ absoluteFilePath?: string; /** * UTC timestamp when the document was created (RFC 3339 format, e.g., 2025-08-28T06:15:30Z) * @example "2025-08-28T06:15:30Z" * Format: "date-time". */ createdTimestamp?: string; /** * Type of the resource. Can be FOLDER, DOCUMENT. * @example "FOLDER" */ type?: 'FOLDER' | 'DOCUMENT' | any; /** * Metadata key-value pairs associated with the document. */ metadata?: DocumentMetadata[]; } & Record<string, any>; //# sourceMappingURL=configuration-document.d.ts.map