uneeq-js 3.5.0 → 3.6.1

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.
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ /*
3
+ * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
4
+ * This devtool is neither made for production nor for readable output files.
5
+ * It uses "eval()" calls to create a separate source file in the browser devtools.
6
+ * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
7
+ * or disable the default devtool with "devtool: false".
8
+ * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
9
+ */
10
+ (Object(typeof self !== "undefined" ? self : this)["webpackChunkUneeq"] = Object(typeof self !== "undefined" ? self : this)["webpackChunkUneeq"] || []).push([["node_modules_ws_browser_js"],{
11
+
12
+ /***/ "./node_modules/ws/browser.js":
13
+ /*!************************************!*\
14
+ !*** ./node_modules/ws/browser.js ***!
15
+ \************************************/
16
+ /***/ ((module) => {
17
+
18
+ eval("\n\nmodule.exports = function () {\n throw new Error(\n 'ws does not work in the browser. Browser clients must use the native ' +\n 'WebSocket object'\n );\n};\n\n\n//# sourceURL=webpack://Uneeq/./node_modules/ws/browser.js?");
19
+
20
+ /***/ })
21
+
22
+ }]);
@@ -3,5 +3,6 @@ export interface SpeechTranscriptionResult {
3
3
  final: boolean;
4
4
  language_code: string;
5
5
  transcript: string;
6
- stability: number;
6
+ /** Optional stability score (Google STT specific). If not provided, assume stable. */
7
+ stability?: number;
7
8
  }
@@ -76,7 +76,7 @@ export interface UneeqConfig {
76
76
  interimResults?: boolean;
77
77
  /**
78
78
  * Milliseconds of silence to detect end of utterance.
79
- * @default 1000
79
+ * @default 1500
80
80
  */
81
81
  utteranceEndMs?: number;
82
82
  /**
@@ -134,7 +134,7 @@ export interface UneeqConfig {
134
134
  /**
135
135
  * Silence detection threshold in milliseconds.
136
136
  * Controls how long to wait for silence before finalizing a transcript.
137
- * @default 10
137
+ * @default 500
138
138
  */
139
139
  endpointing?: number;
140
140
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uneeq-js",
3
- "version": "3.5.0",
3
+ "version": "3.6.1",
4
4
  "description": "In development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",