mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor(core): Refactor WorkflowStatistics code (no-changelog) (#6617)
refactor(core): Refactor WorkflowStatistics code
This commit is contained in:
committed by
GitHub
parent
e7091d6726
commit
f4a18ba87d
@@ -655,24 +655,10 @@ export interface IWorkflowExecuteProcess {
|
||||
workflowExecute: WorkflowExecute;
|
||||
}
|
||||
|
||||
export interface IWorkflowStatisticsCounts {
|
||||
productionSuccess: number;
|
||||
productionError: number;
|
||||
manualSuccess: number;
|
||||
manualError: number;
|
||||
}
|
||||
|
||||
export interface IWorkflowStatisticsDataLoaded {
|
||||
dataLoaded: boolean;
|
||||
}
|
||||
|
||||
export interface IWorkflowStatisticsTimestamps {
|
||||
productionSuccess: Date | null;
|
||||
productionError: Date | null;
|
||||
manualSuccess: Date | null;
|
||||
manualError: Date | null;
|
||||
}
|
||||
|
||||
export type WhereClause = Record<string, { [key: string]: string | FindOperator<unknown> }>;
|
||||
|
||||
// ----------------------------------
|
||||
|
||||
Reference in New Issue
Block a user