feat(core): Implement partial execution of tool nodes (no-changelog) (#14939)

This commit is contained in:
Benjamin Schroth
2025-04-28 13:24:56 +02:00
committed by GitHub
parent b7c5521942
commit bc6f98928e
10 changed files with 349 additions and 33 deletions

View File

@@ -43,6 +43,25 @@ export const predefinedNodesTypes: INodeTypeData = {
type: new SplitInBatches(),
sourcePath: '',
},
'n8n-nodes-base.toolTest': {
sourcePath: '',
type: {
description: {
displayName: 'Test tool',
name: 'toolTest',
group: ['transform'],
version: 1,
description: 'Test tool',
inputs: [],
defaults: {
name: 'Test Tool',
color: '#0000FF',
},
outputs: [NodeConnectionTypes.AiTool],
properties: [],
},
},
},
'n8n-nodes-base.versionTest': {
sourcePath: '',
type: {