n8n-core 1.97.1 → 1.98.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-core",
3
- "version": "1.97.1",
3
+ "version": "1.98.0",
4
4
  "description": "Core functionality of n8n",
5
5
  "main": "dist/index",
6
6
  "types": "dist/index.d.ts",
@@ -55,13 +55,13 @@
55
55
  "winston": "3.14.2",
56
56
  "xml2js": "0.6.2",
57
57
  "zod": "3.24.1",
58
- "@n8n/config": "1.42.0",
58
+ "@n8n/backend-common": "^0.9.0",
59
+ "@n8n/config": "1.43.0",
59
60
  "@n8n/client-oauth2": "0.26.0",
60
- "@n8n/backend-common": "^0.8.0",
61
- "@n8n/constants": "0.6.0",
62
- "@n8n/decorators": "0.8.0",
61
+ "@n8n/constants": "0.7.0",
62
+ "@n8n/decorators": "0.9.0",
63
63
  "@n8n/di": "0.6.0",
64
- "n8n-workflow": "1.95.0"
64
+ "n8n-workflow": "1.96.0"
65
65
  },
66
66
  "license": "SEE LICENSE IN LICENSE.md",
67
67
  "homepage": "https://n8n.io",
@@ -1,2 +0,0 @@
1
- import { type INode, type INodeTypes } from 'n8n-workflow';
2
- export declare function isTool(node: INode, nodeTypes: INodeTypes): boolean;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.isTool = isTool;
4
- const n8n_workflow_1 = require("n8n-workflow");
5
- function isTool(node, nodeTypes) {
6
- const type = nodeTypes.getByNameAndVersion(node.type, node.typeVersion);
7
- if (node.type.includes('vectorStore')) {
8
- const mode = node.parameters?.mode;
9
- return mode === 'retrieve-as-tool';
10
- }
11
- for (const output of type.description.outputs) {
12
- if (typeof output === 'string') {
13
- return output === n8n_workflow_1.NodeConnectionTypes.AiTool;
14
- }
15
- else if (output?.type && output.type === n8n_workflow_1.NodeConnectionTypes.AiTool) {
16
- return true;
17
- }
18
- }
19
- return false;
20
- }
21
- //# sourceMappingURL=is-tool.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"is-tool.js","sourceRoot":"","sources":["../../../src/execution-engine/partial-execution-utils/is-tool.ts"],"names":[],"mappings":";;AAEA,wBAmBC;AArBD,+CAAgF;AAEhF,SAAgB,MAAM,CAAC,IAAW,EAAE,SAAqB;IACxD,MAAM,IAAI,GAAG,SAAS,CAAC,mBAAmB,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;IAGxE,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC;QACvC,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC;QACnC,OAAO,IAAI,KAAK,kBAAkB,CAAC;IACpC,CAAC;IAGD,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;QAC/C,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;YAChC,OAAO,MAAM,KAAK,kCAAmB,CAAC,MAAM,CAAC;QAC9C,CAAC;aAAM,IAAI,MAAM,EAAE,IAAI,IAAI,MAAM,CAAC,IAAI,KAAK,kCAAmB,CAAC,MAAM,EAAE,CAAC;YACvE,OAAO,IAAI,CAAC;QACb,CAAC;IACF,CAAC;IAED,OAAO,KAAK,CAAC;AACd,CAAC"}