UNPKG

@sap-ai-sdk/document-grounding

Version:

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

12 lines 354 B
import type { PipelineExecutionStatus } from './pipeline-execution-status.js'; /** * Representation of the 'PipelineExecutionData' schema. */ export type PipelineExecutionData = { /** * @example "uuid" */ id?: string; status?: PipelineExecutionStatus; } & Record<string, any>; //# sourceMappingURL=pipeline-execution-data.d.ts.map