@egose/n8n-client 0.4.0 → 0.4.3
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 +14 -0
- package/package.json +81 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.4.3](https://github.com/egose/n8n-client/compare/v0.4.2...v0.4.3) (2026-06-19)
|
|
2
|
+
|
|
3
|
+
## [0.4.2](https://github.com/egose/n8n-client/compare/v0.4.1...v0.4.2) (2026-06-19)
|
|
4
|
+
|
|
5
|
+
### Refactors
|
|
6
|
+
|
|
7
|
+
* **website:** move faster plugin to devDependencies and adjust tailwind layers ([6ccaeba](https://github.com/egose/n8n-client/commit/6ccaeba1a85dc12eb4e0eeda11a8b597ec98c939))
|
|
8
|
+
|
|
9
|
+
## [0.4.1](https://github.com/egose/n8n-client/compare/v0.4.0...v0.4.1) (2026-06-16)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove ignored and obsolete public API v1 artifacts ([e46aa55](https://github.com/egose/n8n-client/commit/e46aa555f95608e47b5592e867fb4a73a5ad098d))
|
|
14
|
+
|
|
1
15
|
## [0.4.0](https://github.com/egose/n8n-client/compare/v0.3.0...v0.4.0) (2026-06-14)
|
|
2
16
|
|
|
3
17
|
### Features
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.4.
|
|
2
|
+
"version": "0.4.3",
|
|
3
3
|
"description": "TypeScript client for the n8n Public API with cursor-based pagination and typed resource handles.",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"n8n",
|
|
@@ -21,10 +21,86 @@
|
|
|
21
21
|
"module": "./index.js",
|
|
22
22
|
"types": "./index.d.ts",
|
|
23
23
|
"exports": {
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
"name": "@egose/n8n-client",
|
|
25
|
+
"version": "0.4.3",
|
|
26
|
+
"description": "TypeScript client for the n8n Public API with cursor-based pagination and typed resource handles.",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"n8n",
|
|
29
|
+
"n8n-api",
|
|
30
|
+
"workflow-automation",
|
|
31
|
+
"automation",
|
|
32
|
+
"typescript",
|
|
33
|
+
"client",
|
|
34
|
+
"api-client"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"dev": "tsc -w",
|
|
38
|
+
"build": "rimraf ./build && tsc",
|
|
39
|
+
"bundle": "tsup",
|
|
40
|
+
"lint-fix": "eslint --fix .",
|
|
41
|
+
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.tests.json",
|
|
42
|
+
"test:unit": "vitest run --no-cache --config vitest.unit.config.ts",
|
|
43
|
+
"test:integration": "vitest run --no-cache --config vitest.integration.config.ts",
|
|
44
|
+
"test": "vitest run --no-cache",
|
|
45
|
+
"release": "release-it",
|
|
46
|
+
"changelog": "node changelog.mjs"
|
|
47
|
+
},
|
|
48
|
+
"type": "module",
|
|
49
|
+
"author": "J.Dev",
|
|
50
|
+
"license": "Apache-2.0",
|
|
51
|
+
"sideEffects": false,
|
|
52
|
+
"files": [
|
|
53
|
+
"./",
|
|
54
|
+
"!dist/**/*.map",
|
|
55
|
+
"README.md",
|
|
56
|
+
"LICENSE",
|
|
57
|
+
"CHANGELOG.md"
|
|
58
|
+
],
|
|
59
|
+
"main": "./index.cjs",
|
|
60
|
+
"module": "./index.js",
|
|
61
|
+
"types": "./index.d.ts",
|
|
62
|
+
"exports": {
|
|
63
|
+
".": {
|
|
64
|
+
"types": "./index.d.ts",
|
|
65
|
+
"require": "./index.cjs",
|
|
66
|
+
"import": "./index.js"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"repository": {
|
|
70
|
+
"type": "git",
|
|
71
|
+
"url": "https://github.com/egose/n8n-client"
|
|
72
|
+
},
|
|
73
|
+
"bugs": {
|
|
74
|
+
"url": "https://github.com/egose/n8n-client/issues"
|
|
75
|
+
},
|
|
76
|
+
"homepage": "https://n8n-client.pages.dev/",
|
|
77
|
+
"engines": {
|
|
78
|
+
"node": ">=20"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@commitlint/cli": "^20.5.0",
|
|
82
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
83
|
+
"@commitlint/format": "^20.5.0",
|
|
84
|
+
"@eslint/js": "^10.0.1",
|
|
85
|
+
"@release-it/bumper": "^7.0.5",
|
|
86
|
+
"@types/eslint-config-prettier": "^6.11.3",
|
|
87
|
+
"@types/node": "^25.5.0",
|
|
88
|
+
"conventional-changelog": "^7.2.0",
|
|
89
|
+
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
90
|
+
"dotenv": "^17.4.0",
|
|
91
|
+
"eslint": "10.2.1",
|
|
92
|
+
"eslint-config-prettier": "^10.1.8",
|
|
93
|
+
"prettier": "4.0.0-alpha.13",
|
|
94
|
+
"release-it": "^20.0.1",
|
|
95
|
+
"rimraf": "^6.1.3",
|
|
96
|
+
"semver": "^7.7.4",
|
|
97
|
+
"tsup": "^8.5.1",
|
|
98
|
+
"tsx": "^4.21.0",
|
|
99
|
+
"typescript": "^6.0.2",
|
|
100
|
+
"typescript-eslint": "^8.58.0",
|
|
101
|
+
"vitest": "^4.1.2",
|
|
102
|
+
"wait-on": "^9.0.4",
|
|
103
|
+
"yargs": "^18.0.0"
|
|
28
104
|
}
|
|
29
105
|
},
|
|
30
106
|
"repository": {
|