mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 12:49:06 +00:00
file upload real-time state management fix
This commit is contained in:
26
www/app/reflector-api.d.ts
vendored
26
www/app/reflector-api.d.ts
vendored
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user