feat: Improvements to pairedItem

This commit is contained in:
Jan Oberhauser
2022-07-22 12:19:45 +02:00
parent 2f4f2cfb86
commit 1348349748
19 changed files with 161 additions and 90 deletions

View File

@@ -19,6 +19,7 @@ import {
INode,
INodeConnections,
INodeExecutionData,
IPinData,
IRun,
IRunData,
IRunExecutionData,
@@ -32,7 +33,6 @@ import {
LoggerProxy as Logger,
NodeApiError,
NodeOperationError,
PinData,
Workflow,
WorkflowExecuteMode,
WorkflowOperationError,
@@ -88,7 +88,7 @@ export class WorkflowExecute {
workflow: Workflow,
startNode?: INode,
destinationNode?: string,
pinData?: PinData,
pinData?: IPinData,
): PCancelable<IRun> {
// Get the nodes to start workflow execution from
startNode = startNode || workflow.getStartNode(destinationNode);
@@ -160,7 +160,7 @@ export class WorkflowExecute {
runData: IRunData,
startNodes: string[],
destinationNode: string,
pinData?: PinData,
pinData?: IPinData,
// @ts-ignore
): PCancelable<IRun> {
let incomingNodeConnections: INodeConnections | undefined;