From e9a1f4298f386509ba9beb4418b63566d9c026d2 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Fri, 9 Jan 2026 15:30:58 +0700 Subject: [PATCH] chore: add activity_count --- src/types/api/daily-checklist/phase.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/api/daily-checklist/phase.d.ts b/src/types/api/daily-checklist/phase.d.ts index b628a7c0..9eccb2bf 100644 --- a/src/types/api/daily-checklist/phase.d.ts +++ b/src/types/api/daily-checklist/phase.d.ts @@ -5,6 +5,7 @@ export type BasePhase = { name: string; is_active: boolean; category: string; + activity_count: number; }; export type Phase = BaseMetadata & BasePhase;