@onereach/step-voice 7.0.9-processttschunk.22 → 7.0.9-processttschunk.24
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/dst/Start TTS Chunks Processing.js +14 -9
- package/dst/voice.d.ts +1 -1
- package/package.json +1 -1
|
@@ -45,6 +45,20 @@ class StartTTSChunksProcessing extends voice_1.default {
|
|
|
45
45
|
params
|
|
46
46
|
};
|
|
47
47
|
this.log.debug('StartTTSChunksProcessing command', { command });
|
|
48
|
+
// this.triggers.local(`otel/voice/${call.id}`, async (event) => {
|
|
49
|
+
// this.log.info('Received OTel event from voicer', event.params)
|
|
50
|
+
// switch (event.params.type) {
|
|
51
|
+
// case 'tts-audio/started':
|
|
52
|
+
// case 'tts-audio/finished':
|
|
53
|
+
// case 'tts-audio/interrupted':
|
|
54
|
+
// case 'asr-input/started':
|
|
55
|
+
// case 'asr-input/ended':
|
|
56
|
+
// case 'asr-input/processed': {
|
|
57
|
+
// this.log.warn('Received asr/tts status event', event.params)
|
|
58
|
+
// return
|
|
59
|
+
// }
|
|
60
|
+
// }
|
|
61
|
+
// })
|
|
48
62
|
this.triggers.local(`in/voice/${call.id}`, async (event) => {
|
|
49
63
|
this.log.info('Received event from voicer', event);
|
|
50
64
|
switch (event.params.type) {
|
|
@@ -52,15 +66,6 @@ class StartTTSChunksProcessing extends voice_1.default {
|
|
|
52
66
|
this.log.info('tts-chunks-playback-done', event.params);
|
|
53
67
|
return this.exitStep('next', {}, false);
|
|
54
68
|
}
|
|
55
|
-
case 'tts-audio/started':
|
|
56
|
-
case 'tts-audio/finished':
|
|
57
|
-
case 'tts-audio/interrupted':
|
|
58
|
-
case 'asr-input/started':
|
|
59
|
-
case 'asr-input/ended':
|
|
60
|
-
case 'asr-input/processed': {
|
|
61
|
-
this.log.warn('Received asr/tts status event', event.params);
|
|
62
|
-
return;
|
|
63
|
-
}
|
|
64
69
|
case 'timeout': {
|
|
65
70
|
this.log.info('timeout', event.params);
|
|
66
71
|
return this.exitStep(event.params.type, {}, false);
|
package/dst/voice.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ export interface HandleInterruptionParams<TParams extends VoiceEvent = VoiceEven
|
|
|
76
76
|
}>;
|
|
77
77
|
reportingSettingsKey?: string;
|
|
78
78
|
}
|
|
79
|
-
export type VoiceEvents<TParams> = IEvent<TParams, WITH_VAR<'in/voice/'>> | IEvent<TParams, WITH_VAR<'in/voice/', '/event'>>;
|
|
79
|
+
export type VoiceEvents<TParams> = IEvent<TParams, WITH_VAR<'in/voice/'>> | IEvent<TParams, WITH_VAR<'in/voice/', '/event'>> | IEvent<TParams, WITH_VAR<'otel/voice/'>>;
|
|
80
80
|
export default class VoiceStep<TIn = unknown, TOut = unknown, TParams extends VoiceEvent = VoiceEvent> extends ConvStep<IVoiceCall, TIn & {
|
|
81
81
|
handleCancel?: boolean;
|
|
82
82
|
}, TOut, VoiceEvents<TParams>> {
|