From 8f592af5cfc761110c2dc05ddcce37bf4b162f5a Mon Sep 17 00:00:00 2001 From: Adrian Flores Cortes Date: Tue, 3 Feb 2026 08:13:16 -0600 Subject: [PATCH] [SYNC] chore: Update carta-porte module index Co-Authored-By: Claude Opus 4.5 --- src/modules/carta-porte/index.ts | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/modules/carta-porte/index.ts b/src/modules/carta-porte/index.ts index 6b43c6c..6c6ecf2 100644 --- a/src/modules/carta-porte/index.ts +++ b/src/modules/carta-porte/index.ts @@ -3,6 +3,24 @@ * Complemento 3.1, timbrado PAC, expediente fiscal */ export * from './entities'; -export * from './services'; export * from './controllers'; -export * from './dto'; + +// Export services (includes inline DTOs for backwards compatibility) +export { + CartaPorteService, + CartaPorteSearchParams, + CartaPorteXmlService, +} from './services'; + +// Export standalone validated DTOs (preferred for new code) +export { + CreateCartaPorteDto, + UpdateCartaPorteDto, +} from './dto/create-carta-porte.dto'; + +export * from './dto/ubicacion-carta-porte.dto'; +export * from './dto/mercancia-carta-porte.dto'; +export * from './dto/figura-transporte.dto'; +export * from './dto/autotransporte-carta-porte.dto'; +export * from './dto/timbrar-carta-porte.dto'; +export * from './dto/cancelar-carta-porte.dto';