n8n-nodes-bgos 1.0.0 → 1.0.2
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 +4 -4
- package/dist/nodes/BGOSAction/BGOSAction.node.js +1 -1
- package/dist/nodes/BGOSAction/bgos.png +0 -0
- package/dist/nodes/Bgos/Bgos.node.js +1 -1
- package/dist/nodes/Bgos/bgos.png +0 -0
- package/dist/nodes/BgosTrigger/BgosTrigger.node.js +1 -1
- package/dist/nodes/BgosTrigger/bgos.png +0 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -46,10 +46,10 @@ FORWARDER_WEBHOOK_URL=https://your-n8n-instance.com/webhook/bgos-webhook
|
|
|
46
46
|
|
|
47
47
|
### In n8n
|
|
48
48
|
|
|
49
|
-
1. Install the package: `pnpm install n8n-nodes-bgos`
|
|
50
|
-
2.
|
|
51
|
-
3.
|
|
52
|
-
4. Use the BGOS node to perform actions
|
|
49
|
+
1. Install the package: `pnpm install n8n-nodes-bgos` (or add it in **Settings → Community nodes**).
|
|
50
|
+
2. **Finding the trigger:** Click **+** (Add node), search for **"BGOS Trigger"** and pick the one with the cube icon (community node). You can use it as the workflow trigger or add it from the canvas.
|
|
51
|
+
3. Configure **BGOS API** credentials (from the node’s credential dropdown) with your backend Base URL.
|
|
52
|
+
4. Use the **BGOS Trigger** node to receive events and the **BGOS** node to perform actions.
|
|
53
53
|
|
|
54
54
|
## Development
|
|
55
55
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-bgos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "n8n community nodes for BGOS (Brand Growth OS) - AI assistant chat platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"homepage": "https://github.com/BrandGrowthOS/bgos-n8n-nodes",
|
|
15
15
|
"author": {
|
|
16
|
+
"email": "alinur.dzjeenbekov@plus8soft.com",
|
|
16
17
|
"name": "BGOS Team",
|
|
17
18
|
"url": "https://github.com/BrandGrowthOS"
|
|
18
19
|
},
|
|
@@ -36,8 +37,8 @@
|
|
|
36
37
|
"dist/credentials/BgosApi.credentials.js"
|
|
37
38
|
],
|
|
38
39
|
"nodes": [
|
|
39
|
-
"dist/nodes/Bgos/Bgos.node.js",
|
|
40
40
|
"dist/nodes/BgosTrigger/BgosTrigger.node.js",
|
|
41
|
+
"dist/nodes/Bgos/Bgos.node.js",
|
|
41
42
|
"dist/nodes/BGOSAction/BGOSAction.node.js"
|
|
42
43
|
]
|
|
43
44
|
},
|