@tiledesk/tiledesk-server 2.10.96 → 2.10.97

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
@@ -5,11 +5,12 @@
5
5
  🚀 IN PRODUCTION 🚀
6
6
  (https://www.npmjs.com/package/@tiledesk/tiledesk-server/v/2.3.77)
7
7
 
8
- # 2.10.96
8
+ # 2.10.97
9
9
  - Added: support for hybrid search
10
10
  - Added: support for chunks_only option
11
11
  - Added: support for native logs
12
12
  - Bug fix: unexpceted indexing run of all urls in the project
13
+ - Added: BASE_FILE_URL to twilio voice listener
13
14
 
14
15
  # 2.10.95 (Aborted)
15
16
  - Added: support for hybrid search
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-server",
3
3
  "description": "The Tiledesk server module",
4
- "version": "2.10.96",
4
+ "version": "2.10.97",
5
5
  "scripts": {
6
6
  "start": "node ./bin/www",
7
7
  "pretest": "mongodb-runner start",
@@ -42,7 +42,8 @@ class Listener {
42
42
  voice_twilio.startApp({
43
43
  MONGODB_URI: config.databaseUri,
44
44
  dbconnection: dbConnection,
45
- BASE_URL: apiUrl + "/modules/voice-twilio",
45
+ BASE_URL: apiUrl + "/modules/voice-twilio",
46
+ BASE_FILE_URL: apiUrl,
46
47
  REDIS_HOST: host,
47
48
  REDIS_PORT: port,
48
49
  REDIS_PASSWORD: password,