From 117600acea312f5de355bd896a45f484a238ecb9 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 --- 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; }