You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description='Triggers when you receive a new chatbot message.'
11
11
version='1.0.0'
12
12
triggerInstant=true
13
13
14
14
inputs: JSONSchema7={
15
15
required: [],
16
16
properties: {
17
-
activateForKeywords: {
18
-
type: 'boolean',
19
-
title: 'Only activate for specific keywords',
20
-
description: 'Whether this chatbot should be run for any keyword or only specific keywords.',
21
-
},
22
17
activateOncePerContact: {
23
18
type: 'boolean',
24
19
title: 'Only activate once per contact',
@@ -27,12 +22,13 @@ export class NewChatbotMessageTrigger extends OperationTrigger {
27
22
keywords: {
28
23
type: 'string',
29
24
title: 'Keywords',
30
-
description: 'Enter one or more keywords separated by commas. Keywords are case insensitive.',
25
+
description:
26
+
'Only activate this chatbot when the user sends one of these keywords. Enter one or more keywords separated by commas. Leave blank to activate on any message.',
31
27
},
32
28
tags: {
33
29
type: 'string',
34
30
title: 'Tags',
35
-
description: 'Enter one or more tags separated by commas.',
31
+
description: 'Tag contacts who message this chatbot. Enter one or more tags separated by commas.',
36
32
},
37
33
},
38
34
}
@@ -62,7 +58,7 @@ export class NewChatbotMessageTrigger extends OperationTrigger {
0 commit comments