mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(core): Separate execution startedAt from createdAt (#10810)
This commit is contained in:
@@ -2122,6 +2122,7 @@ export interface IWorkflowBase {
|
||||
name: string;
|
||||
active: boolean;
|
||||
createdAt: Date;
|
||||
startedAt?: Date;
|
||||
updatedAt: Date;
|
||||
nodes: INode[];
|
||||
connections: IConnections;
|
||||
@@ -2463,6 +2464,7 @@ export interface ExecutionSummary {
|
||||
retryOf?: string | null;
|
||||
retrySuccessId?: string | null;
|
||||
waitTill?: Date;
|
||||
createdAt?: Date;
|
||||
startedAt: Date;
|
||||
stoppedAt?: Date;
|
||||
workflowId: string;
|
||||
|
||||
Reference in New Issue
Block a user