@tiledesk/tiledesk-tybot-connector 2.0.21-rc11 → 2.0.21-rc13

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/Logger.js CHANGED
@@ -94,7 +94,6 @@ class Logger {
94
94
  }
95
95
 
96
96
  let topic = LOGS_BASE_ROUTING_KEY + `.${this.request_id}`;
97
- console.log("LOGGER publishing on topic ", topic)
98
97
  publisher.publish(data, topic);
99
98
  return;
100
99
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-tybot-connector",
3
- "version": "2.0.21-rc11",
3
+ "version": "2.0.21-rc13",
4
4
  "description": "Tiledesk Tybot connector",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -15,7 +15,7 @@
15
15
  "@tiledesk/tiledesk-chatbot-client": "^0.5.30",
16
16
  "@tiledesk/tiledesk-chatbot-util": "^0.8.39",
17
17
  "@tiledesk/tiledesk-client": "^0.10.13",
18
- "@tiledesk/tiledesk-multi-worker": "^0.3.2",
18
+ "@tiledesk/tiledesk-multi-worker": "^0.3.3",
19
19
  "accept-language-parser": "^1.5.0",
20
20
  "app-root-path": "^3.1.0",
21
21
  "axios": "^1.7.7",
@@ -778,10 +778,8 @@ class TiledeskChatbotUtil {
778
778
  }
779
779
  let currentLeadName = await chatbot.getParameter(TiledeskChatbotConst.REQ_LEAD_USERFULLNAME_KEY);
780
780
  winston.debug("(TiledeskChatbotUtil) You lead email from attributes: " + currentLeadEmail);
781
- console.log("currentLeadName: ", currentLeadName)
782
781
  if (message.request.lead.fullname && !currentLeadName) {
783
782
  // worth saving
784
- console.log("inside if")
785
783
  winston.debug("(TiledeskChatbotUtil) worth saving email");
786
784
  try {
787
785
  await chatbot.addParameter(TiledeskChatbotConst.REQ_LEAD_USERFULLNAME_KEY, message.request.lead.fullname);