@cognigy/webchat 3.34.0 → 3.36.0
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/OSS_LICENSES.txt +16 -25
- package/dist/webchat.esm.js +774 -18888
- package/dist/webchat.js +114 -390
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cognigy/webchat",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.36.0",
|
|
4
4
|
"description": "Webchat for Cognigy.AI",
|
|
5
5
|
"author": "Cognigy GmbH <info@cognigy.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -45,11 +45,13 @@
|
|
|
45
45
|
"tsc:check": "tsc --noEmit",
|
|
46
46
|
"lint": "eslint src/",
|
|
47
47
|
"deps:check": "npx -y depcheck",
|
|
48
|
-
"deps:analyze": "npx -y webpack-bundle-analyzer stats.json dist"
|
|
48
|
+
"deps:analyze": "npx -y webpack-bundle-analyzer stats.json dist",
|
|
49
|
+
"codeql:scan:src": "codeql database create --overwrite codeql-db --language=javascript --source-root=. --codescanning-config=codeql-config.yml && codeql database analyze codeql-db codeql/javascript-queries --format=sarifv2.1.0 --output=codeql-results-src.sarif --threads=0",
|
|
50
|
+
"codeql:scan:dist": "npm run build && codeql database create --overwrite codeql-db --language=javascript --source-root=dist && codeql database analyze codeql-db codeql/javascript-queries --format=sarifv2.1.0 --output=codeql-results-dist.sarif --threads=0"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
51
53
|
"@braintree/sanitize-url": "^6.0.0",
|
|
52
|
-
"@cognigy/chat-components": "0.
|
|
54
|
+
"@cognigy/chat-components": "0.66.0",
|
|
53
55
|
"@cognigy/socket-client": "5.0.0-beta.24",
|
|
54
56
|
"@emotion/cache": "^10.0.29",
|
|
55
57
|
"@emotion/react": "^11.13.0",
|