n8n-nodes-bgos 1.4.2 → 1.4.3
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.
|
@@ -14,15 +14,13 @@ class BGOSAction {
|
|
|
14
14
|
name: 'bgosAction',
|
|
15
15
|
icon: 'file:bgos-icon.svg',
|
|
16
16
|
group: ['transform'],
|
|
17
|
-
// n8n typeVersion.
|
|
18
|
-
//
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
//
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
// (Sender / File ID / User ID moved into collection)
|
|
25
|
-
version: [1, 1.1, 1.2],
|
|
17
|
+
// n8n typeVersion. INTEGER ONLY — some n8n deployments store this as a
|
|
18
|
+
// postgres INT column on package install and reject fractional/array
|
|
19
|
+
// forms with "invalid input syntax for type integer". Bump only on
|
|
20
|
+
// BREAKING schema changes (with migration logic). For non-breaking
|
|
21
|
+
// additions, leave at 1 and surface the npm package version via the
|
|
22
|
+
// description string below — that's what users actually want to see.
|
|
23
|
+
version: 1,
|
|
26
24
|
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
|
27
25
|
description: `Interact with the BGOS chat platform. Send/edit/pin/delete messages, ask the user a question, send a message and wait for the reply, fetch chat metadata, manage assistants and files. Usable as an AI agent tool. (n8n-nodes-bgos v${package_json_1.version})`,
|
|
28
26
|
defaults: { name: 'BGOS Action' },
|
package/dist/package.json
CHANGED