n8n-nodes-excel-api 1.0.4 → 1.0.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 (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -17,7 +17,7 @@ When working with Excel files directly in n8n:
17
17
  - ❌ Difficult to handle simultaneous webhook form submissions
18
18
 
19
19
  ### The Solution
20
- This node works with [Excel API Server](https://github.com/code4Copilot/excel-api-server) to provide:
20
+ This node works with [Excel API Server](https://gitlab.com/hueyanchen-group/excel-api-server.git) to provide:
21
21
  - ✅ **File Locking** - Automatically queue concurrent requests
22
22
  - ✅ **Data Integrity** - No data loss or corruption
23
23
  - ✅ **Multi-User Support** - Perfect for multi-user HTML form submissions
@@ -35,7 +35,7 @@ npm install n8n-nodes-excel-api
35
35
 
36
36
  ```bash
37
37
  # 1. Clone repository
38
- git clone https://github.com/code4Copilot/n8n-nodes-excel-api.git
38
+ git clone https://gitlab.com/hueyanchen-group/n8n-nodes-excel-api.git
39
39
  cd n8n-nodes-excel-api
40
40
 
41
41
  # 2. Install dependencies
@@ -65,7 +65,7 @@ In n8n:
65
65
 
66
66
  **You must run Excel API Server first!**
67
67
 
68
- Install and start [Excel API Server](https://github.com/code4Copilot/excel-api-server):
68
+ Install and start [Excel API Server](https://gitlab.com/hueyanchen-group/excel-api-server.git):
69
69
 
70
70
  ```bash
71
71
  # Quick start with Docker
@@ -76,7 +76,7 @@ docker run -d \
76
76
  yourusername/excel-api-server
77
77
  ```
78
78
 
79
- See [Excel API Server Documentation](https://github.com/code4Copilot/excel-api-server) for details.
79
+ See [Excel API Server Documentation](https://gitlab.com/hueyanchen-group/excel-api-server.git) for details.
80
80
 
81
81
  ## 🔧 Configuration
82
82
 
@@ -550,12 +550,13 @@ MIT License - see [LICENSE](LICENSE) file
550
550
 
551
551
  ## 🔗 Related Projects
552
552
 
553
- - [Excel API Server](https://github.com/code4Copilot/excel-api-server) - Backend API server (Required)
553
+ - [Excel API Server](https://gitlab.com/hueyanchen-group/excel-api-server.git) - Backend API server (Required)
554
554
  - [n8n](https://github.com/n8n-io/n8n) - Workflow automation tool
555
555
 
556
556
  ## 📧 Support
557
557
 
558
- - GitHub Issues: [Report Issues](https://github.com/code4Copilot/n8n-nodes-excel-api/issues)
558
+ - Work Items: [GitLab Work Items](https://gitlab.com/hueyanchen-group/n8n-nodes-excel-api/-/work_items)
559
+ - Merge Requests: [GitLab Merge Requests](https://gitlab.com/hueyanchen-group/n8n-nodes-excel-api/-/merge_requests)
559
560
  - Email: hueyan.chen@gmail.com
560
561
  - n8n Community: [n8n Forum](https://community.n8n.io)
561
562
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-excel-api",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "n8n node for accessing Excel files via API with concurrent safety",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -10,14 +10,14 @@
10
10
  "spreadsheet"
11
11
  ],
12
12
  "license": "MIT",
13
- "homepage": "https://github.com/code4Copilot/n8n-nodes-excel-api",
13
+ "homepage": "https://gitlab.com/hueyanchen-group/n8n-nodes-excel-api.git",
14
14
  "author": {
15
15
  "name": "Hueyan Chen",
16
16
  "email": "hueyan.chen@gmail.com"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "git+https://github.com/code4Copilot/n8n-nodes-excel-api.git"
20
+ "url": "git+https://gitlab.com/hueyanchen-group/n8n-nodes-excel-api.git"
21
21
  },
22
22
  "main": "index.js",
23
23
  "scripts": {