n8n-workflow
Advanced tools
Comparing version 0.33.0 to 0.34.0
@@ -49,3 +49,3 @@ import { IConnections, IGetExecuteTriggerFunctions, INode, INodes, INodeExecuteFunctions, INodeExecutionData, INodeParameters, INodeType, INodeTypes, IPollFunctions, IRunExecutionData, ITaskDataConnections, ITriggerResponse, IWebhookData, IWebhookResponseData, IWorfklowIssues, IWorkflowExecuteAdditionalData, IWorkflowSettings, NodeParameterValue, WebhookSetupMethodNames, WorkflowExecuteMode } from './'; | ||
runWebhook(webhookData: IWebhookData, node: INode, additionalData: IWorkflowExecuteAdditionalData, nodeExecuteFunctions: INodeExecuteFunctions, mode: WorkflowExecuteMode): Promise<IWebhookResponseData>; | ||
runNode(node: INode, inputData: ITaskDataConnections, runExecutionData: IRunExecutionData, runIndex: number, additionalData: IWorkflowExecuteAdditionalData, nodeExecuteFunctions: INodeExecuteFunctions, mode: WorkflowExecuteMode): Promise<INodeExecutionData[][] | null>; | ||
runNode(node: INode, inputData: ITaskDataConnections, runExecutionData: IRunExecutionData, runIndex: number, additionalData: IWorkflowExecuteAdditionalData, nodeExecuteFunctions: INodeExecuteFunctions, mode: WorkflowExecuteMode): Promise<INodeExecutionData[][] | null | undefined>; | ||
} |
@@ -526,7 +526,7 @@ "use strict"; | ||
if (inputData.main[0] === null) { | ||
return null; | ||
return undefined; | ||
} | ||
return [inputData.main[0]]; | ||
} | ||
return null; | ||
return undefined; | ||
} | ||
@@ -542,3 +542,3 @@ const nodeType = this.nodeTypes.getByName(node.type); | ||
if (connectionInputData.length === 0) { | ||
return null; | ||
return undefined; | ||
} | ||
@@ -545,0 +545,0 @@ if (runExecutionData.resultData.lastNodeExecuted === node.name && runExecutionData.resultData.error !== undefined) { |
@@ -218,3 +218,3 @@ “Commons Clause” License Condition v1.0 | ||
Copyright [yyyy] [name of copyright owner] | ||
Copyright 2020 n8n GmbH | ||
@@ -221,0 +221,0 @@ Licensed under the Apache License, Version 2.0 (the "License"); |
{ | ||
"name": "n8n-workflow", | ||
"version": "0.33.0", | ||
"version": "0.34.0", | ||
"description": "Workflow base code of n8n", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
411964
6567