@n8n/ai-workflow-builder 1.35.2 → 1.36.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/dist/build.tsbuildinfo +1 -1
- package/dist/code-builder/types.d.ts +1 -17
- package/package.json +15 -15
|
@@ -2,23 +2,7 @@ import type { Callbacks } from '@langchain/core/callbacks/manager';
|
|
|
2
2
|
import type { BaseChatModel } from '@langchain/core/language_models/chat_models';
|
|
3
3
|
import type { Logger } from '@n8n/backend-common';
|
|
4
4
|
import type { WorkflowJSON } from '@n8n/workflow-sdk';
|
|
5
|
-
import type {
|
|
6
|
-
export interface SubnodeRequirement {
|
|
7
|
-
connectionType: string;
|
|
8
|
-
required: boolean;
|
|
9
|
-
displayOptions?: IDisplayOptions;
|
|
10
|
-
}
|
|
11
|
-
export interface CodeBuilderNodeSearchResult {
|
|
12
|
-
name: string;
|
|
13
|
-
displayName: string;
|
|
14
|
-
description: string;
|
|
15
|
-
version: number;
|
|
16
|
-
score: number;
|
|
17
|
-
inputs: INodeTypeDescription['inputs'];
|
|
18
|
-
outputs: INodeTypeDescription['outputs'];
|
|
19
|
-
builderHintMessage?: string;
|
|
20
|
-
subnodeRequirements?: SubnodeRequirement[];
|
|
21
|
-
}
|
|
5
|
+
import type { INodeTypeDescription, ITelemetryTrackProperties } from 'n8n-workflow';
|
|
22
6
|
export interface WorkflowCodeOutput {
|
|
23
7
|
workflowCode: string;
|
|
24
8
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/ai-workflow-builder",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.36.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist/**/*",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"LICENSE.md",
|
|
10
|
+
"LICENSE_EE.md"
|
|
11
11
|
],
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
"picocolors": "1.0.1",
|
|
34
34
|
"p-limit": "^3.1.0",
|
|
35
35
|
"turndown": "^7.2.2",
|
|
36
|
-
"undici": "^6.
|
|
36
|
+
"undici": "^6.28.0",
|
|
37
37
|
"uuid": "11.1.1",
|
|
38
38
|
"zod": "3.25.76",
|
|
39
|
-
"@n8n/api-types": "1.
|
|
40
|
-
"@n8n/
|
|
41
|
-
"@n8n/
|
|
42
|
-
"@n8n/backend-network": "1.
|
|
43
|
-
"@n8n/
|
|
39
|
+
"@n8n/api-types": "1.36.0",
|
|
40
|
+
"@n8n/ai-utilities": "0.29.0",
|
|
41
|
+
"@n8n/backend-common": "1.36.0",
|
|
42
|
+
"@n8n/backend-network": "1.10.0",
|
|
43
|
+
"@n8n/utils": "1.44.0",
|
|
44
44
|
"@n8n/di": "0.16.0",
|
|
45
|
-
"@n8n/
|
|
46
|
-
"
|
|
47
|
-
"n8n
|
|
45
|
+
"@n8n/workflow-sdk": "0.29.0",
|
|
46
|
+
"n8n-workflow": "2.36.0",
|
|
47
|
+
"@n8n/config": "2.34.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/cli-progress": "^3.11.5",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"vite": "^8.0.2",
|
|
62
62
|
"vitest": "^4.1.9",
|
|
63
63
|
"vitest-mock-extended": "^3.1.0",
|
|
64
|
-
"@n8n/
|
|
65
|
-
"
|
|
66
|
-
"n8n-
|
|
64
|
+
"@n8n/vitest-config": "1.21.0",
|
|
65
|
+
"n8n-core": "2.36.0",
|
|
66
|
+
"@n8n/typescript-config": "1.10.0"
|
|
67
67
|
},
|
|
68
68
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
69
69
|
"homepage": "https://n8n.io",
|