From e76d881d8a9a699d14e008005fe8e44a6e2daf2d Mon Sep 17 00:00:00 2001 From: rstubryan Date: Thu, 23 Oct 2025 20:00:42 +0700 Subject: [PATCH] refactor(FE-114): add foreign key fields to enhance data relationships in project-flock type definitions --- src/types/api/production/project-flock.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/types/api/production/project-flock.d.ts b/src/types/api/production/project-flock.d.ts index 7561e9ca..ce4043c4 100644 --- a/src/types/api/production/project-flock.d.ts +++ b/src/types/api/production/project-flock.d.ts @@ -10,11 +10,16 @@ export type BaseProjectFlock = { name: string; status: string; flock: Flock; + flock_id: number; area: Area; + area_id: number; category: string; fcr: Fcr; + fcr_id: number; location: Location; + location_id: number; period: number; + kandang_ids: number[]; kandangs: Kandang[]; };