feat(processors): streamline event debugging and run inspection

This commit is contained in:
RockChinQ
2026-09-08 02:30:59 +08:00
parent 237fa6545d
commit ea3e32c904
34 changed files with 1464 additions and 466 deletions
+5
View File
@@ -178,6 +178,11 @@ export interface ProcessorRun {
status: string;
status_reason?: string;
created_at: number;
started_at?: number | null;
finished_at?: number | null;
created_at_ms?: number | null;
started_at_ms?: number | null;
finished_at_ms?: number | null;
metadata: { event_type?: string; input_event?: unknown; delivery?: unknown };
}