@egose/n8n-client 0.4.3 → 0.4.5

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/LICENSE +1 -2
  3. package/package.json +5 -81
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.4.5](https://github.com/egose/n8n-client/compare/v0.4.4...v0.4.5) (2026-07-06)
2
+
3
+ ### Docs
4
+
5
+ * update license copyright notice ([d41e6f2](https://github.com/egose/n8n-client/commit/d41e6f2f6c223a43098f49682f7faae7594d967a))
6
+
7
+ ## [0.4.4](https://github.com/egose/n8n-client/compare/v0.4.3...v0.4.4) (2026-06-25)
8
+
1
9
  ## [0.4.3](https://github.com/egose/n8n-client/compare/v0.4.2...v0.4.3) (2026-06-19)
2
10
 
3
11
  ## [0.4.2](https://github.com/egose/n8n-client/compare/v0.4.1...v0.4.2) (2026-06-19)
package/LICENSE CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  Apache License
3
2
  Version 2.0, January 2004
4
3
  http://www.apache.org/licenses/
@@ -187,7 +186,7 @@
187
186
  same "printed page" as the copyright notice for easier
188
187
  identification within third-party archives.
189
188
 
190
- Copyright © 2017, Province of British Columbia, Canada.
189
+ Copyright Junmin Ahn
191
190
 
192
191
  Licensed under the Apache License, Version 2.0 (the "License");
193
192
  you may not use this file except in compliance with the License.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.4.3",
2
+ "version": "0.4.5",
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,86 +21,10 @@
21
21
  "module": "./index.js",
22
22
  "types": "./index.d.ts",
23
23
  "exports": {
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"
24
+ ".": {
25
+ "types": "./index.d.ts",
26
+ "require": "./index.cjs",
27
+ "import": "./index.js"
104
28
  }
105
29
  },
106
30
  "repository": {