@rxap/plugin-n8n 20.1.3-dev.3 → 20.2.0-dev.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [20.2.0-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.1.3-dev.3...@rxap/plugin-n8n@20.2.0-dev.0) (2026-01-12)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **schema:** enhance generator schema documentation with descriptions and examples ([0ae4939](https://gitlab.com/rxap/packages/commit/0ae4939d77e3e313ace4a77d8f5dd86c3c918d29))
|
|
11
|
+
|
|
6
12
|
## [20.1.3-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.1.3-dev.2...@rxap/plugin-n8n@20.1.3-dev.3) (2025-09-18)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @rxap/plugin-n8n
|
package/README.md
CHANGED
|
@@ -72,11 +72,11 @@ nx g @rxap/plugin-n8n:init
|
|
|
72
72
|
|
|
73
73
|
Option | Type | Default | Description
|
|
74
74
|
--- | --- | --- | ---
|
|
75
|
-
project | string | |
|
|
76
|
-
projects | array | |
|
|
77
|
-
skipFormat | boolean | false |
|
|
78
|
-
overwrite | boolean | false | Whether to overwrite existing files
|
|
79
|
-
skipProjects | boolean | false | Whether to skip executing project
|
|
75
|
+
project | string | | The name of the project to initialize with n8n integration.
|
|
76
|
+
projects | array | | The list of projects to initialize with n8n integration.
|
|
77
|
+
skipFormat | boolean | false | Whether to skip formatting files with Prettier after initialization.
|
|
78
|
+
overwrite | boolean | false | Whether to overwrite existing files during initialization.
|
|
79
|
+
skipProjects | boolean | false | Whether to skip executing project-specific initialization logic.
|
|
80
80
|
|
|
81
81
|
## node
|
|
82
82
|
> node generator
|
|
@@ -87,10 +87,10 @@ nx g @rxap/plugin-n8n:node
|
|
|
87
87
|
|
|
88
88
|
Option | Type | Default | Description
|
|
89
89
|
--- | --- | --- | ---
|
|
90
|
-
name | string | |
|
|
91
|
-
project | string | |
|
|
92
|
-
description | string | |
|
|
93
|
-
nodeNamePrefix | string | |
|
|
90
|
+
name | string | | The name of the new n8n node.
|
|
91
|
+
project | string | | The name of the project where the new node should be created.
|
|
92
|
+
description | string | | A brief description of the new n8n node's purpose.
|
|
93
|
+
nodeNamePrefix | string | | An optional prefix to prepend to the node's internal class name.
|
|
94
94
|
|
|
95
95
|
## trigger
|
|
96
96
|
> trigger generator
|
|
@@ -101,7 +101,7 @@ nx g @rxap/plugin-n8n:trigger
|
|
|
101
101
|
|
|
102
102
|
Option | Type | Default | Description
|
|
103
103
|
--- | --- | --- | ---
|
|
104
|
-
name | string | |
|
|
105
|
-
project | string | |
|
|
106
|
-
description | string | |
|
|
107
|
-
nodeNamePrefix | string | |
|
|
104
|
+
name | string | | The name of the new n8n trigger node.
|
|
105
|
+
project | string | | The name of the project where the new trigger node should be created.
|
|
106
|
+
description | string | | A brief description of the new n8n trigger node's purpose.
|
|
107
|
+
nodeNamePrefix | string | | An optional prefix to prepend to the trigger node's internal class name.
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "20.
|
|
2
|
+
"version": "20.2.0-dev.0",
|
|
3
3
|
"name": "@rxap/plugin-n8n",
|
|
4
4
|
"description": "This package provides generators for initializing and creating n8n plugins within an Nx workspace. It includes generators for initializing a workspace or project for n8n development, as well as a generator for creating new n8n nodes. The package also includes utilities for updating project configurations and package.json files to support n8n plugin development.\n",
|
|
5
5
|
"license": "GPL-3.0-or-later",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@nx/devkit": "20.5.0",
|
|
8
|
-
"@rxap/plugin-library": "^20.
|
|
8
|
+
"@rxap/plugin-library": "^20.3.0-dev.0",
|
|
9
9
|
"@rxap/ts-morph": "^1.6.0-dev.2",
|
|
10
10
|
"@rxap/utilities": "^16.5.0-dev.0",
|
|
11
11
|
"@rxap/workspace-ts-morph": "^19.1.13-dev.3",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"schematics": "./generators.json",
|
|
47
47
|
"type": "commonjs",
|
|
48
48
|
"typings": "./src/index.d.ts",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "f6923aa9d989b25018f2fcac470963fb1e68049a",
|
|
50
50
|
"exports": {
|
|
51
51
|
"./package.json": "./package.json",
|
|
52
52
|
".": {
|
|
@@ -5,27 +5,32 @@
|
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"project": {
|
|
8
|
-
"type": "string"
|
|
8
|
+
"type": "string",
|
|
9
|
+
"description": "The name of the project to initialize with n8n integration.",
|
|
10
|
+
"examples": ["my-n8n-lib"]
|
|
9
11
|
},
|
|
10
12
|
"projects": {
|
|
11
13
|
"type": "array",
|
|
12
14
|
"items": {
|
|
13
15
|
"type": "string"
|
|
14
|
-
}
|
|
16
|
+
},
|
|
17
|
+
"description": "The list of projects to initialize with n8n integration.",
|
|
18
|
+
"examples": [["my-n8n-lib", "another-n8n-lib"]]
|
|
15
19
|
},
|
|
16
20
|
"skipFormat": {
|
|
17
21
|
"type": "boolean",
|
|
18
|
-
"default": false
|
|
22
|
+
"default": false,
|
|
23
|
+
"description": "Whether to skip formatting files with Prettier after initialization."
|
|
19
24
|
},
|
|
20
25
|
"overwrite": {
|
|
21
26
|
"type": "boolean",
|
|
22
27
|
"default": false,
|
|
23
|
-
"description": "Whether to overwrite existing files"
|
|
28
|
+
"description": "Whether to overwrite existing files during initialization."
|
|
24
29
|
},
|
|
25
30
|
"skipProjects": {
|
|
26
31
|
"type": "boolean",
|
|
27
32
|
"default": false,
|
|
28
|
-
"description": "Whether to skip executing project
|
|
33
|
+
"description": "Whether to skip executing project-specific initialization logic."
|
|
29
34
|
}
|
|
30
35
|
},
|
|
31
36
|
"required": []
|
|
@@ -6,24 +6,28 @@
|
|
|
6
6
|
"properties": {
|
|
7
7
|
"name": {
|
|
8
8
|
"type": "string",
|
|
9
|
-
"description": "",
|
|
9
|
+
"description": "The name of the new n8n node.",
|
|
10
10
|
"$default": {
|
|
11
11
|
"$source": "argv",
|
|
12
12
|
"index": 0
|
|
13
13
|
},
|
|
14
|
-
"x-prompt": "What name would you like to use?"
|
|
14
|
+
"x-prompt": "What name would you like to use?",
|
|
15
|
+
"examples": ["my-custom-node"]
|
|
15
16
|
},
|
|
16
17
|
"project": {
|
|
17
18
|
"type": "string",
|
|
18
|
-
"description": ""
|
|
19
|
+
"description": "The name of the project where the new node should be created.",
|
|
20
|
+
"examples": ["my-n8n-lib"]
|
|
19
21
|
},
|
|
20
22
|
"description": {
|
|
21
23
|
"type": "string",
|
|
22
|
-
"description": ""
|
|
24
|
+
"description": "A brief description of the new n8n node's purpose.",
|
|
25
|
+
"examples": ["Perform custom data transformation."]
|
|
23
26
|
},
|
|
24
27
|
"nodeNamePrefix": {
|
|
25
28
|
"type": "string",
|
|
26
|
-
"description": ""
|
|
29
|
+
"description": "An optional prefix to prepend to the node's internal class name.",
|
|
30
|
+
"examples": ["MyCompany"]
|
|
27
31
|
}
|
|
28
32
|
},
|
|
29
33
|
"required": ["name", "project"]
|
|
@@ -6,24 +6,28 @@
|
|
|
6
6
|
"properties": {
|
|
7
7
|
"name": {
|
|
8
8
|
"type": "string",
|
|
9
|
-
"description": "",
|
|
9
|
+
"description": "The name of the new n8n trigger node.",
|
|
10
10
|
"$default": {
|
|
11
11
|
"$source": "argv",
|
|
12
12
|
"index": 0
|
|
13
13
|
},
|
|
14
|
-
"x-prompt": "What name would you like to use?"
|
|
14
|
+
"x-prompt": "What name would you like to use?",
|
|
15
|
+
"examples": ["my-custom-trigger"]
|
|
15
16
|
},
|
|
16
17
|
"project": {
|
|
17
18
|
"type": "string",
|
|
18
|
-
"description": ""
|
|
19
|
+
"description": "The name of the project where the new trigger node should be created.",
|
|
20
|
+
"examples": ["my-n8n-lib"]
|
|
19
21
|
},
|
|
20
22
|
"description": {
|
|
21
23
|
"type": "string",
|
|
22
|
-
"description": ""
|
|
24
|
+
"description": "A brief description of the new n8n trigger node's purpose.",
|
|
25
|
+
"examples": ["Trigger workflow on custom event."]
|
|
23
26
|
},
|
|
24
27
|
"nodeNamePrefix": {
|
|
25
28
|
"type": "string",
|
|
26
|
-
"description": ""
|
|
29
|
+
"description": "An optional prefix to prepend to the trigger node's internal class name.",
|
|
30
|
+
"examples": ["MyCompany"]
|
|
27
31
|
}
|
|
28
32
|
},
|
|
29
33
|
"required": ["name", "project"]
|