uneeq-js 2.46.7 → 2.47.0
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 +1 -1
- package/dist/index.js.LICENSE.txt +6 -0
- package/dist/src/lib/vad/frame-processor.d.ts +89 -0
- package/dist/src/lib/vad/messages.d.ts +6 -0
- package/dist/src/lib/vad/models.d.ts +23 -0
- package/dist/src/lib/vad/real-time-vad.d.ts +61 -0
- package/dist/src/service/speech-handler.d.ts +24 -0
- package/dist/src/types/MessageTypes.d.ts +26 -0
- package/dist/src/types/SpeechHandlerOptions.d.ts +11 -0
- package/dist/src/types/SpeechRecognitionMessageAction.d.ts +4 -0
- package/dist/src/types/SpeechRecognitionStartMessage.d.ts +9 -0
- package/dist/src/types/SpeechRecognitionStopMessage.d.ts +4 -0
- package/dist/src/types/SpeechTranscriptionResult.d.ts +6 -0
- package/dist/src/types/UneeqOptions.d.ts +9 -0
- package/dist/src/uneeq.d.ts +1 -0
- package/dist/umd/index.js +873 -192
- package/package.json +3 -1
- package/readme.md +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uneeq-js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.47.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"@uehreka/seriously": "^1.0.1",
|
|
25
25
|
"fast-text-encoding": "^1.0.0",
|
|
26
26
|
"intrinsic-scale": "^3.0.4",
|
|
27
|
+
"onnxruntime-web": "^1.15.1",
|
|
27
28
|
"promjs": "^0.4.1",
|
|
29
|
+
"ring-buffer-ts": "^1.2.0",
|
|
28
30
|
"rxjs": "^7.8.1",
|
|
29
31
|
"rxjs-compat": "^6.6.7",
|
|
30
32
|
"simple-peer": "^9.11.1",
|
package/readme.md
CHANGED
|
@@ -8,6 +8,9 @@ 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.47.0
|
|
12
|
+
* Added pre-alpha release of speech_recognition input mode.[1;5D[1;5D[1;5D[1;5D[1;5D[1;5D[1;5D[1;5D[1;5D[1;5D[1;5D[1;5D[C
|
|
13
|
+
|
|
11
14
|
#### 2.46.7
|
|
12
15
|
* Updated dependency versions
|
|
13
16
|
|