sigo-entities 0.0.83 → 0.0.85
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 +77 -1
- package/dist/index.d.ts +77 -1
- package/dist/index.js +3434 -3021
- package/dist/index.mjs +3377 -2972
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -357,6 +357,21 @@ declare class EmpresaPersonalDTO {
|
|
|
357
357
|
NumeroDocumentoIdentidad: string;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
+
declare class OTGlobalDTO {
|
|
361
|
+
ID_OTGlobal: number;
|
|
362
|
+
Codigo: string;
|
|
363
|
+
Nombre: string;
|
|
364
|
+
Descripcion: string;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
declare class ContratoOTDTO {
|
|
368
|
+
ID_ContratoOT: number;
|
|
369
|
+
Codigo: string;
|
|
370
|
+
Descripcion: string;
|
|
371
|
+
Sistema: string;
|
|
372
|
+
OT: OTGlobalDTO;
|
|
373
|
+
}
|
|
374
|
+
|
|
360
375
|
declare class MailStructureENTITY {
|
|
361
376
|
ID_MailStructure: number;
|
|
362
377
|
Codigo: string;
|
|
@@ -744,6 +759,7 @@ declare class FaseDTO {
|
|
|
744
759
|
Observacion: string;
|
|
745
760
|
Anexos: FilesDocDTO[];
|
|
746
761
|
NroDocumento: string;
|
|
762
|
+
UltimoPeriodo: PeriodoDTO;
|
|
747
763
|
}
|
|
748
764
|
|
|
749
765
|
declare class ValorizacionAlemaniaDTO {
|
|
@@ -837,6 +853,66 @@ declare class FaseENTITY {
|
|
|
837
853
|
Estado: EstadoDTO;
|
|
838
854
|
}
|
|
839
855
|
|
|
856
|
+
declare class AgenciaENTITY {
|
|
857
|
+
ID_Agencia: number;
|
|
858
|
+
Pais: CodigoNombreDTO;
|
|
859
|
+
Delegacion: CodigoNombreDTO;
|
|
860
|
+
Codigo: string;
|
|
861
|
+
Descripcion: string;
|
|
862
|
+
Estado: EstadoDTO;
|
|
863
|
+
Bitacora: BitacoraDTO[];
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
declare class ManoObraBaremoDTO {
|
|
867
|
+
ID_ManoObraBaremo: number;
|
|
868
|
+
Especialidad: CodigoNombreDTO;
|
|
869
|
+
PuntoBaremo: number;
|
|
870
|
+
PuntoBaremoContratista: number;
|
|
871
|
+
CoeficienteEconomico: number;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
declare class DetalleManoObraChileDTO {
|
|
875
|
+
ManoObraBaremo: ManoObraBaremoDTO[];
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
declare class MaterialLogisticaDTO {
|
|
879
|
+
ID_Material: number;
|
|
880
|
+
ID_Item: number;
|
|
881
|
+
Codigo: string;
|
|
882
|
+
Descripcion: string;
|
|
883
|
+
Unidad: UnidadMedidaDTO;
|
|
884
|
+
CantidadMax: number;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
declare class MaterialAmapDTO {
|
|
888
|
+
ID_MaterialAmap: number;
|
|
889
|
+
ID_Item: number;
|
|
890
|
+
Transaccion: string;
|
|
891
|
+
Requerido: number;
|
|
892
|
+
Codigo: string;
|
|
893
|
+
Descripcion: string;
|
|
894
|
+
Unidad: string;
|
|
895
|
+
CantidadMax: number;
|
|
896
|
+
Grupo: string;
|
|
897
|
+
MaterialLogistica: MaterialLogisticaDTO[];
|
|
898
|
+
Estado: EstadoDTO;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
declare class ManoObraGlobalENTITY {
|
|
902
|
+
ID_ManoObraGlobal: number;
|
|
903
|
+
Pais: CodigoNombreDTO;
|
|
904
|
+
Delegacion: CodigoNombreDTO;
|
|
905
|
+
Amap: number;
|
|
906
|
+
Codigo: string;
|
|
907
|
+
Alcance: string;
|
|
908
|
+
ContratoOT: ContratoOTDTO;
|
|
909
|
+
Unidad: UnidadMedidaDTO;
|
|
910
|
+
Material: MaterialAmapDTO[];
|
|
911
|
+
DetalleChile: DetalleManoObraChileDTO;
|
|
912
|
+
Bitacora: BitacoraDTO[];
|
|
913
|
+
Estado: EstadoDTO;
|
|
914
|
+
}
|
|
915
|
+
|
|
840
916
|
declare class ConsumoMaterialENTITY {
|
|
841
917
|
ID_ConsumoMaterial: number;
|
|
842
918
|
ID_Recurso: string;
|
|
@@ -1539,4 +1615,4 @@ declare class UsuarioENTITY {
|
|
|
1539
1615
|
Contratistas: ContratistasDTO;
|
|
1540
1616
|
}
|
|
1541
1617
|
|
|
1542
|
-
export { AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
1618
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OTGlobalDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -357,6 +357,21 @@ declare class EmpresaPersonalDTO {
|
|
|
357
357
|
NumeroDocumentoIdentidad: string;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
+
declare class OTGlobalDTO {
|
|
361
|
+
ID_OTGlobal: number;
|
|
362
|
+
Codigo: string;
|
|
363
|
+
Nombre: string;
|
|
364
|
+
Descripcion: string;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
declare class ContratoOTDTO {
|
|
368
|
+
ID_ContratoOT: number;
|
|
369
|
+
Codigo: string;
|
|
370
|
+
Descripcion: string;
|
|
371
|
+
Sistema: string;
|
|
372
|
+
OT: OTGlobalDTO;
|
|
373
|
+
}
|
|
374
|
+
|
|
360
375
|
declare class MailStructureENTITY {
|
|
361
376
|
ID_MailStructure: number;
|
|
362
377
|
Codigo: string;
|
|
@@ -744,6 +759,7 @@ declare class FaseDTO {
|
|
|
744
759
|
Observacion: string;
|
|
745
760
|
Anexos: FilesDocDTO[];
|
|
746
761
|
NroDocumento: string;
|
|
762
|
+
UltimoPeriodo: PeriodoDTO;
|
|
747
763
|
}
|
|
748
764
|
|
|
749
765
|
declare class ValorizacionAlemaniaDTO {
|
|
@@ -837,6 +853,66 @@ declare class FaseENTITY {
|
|
|
837
853
|
Estado: EstadoDTO;
|
|
838
854
|
}
|
|
839
855
|
|
|
856
|
+
declare class AgenciaENTITY {
|
|
857
|
+
ID_Agencia: number;
|
|
858
|
+
Pais: CodigoNombreDTO;
|
|
859
|
+
Delegacion: CodigoNombreDTO;
|
|
860
|
+
Codigo: string;
|
|
861
|
+
Descripcion: string;
|
|
862
|
+
Estado: EstadoDTO;
|
|
863
|
+
Bitacora: BitacoraDTO[];
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
declare class ManoObraBaremoDTO {
|
|
867
|
+
ID_ManoObraBaremo: number;
|
|
868
|
+
Especialidad: CodigoNombreDTO;
|
|
869
|
+
PuntoBaremo: number;
|
|
870
|
+
PuntoBaremoContratista: number;
|
|
871
|
+
CoeficienteEconomico: number;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
declare class DetalleManoObraChileDTO {
|
|
875
|
+
ManoObraBaremo: ManoObraBaremoDTO[];
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
declare class MaterialLogisticaDTO {
|
|
879
|
+
ID_Material: number;
|
|
880
|
+
ID_Item: number;
|
|
881
|
+
Codigo: string;
|
|
882
|
+
Descripcion: string;
|
|
883
|
+
Unidad: UnidadMedidaDTO;
|
|
884
|
+
CantidadMax: number;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
declare class MaterialAmapDTO {
|
|
888
|
+
ID_MaterialAmap: number;
|
|
889
|
+
ID_Item: number;
|
|
890
|
+
Transaccion: string;
|
|
891
|
+
Requerido: number;
|
|
892
|
+
Codigo: string;
|
|
893
|
+
Descripcion: string;
|
|
894
|
+
Unidad: string;
|
|
895
|
+
CantidadMax: number;
|
|
896
|
+
Grupo: string;
|
|
897
|
+
MaterialLogistica: MaterialLogisticaDTO[];
|
|
898
|
+
Estado: EstadoDTO;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
declare class ManoObraGlobalENTITY {
|
|
902
|
+
ID_ManoObraGlobal: number;
|
|
903
|
+
Pais: CodigoNombreDTO;
|
|
904
|
+
Delegacion: CodigoNombreDTO;
|
|
905
|
+
Amap: number;
|
|
906
|
+
Codigo: string;
|
|
907
|
+
Alcance: string;
|
|
908
|
+
ContratoOT: ContratoOTDTO;
|
|
909
|
+
Unidad: UnidadMedidaDTO;
|
|
910
|
+
Material: MaterialAmapDTO[];
|
|
911
|
+
DetalleChile: DetalleManoObraChileDTO;
|
|
912
|
+
Bitacora: BitacoraDTO[];
|
|
913
|
+
Estado: EstadoDTO;
|
|
914
|
+
}
|
|
915
|
+
|
|
840
916
|
declare class ConsumoMaterialENTITY {
|
|
841
917
|
ID_ConsumoMaterial: number;
|
|
842
918
|
ID_Recurso: string;
|
|
@@ -1539,4 +1615,4 @@ declare class UsuarioENTITY {
|
|
|
1539
1615
|
Contratistas: ContratistasDTO;
|
|
1540
1616
|
}
|
|
1541
1617
|
|
|
1542
|
-
export { AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
1618
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OTGlobalDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|