sigo-entities 0.0.52 → 0.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +57 -10
- package/dist/index.d.ts +57 -10
- package/dist/index.js +2673 -2418
- package/dist/index.mjs +2506 -2253
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
declare class DestinatarioDTO {
|
|
2
|
+
Identificacion: string;
|
|
3
|
+
Nombre: string;
|
|
4
|
+
Email: string;
|
|
5
|
+
}
|
|
6
|
+
|
|
1
7
|
declare function validateAndFormatData<T extends object>(data: any, dtoClass: new () => T): Promise<T>;
|
|
2
8
|
|
|
3
9
|
declare class AlmacenDTO {
|
|
@@ -96,7 +102,7 @@ declare class DetalleDTO {
|
|
|
96
102
|
Estado: EstadoDTO;
|
|
97
103
|
}
|
|
98
104
|
|
|
99
|
-
declare class EmpresaDTO {
|
|
105
|
+
declare class EmpresaDTO$1 {
|
|
100
106
|
Codigo: string;
|
|
101
107
|
RazonSocial: string;
|
|
102
108
|
Propia: boolean;
|
|
@@ -277,7 +283,7 @@ declare class ItemDetalleLogisticaDTO {
|
|
|
277
283
|
Ind_SB: string;
|
|
278
284
|
}
|
|
279
285
|
|
|
280
|
-
declare class LoteDTO {
|
|
286
|
+
declare class LoteDTO$1 {
|
|
281
287
|
ID: number;
|
|
282
288
|
Lote: string;
|
|
283
289
|
FechaCaducidad: Date;
|
|
@@ -294,15 +300,15 @@ declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
|
294
300
|
ID_Pais: number;
|
|
295
301
|
}
|
|
296
302
|
|
|
297
|
-
declare class PersonalLogisticaDTO {
|
|
303
|
+
declare class PersonalLogisticaDTO$1 {
|
|
298
304
|
Codigo: string;
|
|
299
305
|
IdPersonal: number;
|
|
300
306
|
IdRegister: number;
|
|
301
307
|
Identificacion: string;
|
|
302
308
|
Apellidos: string;
|
|
303
309
|
Nombres: string;
|
|
304
|
-
Lotes: LoteDTO[];
|
|
305
|
-
Empresa: EmpresaDTO;
|
|
310
|
+
Lotes: LoteDTO$1[];
|
|
311
|
+
Empresa: EmpresaDTO$1;
|
|
306
312
|
Firma: string;
|
|
307
313
|
}
|
|
308
314
|
|
|
@@ -328,6 +334,23 @@ declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
|
328
334
|
ID_ZonaTrabajo: number;
|
|
329
335
|
}
|
|
330
336
|
|
|
337
|
+
declare class MailStructureENTITY {
|
|
338
|
+
ID_MailStructure: number;
|
|
339
|
+
Codigo: string;
|
|
340
|
+
Pais: CodigoNombreDTO;
|
|
341
|
+
Delegacion: CodigoNombreDTO;
|
|
342
|
+
Remitente: string;
|
|
343
|
+
Destinatario: DestinatarioDTO[];
|
|
344
|
+
Asunto: string;
|
|
345
|
+
Html: string;
|
|
346
|
+
Tipo: string;
|
|
347
|
+
Sistema: string;
|
|
348
|
+
Modulo: string;
|
|
349
|
+
Pagina: string;
|
|
350
|
+
Bitacora: BitacoraDTO[];
|
|
351
|
+
Estado: EstadoDTO;
|
|
352
|
+
}
|
|
353
|
+
|
|
331
354
|
declare class ContrataDTO {
|
|
332
355
|
FechaRegistro: Date;
|
|
333
356
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -507,7 +530,7 @@ declare class Ultima_asignacionDTO {
|
|
|
507
530
|
Turno: TurnoDTO;
|
|
508
531
|
Fecha: Date;
|
|
509
532
|
Usuario: UsuarioDTO;
|
|
510
|
-
Empresa: EmpresaDTO;
|
|
533
|
+
Empresa: EmpresaDTO$1;
|
|
511
534
|
Valorizaciones: ValorizacionesDTO[];
|
|
512
535
|
}
|
|
513
536
|
|
|
@@ -747,7 +770,7 @@ declare class SalidaAlmacenENTITY {
|
|
|
747
770
|
NroDocumento: string;
|
|
748
771
|
OrdenTrabajo: string;
|
|
749
772
|
Empresa: EmpresaLogisticaDTO;
|
|
750
|
-
Personal: PersonalLogisticaDTO;
|
|
773
|
+
Personal: PersonalLogisticaDTO$1;
|
|
751
774
|
Detalle: DetalleDTO[];
|
|
752
775
|
Bodega: CodigoNombreDTO;
|
|
753
776
|
Fechas: FechaDTO;
|
|
@@ -764,7 +787,7 @@ declare class StockPersonalENTITY {
|
|
|
764
787
|
Pais: PaisStockPersonalDTO;
|
|
765
788
|
Delegacion: CodigoNombreDTO;
|
|
766
789
|
Empresa: EmpresaLogisticaDTO;
|
|
767
|
-
Personal: PersonalLogisticaDTO;
|
|
790
|
+
Personal: PersonalLogisticaDTO$1;
|
|
768
791
|
Almacen: AlmacenLogisticaDTO;
|
|
769
792
|
Bodega: CodigoNombreDTO;
|
|
770
793
|
ZonaTrabajo: ZonaTrabajoDTO;
|
|
@@ -833,7 +856,7 @@ declare class DevolucionAlmacenENTITY {
|
|
|
833
856
|
NroDocumento: string;
|
|
834
857
|
OrdenTrabajo: string;
|
|
835
858
|
Empresa: EmpresaLogisticaDTO;
|
|
836
|
-
Personal: PersonalLogisticaDTO;
|
|
859
|
+
Personal: PersonalLogisticaDTO$1;
|
|
837
860
|
Detalle: DetalleDTO[];
|
|
838
861
|
Bodega: CodigoNombreDTO;
|
|
839
862
|
Fechas: FechaDTO;
|
|
@@ -908,6 +931,30 @@ declare class ItemENTITY {
|
|
|
908
931
|
Bitacora: BitacoraDTO[];
|
|
909
932
|
}
|
|
910
933
|
|
|
934
|
+
declare class EmpresaDTO {
|
|
935
|
+
Codigo: string;
|
|
936
|
+
RazonSocial: string;
|
|
937
|
+
Propia: boolean;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
declare class LoteDTO {
|
|
941
|
+
ID: number;
|
|
942
|
+
Lote: string;
|
|
943
|
+
FechaCaducidad: Date;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
declare class PersonalLogisticaDTO {
|
|
947
|
+
Codigo: string;
|
|
948
|
+
IdPersonal: number;
|
|
949
|
+
IdRegister: number;
|
|
950
|
+
Identificacion: string;
|
|
951
|
+
Apellidos: string;
|
|
952
|
+
Nombres: string;
|
|
953
|
+
Lotes: LoteDTO[];
|
|
954
|
+
Empresa: EmpresaDTO;
|
|
955
|
+
Firma: string;
|
|
956
|
+
}
|
|
957
|
+
|
|
911
958
|
declare class IngresoAlmacenENTITY {
|
|
912
959
|
ID_IngresoAlmacen: number;
|
|
913
960
|
ID_GOM: number;
|
|
@@ -1019,4 +1066,4 @@ declare class PersonalENTITY {
|
|
|
1019
1066
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
1020
1067
|
}
|
|
1021
1068
|
|
|
1022
|
-
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
1069
|
+
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
declare class DestinatarioDTO {
|
|
2
|
+
Identificacion: string;
|
|
3
|
+
Nombre: string;
|
|
4
|
+
Email: string;
|
|
5
|
+
}
|
|
6
|
+
|
|
1
7
|
declare function validateAndFormatData<T extends object>(data: any, dtoClass: new () => T): Promise<T>;
|
|
2
8
|
|
|
3
9
|
declare class AlmacenDTO {
|
|
@@ -96,7 +102,7 @@ declare class DetalleDTO {
|
|
|
96
102
|
Estado: EstadoDTO;
|
|
97
103
|
}
|
|
98
104
|
|
|
99
|
-
declare class EmpresaDTO {
|
|
105
|
+
declare class EmpresaDTO$1 {
|
|
100
106
|
Codigo: string;
|
|
101
107
|
RazonSocial: string;
|
|
102
108
|
Propia: boolean;
|
|
@@ -277,7 +283,7 @@ declare class ItemDetalleLogisticaDTO {
|
|
|
277
283
|
Ind_SB: string;
|
|
278
284
|
}
|
|
279
285
|
|
|
280
|
-
declare class LoteDTO {
|
|
286
|
+
declare class LoteDTO$1 {
|
|
281
287
|
ID: number;
|
|
282
288
|
Lote: string;
|
|
283
289
|
FechaCaducidad: Date;
|
|
@@ -294,15 +300,15 @@ declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
|
294
300
|
ID_Pais: number;
|
|
295
301
|
}
|
|
296
302
|
|
|
297
|
-
declare class PersonalLogisticaDTO {
|
|
303
|
+
declare class PersonalLogisticaDTO$1 {
|
|
298
304
|
Codigo: string;
|
|
299
305
|
IdPersonal: number;
|
|
300
306
|
IdRegister: number;
|
|
301
307
|
Identificacion: string;
|
|
302
308
|
Apellidos: string;
|
|
303
309
|
Nombres: string;
|
|
304
|
-
Lotes: LoteDTO[];
|
|
305
|
-
Empresa: EmpresaDTO;
|
|
310
|
+
Lotes: LoteDTO$1[];
|
|
311
|
+
Empresa: EmpresaDTO$1;
|
|
306
312
|
Firma: string;
|
|
307
313
|
}
|
|
308
314
|
|
|
@@ -328,6 +334,23 @@ declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
|
328
334
|
ID_ZonaTrabajo: number;
|
|
329
335
|
}
|
|
330
336
|
|
|
337
|
+
declare class MailStructureENTITY {
|
|
338
|
+
ID_MailStructure: number;
|
|
339
|
+
Codigo: string;
|
|
340
|
+
Pais: CodigoNombreDTO;
|
|
341
|
+
Delegacion: CodigoNombreDTO;
|
|
342
|
+
Remitente: string;
|
|
343
|
+
Destinatario: DestinatarioDTO[];
|
|
344
|
+
Asunto: string;
|
|
345
|
+
Html: string;
|
|
346
|
+
Tipo: string;
|
|
347
|
+
Sistema: string;
|
|
348
|
+
Modulo: string;
|
|
349
|
+
Pagina: string;
|
|
350
|
+
Bitacora: BitacoraDTO[];
|
|
351
|
+
Estado: EstadoDTO;
|
|
352
|
+
}
|
|
353
|
+
|
|
331
354
|
declare class ContrataDTO {
|
|
332
355
|
FechaRegistro: Date;
|
|
333
356
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -507,7 +530,7 @@ declare class Ultima_asignacionDTO {
|
|
|
507
530
|
Turno: TurnoDTO;
|
|
508
531
|
Fecha: Date;
|
|
509
532
|
Usuario: UsuarioDTO;
|
|
510
|
-
Empresa: EmpresaDTO;
|
|
533
|
+
Empresa: EmpresaDTO$1;
|
|
511
534
|
Valorizaciones: ValorizacionesDTO[];
|
|
512
535
|
}
|
|
513
536
|
|
|
@@ -747,7 +770,7 @@ declare class SalidaAlmacenENTITY {
|
|
|
747
770
|
NroDocumento: string;
|
|
748
771
|
OrdenTrabajo: string;
|
|
749
772
|
Empresa: EmpresaLogisticaDTO;
|
|
750
|
-
Personal: PersonalLogisticaDTO;
|
|
773
|
+
Personal: PersonalLogisticaDTO$1;
|
|
751
774
|
Detalle: DetalleDTO[];
|
|
752
775
|
Bodega: CodigoNombreDTO;
|
|
753
776
|
Fechas: FechaDTO;
|
|
@@ -764,7 +787,7 @@ declare class StockPersonalENTITY {
|
|
|
764
787
|
Pais: PaisStockPersonalDTO;
|
|
765
788
|
Delegacion: CodigoNombreDTO;
|
|
766
789
|
Empresa: EmpresaLogisticaDTO;
|
|
767
|
-
Personal: PersonalLogisticaDTO;
|
|
790
|
+
Personal: PersonalLogisticaDTO$1;
|
|
768
791
|
Almacen: AlmacenLogisticaDTO;
|
|
769
792
|
Bodega: CodigoNombreDTO;
|
|
770
793
|
ZonaTrabajo: ZonaTrabajoDTO;
|
|
@@ -833,7 +856,7 @@ declare class DevolucionAlmacenENTITY {
|
|
|
833
856
|
NroDocumento: string;
|
|
834
857
|
OrdenTrabajo: string;
|
|
835
858
|
Empresa: EmpresaLogisticaDTO;
|
|
836
|
-
Personal: PersonalLogisticaDTO;
|
|
859
|
+
Personal: PersonalLogisticaDTO$1;
|
|
837
860
|
Detalle: DetalleDTO[];
|
|
838
861
|
Bodega: CodigoNombreDTO;
|
|
839
862
|
Fechas: FechaDTO;
|
|
@@ -908,6 +931,30 @@ declare class ItemENTITY {
|
|
|
908
931
|
Bitacora: BitacoraDTO[];
|
|
909
932
|
}
|
|
910
933
|
|
|
934
|
+
declare class EmpresaDTO {
|
|
935
|
+
Codigo: string;
|
|
936
|
+
RazonSocial: string;
|
|
937
|
+
Propia: boolean;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
declare class LoteDTO {
|
|
941
|
+
ID: number;
|
|
942
|
+
Lote: string;
|
|
943
|
+
FechaCaducidad: Date;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
declare class PersonalLogisticaDTO {
|
|
947
|
+
Codigo: string;
|
|
948
|
+
IdPersonal: number;
|
|
949
|
+
IdRegister: number;
|
|
950
|
+
Identificacion: string;
|
|
951
|
+
Apellidos: string;
|
|
952
|
+
Nombres: string;
|
|
953
|
+
Lotes: LoteDTO[];
|
|
954
|
+
Empresa: EmpresaDTO;
|
|
955
|
+
Firma: string;
|
|
956
|
+
}
|
|
957
|
+
|
|
911
958
|
declare class IngresoAlmacenENTITY {
|
|
912
959
|
ID_IngresoAlmacen: number;
|
|
913
960
|
ID_GOM: number;
|
|
@@ -1019,4 +1066,4 @@ declare class PersonalENTITY {
|
|
|
1019
1066
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
1020
1067
|
}
|
|
1021
1068
|
|
|
1022
|
-
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
1069
|
+
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|