mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-09-04 17:46:34 +02:00
feat(core): Handle Declarative nodes more like regular nodes (#13007)
This commit is contained in:
@@ -43,14 +43,14 @@ export abstract class NodeExecutionContext implements Omit<FunctionsBase, 'getCr
|
||||
protected readonly instanceSettings = Container.get(InstanceSettings);
|
||||
|
||||
constructor(
|
||||
protected readonly workflow: Workflow,
|
||||
protected readonly node: INode,
|
||||
protected readonly additionalData: IWorkflowExecuteAdditionalData,
|
||||
protected readonly mode: WorkflowExecuteMode,
|
||||
protected readonly runExecutionData: IRunExecutionData | null = null,
|
||||
protected readonly runIndex = 0,
|
||||
protected readonly connectionInputData: INodeExecutionData[] = [],
|
||||
protected readonly executeData?: IExecuteData,
|
||||
readonly workflow: Workflow,
|
||||
readonly node: INode,
|
||||
readonly additionalData: IWorkflowExecuteAdditionalData,
|
||||
readonly mode: WorkflowExecuteMode,
|
||||
readonly runExecutionData: IRunExecutionData | null = null,
|
||||
readonly runIndex = 0,
|
||||
readonly connectionInputData: INodeExecutionData[] = [],
|
||||
readonly executeData?: IExecuteData,
|
||||
) {}
|
||||
|
||||
@Memoized
|
||||
|
||||
Reference in New Issue
Block a user