@mulingai-npm/redis 1.8.0 → 1.8.1
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.
|
@@ -2,7 +2,7 @@ import { RedisClient } from '../redis-client';
|
|
|
2
2
|
export type SttStatus = 'INIT' | 'DISCARDED' | 'READY' | 'USED';
|
|
3
3
|
export type TranslationStatus = 'INIT' | 'DISCARDED' | 'READY' | 'USED';
|
|
4
4
|
export type TtsStatus = 'INIT' | 'DISCARDED' | 'READY' | 'USED';
|
|
5
|
-
export type MulingstreamChunkStatus = 'INIT' | 'DISCARDED' | 'USED';
|
|
5
|
+
export type MulingstreamChunkStatus = 'INIT' | 'IN_PROGRESS' | 'DISCARDED' | 'USED';
|
|
6
6
|
export type MulingstreamChunkStep = 'RECEIVED' | 'STT' | 'TRANSLATION' | 'TTS' | 'EMITTED' | 'COMPLETED' | 'CANCELED';
|
|
7
7
|
export type MulingstreamChunkData = {
|
|
8
8
|
mulingstreamChunkId: string;
|