uneeq-js 2.45.0 → 2.46.2
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 +7 -7
- package/dist/src/service/locale-detector.d.ts +14 -0
- package/dist/src/service/uneeq-local-storage.d.ts +9 -0
- package/dist/src/types/MessageTypes.d.ts +8 -0
- package/dist/src/types/UneeqOptions.d.ts +0 -2
- package/dist/src/uneeq.d.ts +4 -5
- package/dist/umd/index.js +275 -126
- package/package.json +1 -1
- package/readme.md +9 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -8,6 +8,15 @@ https://docs.uneeq.io/build-your-own-experience
|
|
|
8
8
|
To use uneeq-js with a typescript version < 3.8, 'skipLibCheck' must be set to true.
|
|
9
9
|
|
|
10
10
|
## Release Notes
|
|
11
|
+
#### 2.46.2
|
|
12
|
+
* Fix for session starting in incognito browser windows.
|
|
13
|
+
|
|
14
|
+
#### 2.46.1
|
|
15
|
+
* Tweaking locale detection to better handle null or undefined input
|
|
16
|
+
|
|
17
|
+
#### 2.46.0
|
|
18
|
+
* Adding automatic detection of speech to text language - If no speechToTextLocales set, we will try to automatically detect a users browser language. If we cannot do that, we will fall back to en-US as the default speech to text language.
|
|
19
|
+
|
|
11
20
|
#### 2.45.0
|
|
12
21
|
* Added ability to, when starting a session, specify up to four languages (using locale codes) that a Digital Human should understand
|
|
13
22
|
|