UNPKG

@sap-ai-sdk/document-grounding

Version:

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

22 lines 689 B
import type { PipelineExecutionStatus } from './pipeline-execution-status.js'; /** * Representation of the 'PipelineExecutionData' schema. */ export type PipelineExecutionData = { /** * @example "uuid" */ id?: string; status?: PipelineExecutionStatus; /** * @example "2024-02-15T12:45:00Z" * Pattern: "^$|^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{3})?Z$". */ createdAt?: string | null; /** * @example "2024-02-15T12:45:00Z" * Pattern: "^$|^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{3})?Z$". */ modifiedAt?: string | null; } & Record<string, any>; //# sourceMappingURL=pipeline-execution-data.d.ts.map