@volley/recognition-client-sdk 0.1.422 → 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.
@@ -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("debug", "stopRecording called but not in READY state", { state: this.state });
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");