export interface IErrorLog { workflowId: string; workflow: string; errorId: string; user: string; step: string; type: string; message: string; stacktrace: string; createdAt: string; context: unknown; } export interface IErrorLogSummary { workflowId: string; workflow: string; errorId: string; step: string; type: string; seen: boolean; message: string; occurrences: number; firstOccurrenceAt: Date; lastOccurrenceAt: Date; }