@tiledesk/tiledesk-tybot-connector 2.0.9-rc1 → 2.0.9

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.
Files changed (80) hide show
  1. package/CHANGELOG.md +2 -27
  2. package/ExtApi.js +8 -1
  3. package/ExtUtil.js +6 -5
  4. package/Logger.js +13 -30
  5. package/TdCache copy.js +242 -0
  6. package/engine/IntentForm.js +1 -0
  7. package/engine/IntentsMachineFactory.js +4 -4
  8. package/engine/MongodbBotsDataSource.js +1 -0
  9. package/engine/MongodbIntentsMachine.js +1 -0
  10. package/engine/TiledeskChatbot.js +16 -11
  11. package/engine/TiledeskIntentsMachine.js +2 -1
  12. package/engine/mock/MockBotsDataSource.js +2 -1
  13. package/index.js +25 -22
  14. package/logs/app1.log +554 -0
  15. package/package.json +2 -3
  16. package/services/AIService.js +1 -1
  17. package/tiledeskChatbotPlugs/DirectivesChatbotPlug.js +18 -24
  18. package/tiledeskChatbotPlugs/FillParamsChatbotPlug.js +2 -1
  19. package/tiledeskChatbotPlugs/MarkbotChatbotPlug.js +3 -1
  20. package/tiledeskChatbotPlugs/SplitsChatbotPlug.js +3 -1
  21. package/tiledeskChatbotPlugs/WebhookChatbotPlug.js +9 -7
  22. package/tiledeskChatbotPlugs/directives/DEPRECATED_DirIfNotOpenHours.js +10 -3
  23. package/tiledeskChatbotPlugs/directives/DEPRECATED_DirIfOpenHours.js +9 -2
  24. package/tiledeskChatbotPlugs/directives/DirAddTags.js +3 -1
  25. package/tiledeskChatbotPlugs/directives/DirAiPrompt.js +1 -0
  26. package/tiledeskChatbotPlugs/directives/DirAskGPT.js +1 -0
  27. package/tiledeskChatbotPlugs/directives/DirAskGPTV2.js +1 -0
  28. package/tiledeskChatbotPlugs/directives/DirAssign.js +8 -5
  29. package/tiledeskChatbotPlugs/directives/DirAssignFromFunction.js +3 -1
  30. package/tiledeskChatbotPlugs/directives/DirAssistant.js +1 -0
  31. package/tiledeskChatbotPlugs/directives/DirBrevo.js +6 -4
  32. package/tiledeskChatbotPlugs/directives/DirCaptureUserReply.js +1 -0
  33. package/tiledeskChatbotPlugs/directives/DirClose.js +2 -0
  34. package/tiledeskChatbotPlugs/directives/DirCode.js +1 -0
  35. package/tiledeskChatbotPlugs/directives/DirCondition.js +1 -0
  36. package/tiledeskChatbotPlugs/directives/DirConnectBlock.js +1 -0
  37. package/tiledeskChatbotPlugs/directives/DirContactUpdate.js +3 -1
  38. package/tiledeskChatbotPlugs/directives/DirCustomerio.js +1 -0
  39. package/tiledeskChatbotPlugs/directives/DirDeflectToHelpCenter.js +5 -2
  40. package/tiledeskChatbotPlugs/directives/DirDeleteVariable.js +1 -0
  41. package/tiledeskChatbotPlugs/directives/DirDepartment.js +3 -1
  42. package/tiledeskChatbotPlugs/directives/DirFireTiledeskEvent.js +3 -1
  43. package/tiledeskChatbotPlugs/directives/DirForm.js +3 -1
  44. package/tiledeskChatbotPlugs/directives/DirGptTask.js +1 -0
  45. package/tiledeskChatbotPlugs/directives/DirGptTask_OLD.js +55 -36
  46. package/tiledeskChatbotPlugs/directives/DirHubspot.js +1 -0
  47. package/tiledeskChatbotPlugs/directives/DirIfOnlineAgents.js +4 -1
  48. package/tiledeskChatbotPlugs/directives/DirIfOnlineAgentsV2.js +4 -1
  49. package/tiledeskChatbotPlugs/directives/DirIfOpenHours.js +2 -0
  50. package/tiledeskChatbotPlugs/directives/DirIfOpenHours_OLD.js +12 -8
  51. package/tiledeskChatbotPlugs/directives/DirIntent.js +5 -6
  52. package/tiledeskChatbotPlugs/directives/DirJSONCondition.js +1 -0
  53. package/tiledeskChatbotPlugs/directives/DirLockIntent.js +1 -0
  54. package/tiledeskChatbotPlugs/directives/DirMake.js +16 -1
  55. package/tiledeskChatbotPlugs/directives/DirMessage.js +3 -1
  56. package/tiledeskChatbotPlugs/directives/DirMessageToBot.js +1 -0
  57. package/tiledeskChatbotPlugs/directives/DirMoveToAgent.js +4 -1
  58. package/tiledeskChatbotPlugs/directives/DirMoveToUnassigned.js +3 -0
  59. package/tiledeskChatbotPlugs/directives/DirQapla.js +1 -0
  60. package/tiledeskChatbotPlugs/directives/DirRandomReply.js +3 -1
  61. package/tiledeskChatbotPlugs/directives/DirRemoveCurrentBot.js +2 -1
  62. package/tiledeskChatbotPlugs/directives/DirReplaceBot.js +3 -1
  63. package/tiledeskChatbotPlugs/directives/DirReplaceBotV2.js +3 -1
  64. package/tiledeskChatbotPlugs/directives/DirReplaceBotV3.js +3 -1
  65. package/tiledeskChatbotPlugs/directives/DirReply.js +18 -7
  66. package/tiledeskChatbotPlugs/directives/DirReplyV2.js +13 -8
  67. package/tiledeskChatbotPlugs/directives/DirSendEmail.js +3 -1
  68. package/tiledeskChatbotPlugs/directives/DirSendWhatsapp.js +1 -0
  69. package/tiledeskChatbotPlugs/directives/DirSetAttribute.js +1 -0
  70. package/tiledeskChatbotPlugs/directives/DirSetAttributeV2.js +4 -1
  71. package/tiledeskChatbotPlugs/directives/DirSetConversationTags.js +3 -1
  72. package/tiledeskChatbotPlugs/directives/DirUnlockIntent.js +1 -0
  73. package/tiledeskChatbotPlugs/directives/DirWait.js +1 -0
  74. package/tiledeskChatbotPlugs/directives/DirWebRequest.js +1 -0
  75. package/tiledeskChatbotPlugs/directives/DirWebRequestV2.js +16 -1
  76. package/tiledeskChatbotPlugs/directives/DirWebRequestV2_old.js +417 -0
  77. package/tiledeskChatbotPlugs/directives/DirWebResponse.js +40 -6
  78. package/tiledeskChatbotPlugs/directives/DirWhatsappByAttribute.js +1 -0
  79. package/tiledeskChatbotPlugs/directives/Directives.js +0 -1
  80. package/utils/TiledeskChatbotUtil.js +57 -19
package/logs/app1.log CHANGED
@@ -15515,3 +15515,557 @@ error: (TiledeskExpression) evaluateJavascriptExpression error: missing ) after
15515
15515
  error: (TiledeskExpression)Condition evaluation stopped because of invalid operand2 [object Object]
15516
15516
  error: (TiledeskExpression) Condition evaluation stopped because of invalid operand1 11height
15517
15517
  error: (TiledeskExpression) Invalid JSON Group expression {"conditions":[{"operand1":"11height","operand2":{"type":"const","value":"1"},"operator":"greaterThan","type":"condition"},{"operator":"AND","type":"operator"},{"operand1":"name","operand2":{"type":"const","value":"And"},"operator":"startsWith","type":"condition"}],"type":"expression"}
15518
+ info: Starting tilebot server...
15519
+ info: (Tilebot) Starting Tilebot..
15520
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15521
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15522
+ info: (Tilebot) Log: false
15523
+ info: (Tilebot) MAX_STEPS: 1000
15524
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15525
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15526
+ info: (Tilebot) Using static bots
15527
+ info: (Tilebot) Connecting Redis...
15528
+ info: (Tilebot) Redis connected
15529
+ info: (Tilebot) Tilebot started
15530
+ info: Tilebot route successfully started.
15531
+ info: Tilebot connector listening on port...
15532
+ info: Starting tilebot server...
15533
+ info: (Tilebot) Starting Tilebot..
15534
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15535
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15536
+ info: (Tilebot) Log: false
15537
+ info: (Tilebot) MAX_STEPS: 1000
15538
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15539
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15540
+ info: (Tilebot) Using static bots
15541
+ info: (Tilebot) Connecting Redis...
15542
+ info: (Tilebot) Redis connected
15543
+ info: (Tilebot) Tilebot started
15544
+ info: Tilebot route successfully started.
15545
+ info: Tilebot connector listening on port
15546
+ info: Starting tilebot server...
15547
+ info: (Tilebot) Starting Tilebot..
15548
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15549
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15550
+ info: (Tilebot) Log: false
15551
+ info: (Tilebot) MAX_STEPS: 1000
15552
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15553
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15554
+ info: (Tilebot) Using static bots
15555
+ info: (Tilebot) Connecting Redis...
15556
+ info: (Tilebot) Redis connected
15557
+ info: (Tilebot) Tilebot started
15558
+ info: Tilebot route successfully started.
15559
+ info: Tilebot connector listening on port
15560
+ error: Axios error response data: Integration not found for model undefined
15561
+ error: Error: DirAiPrompt llm key not found in integrations
15562
+ error: Axios error response data: {"detail":[{"loc":["string",0],"msg":"this is the error message","type":"string"}]}
15563
+ error: DirAiPrompt openai err: Request failed with status code 422 {"code":"ERR_BAD_REQUEST","config":{"adapter":["xhr","http","fetch"],"data":"{\"question\":\"this is the question\",\"llm\":\"myllm\",\"model\":\"llmmodel\",\"llm_key\":\"example_api_key\",\"temperature\":0.7,\"max_tokens\":512}","env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/api/ask","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"name":"AxiosError","request":{"_closed":false,"_contentLength":"131","_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /api/ask HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 131\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/api/ask","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"POST","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/api/ask","pathname":"/api/ask","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":131,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/api/ask","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Content-Type","application/json; charset=utf-8","Content-Length","83","ETag","W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","Date","Wed, 09 Apr 2025 14:07:27 GMT","Connection","close"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/api/ask","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":422,"statusMessage":"Unprocessable Entity","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"response":{"config":{"adapter":["xhr","http","fetch"],"data":"{\"question\":\"this is the question\",\"llm\":\"myllm\",\"model\":\"llmmodel\",\"llm_key\":\"example_api_key\",\"temperature\":0.7,\"max_tokens\":512}","env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"post","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/api/ask","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"data":{"detail":[{"loc":["string",0],"msg":"this is the error message","type":"string"}]},"headers":{"connection":"close","content-length":"83","content-type":"application/json; charset=utf-8","date":"Wed, 09 Apr 2025 14:07:27 GMT","etag":"W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","x-powered-by":"Express"},"request":{"_closed":false,"_contentLength":"131","_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"POST /api/ask HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nUser-Agent: axios/1.7.7\r\nContent-Length: 131\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/api/ask","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Content-Length":"131","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"POST","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/api/ask","pathname":"/api/ask","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":131,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"POST","outputData":[],"outputSize":0,"parser":null,"path":"/api/ask","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Content-Type","application/json; charset=utf-8","Content-Length","83","ETag","W/\"53-r1gE0xIC+8fgNRuH768xfjuFcI8\"","Date","Wed, 09 Apr 2025 14:07:27 GMT","Connection","close"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/api/ask","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":422,"statusMessage":"Unprocessable Entity","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":true,"writable":true},"status":422,"statusText":"Unprocessable Entity"},"stack":"AxiosError: Request failed with status code 422\n at settle (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:2019:12)\n at IncomingMessage.handleStreamEnd (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:3135:11)\n at IncomingMessage.emit (node:events:525:35)\n at endReadableNT (node:internal/streams/readable:1358:12)\n at processTicksAndRejections (node:internal/process/task_queues:83:21)\n at Axios.request (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/node_modules/axios/dist/node/axios.cjs:4287:41)\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)","status":422}
15564
+ info: Starting tilebot server...
15565
+ info: (Tilebot) Starting Tilebot..
15566
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15567
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15568
+ info: (Tilebot) Log: false
15569
+ info: (Tilebot) MAX_STEPS: 1000
15570
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15571
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15572
+ info: (Tilebot) Using static bots
15573
+ info: (Tilebot) Connecting Redis...
15574
+ info: (Tilebot) Redis connected
15575
+ info: (Tilebot) Tilebot started
15576
+ info: Tilebot route successfully started.
15577
+ info: Tilebot connector listening on port 10001
15578
+ error: (DirAskGPT) Error: gptkey is mandatory
15579
+ error: Axios error response data: {"error":"no knowledge base settings found"}
15580
+ error: DirAskGPT Get kb settings error {"error":"no knowledge base settings found"}
15581
+ error: (DirAskGPT) Error: gptkey is mandatory
15582
+ error: (DirAskGPT) Error: question attribute is mandatory. Executing condition false...
15583
+ error: (DirAskGPT) Error: kbid attribute is mandatory. Executing condition false...
15584
+ info: Starting tilebot server...
15585
+ info: (Tilebot) Starting Tilebot..
15586
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15587
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15588
+ info: (Tilebot) Log: false
15589
+ info: (Tilebot) MAX_STEPS: 1000
15590
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15591
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15592
+ info: (Tilebot) Using static bots
15593
+ info: (Tilebot) Connecting Redis...
15594
+ info: (Tilebot) Redis connected
15595
+ info: (Tilebot) Tilebot started
15596
+ info: Tilebot route successfully started.
15597
+ info: Tilebot connector listening on port 10001
15598
+ error: Axios error response data: {"error":{"answer":"No answer","chat_history_dict":{},"citations":null,"content_chunks":null,"error_message":"IndexError('list index out of range')","id":null,"ids":null,"namespace":"66ec24a028a0c600130baa6a","prompt_token_size":0,"source":null,"sources":null,"success":false},"statusText":"Bad Request","success":false}
15599
+ error: DirAskGPTV2 error:
15600
+ info: DirAskGPTV2 Error: gptkey is mandatory
15601
+ error: Axios error response data: {"error":"no knowledge base settings found"}
15602
+ error: DirAskGPTV2 Get kb settings error {"error":"no knowledge base settings found"}
15603
+ info: DirAskGPTV2 Error: gptkey is mandatory
15604
+ error: DirAskGPTV2 Error: question attribute is mandatory. Executing condition false...
15605
+ info: Starting tilebot server...
15606
+ info: (Tilebot) Starting Tilebot..
15607
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15608
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15609
+ info: (Tilebot) Log: false
15610
+ info: (Tilebot) MAX_STEPS: 1000
15611
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15612
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15613
+ info: (Tilebot) Using static bots
15614
+ info: (Tilebot) Connecting Redis...
15615
+ info: (Tilebot) Redis connected
15616
+ info: (Tilebot) Tilebot started
15617
+ info: Tilebot route successfully started.
15618
+ info: Tilebot connector listening on port
15619
+ info: Starting tilebot server...
15620
+ info: (Tilebot) Starting Tilebot..
15621
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15622
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15623
+ info: (Tilebot) Log: false
15624
+ info: (Tilebot) MAX_STEPS: 1000
15625
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15626
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15627
+ info: (Tilebot) Using static bots
15628
+ info: (Tilebot) Connecting Redis...
15629
+ info: (Tilebot) Redis connected
15630
+ info: (Tilebot) Tilebot started
15631
+ info: Tilebot route successfully started.
15632
+ info: Tilebot connector listening on port
15633
+ info: Wait a little (~1s)...
15634
+ info: Starting tilebot server...
15635
+ info: (Tilebot) Starting Tilebot..
15636
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15637
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15638
+ info: (Tilebot) Log: false
15639
+ info: (Tilebot) MAX_STEPS: 1000
15640
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15641
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15642
+ info: (Tilebot) Using static bots
15643
+ info: (Tilebot) Connecting Redis...
15644
+ info: (Tilebot) Redis connected
15645
+ info: (Tilebot) Tilebot started
15646
+ info: Tilebot route successfully started.
15647
+ info: Tilebot connector listening on port
15648
+ error: (TiledeskExpression) evaluateJavascriptExpression error: jsondata2 is not defined - while evaluating the following expression: '
15649
+ console.log('a var...chatbot_name!', context.attributes.chatbot_name);
15650
+ context.setAttribute('myvar', '1');
15651
+ context.deleteAttribute('chatbot_name');
15652
+ context.deleteAttribute('conversation_id');
15653
+ context.attributes.jsondata2.c = 7;
15654
+ context.setAttribute('jsondata2', jsondata2);
15655
+ console.log("all vars:", context.allVars());
15656
+ '
15657
+ info: Starting tilebot server...
15658
+ info: (Tilebot) Starting Tilebot..
15659
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15660
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15661
+ info: (Tilebot) Log: false
15662
+ info: (Tilebot) MAX_STEPS: 1000
15663
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15664
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15665
+ info: (Tilebot) Using static bots
15666
+ info: (Tilebot) Connecting Redis...
15667
+ info: (Tilebot) Redis connected
15668
+ info: (Tilebot) Tilebot started
15669
+ info: Tilebot route successfully started.
15670
+ info: Tilebot connector listening on port
15671
+ info: Starting tilebot server...
15672
+ info: (Tilebot) Starting Tilebot..
15673
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15674
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15675
+ info: (Tilebot) Log: false
15676
+ info: (Tilebot) MAX_STEPS: 1000
15677
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15678
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15679
+ info: (Tilebot) Using static bots
15680
+ info: (Tilebot) Connecting Redis...
15681
+ info: (Tilebot) Redis connected
15682
+ info: (Tilebot) Tilebot started
15683
+ info: Tilebot route successfully started.
15684
+ info: Tilebot connector listening on port
15685
+ info: Starting tilebot server...
15686
+ info: (Tilebot) Starting Tilebot..
15687
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15688
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15689
+ info: (Tilebot) Log: false
15690
+ info: (Tilebot) MAX_STEPS: 1000
15691
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15692
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15693
+ info: (Tilebot) Using static bots
15694
+ info: (Tilebot) Connecting Redis...
15695
+ info: (Tilebot) Redis connected
15696
+ info: (Tilebot) Tilebot started
15697
+ info: Tilebot route successfully started.
15698
+ info: Tilebot connector listening on port
15699
+ error: Axios error response data: {"error":"Required parameters botid not found. Value is 'null' or 'undefined'","success":false}
15700
+ error: Axios error response data: {"error":"Required parameters botid not found. Value is 'null' or 'undefined'","success":false}
15701
+ info: Starting tilebot server...
15702
+ info: (Tilebot) Starting Tilebot..
15703
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15704
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15705
+ info: (Tilebot) Log: false
15706
+ info: (Tilebot) MAX_STEPS: 1000
15707
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15708
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15709
+ info: (Tilebot) Using static bots
15710
+ info: (Tilebot) Connecting Redis...
15711
+ info: (Tilebot) Redis connected
15712
+ info: (Tilebot) Tilebot started
15713
+ info: Tilebot route successfully started.
15714
+ info: Tilebot connector listening on port
15715
+ error: (TiledeskChatbot) An error occurred during exact match: Cannot read properties of undefined (reading '/start') {"stack":"TypeError: Cannot read properties of undefined (reading '/start')\n at MockBotsDataSource.getByExactMatch (/Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/mock/MockBotsDataSource.js:41:71)\n at /Users/gabriele95/Desktop/Tiledesk/tiledesk-chatbot/tybotRoute/engine/TiledeskChatbot.js:184:42\n at runMicrotasks (<anonymous>)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)"}
15716
+ error: (TiledeskChatbot) An error occurred on IntentsFinder.decode() (/model/parse error):this.intentsFinder.decode is not a function
15717
+ info: Starting tilebot server...
15718
+ info: (Tilebot) Starting Tilebot..
15719
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15720
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15721
+ info: (Tilebot) Log: false
15722
+ info: (Tilebot) MAX_STEPS: 1000
15723
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15724
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15725
+ info: (Tilebot) Using static bots
15726
+ info: (Tilebot) Connecting Redis...
15727
+ info: (Tilebot) Redis connected
15728
+ info: (Tilebot) Tilebot started
15729
+ info: Tilebot route successfully started.
15730
+ info: Tilebot connector listening on port 10001
15731
+ info: Starting tilebot server...
15732
+ info: (Tilebot) Starting Tilebot..
15733
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15734
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15735
+ info: (Tilebot) Log: false
15736
+ info: (Tilebot) MAX_STEPS: 1000
15737
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15738
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15739
+ info: (Tilebot) Using static bots
15740
+ info: (Tilebot) Connecting Redis...
15741
+ info: (Tilebot) Redis connected
15742
+ info: (Tilebot) Tilebot started
15743
+ info: Tilebot route successfully started.
15744
+ info: Tilebot connector listening on port 10001
15745
+ error: Axios error response data: {"error":{"code":null,"message":"you must provide a model parameter","param":null,"type":"invalid_request_error"}}
15746
+ error: (DirGptTask) gptkey is mandatory
15747
+ error: Axios error response data: Communication interrupted
15748
+ error: Axios error response data: <!DOCTYPE html>
15749
+ <html lang="en">
15750
+ <head>
15751
+ <meta charset="utf-8">
15752
+ <title>Error</title>
15753
+ </head>
15754
+ <body>
15755
+ <pre>Cannot GET /projectID/kbsettings</pre>
15756
+ </body>
15757
+ </html>
15758
+
15759
+ error: (DirGptTask) Get KnowledgeBase err:
15760
+ error: (DirGptTask) gptkey is mandatory
15761
+ info: Starting tilebot server...
15762
+ info: (Tilebot) Starting Tilebot..
15763
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15764
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15765
+ info: (Tilebot) Log: false
15766
+ info: (Tilebot) MAX_STEPS: 1000
15767
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15768
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15769
+ info: (Tilebot) Using static bots
15770
+ info: (Tilebot) Connecting Redis...
15771
+ info: (Tilebot) Redis connected
15772
+ info: (Tilebot) Tilebot started
15773
+ info: Tilebot route successfully started.
15774
+ info: Tilebot connector listening on port 10001
15775
+ error: (DirHubspot) err response: Contact already exists. Existing ID: 801 {"category":"CONFLICT","correlationId":"f426b0c0-1063-4aac-9859-f40108dcb09b","status":"error"}
15776
+ error: (DirHubspot) err response: Authentication credentials not found. This API supports OAuth 2.0 authentication and you can find more details at https://developers.hubspot.com/docs/methods/auth/oauth-overview {"category":"INVALID_AUTHENTICATION","correlationId":"53dab600-5de9-4aa3-b631-b0f11f43e062","status":"error"}
15777
+ error: (DirHubspot) err response: Property values were not valid: [{"isValid":false,"message":"Email address dsfsafas@ is invalid","error":"INVALID_EMAIL","name":"email"}] {"category":"VALIDATION_ERROR","correlationId":"e3d7ddf8-5d21-4059-86d0-35ae9093755c","status":"error"}
15778
+ info: Starting tilebot server...
15779
+ info: (Tilebot) Starting Tilebot..
15780
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15781
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15782
+ info: (Tilebot) Log: false
15783
+ info: (Tilebot) MAX_STEPS: 1000
15784
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15785
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15786
+ info: (Tilebot) Using static bots
15787
+ info: (Tilebot) Connecting Redis...
15788
+ info: (Tilebot) Redis connected
15789
+ info: (Tilebot) Tilebot started
15790
+ info: Tilebot route successfully started.
15791
+ info: Tilebot connector listening on port 10001
15792
+ info: Starting tilebot server...
15793
+ info: (Tilebot) Starting Tilebot..
15794
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15795
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15796
+ info: (Tilebot) Log: false
15797
+ info: (Tilebot) MAX_STEPS: 1000
15798
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15799
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15800
+ info: (Tilebot) Using static bots
15801
+ info: (Tilebot) Connecting Redis...
15802
+ info: (Tilebot) Redis connected
15803
+ info: (Tilebot) Tilebot started
15804
+ info: Tilebot route successfully started.
15805
+ info: Tilebot connector listening on port 10001
15806
+ info: Starting tilebot server...
15807
+ info: (Tilebot) Starting Tilebot..
15808
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15809
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15810
+ info: (Tilebot) Log: false
15811
+ info: (Tilebot) MAX_STEPS: 1000
15812
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15813
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15814
+ info: (Tilebot) Using static bots
15815
+ info: (Tilebot) Connecting Redis...
15816
+ info: (Tilebot) Redis connected
15817
+ info: (Tilebot) Tilebot started
15818
+ info: Tilebot route successfully started.
15819
+ info: Tilebot connector listening on port 10001
15820
+ error: (DirMake) Error: webhook_url is undefined or null or empty string:
15821
+ info: Starting tilebot server...
15822
+ info: (Tilebot) Starting Tilebot..
15823
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15824
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15825
+ info: (Tilebot) Log: false
15826
+ info: (Tilebot) MAX_STEPS: 1000
15827
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15828
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15829
+ info: (Tilebot) Using static bots
15830
+ info: (Tilebot) Connecting Redis...
15831
+ info: (Tilebot) Redis connected
15832
+ info: (Tilebot) Tilebot started
15833
+ info: Tilebot route successfully started.
15834
+ info: Tilebot connector listening on port 10001
15835
+ info: Starting tilebot server...
15836
+ info: (Tilebot) Starting Tilebot..
15837
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15838
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15839
+ info: (Tilebot) Log: false
15840
+ info: (Tilebot) MAX_STEPS: 1000
15841
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15842
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15843
+ info: (Tilebot) Using static bots
15844
+ info: (Tilebot) Connecting Redis...
15845
+ info: (Tilebot) Redis connected
15846
+ info: (Tilebot) Tilebot started
15847
+ info: Tilebot route successfully started.
15848
+ info: Tilebot connector listening on port 10001
15849
+ info: Starting tilebot server...
15850
+ info: (Tilebot) Starting Tilebot..
15851
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15852
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15853
+ info: (Tilebot) Log: false
15854
+ info: (Tilebot) MAX_STEPS: 1000
15855
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15856
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15857
+ info: (Tilebot) Using static bots
15858
+ info: (Tilebot) Connecting Redis...
15859
+ info: (Tilebot) Redis connected
15860
+ info: (Tilebot) Tilebot started
15861
+ info: Tilebot route successfully started.
15862
+ info: Tilebot connector listening on port 10001
15863
+ info: Starting tilebot server...
15864
+ info: (Tilebot) Starting Tilebot..
15865
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15866
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15867
+ info: (Tilebot) Log: false
15868
+ info: (Tilebot) MAX_STEPS: 1000
15869
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15870
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15871
+ info: (Tilebot) Using static bots
15872
+ info: (Tilebot) Connecting Redis...
15873
+ info: (Tilebot) Redis connected
15874
+ info: (Tilebot) Tilebot started
15875
+ info: Tilebot route successfully started.
15876
+ info: Tilebot connector listening on port 10001
15877
+ info: Starting tilebot server...
15878
+ info: (Tilebot) Starting Tilebot..
15879
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15880
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15881
+ info: (Tilebot) Log: false
15882
+ info: (Tilebot) MAX_STEPS: 1000
15883
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15884
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15885
+ info: (Tilebot) Using static bots
15886
+ info: (Tilebot) Connecting Redis...
15887
+ info: (Tilebot) Redis connected
15888
+ info: (Tilebot) Tilebot started
15889
+ info: Tilebot route successfully started.
15890
+ info: Tilebot connector listening on port 10001
15891
+ error: Axios error response data:
15892
+ error: Axios error response data:
15893
+ error: Axios error response: {"config":{"adapter":["xhr","http","fetch"],"env":{"Blob":null},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Authorization":"JWT XXX","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"maxBodyLength":-1,"maxContentLength":-1,"method":"get","timeout":0,"transformRequest":[null],"transformResponse":[null],"transitional":{"clarifyTimeoutError":false,"forcedJSONParsing":true,"silentJSONParsing":true},"url":"http://localhost:10002/projectID/integration/name/qapla","xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN"},"data":"","headers":{"connection":"close","content-length":"0","date":"Wed, 09 Apr 2025 14:07:30 GMT","x-powered-by":"Express"},"request":{"_closed":false,"_contentLength":0,"_defaultKeepAlive":true,"_ended":true,"_events":{},"_eventsCount":7,"_hasBody":true,"_header":"GET /projectID/integration/name/qapla HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json\r\nAuthorization: JWT XXX\r\nUser-Agent: axios/1.7.7\r\nAccept-Encoding: gzip, compress, deflate, br\r\nHost: localhost:10002\r\nConnection: close\r\n\r\n","_headerSent":true,"_keepAliveTimeout":0,"_last":true,"_redirectable":{"_currentRequest":"[Circular]","_currentUrl":"http://localhost:10002/projectID/integration/name/qapla","_ended":true,"_ending":true,"_events":{},"_eventsCount":3,"_options":{"agents":{},"beforeRedirects":{},"headers":{"Accept":"application/json, text/plain, */*","Accept-Encoding":"gzip, compress, deflate, br","Authorization":"JWT XXX","Content-Type":"application/json","User-Agent":"axios/1.7.7"},"hostname":"localhost","maxBodyLength":null,"maxRedirects":21,"method":"GET","nativeProtocols":{"http:":{"METHODS":["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"],"STATUS_CODES":{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I'm a Teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Too Early","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"},"globalAgent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"maxHeaderSize":16384},"https:":{"globalAgent":{"_events":{},"_eventsCount":2,"_sessionCache":{"list":[],"map":{}},"defaultPort":443,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxCachedSessions":100,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"https:","requests":{},"scheduling":"lifo","sockets":{},"totalSocketCount":0}}},"path":"/projectID/integration/name/qapla","pathname":"/projectID/integration/name/qapla","port":"10002","protocol":"http:"},"_redirectCount":0,"_redirects":[],"_requestBodyBuffers":[],"_requestBodyLength":0,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":true,"defaultEncoding":"utf8","destroyed":false,"emitClose":true,"ended":false,"ending":false,"errorEmitted":false,"errored":null,"finalCalled":false,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":0,"prefinished":false,"sync":true,"writecb":null,"writelen":0,"writing":false}},"_removedConnection":false,"_removedContLen":false,"_removedTE":false,"_trailer":"","aborted":false,"agent":{"_events":{},"_eventsCount":2,"defaultPort":80,"freeSockets":{},"keepAlive":false,"keepAliveMsecs":1000,"maxFreeSockets":256,"maxSockets":null,"maxTotalSockets":null,"options":{"path":null},"protocol":"http:","requests":{},"scheduling":"lifo","sockets":{"localhost:10002:":[{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null}]},"totalSocketCount":1},"chunkedEncoding":false,"destroyed":false,"finished":true,"host":"localhost","maxHeadersCount":null,"maxRequestsOnConnectionReached":false,"method":"GET","outputData":[],"outputSize":0,"parser":null,"path":"/projectID/integration/name/qapla","protocol":"http:","res":{"_consuming":false,"_dumped":false,"_events":{"end":[null,null]},"_eventsCount":4,"_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":true,"closed":true,"constructed":true,"dataEmitted":false,"decoder":null,"defaultEncoding":"utf8","destroyed":true,"emitClose":true,"emittedReadable":false,"encoding":null,"endEmitted":true,"ended":true,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":false,"objectMode":false,"pipes":[],"readableListening":false,"reading":false,"readingMore":true,"resumeScheduled":false,"sync":true},"aborted":false,"client":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"complete":true,"httpVersion":"1.1","httpVersionMajor":1,"httpVersionMinor":1,"method":null,"rawHeaders":["X-Powered-By","Express","Date","Wed, 09 Apr 2025 14:07:30 GMT","Connection","close","Content-Length","0"],"rawTrailers":[],"redirects":[],"req":"[Circular]","responseUrl":"http://localhost:10002/projectID/integration/name/qapla","socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"statusCode":404,"statusMessage":"Not Found","upgrade":false,"url":""},"reusedSocket":false,"sendDate":false,"shouldKeepAlive":false,"socket":{"_closeAfterHandlingError":false,"_events":{"close":[null,null]},"_eventsCount":7,"_hadError":false,"_host":"localhost","_httpMessage":"[Circular]","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"autoDestroy":true,"awaitDrainWriters":null,"buffer":{"head":null,"length":0,"tail":null},"closeEmitted":false,"closed":false,"constructed":true,"dataEmitted":true,"decoder":null,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"emittedReadable":false,"encoding":null,"endEmitted":false,"ended":false,"errorEmitted":false,"errored":null,"flowing":true,"highWaterMark":16384,"length":0,"multiAwaitDrain":false,"needReadable":true,"objectMode":false,"pipes":[],"readableListening":false,"reading":true,"readingMore":false,"resumeScheduled":false,"sync":false},"_server":null,"_sockname":null,"_writableState":{"afterWriteTickInfo":null,"allBuffers":true,"allNoop":true,"autoDestroy":true,"bufferProcessing":false,"buffered":[],"bufferedIndex":0,"closeEmitted":false,"closed":false,"constructed":true,"corked":0,"decodeStrings":false,"defaultEncoding":"utf8","destroyed":false,"emitClose":false,"ended":true,"ending":true,"errorEmitted":false,"errored":null,"finalCalled":true,"finished":false,"highWaterMark":16384,"length":0,"needDrain":false,"objectMode":false,"pendingcb":1,"prefinished":false,"sync":false,"writecb":null,"writelen":0,"writing":false},"allowHalfOpen":false,"connecting":false,"parser":null,"server":null},"strictContentLength":false,"timeoutCb":null,"upgradeOrConnect":false,"useChunkedEncodingByDefault":false,"writable":true},"status":404,"statusText":"Not Found"}
15894
+ info: (Tilebot) Starting Tilebot..
15895
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15896
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15897
+ info: (Tilebot) Log: false
15898
+ info: (Tilebot) MAX_STEPS: 1000
15899
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15900
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15901
+ info: (Tilebot) Using static bots
15902
+ info: (Tilebot) Connecting Redis...
15903
+ info: (Tilebot) Redis connected
15904
+ info: (Tilebot) Tilebot started
15905
+ info: Starting tilebot server...
15906
+ info: (Tilebot) Starting Tilebot..
15907
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15908
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15909
+ info: (Tilebot) Log: false
15910
+ info: (Tilebot) MAX_STEPS: 1000
15911
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15912
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15913
+ info: (Tilebot) Using static bots
15914
+ info: (Tilebot) Connecting Redis...
15915
+ info: (Tilebot) Redis connected
15916
+ info: (Tilebot) Tilebot started
15917
+ info: Tilebot route successfully started.
15918
+ info: Tilebot connector listening on port 10001
15919
+ info: Starting tilebot server...
15920
+ info: (Tilebot) Starting Tilebot..
15921
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15922
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15923
+ info: (Tilebot) Log: false
15924
+ info: (Tilebot) MAX_STEPS: 1000
15925
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15926
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15927
+ info: (Tilebot) Using static bots
15928
+ info: (Tilebot) Connecting Redis...
15929
+ info: (Tilebot) Redis connected
15930
+ info: (Tilebot) Tilebot started
15931
+ info: Tilebot route successfully started.
15932
+ info: Tilebot connector listening on port 10001
15933
+ info: Starting tilebot server...
15934
+ info: (Tilebot) Starting Tilebot..
15935
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15936
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15937
+ info: (Tilebot) Log: false
15938
+ info: (Tilebot) MAX_STEPS: 1000
15939
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15940
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15941
+ info: (Tilebot) Using static bots
15942
+ info: (Tilebot) Connecting Redis...
15943
+ info: (Tilebot) Redis connected
15944
+ info: (Tilebot) Tilebot started
15945
+ info: Tilebot route successfully started.
15946
+ info: Tilebot connector listening on port 10001
15947
+ info: Wait a little (~2s)...
15948
+ info: Wait a little (~3s)...
15949
+ info: Starting tilebot server...
15950
+ info: (Tilebot) Starting Tilebot..
15951
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15952
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15953
+ info: (Tilebot) Log: false
15954
+ info: (Tilebot) MAX_STEPS: 1000
15955
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15956
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15957
+ info: (Tilebot) Using static bots
15958
+ info: (Tilebot) Connecting Redis...
15959
+ info: (Tilebot) Redis connected
15960
+ info: (Tilebot) Tilebot started
15961
+ info: Tilebot route successfully started.
15962
+ info: Tilebot connector listening on port 10001
15963
+ info: Starting tilebot server...
15964
+ info: (Tilebot) Starting Tilebot..
15965
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15966
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10002/modules/tilebot
15967
+ info: (Tilebot) Log: false
15968
+ info: (Tilebot) MAX_STEPS: 1000
15969
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15970
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15971
+ info: (Tilebot) Using static bots
15972
+ info: (Tilebot) Connecting Redis...
15973
+ info: (Tilebot) Redis connected
15974
+ info: (Tilebot) Tilebot started
15975
+ info: Tilebot route successfully started.
15976
+ info: Tilebot connector listening on port 10001
15977
+ info: Starting tilebot server...
15978
+ info: (Tilebot) Starting Tilebot..
15979
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15980
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15981
+ info: (Tilebot) Log: false
15982
+ info: (Tilebot) MAX_STEPS: 1000
15983
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15984
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15985
+ info: (Tilebot) Using static bots
15986
+ info: (Tilebot) Connecting Redis...
15987
+ info: (Tilebot) Redis connected
15988
+ info: (Tilebot) Tilebot started
15989
+ info: Tilebot route successfully started.
15990
+ info: Tilebot connector listening on port 10001
15991
+ info: Starting tilebot server...
15992
+ info: (Tilebot) Starting Tilebot..
15993
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
15994
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
15995
+ info: (Tilebot) Log: false
15996
+ info: (Tilebot) MAX_STEPS: 1000
15997
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
15998
+ info: (Tilebot) Starting Tilebot connector v2.0.9
15999
+ info: (Tilebot) Using static bots
16000
+ info: (Tilebot) Connecting Redis...
16001
+ info: (Tilebot) Redis connected
16002
+ info: (Tilebot) Tilebot started
16003
+ info: Tilebot route successfully started.
16004
+ info: Tilebot connector listening on port 10001
16005
+ error: DirWebRequestV2 Error parsing webRequest jsonBody: "{\"name\":myname,\"email\":\"myemail\"}"
16006
+ Error: {}
16007
+ info: Starting tilebot server...
16008
+ info: (Tilebot) Starting Tilebot..
16009
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
16010
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
16011
+ info: (Tilebot) Log: false
16012
+ info: (Tilebot) MAX_STEPS: 1000
16013
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
16014
+ info: (Tilebot) Starting Tilebot connector v2.0.9
16015
+ info: (Tilebot) Using static bots
16016
+ info: (Tilebot) Connecting Redis...
16017
+ info: (Tilebot) Redis connected
16018
+ info: (Tilebot) Tilebot started
16019
+ info: Tilebot route successfully started.
16020
+ info: Tilebot connector listening on port 10001
16021
+ info: Redis: value; value: 1
16022
+ info: Redis: value; value: Andrea
16023
+ info: Redis: value; value: Luis
16024
+ info: Redis: value; value: [object Object]
16025
+ info: Redis: value; value: [object Object]
16026
+ info: Redis: total; value: 4
16027
+ info: Redis: total; value: 4
16028
+ info: Redis: total; value: Francesco Latino Tiledesk
16029
+ info: Redis: summary; value: andrea sponziello tiledesk
16030
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"operands","instance":{"operators":["addAsNumber","subtractAsNumber","divideAsNumber","multiplyAsNumber"]},"message":"requires property \"operands\"","name":"required","path":["operation"],"property":"instance.operation","schema":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"},"stack":"instance.operation requires property \"operands\""}}
16031
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"_tdActionType","instance":{},"message":"requires property \"_tdActionType\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"_tdActionType\""},"1":{"argument":"destination","instance":{},"message":"requires property \"destination\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"destination\""},"2":{"argument":"operation","instance":{},"message":"requires property \"operation\"","name":"required","path":[],"property":"instance","schema":{"additionalProperties":false,"properties":{"_tdActionId":{"type":["string","null"]},"_tdActionTitle":{"type":["string","null"]},"_tdActionType":{"enum":["setattribute"],"type":"string"},"destination":{"type":"string"},"operation":{"additionalProperties":false,"properties":{"operands":{"items":{"additionalProperties":false,"if":{"properties":{"isVariable":{"const":true}}},"properties":{"function":{"enum":["capitalizeAsString","upperCaseAsString","lowerCaseAsString","absAsNumber","ceilAsNumber","floorAsNumber","roundAsNumber"],"type":"string"},"isVariable":{"type":"boolean"},"value":{"type":"string"}},"required":["value","isVariable"],"then":{"properties":{"value":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"}}},"type":"object"},"minItems":1,"type":"array"},"operators":{"items":{"enum":["addAsNumber","addAsString","subtractAsNumber","multiplyAsNumber","divideAsNumber"],"type":"string"},"type":"array"}},"required":["operands"],"type":"object"}},"required":["_tdActionType","destination","operation"],"type":"object"},"stack":"instance requires property \"operation\""}}
16032
+ error: (DirSetAttribute) Invalid action: operators === undefined && operands.length !== 1
16033
+ error: (DirSetAttribute) Invalid action: operators.length !== operands.length - 1
16034
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$","instance":"inject(here);","message":"does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\"","name":"pattern","path":["operation","operands",0,"value"],"property":"instance.operation.operands[0].value","schema":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"},"stack":"instance.operation.operands[0].value does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\""}}
16035
+ error: (DirSetAttribute) Invalid action: {"0":{"argument":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$","instance":"inject(here);","message":"does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\"","name":"pattern","path":["operation","operands",1,"value"],"property":"instance.operation.operands[1].value","schema":{"pattern":"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$"},"stack":"instance.operation.operands[1].value does not match pattern \"^[a-zA-Z_]*[a-zA-Z_]+[a-zA-Z0-9_]*$\""}}
16036
+ warn: DirIfOnlineAgents Incorrect directive:
16037
+ warn: DirIfOnlineAgents Incorrect directive:
16038
+ info: Starting tilebot server...
16039
+ info: (Tilebot) Starting Tilebot..
16040
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
16041
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
16042
+ info: (Tilebot) Log: false
16043
+ info: (Tilebot) MAX_STEPS: 1000
16044
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
16045
+ info: (Tilebot) Starting Tilebot connector v2.0.9
16046
+ info: (Tilebot) Using static bots
16047
+ info: (Tilebot) Connecting Redis...
16048
+ info: (Tilebot) Redis connected
16049
+ info: (Tilebot) Tilebot started
16050
+ info: Tilebot route successfully started.
16051
+ info: Tilebot connector listening on port 10001
16052
+ info: Starting tilebot server...
16053
+ info: (Tilebot) Starting Tilebot..
16054
+ info: (Tilebot) settings.API_ENDPOINT:http://localhost:10002
16055
+ info: (Tilebot) settings.TILEBOT_ENDPOINT:http://localhost:10001
16056
+ info: (Tilebot) Log: false
16057
+ info: (Tilebot) MAX_STEPS: 1000
16058
+ info: (Tilebot) MAX_EXECUTION_TIME: 28800000
16059
+ info: (Tilebot) Starting Tilebot connector v2.0.9
16060
+ info: (Tilebot) Using static bots
16061
+ info: (Tilebot) Connecting Redis...
16062
+ info: (Tilebot) Redis connected
16063
+ info: (Tilebot) Tilebot started
16064
+ info: Tilebot route successfully started.
16065
+ info: Tilebot connector listening on port 10001
16066
+ error: (TiledeskExpression) evaluateJavascriptExpression error: Unexpected token ']' - while evaluating the following expression: '$data.andrea[].{ === undefined'
16067
+ error: (TiledeskExpression) evaluateJavascriptExpression error: Unexpected token ']' - while evaluating the following expression: 'Number($data.varName) === Number($data.var[].{)'
16068
+ error: (TiledeskExpression) evaluateJavascriptExpression error: missing ) after argument list - while evaluating the following expression: 'Number($data.age()...[) < Number("10")'
16069
+ error: (TiledeskExpression)Condition evaluation stopped because of invalid operand2 [object Object]
16070
+ error: (TiledeskExpression) Condition evaluation stopped because of invalid operand1 11height
16071
+ error: (TiledeskExpression) Invalid JSON Group expression {"conditions":[{"operand1":"11height","operand2":{"type":"const","value":"1"},"operator":"greaterThan","type":"condition"},{"operator":"AND","type":"operator"},{"operand1":"name","operand2":{"type":"const","value":"And"},"operator":"startsWith","type":"condition"}],"type":"expression"}