@tiledesk/tiledesk-tybot-connector 0.2.122 → 0.2.123

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.
package/CHANGELOG.md CHANGED
@@ -17,6 +17,9 @@ available on:
17
17
  - Added flowError on JSONCondition when result = null
18
18
  - Added fix on Filler -->
19
19
 
20
+ # v0.2.123 -> test
21
+ - DirSendEmail removed log
22
+
20
23
  # v0.2.122 -> test
21
24
  - fixed check if (!this.validWebhookURL(this.webhookurl)) {... on WebhookChatbotPlug.js with return
22
25
  - removed logs, err => JSON.stringify(err)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-tybot-connector",
3
- "version": "0.2.122",
3
+ "version": "0.2.123",
4
4
  "description": "Tiledesk Tybot connector",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -82,7 +82,7 @@ class DirSendEmail {
82
82
  to: filled_to,
83
83
  replyto: reply_to
84
84
  }
85
- console.log("email message:", JSON.stringify(message));
85
+ // console.log("email message:", JSON.stringify(message));
86
86
  const message_echo = await this.tdclient.sendEmail(message);
87
87
  if (this.log) {console.log("email sent. filled_subject:", filled_subject);}
88
88
  if (this.log) {console.log("email sent. filled_text:", filled_text);}