file upload real-time state management fix

This commit is contained in:
Igor Loskutov
2025-09-04 14:13:49 -04:00
parent 0751d01f13
commit ad780551b7
3 changed files with 35 additions and 7 deletions

View File

@@ -566,8 +566,17 @@ export interface components {
user_id: string | null;
/** Name */
name: string;
/** Status */
status: string;
/**
* Status
* @enum {string}
*/
status:
| "idle"
| "uploaded"
| "recording"
| "processing"
| "error"
| "ended";
/** Locked */
locked: boolean;
/** Duration */
@@ -611,8 +620,17 @@ export interface components {
user_id: string | null;
/** Name */
name: string;
/** Status */
status: string;
/**
* Status
* @enum {string}
*/
status:
| "idle"
| "uploaded"
| "recording"
| "processing"
| "error"
| "ended";
/** Locked */
locked: boolean;
/** Duration */