/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Read shape for an experiment run (Langfuse run + local pending entries). * * Pending entries (``status="pending"`` or ``"in_progress"``) carry * ``id=null`` and an additional ``task_id`` / ``task_record_id`` pair — * Langfuse mints the real run id only when the Celery task inserts the * first dataset_run_items row. Completed entries carry the Langfuse run * id and ``status="completed"``. */ export type Run = { id: string | null; name: string; metadata?: Record; created_at: string; updated_at: string; status: string; readonly username: string; readonly user_email: string; task_id?: string; task_record_id?: number | null; };