From 810bbc116882613655f437c9c578937e5d964767 Mon Sep 17 00:00:00 2001 From: marshal Date: Thu, 4 Jun 2026 16:57:07 +0300 Subject: [PATCH] dynamic contract templates and companyId on bookings --- .../edr-freight-api/src/modules/bookings/booking-freight.util.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts b/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts index cf4561c7b..e3e97f301 100644 --- a/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts +++ b/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts @@ -10,6 +10,7 @@ export function assertFreightShape(input: BookingFreightShapeInput): void { `freightType is required and must be one of: ${FREIGHT_TYPES.join(', ')}`, ); } + // const containers = input.containers ?? []; const hasContainers = containers.length > 0;