fix(types): add tempo_worklog_id to Worklog interface
Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
kitos
2026-05-28 14:10:58 +02:00
parent d3baa9c032
commit 664210be3d

View File

@@ -13,6 +13,7 @@ export interface Worklog {
duration_seconds: number; duration_seconds: number;
description: string | null; description: string | null;
tempo_synced: string | null; tempo_synced: string | null;
tempo_worklog_id: string | null;
integrity_hash: string | null; integrity_hash: string | null;
created_at: string; created_at: string;
} }