@volley/recognition-client-sdk 0.1.210 → 0.1.211

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volley/recognition-client-sdk",
3
- "version": "0.1.210",
3
+ "version": "0.1.211",
4
4
  "description": "Recognition Service TypeScript/Node.js Client SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -54,8 +54,8 @@
54
54
  "tsup": "^8.5.0",
55
55
  "typescript": "^5.1.6",
56
56
  "@recog/shared-config": "1.0.0",
57
- "@recog/shared-types": "1.0.0",
58
57
  "@recog/websocket": "1.0.0",
58
+ "@recog/shared-types": "1.0.0",
59
59
  "@recog/shared-utils": "1.0.0"
60
60
  },
61
61
  "keywords": [
@@ -398,7 +398,7 @@ export class RealTimeTwoWayWebSocketRecognitionClient
398
398
 
399
399
  async stopRecording(): Promise<void> {
400
400
  if (this.state !== ClientState.READY) {
401
- this.log('warn', 'Cannot stop recording - not in READY state', { state: this.state });
401
+ this.log('debug', 'stopRecording called but not in READY state', { state: this.state });
402
402
  return;
403
403
  }
404
404