From 664210be3d0cd479f5f721a440cc76fc67778a96 Mon Sep 17 00:00:00 2001 From: kitos Date: Thu, 28 May 2026 14:10:58 +0200 Subject: [PATCH] fix(types): add tempo_worklog_id to Worklog interface Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/api/worklogs.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/api/worklogs.ts b/frontend/src/api/worklogs.ts index 164dbd3..2b42b6a 100644 --- a/frontend/src/api/worklogs.ts +++ b/frontend/src/api/worklogs.ts @@ -13,6 +13,7 @@ export interface Worklog { duration_seconds: number; description: string | null; tempo_synced: string | null; + tempo_worklog_id: string | null; integrity_hash: string | null; created_at: string; }