n8n-nodes-n8ndesigner-salla-n8nai 0.3.158 → 0.3.161
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
|
@@ -1,37 +1,38 @@
|
|
|
1
|
-
# n8n
|
|
1
|
+
# n8n Designer – Salla Nodes (Actions + Triggers)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A community node package that lets you **receive and handle Salla webhook events** and run **Salla Actions** inside n8n workflows, with support for multi-endpoint workflows and event-based routing.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package is built for merchants and automation builders who want to connect Salla stores to n8n with a clean, workflow-first experience.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
7
|
+
## Key Features
|
|
8
|
+
- **Salla Trigger**: Receive Salla events inside n8n and use them to start workflows.
|
|
9
|
+
- **Salla Actions**: Perform Salla operations through configurable nodes.
|
|
10
|
+
- **Workflow-friendly design**: Designed for multi-step automations and event-based routing patterns.
|
|
11
|
+
- **Consistent node UX**: Clear node naming and grouping for easier navigation in the node list.
|
|
11
12
|
|
|
12
13
|
## Installation
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
### n8n Self-hosted
|
|
16
|
+
Install via npm in your n8n environment:
|
|
15
17
|
|
|
16
18
|
```bash
|
|
17
19
|
npm install n8n-nodes-n8ndesigner-salla-n8nai
|
|
18
20
|
```
|
|
19
21
|
|
|
20
|
-
|
|
22
|
+
Then restart n8n.
|
|
21
23
|
|
|
22
|
-
|
|
24
|
+
> Note: Availability in n8n Cloud depends on n8n’s community node policies.
|
|
23
25
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
## Usage
|
|
27
|
+
1. Add the **Salla Trigger** node to start a workflow from Salla events.
|
|
28
|
+
2. Add **Salla Actions** nodes to perform operations as part of the same workflow.
|
|
29
|
+
3. Use standard n8n nodes (IF, Switch, HTTP Request, Set, Code, etc.) to route and transform data.
|
|
27
30
|
|
|
28
31
|
## Support & Contact
|
|
29
|
-
|
|
30
32
|
- Website: https://n8ndesigner.com/
|
|
31
33
|
- Email: support@n8ndesigner.com
|
|
32
34
|
- Telegram Community: t.me/+nrnxntkvDn1kNTBk
|
|
33
35
|
- News Channel: t.me/+QPFFnJNnnrM5NmVk
|
|
34
36
|
|
|
35
37
|
## License
|
|
36
|
-
|
|
37
|
-
This project is licensed under the MIT License – see the [LICENSE](./LICENSE) file for details.
|
|
38
|
+
MIT — Copyright (c) 2025 n8n Designer
|
|
@@ -7730,7 +7730,7 @@ var SallaActions = class {
|
|
|
7730
7730
|
group: ["transform"],
|
|
7731
7731
|
version: 1,
|
|
7732
7732
|
icon: "file:assets/salla-logo.svg",
|
|
7733
|
-
description: "
|
|
7733
|
+
description: "Execute Salla Merchant API operations through the unified Actions backend.",
|
|
7734
7734
|
codex: {
|
|
7735
7735
|
categories: ["Sales"],
|
|
7736
7736
|
subcategories: {
|
|
@@ -156,7 +156,8 @@ class SallaTriggers {
|
|
|
156
156
|
group: ["trigger"],
|
|
157
157
|
version: 1,
|
|
158
158
|
icon: "file:assets/salla-logo.svg",
|
|
159
|
-
description:
|
|
159
|
+
description:
|
|
160
|
+
"Receive and handle Salla webhook events routed through N8N Designer with support for multi-endpoint workflows and event-based routing",
|
|
160
161
|
subtitle: '={{$parameter["eventName"]}}',
|
|
161
162
|
defaults: {
|
|
162
163
|
name: "Salla Triggers (Legacy)",
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-n8ndesigner-salla-n8nai",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "
|
|
5
|
-
"license": "MIT",
|
|
3
|
+
"version": "0.3.161",
|
|
4
|
+
"description": "Salla nodes for n8n (Actions + Triggers)",
|
|
5
|
+
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -13,30 +13,18 @@
|
|
|
13
13
|
"LICENSE"
|
|
14
14
|
],
|
|
15
15
|
"keywords": [
|
|
16
|
-
"n8n-community-node",
|
|
17
|
-
"n8n",
|
|
18
|
-
"salla",
|
|
19
|
-
"ecommerce",
|
|
20
16
|
"n8ndesigner",
|
|
21
17
|
"salla-nodes",
|
|
22
18
|
"n8nai",
|
|
23
19
|
"n8n-salla",
|
|
24
20
|
"n8n-designer"
|
|
25
21
|
],
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"url": "https://github.com/alhabir/n8n-nodes-n8ndesigner-salla-n8nai/issues"
|
|
33
|
-
},
|
|
34
|
-
"author": "N8NDesigner",
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "echo \"Skipping build; dist already compiled\"",
|
|
37
|
-
"pack:check": "npm pack --dry-run && tar -tf $(ls -1t n8n-nodes-salla-n8nai-*.tgz | head -n1)",
|
|
38
|
-
"publish:public": "npm publish --access public"
|
|
39
|
-
},
|
|
22
|
+
"author": "N8NDesigner",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "echo \"Skipping build; dist already compiled\"",
|
|
25
|
+
"pack:check": "npm pack --dry-run && tar -tf $(ls -1t n8n-nodes-salla-n8nai-*.tgz | head -n1)",
|
|
26
|
+
"publish:public": "npm publish --access public"
|
|
27
|
+
},
|
|
40
28
|
"dependencies": {
|
|
41
29
|
"n8n-workflow": "^1.116.0"
|
|
42
30
|
},
|