n8n-nodes-zoho-desk 1.0.2 → 1.0.4
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/README.md
CHANGED
|
@@ -270,7 +270,7 @@ The node detects rate limiting (HTTP 429) and provides clear error messages.
|
|
|
270
270
|
|
|
271
271
|
```bash
|
|
272
272
|
# Clone the repository
|
|
273
|
-
git clone https://github.com/ron137/zoho-desk
|
|
273
|
+
git clone https://github.com/ron137/n8n-nodes-zoho-desk.git
|
|
274
274
|
|
|
275
275
|
# Install dependencies
|
|
276
276
|
npm install
|
|
@@ -312,7 +312,7 @@ MIT
|
|
|
312
312
|
## Support
|
|
313
313
|
|
|
314
314
|
If you encounter any issues or have questions:
|
|
315
|
-
1. Check the [Issues](https://github.com/ron137/zoho-desk
|
|
315
|
+
1. Check the [Issues](https://github.com/ron137/n8n-nodes-zoho-desk/issues) page
|
|
316
316
|
2. Create a new issue if your problem isn't already listed
|
|
317
317
|
|
|
318
318
|
## Changelog
|
|
@@ -335,5 +335,5 @@ If you encounter any issues or have questions:
|
|
|
335
335
|
- [Zoho Desk API Documentation](https://desk.zoho.com/DeskAPIDocument)
|
|
336
336
|
- [n8n Documentation](https://docs.n8n.io/)
|
|
337
337
|
- [n8n Community Nodes](https://docs.n8n.io/integrations/community-nodes/)
|
|
338
|
-
- [GitHub Repository](https://github.com/ron137/zoho-desk
|
|
338
|
+
- [GitHub Repository](https://github.com/ron137/n8n-nodes-zoho-desk)
|
|
339
339
|
- [npm Package](https://www.npmjs.com/package/n8n-nodes-zoho-desk)
|
|
@@ -477,7 +477,7 @@ class ZohoDesk {
|
|
|
477
477
|
this.description = {
|
|
478
478
|
displayName: 'Zoho Desk',
|
|
479
479
|
name: 'zohoDesk',
|
|
480
|
-
icon: 'file:zohoDesk.
|
|
480
|
+
icon: 'file:zohoDesk.png',
|
|
481
481
|
group: ['transform'],
|
|
482
482
|
version: 1,
|
|
483
483
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-zoho-desk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "n8n community node for Zoho Desk API integration - Tickets, Contacts, and Accounts management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"crm"
|
|
13
13
|
],
|
|
14
14
|
"license": "MIT",
|
|
15
|
-
"homepage": "https://github.com/ron137/zoho-desk
|
|
15
|
+
"homepage": "https://github.com/ron137/n8n-nodes-zoho-desk",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "Ron",
|
|
18
18
|
"email": "rons137@gmail.com"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/ron137/zoho-desk
|
|
22
|
+
"url": "git+https://github.com/ron137/n8n-nodes-zoho-desk.git"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"main": "index.js",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsc && npm run copy:icons",
|
|
33
|
-
"copy:icons": "cp nodes/ZohoDesk/*.svg dist/nodes/ZohoDesk/ 2>/dev/null || true",
|
|
33
|
+
"copy:icons": "cp nodes/ZohoDesk/*.svg nodes/ZohoDesk/*.png dist/nodes/ZohoDesk/ 2>/dev/null || true",
|
|
34
34
|
"dev": "tsc --watch",
|
|
35
35
|
"format": "prettier nodes credentials --write",
|
|
36
36
|
"lint": "eslint 'nodes/**/*.ts' 'credentials/**/*.ts'",
|