feat(front) : ajout entryCompleted, registeredBovineCount, bovine.reception aux DTOs

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-29 10:03:32 +02:00
parent 9d3dbf98c1
commit 1328dcfdd7
2 changed files with 5 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ export interface BovineData {
sex: string | null
ageMonths: number | null
exitedAt: string | null
reception?: string | null
}
export type BovinePayload = {
@@ -34,4 +35,5 @@ export type BovinePayload = {
arrivalDate?: string | null
buildingCase?: string | null
supplier?: string | null
reception?: string | null
}