web-speech-cognitive-services 7.1.3-master.7acb8ee → 7.1.3-master.ff308e6
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/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Bumped dependencies, in PR [#200](https://github.com/compulim/web-speech-cognitive-services/pull/200)
|
|
12
|
+
- Development dependencies
|
|
13
|
+
- [`microsoft-cognitiveservices-speech-sdk@1.17.0`](https://npmjs.com/package/microsoft-cognitiveservices-speech-sdk)
|
|
14
|
+
|
|
9
15
|
## [7.1.2] - 2022-09-27
|
|
10
16
|
|
|
11
17
|
### Changed
|
|
@@ -53,7 +53,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
53
53
|
|
|
54
54
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
55
55
|
|
|
56
|
-
var VERSION = "7.1.3-master.
|
|
56
|
+
var VERSION = "7.1.3-master.ff308e6";
|
|
57
57
|
|
|
58
58
|
function buildSpeechResult(transcript, confidence, isFinal) {
|
|
59
59
|
var result = [{
|
package/lib/SpeechServices.js
CHANGED
|
@@ -68,6 +68,6 @@ function createSpeechServicesPonyfill() {
|
|
|
68
68
|
|
|
69
69
|
var meta = document.createElement('meta');
|
|
70
70
|
meta.setAttribute('name', 'web-speech-cognitive-services');
|
|
71
|
-
meta.setAttribute('content', "version=".concat("7.1.3-master.
|
|
71
|
+
meta.setAttribute('content', "version=".concat("7.1.3-master.ff308e6"));
|
|
72
72
|
document.head.appendChild(meta);
|
|
73
73
|
//# sourceMappingURL=SpeechServices.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-speech-cognitive-services",
|
|
3
|
-
"version": "7.1.3-master.
|
|
3
|
+
"version": "7.1.3-master.ff308e6",
|
|
4
4
|
"description": "Polyfill Web Speech API with Cognitive Services Speech-to-Text service",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cognitive services",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"jest": "^29.0.3",
|
|
67
67
|
"jest-environment-jsdom": "^29.0.3",
|
|
68
68
|
"lolex": "^6.0.0",
|
|
69
|
-
"microsoft-cognitiveservices-speech-sdk": "^1.
|
|
69
|
+
"microsoft-cognitiveservices-speech-sdk": "^1.17.0",
|
|
70
70
|
"node-fetch": "^2.6.7",
|
|
71
71
|
"prettier": "^2.7.1",
|
|
72
72
|
"rimraf": "^3.0.2"
|
|
@@ -83,6 +83,6 @@
|
|
|
83
83
|
"simple-update-in": "2.2.0"
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|
|
86
|
-
"microsoft-cognitiveservices-speech-sdk": "
|
|
86
|
+
"microsoft-cognitiveservices-speech-sdk": "^1.17.0"
|
|
87
87
|
}
|
|
88
88
|
}
|