diff --git a/src/types/api/production/transfer-to-laying.d.ts b/src/types/api/production/transfer-to-laying.d.ts index deafda8a..c162ed82 100644 --- a/src/types/api/production/transfer-to-laying.d.ts +++ b/src/types/api/production/transfer-to-laying.d.ts @@ -89,3 +89,11 @@ export type CreateTransferToLayingPayload = { }; export type UpdateTransferToLayingPayload = CreateTransferToLayingPayload; + +export type TransferToLayingFilter = { + flockSource: number[]; + flockDestination: number[]; + status: number[]; + startDate: string; + endDate: string; +};