fix: audio bars and upload process

This commit is contained in:
talksik
2026-02-21 13:05:02 -08:00
parent 8546260493
commit cbb3f50a25
9 changed files with 226 additions and 108 deletions
+5 -11
View File
@@ -115,22 +115,16 @@ export interface NetworkWithStreams extends Network {
// --- Depot types ---
export interface PrepareUploadRequest {
file_name: string;
network_id: string;
name: string;
content_type: string;
size_bytes: number;
content_length: number;
}
export interface PrepareUploadResponse {
object: DepotObject;
object_id: string;
upload_url: string;
}
export interface DepotObject {
id: string;
status: string;
content_type: string;
size_bytes: number;
created_at: string;
upload_headers: Record<string, string>;
}
// --- Stream mutation types ---