From 3111f485f92d1e950055186e4e1cec75482a5fee Mon Sep 17 00:00:00 2001 From: Adrian Flores Cortes Date: Tue, 3 Feb 2026 08:14:49 -0600 Subject: [PATCH] [SYNC] fix: Correct DTO export paths in carta-porte module Co-Authored-By: Claude Opus 4.5 --- src/modules/carta-porte/index.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/modules/carta-porte/index.ts b/src/modules/carta-porte/index.ts index 6c6ecf2..86307cb 100644 --- a/src/modules/carta-porte/index.ts +++ b/src/modules/carta-porte/index.ts @@ -13,10 +13,8 @@ export { } from './services'; // Export standalone validated DTOs (preferred for new code) -export { - CreateCartaPorteDto, - UpdateCartaPorteDto, -} from './dto/create-carta-porte.dto'; +export { CreateCartaPorteDto } from './dto/create-carta-porte.dto'; +export { UpdateCartaPorteDto } from './dto/update-carta-porte.dto'; export * from './dto/ubicacion-carta-porte.dto'; export * from './dto/mercancia-carta-porte.dto';