From 2eacda9127f2df030bab645cb29187795ffaab13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20F=C3=B6rtsch?= Date: Wed, 15 Apr 2026 07:01:36 +0200 Subject: [PATCH] client types: drop verified, add job on DetailData Co-Authored-By: Claude Haiku 4.5 --- src/features/review/AudioDetailPage.tsx | 3 ++- src/shared/lib/types.ts | 4 ---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/features/review/AudioDetailPage.tsx b/src/features/review/AudioDetailPage.tsx index a7c1803..f3f45bd 100644 --- a/src/features/review/AudioDetailPage.tsx +++ b/src/features/review/AudioDetailPage.tsx @@ -6,7 +6,7 @@ import { Button } from "~/shared/components/ui/button"; import { Select } from "~/shared/components/ui/select"; import { api } from "~/shared/lib/api"; import { LANG_NAMES, langName } from "~/shared/lib/lang"; -import type { MediaItem, MediaStream, ReviewPlan, StreamDecision } from "~/shared/lib/types"; +import type { Job, MediaItem, MediaStream, ReviewPlan, StreamDecision } from "~/shared/lib/types"; // ─── Types ──────────────────────────────────────────────────────────────────── @@ -16,6 +16,7 @@ interface DetailData { plan: ReviewPlan | null; decisions: StreamDecision[]; command: string | null; + job: Job | null; } // ─── Utilities ──────────────────────────────────────────────────────────────── diff --git a/src/shared/lib/types.ts b/src/shared/lib/types.ts index a3ea5c4..9347ab7 100644 --- a/src/shared/lib/types.ts +++ b/src/shared/lib/types.ts @@ -155,10 +155,6 @@ export interface PipelineJobItem { file_path?: string; confidence?: "high" | "low"; is_noop?: number; - // 1 when an independent post-hoc check confirms the on-disk file matches - // the plan (ffprobe after a job, or is_noop=1 on the very first scan). - // Renders as the second checkmark in the Done column. - verified?: number; transcode_reasons?: string[]; audio_streams?: PipelineAudioStream[]; }