Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | export interface RecordingSession {
id: number;
session_name: string;
frequency_mhz: number;
duration_seconds: number;
status: 'pending' | 'processing' | 'completed' | 'failed' | 'cancelled';
celery_task_id: string | null;
result_metadata: Record<string, unknown> | null;
minio_path: string | null;
error_message: string | null;
created_at: string;
started_at: string | null;
completed_at: string | null;
websdrs_enabled: number;
}
export interface SessionStatus {
session_id: number;
status: string;
progress: number;
created_at: string;
started_at: string | null;
completed_at: string | null;
error_message: string | null;
}
|