@volley/recognition-client-sdk 0.1.422 → 0.1.423
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
CHANGED
|
@@ -6311,12 +6311,20 @@ var SimplifiedVGFRecognitionClient = class {
|
|
|
6311
6311
|
if (this.logger) {
|
|
6312
6312
|
this.logger(
|
|
6313
6313
|
"info",
|
|
6314
|
-
`[RecogSDK:VGF] Duplicate terminal status suppressed (lastSentTerminalUuid: ${this.lastSentTerminalUuid})
|
|
6314
|
+
`[RecogSDK:VGF] Duplicate terminal status suppressed (lastSentTerminalUuid: ${this.lastSentTerminalUuid})`,
|
|
6315
|
+
{ transcriptionStatus: this.state.transcriptionStatus, finalTranscript: this.state.finalTranscript }
|
|
6315
6316
|
);
|
|
6316
6317
|
}
|
|
6317
6318
|
return;
|
|
6318
6319
|
}
|
|
6319
6320
|
this.lastSentTerminalUuid = this.expectedUuid;
|
|
6321
|
+
if (this.logger) {
|
|
6322
|
+
this.logger(
|
|
6323
|
+
"info",
|
|
6324
|
+
`[RecogSDK:VGF] Sending terminal status (uuid: ${this.expectedUuid})`,
|
|
6325
|
+
{ transcriptionStatus: this.state.transcriptionStatus, finalTranscript: this.state.finalTranscript }
|
|
6326
|
+
);
|
|
6327
|
+
}
|
|
6320
6328
|
}
|
|
6321
6329
|
if (!this.stateChangeCallback) {
|
|
6322
6330
|
return;
|