This commit is contained in:
2026-03-30 09:53:10 -03:00
parent 4220b0418e
commit aac27b8504
32 changed files with 1068 additions and 329 deletions

View File

@@ -77,13 +77,14 @@ export interface Job {
export interface Timeline {
id: string;
name: string;
source_asset_id: string | null;
source_video: string;
chunk_paths: string[];
profile_name: string;
status: string;
fps: number;
frames_prefix: string;
frames_manifest: Record<string, unknown>;
frames_meta: string[];
frame_count: number;
source_ephemeral: boolean;
created_at: string | null;
}
@@ -92,7 +93,7 @@ export interface Checkpoint {
timeline_id: string;
job_id: string | null;
parent_id: string | null;
stage_outputs: Record<string, unknown>;
stage_name: string;
config_overrides: Record<string, unknown>;
stats: Record<string, unknown>;
is_scenario: boolean;
@@ -100,6 +101,16 @@ export interface Checkpoint {
created_at: string | null;
}
export interface StageOutput {
id: string;
job_id: string;
timeline_id: string;
stage_name: string;
checkpoint_id: string | null;
output: Record<string, unknown>;
created_at: string | null;
}
export interface Brand {
id: string;
canonical_name: string;