impact-chatbot 2.3.14 → 2.3.16

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.
@@ -10,6 +10,13 @@ export declare const pxToRem: (pxValue: number) => string;
10
10
  * Replace special characters in a string
11
11
  */
12
12
  export declare const replaceSpecialCharacter: (str: any) => any;
13
+ /**
14
+ * @function
15
+ * @description Function is used to return string by replacing the special characters with respective key mapped to SPECIAL_CHARACTER_MAPPING
16
+ * @param {String} str
17
+ * @returns {String} key of mapped special character used in the string
18
+ */
19
+ export declare const replaceSpecialCharToCharCode: (str: any) => any;
13
20
  /**
14
21
  * Fetch base URL from tenant config
15
22
  * This is a stub - the actual implementation should be passed as a prop
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impact-chatbot",
3
- "version": "2.3.14",
3
+ "version": "2.3.16",
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",