uneeq-js 2.46.3 → 2.46.6
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 +2 -38
- package/dist/index.js.LICENSE.txt +23 -0
- package/dist/src/service/locale-detector.d.ts +1 -1
- package/dist/src/service/messaging/messaging-service.d.ts +1 -2
- package/dist/src/types/FaceMeMessage.d.ts +3 -0
- package/dist/src/types/VoiceInputMode.d.ts +2 -1
- package/dist/src/uneeq.d.ts +4 -5
- package/dist/umd/index.js +22606 -24984
- package/package.json +10 -9
- package/readme.md +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uneeq-js",
|
|
3
|
-
"version": "2.46.
|
|
3
|
+
"version": "2.46.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -25,12 +25,13 @@
|
|
|
25
25
|
"fast-text-encoding": "^1.0.0",
|
|
26
26
|
"intrinsic-scale": "^3.0.4",
|
|
27
27
|
"promjs": "^0.4.1",
|
|
28
|
-
"rxjs": "^
|
|
29
|
-
"rxjs-compat": "^6.
|
|
30
|
-
"simple-peer": "9.11.
|
|
31
|
-
"webrtc-adapter": "8.
|
|
28
|
+
"rxjs": "^7.8.1",
|
|
29
|
+
"rxjs-compat": "^6.6.7",
|
|
30
|
+
"simple-peer": "^9.11.1",
|
|
31
|
+
"webrtc-adapter": "^8.2.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
+
"@types/dom-mediacapture-record": "^1.0.16",
|
|
34
35
|
"@types/jasmine": "^2.8.8",
|
|
35
36
|
"@types/node": "^10.9.4",
|
|
36
37
|
"fetch-mock": "7.7.3",
|
|
@@ -45,17 +46,17 @@
|
|
|
45
46
|
"karma-jasmine-html-reporter": "^1.4.0",
|
|
46
47
|
"karma-requirejs": "^1.1.0",
|
|
47
48
|
"karma-safari-launcher": "^1.0.0",
|
|
48
|
-
"karma-typescript": "^5.
|
|
49
|
+
"karma-typescript": "^5.5.4",
|
|
49
50
|
"karma-typescript-es6-transform": "^5.0.0",
|
|
50
51
|
"nock": "^9.6.1",
|
|
51
52
|
"requirejs": "^2.3.6",
|
|
52
|
-
"ts-loader": "^
|
|
53
|
+
"ts-loader": "^9.4.4",
|
|
53
54
|
"ts-node": "^7.0.1",
|
|
54
55
|
"tslint": "^5.11.0",
|
|
55
56
|
"tslint-no-focused-test": "^0.5.0",
|
|
56
57
|
"typedoc": "^0.18.0",
|
|
57
58
|
"typescript": "^3.9.7",
|
|
58
|
-
"webpack": "^
|
|
59
|
-
"webpack-cli": "^
|
|
59
|
+
"webpack": "^5.88.2",
|
|
60
|
+
"webpack-cli": "^5.1.4"
|
|
60
61
|
}
|
|
61
62
|
}
|
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.6
|
|
12
|
+
* Fix build pipeline
|
|
13
|
+
|
|
14
|
+
#### 2.46.5
|
|
15
|
+
* Dependency version updates
|
|
16
|
+
|
|
17
|
+
#### 2.46.4
|
|
18
|
+
* Improve locale detection to ensure we fall back to supported speech to text languages
|
|
19
|
+
|
|
11
20
|
#### 2.46.3
|
|
12
21
|
* Fix for sessions to start without localStorage availability.
|
|
13
22
|
|