impact-chatbot 2.3.3 → 2.3.4
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.cjs.js +28 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +29 -10
- package/dist/index.esm.js.map +1 -1
- package/dist/services/chatbot-services.d.ts +1 -0
- package/package.json +3 -3
|
@@ -12,3 +12,4 @@ export declare const uploadFile: (payload: any) => Promise<any>;
|
|
|
12
12
|
export declare const triggerRefresh: (baseUrl: any) => Promise<any>;
|
|
13
13
|
export declare const fetchChatbotFilterConfig: (dimension?: string) => Promise<any>;
|
|
14
14
|
export declare const getFilterOptions: (postBody: any) => () => Promise<any>;
|
|
15
|
+
export declare const stopAgentFlow: (payload: any, baseUrl: any) => Promise<any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "impact-chatbot",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "Standalone chatbot library - 1:1 copy of smartBot converted to TypeScript",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"@mui/material": "^5.0.0",
|
|
30
30
|
"@mui/styles": "^5.0.0",
|
|
31
31
|
"axios": "^1.0.0",
|
|
32
|
-
"impact-ui-chatbot": "*",
|
|
33
32
|
"lodash": "^4.0.0",
|
|
34
33
|
"react": "^17.0.0 || ^18.0.0",
|
|
35
34
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
36
35
|
"react-redux": "^8.0.0",
|
|
37
|
-
"redux": "^4.0.0"
|
|
36
|
+
"redux": "^4.0.0",
|
|
37
|
+
"impact-ui-v3": "*"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@rollup/plugin-commonjs": "^25.0.0",
|