Skip to content

Commit 9d00c86

Browse files
author
drowl87
committed
bump version to 0.2.1 and update execution parameter handling in DynamicNode
1 parent 0494f65 commit 9d00c86

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

nodes/DynamicNode/DynamicNode.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class DynamicNode implements INodeType {
7474
const executionResult: any = await this.executeWorkflow(
7575
{ code: template }, // your one‐node sub‐workflow
7676
items, // incoming items
77-
true,
77+
{}, // an empty object where run data will live
7878
{
7979
parentExecution: {
8080
executionId: workflowProxy.$execution.id,

nodes/DynamicNode/subWorkflowTemplate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"nodes": [
44
{
55
"parameters": {},
6+
"id": "start-subworkflow-node",
67
"name": "Start",
78
"type": "n8n-nodes-base.start",
89
"typeVersion": 1,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "n8n-nodes-dynamic-node",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "A dynamic n8n node wrapper that can execute any node JSON by feeding it at runtime.",
55
"keywords": [
66
"n8n-community-node-package",

0 commit comments

Comments
 (0)