n8n-nodes-bgos 1.0.1 → 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 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. Configure BGOS API credentials with your backend URL
51
- 3. Use the BGOS Trigger node to receive events
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
 
@@ -7,7 +7,7 @@ class BGOSAction {
7
7
  description = {
8
8
  displayName: 'BGOS Action',
9
9
  name: 'bgosAction',
10
- icon: 'file:../../icons/bgos.png',
10
+ icon: 'file:bgos.png',
11
11
  group: ['transform'],
12
12
  version: 1,
13
13
  subtitle: '={{$parameter["operation"]}}',
Binary file
@@ -10,7 +10,7 @@ class Bgos {
10
10
  description = {
11
11
  displayName: 'BGOS',
12
12
  name: 'bgos',
13
- icon: 'file:../../icons/bgos.png',
13
+ icon: 'file:bgos.png',
14
14
  group: ['transform'],
15
15
  version: 1,
16
16
  subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
Binary file
@@ -7,7 +7,7 @@ class BgosTrigger {
7
7
  description = {
8
8
  displayName: 'BGOS Trigger',
9
9
  name: 'bgosTrigger',
10
- icon: 'file:../../icons/bgos.png',
10
+ icon: 'file:bgos.png',
11
11
  group: ['trigger'],
12
12
  version: 1,
13
13
  subtitle: '={{$parameter["updates"]}}',
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-bgos",
3
- "version": "1.0.1",
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",
@@ -37,8 +37,8 @@
37
37
  "dist/credentials/BgosApi.credentials.js"
38
38
  ],
39
39
  "nodes": [
40
- "dist/nodes/Bgos/Bgos.node.js",
41
40
  "dist/nodes/BgosTrigger/BgosTrigger.node.js",
41
+ "dist/nodes/Bgos/Bgos.node.js",
42
42
  "dist/nodes/BGOSAction/BGOSAction.node.js"
43
43
  ]
44
44
  },