n8n-nodes-chatflow 1.1.5 → 1.1.7

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.
@@ -93,7 +93,7 @@ class ChatflowMessage {
93
93
 
94
94
  ChatflowMessage.description = {
95
95
  displayName: 'Chatflow',
96
- name: 'chatflowMessage',
96
+ name: 'chatflow',
97
97
  icon: {
98
98
  light: 'file:black.svg',
99
99
  dark: 'file:white.svg'
@@ -128,7 +128,7 @@ class ChatflowTrigger {
128
128
  }
129
129
 
130
130
  ChatflowTrigger.description = {
131
- displayName: 'Chatflow',
131
+ displayName: 'Chatflow Trigger',
132
132
  name: 'chatflowTrigger',
133
133
  icon: {
134
134
  light: 'file:black.svg',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-chatflow",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "n8n community nodes for Chatflow — send WhatsApp & Telegram messages and receive triggers",
5
5
  "author": "Chatflow",
6
6
  "license": "MIT",
@@ -34,7 +34,9 @@
34
34
  "LICENSE"
35
35
  ],
36
36
  "scripts": {
37
- "test": "node test-package.js"
37
+ "validate": "node -e \"const pkg = require('./dist/index.js'); const names = pkg.nodes.map(n => n.description.name); console.log('✅ Nodes OK:', names); if (!names.includes('chatflow')) throw new Error('chatflow missing!'); if (!names.includes('chatflowTrigger')) throw new Error('chatflowTrigger missing!');\"",
38
+ "prepack": "npm run validate",
39
+ "test": "npm run validate"
38
40
  },
39
41
  "peerDependencies": {
40
42
  "n8n-core": "*",