@rxap/plugin-n8n 20.0.1-dev.8 → 20.0.1

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,42 @@
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.0.1](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.16...@rxap/plugin-n8n@20.0.1) (2025-02-13)
7
+
8
+ **Note:** Version bump only for package @rxap/plugin-n8n
9
+
10
+ ## [20.0.1-dev.16](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.15...@rxap/plugin-n8n@20.0.1-dev.16) (2025-02-13)
11
+
12
+ **Note:** Version bump only for package @rxap/plugin-n8n
13
+
14
+ ## [20.0.1-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.14...@rxap/plugin-n8n@20.0.1-dev.15) (2025-02-11)
15
+
16
+ **Note:** Version bump only for package @rxap/plugin-n8n
17
+
18
+ ## [20.0.1-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.13...@rxap/plugin-n8n@20.0.1-dev.14) (2025-02-11)
19
+
20
+ **Note:** Version bump only for package @rxap/plugin-n8n
21
+
22
+ ## [20.0.1-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.12...@rxap/plugin-n8n@20.0.1-dev.13) (2025-02-10)
23
+
24
+ **Note:** Version bump only for package @rxap/plugin-n8n
25
+
26
+ ## [20.0.1-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.11...@rxap/plugin-n8n@20.0.1-dev.12) (2025-02-07)
27
+
28
+ **Note:** Version bump only for package @rxap/plugin-n8n
29
+
30
+ ## [20.0.1-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.10...@rxap/plugin-n8n@20.0.1-dev.11) (2025-01-30)
31
+
32
+ **Note:** Version bump only for package @rxap/plugin-n8n
33
+
34
+ ## [20.0.1-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.9...@rxap/plugin-n8n@20.0.1-dev.10) (2025-01-29)
35
+
36
+ **Note:** Version bump only for package @rxap/plugin-n8n
37
+
38
+ ## [20.0.1-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.8...@rxap/plugin-n8n@20.0.1-dev.9) (2025-01-29)
39
+
40
+ **Note:** Version bump only for package @rxap/plugin-n8n
41
+
6
42
  ## [20.0.1-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/plugin-n8n@20.0.1-dev.7...@rxap/plugin-n8n@20.0.1-dev.8) (2025-01-29)
7
43
 
8
44
  **Note:** Version bump only for package @rxap/plugin-n8n
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
- "version": "20.0.1-dev.8",
2
+ "version": "20.0.1",
3
3
  "name": "@rxap/plugin-n8n",
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",
4
5
  "license": "GPL-3.0-or-later",
5
6
  "dependencies": {
6
- "@nx/devkit": "20.4.0",
7
- "@rxap/plugin-library": "^20.1.0-dev.5",
8
- "@rxap/ts-morph": "^1.5.3-dev.3",
9
- "@rxap/utilities": "^16.4.2-dev.2",
10
- "@rxap/workspace-ts-morph": "^19.1.9-dev.6",
11
- "@rxap/workspace-utilities": "^19.6.1-dev.5",
7
+ "@nx/devkit": "20.4.2",
8
+ "@rxap/plugin-library": "^20.1.0",
9
+ "@rxap/ts-morph": "^1.5.3",
10
+ "@rxap/utilities": "^16.4.2",
11
+ "@rxap/workspace-ts-morph": "^19.1.9",
12
+ "@rxap/workspace-utilities": "^19.6.1",
12
13
  "ts-morph": "18.0.0",
13
14
  "tslib": "2.6.2"
14
15
  },
@@ -43,6 +44,6 @@
43
44
  "schematics": "./generators.json",
44
45
  "type": "commonjs",
45
46
  "typings": "./src/index.d.ts",
46
- "gitHead": "cbe68907c99432d32e7004f0d569cedebdf31bd4",
47
+ "gitHead": "753c877fe1a5c2fcfa737310f6e99fd1371f9b4d",
47
48
  "types": "./src/index.d.ts"
48
49
  }
@@ -1,7 +1,9 @@
1
1
  export interface InitGeneratorSchema {
2
2
  project?: string;
3
- projects?: string[];
3
+ projects?: Array<string>;
4
+ skipFormat?: boolean;
5
+ /** Whether to overwrite existing files */
4
6
  overwrite?: boolean;
7
+ /** Whether to skip executing project specific initialization */
5
8
  skipProjects?: boolean;
6
- skipFormat?: boolean;
7
9
  }
@@ -1,6 +1,6 @@
1
1
  export interface NodeGeneratorSchema {
2
2
  name: string;
3
3
  project: string;
4
- description: string;
5
- nodeNamePrefix: string;
4
+ description?: string;
5
+ nodeNamePrefix?: string;
6
6
  }