@volley/recognition-client-sdk 0.1.423 → 0.1.424
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/browser.bundled.d.ts +4 -0
- package/dist/index.bundled.d.ts +4 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +2 -2
- package/dist/recog-client-sdk.browser.js +5 -1
- package/dist/recog-client-sdk.browser.js.map +2 -2
- package/dist/recognition-client.d.ts +4 -0
- package/dist/recognition-client.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/recognition-client.ts +6 -1
- package/src/simplified-vgf-recognition-client.ts +2 -2
|
@@ -5422,9 +5422,13 @@ var RealTimeTwoWayWebSocketRecognitionClient = class _RealTimeTwoWayWebSocketRec
|
|
|
5422
5422
|
}
|
|
5423
5423
|
}
|
|
5424
5424
|
}
|
|
5425
|
+
/**
|
|
5426
|
+
* Only active ehwne client is in READY state. otherwise it will return immediately.
|
|
5427
|
+
* @returns Promise that resolves when the recording is stopped
|
|
5428
|
+
*/
|
|
5425
5429
|
async stopRecording() {
|
|
5426
5430
|
if (this.state !== "ready" /* READY */) {
|
|
5427
|
-
this.log("
|
|
5431
|
+
this.log("warn", "stopRecording called but not in READY state", { state: this.state });
|
|
5428
5432
|
return;
|
|
5429
5433
|
}
|
|
5430
5434
|
this.log("debug", "Stopping recording");
|