@botfabrik/engine-webclient 4.37.5 → 4.37.7
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/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -46,7 +46,7 @@ var Devices;
|
|
|
46
46
|
Devices["None"] = "none";
|
|
47
47
|
})(Devices = exports.Devices || (exports.Devices = {}));
|
|
48
48
|
exports.default = (clientName, environment, props) => async (bot) => {
|
|
49
|
-
const logger = bot.logger;
|
|
49
|
+
const logger = bot.logger.child({ clientType: exports.CLIENT_TYPE, clientName });
|
|
50
50
|
bot.webserver.express.enable('trust proxy');
|
|
51
51
|
bot.webserver.express.get('/', (_req, res) => {
|
|
52
52
|
res.redirect(`/${clientName}/embed`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botfabrik/engine-webclient",
|
|
3
|
-
"version": "4.37.
|
|
3
|
+
"version": "4.37.7",
|
|
4
4
|
"description": "Webclient for Botfabriks Bot Engine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"prepublishOnly": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@botfabrik/engine-core": "^4.37.
|
|
21
|
+
"@botfabrik/engine-core": "^4.37.6",
|
|
22
22
|
"@botfabrik/engine-domain": "^4.37.4",
|
|
23
|
-
"@botfabrik/engine-transcript-export": "^4.37.
|
|
23
|
+
"@botfabrik/engine-transcript-export": "^4.37.6",
|
|
24
24
|
"@botfabrik/engine-utils": "^4.37.4",
|
|
25
25
|
"@google-cloud/speech": "^5.1.0",
|
|
26
26
|
"accept-language-parser": "^1.5.0",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"rimraf": "^3.0.2",
|
|
41
41
|
"typescript": "^4.8.3"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "04609d699b3546d33bfd4414f7e19b05f962e936"
|
|
44
44
|
}
|