import type { CronRunLogEntryStatusEnum } from './CronRunLogEntryStatusEnum'; import type { DeliveryStatusEnum } from './DeliveryStatusEnum'; /** * One row from ``cron.runs.entries`` — the ``finished`` snapshot. */ export type CronRunLogEntry = { ts: number; jobId: string; action: string; status?: CronRunLogEntryStatusEnum; error?: string; summary?: string; runAtMs?: number; durationMs?: number; nextRunAtMs?: number; model?: string; provider?: string; usage?: Record; deliveryStatus?: DeliveryStatusEnum; deliveryError?: string; sessionId?: string; sessionKey?: string; runId?: string; jobName?: string; };