feat : ajout d'une page de creation d'une expedition

This commit is contained in:
2026-02-12 08:19:47 +01:00
parent b905cb66aa
commit 74af5d30ba
5 changed files with 43 additions and 36 deletions

View File

@@ -6,3 +6,13 @@ export interface BovinShipmentData {
shipment?: string | null
shipmentType?: ShipmentTypeData | null
}
export type ShipmentBovinePayload = {
nbBovinSend: number
shipment: string
shipmentType: string
}
export type BovinShipmentListResponse =
| BovinShipmentData[]
| { 'hydra:member'?: BovinShipmentData[] }