n8n-nodes-chatflow 1.2.1 → 1.2.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.
|
@@ -159,7 +159,7 @@ class ChatflowTrigger {
|
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
ChatflowTrigger.description = {
|
|
162
|
-
displayName: '
|
|
162
|
+
displayName: 'Chatflow Trigger',
|
|
163
163
|
name: 'chatflowTrigger',
|
|
164
164
|
icon: {
|
|
165
165
|
light: 'file:black.svg',
|
|
@@ -167,7 +167,7 @@ ChatflowTrigger.description = {
|
|
|
167
167
|
},
|
|
168
168
|
group: ['trigger'],
|
|
169
169
|
version: 1.1,
|
|
170
|
-
subtitle: '
|
|
170
|
+
subtitle: 'On any action',
|
|
171
171
|
description: 'Triggers workflow on any action via Chatflow',
|
|
172
172
|
defaults: { name: 'Chatflow Trigger' },
|
|
173
173
|
inputs: [],
|
|
@@ -192,33 +192,33 @@ ChatflowTrigger.description = {
|
|
|
192
192
|
description: 'Types of processed webhooks. All types will be processed if none is selected.',
|
|
193
193
|
options: [
|
|
194
194
|
{
|
|
195
|
-
|
|
196
|
-
|
|
195
|
+
name: 'Incoming Message',
|
|
196
|
+
value: 'incoming_message',
|
|
197
197
|
description: 'Trigger on new incoming message',
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
|
-
|
|
201
|
-
|
|
200
|
+
name: 'Delivery Status',
|
|
201
|
+
value: 'delivery_status',
|
|
202
202
|
description: 'Trigger on message delivery status updates',
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
|
-
|
|
206
|
-
|
|
205
|
+
name: 'Authorization Status',
|
|
206
|
+
value: 'authorization_status',
|
|
207
207
|
description: 'Trigger on instance authorization changes',
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
|
-
|
|
211
|
-
|
|
210
|
+
name: 'Incoming Call',
|
|
211
|
+
value: 'incoming_call',
|
|
212
212
|
description: 'Trigger on incoming voice/video calls',
|
|
213
213
|
},
|
|
214
214
|
{
|
|
215
|
-
|
|
216
|
-
|
|
215
|
+
name: 'Outgoing Message Sent From API',
|
|
216
|
+
value: 'outgoing_message_api',
|
|
217
217
|
description: 'Trigger on new outgoing message sent from API',
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
|
-
|
|
221
|
-
|
|
220
|
+
name: 'Outgoing Message Sent From Phone',
|
|
221
|
+
value: 'outgoing_message_phone',
|
|
222
222
|
description: 'Trigger on new outgoing message sent from phone',
|
|
223
223
|
},
|
|
224
224
|
],
|
|
@@ -231,18 +231,18 @@ ChatflowTrigger.description = {
|
|
|
231
231
|
description: 'Process webhooks based on messages from personal/group chats',
|
|
232
232
|
options: [
|
|
233
233
|
{
|
|
234
|
-
|
|
235
|
-
|
|
234
|
+
name: 'Receive All',
|
|
235
|
+
value: 'all',
|
|
236
236
|
description: 'Process webhooks from all chats',
|
|
237
237
|
},
|
|
238
238
|
{
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
name: 'Only From Chats',
|
|
240
|
+
value: 'chats',
|
|
241
241
|
description: 'Process webhooks only from personal chats',
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
|
-
|
|
245
|
-
|
|
244
|
+
name: 'Only From Groups',
|
|
245
|
+
value: 'groups',
|
|
246
246
|
description: 'Process webhooks only from group chats',
|
|
247
247
|
},
|
|
248
248
|
],
|