From 0726849a3eb53d2191729e02fe6231824f0a7399 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 24 Oct 2025 19:20:44 +0200 Subject: [PATCH] Improve documentation --- apps/api/src/app/order/create-order.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/app/order/create-order.dto.ts b/apps/api/src/app/order/create-order.dto.ts index af87fd93e..fb4ac32dd 100644 --- a/apps/api/src/app/order/create-order.dto.ts +++ b/apps/api/src/app/order/create-order.dto.ts @@ -44,7 +44,7 @@ export class CreateOrderDto { customCurrency?: string; @IsEnum(DataSource) - @IsOptional() + @IsOptional() // Optional for type FEE, INTEREST, and LIABILITY (default data source is resolved in the backend) dataSource?: DataSource; @IsISO8601()