fix: types isses

This commit is contained in:
Nathnael
2026-07-02 11:09:25 +00:00
parent 79490d5979
commit 03740ee719
12 changed files with 185 additions and 676 deletions

View File

@@ -101,6 +101,13 @@ export class CreateBulkLineDto {
@Min(0)
@Transform(({ value }) => Number(value))
hazardousQuantity?: number;
@ApiPropertyOptional({ minimum: 0 })
@IsOptional()
@IsInt()
@Min(0)
@Transform(({ value }) => Number(value))
reeferQuantity?: number;
}
/** Shipment booking created under a contract (Path A customer, Path B GL ET). */