n8n-nodes-chatflow 1.1.6 → 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'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-chatflow",
3
- "version": "1.1.6",
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,7 @@
34
34
  "LICENSE"
35
35
  ],
36
36
  "scripts": {
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('chatflowMessage')) throw new Error('chatflowMessage missing!'); if (!names.includes('chatflowTrigger')) throw new Error('chatflowTrigger missing!');\"",
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
38
  "prepack": "npm run validate",
39
39
  "test": "npm run validate"
40
40
  },