sigo-entities 0.0.90 → 0.0.91
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 +178 -1
- package/dist/index.d.ts +178 -1
- package/dist/index.js +1013 -0
- package/dist/index.mjs +1009 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1617,4 +1617,181 @@ declare class UsuarioENTITY {
|
|
|
1617
1617
|
Contratistas: ContratistasDTO;
|
|
1618
1618
|
}
|
|
1619
1619
|
|
|
1620
|
-
|
|
1620
|
+
declare class Cliente_ContratistaDTO {
|
|
1621
|
+
RUC: string;
|
|
1622
|
+
RazonSocial: string;
|
|
1623
|
+
TipoEmpresa: string;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
declare class EECC_DTO {
|
|
1627
|
+
RUC: string;
|
|
1628
|
+
RazonSocial: string;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
declare class EmpresaValDTO {
|
|
1632
|
+
RUC: string;
|
|
1633
|
+
RazonSocial: string;
|
|
1634
|
+
TipoEmpresa: string;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
declare class InventarioValDTO {
|
|
1638
|
+
Descripcion: string;
|
|
1639
|
+
LoteSAP: string;
|
|
1640
|
+
TipoInventario: string;
|
|
1641
|
+
CodigoSAP: string;
|
|
1642
|
+
NumeroSerie: string;
|
|
1643
|
+
Cantidad: number;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
declare class ProductosServiciosValDTO {
|
|
1647
|
+
Codigo: string;
|
|
1648
|
+
Descripcion: string;
|
|
1649
|
+
Familia: string;
|
|
1650
|
+
OperacionComercial: string;
|
|
1651
|
+
Cantidad: number;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
declare class TecnicoValDTO {
|
|
1655
|
+
Nombres: string;
|
|
1656
|
+
ID_Recurso: number;
|
|
1657
|
+
RUT: string;
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
declare class ValorizadaTOAENTITY {
|
|
1661
|
+
ID_OrdenVal: number;
|
|
1662
|
+
Orden: string;
|
|
1663
|
+
Peticion: string;
|
|
1664
|
+
AccessId: number;
|
|
1665
|
+
FTTX_BAS: string;
|
|
1666
|
+
Tipo_Trabajo: string;
|
|
1667
|
+
TipoTrabajo: string;
|
|
1668
|
+
Agencia: string;
|
|
1669
|
+
Estado: string;
|
|
1670
|
+
SubTipoActividad: string;
|
|
1671
|
+
Actividad: string;
|
|
1672
|
+
FTTX_AP: string;
|
|
1673
|
+
FO: number;
|
|
1674
|
+
Proteus: number;
|
|
1675
|
+
AP: number;
|
|
1676
|
+
Migracion: number;
|
|
1677
|
+
Acometida: number;
|
|
1678
|
+
ITI: number;
|
|
1679
|
+
Telefono: number;
|
|
1680
|
+
Deco: number;
|
|
1681
|
+
Deco_Conectado: number;
|
|
1682
|
+
Deco_baja: number;
|
|
1683
|
+
LNB: number;
|
|
1684
|
+
HGU: number;
|
|
1685
|
+
DTH: number;
|
|
1686
|
+
BA_Desnuda: number;
|
|
1687
|
+
Nro_Productos: number;
|
|
1688
|
+
LlaveRegla: string;
|
|
1689
|
+
PB_Bucle: number;
|
|
1690
|
+
Fecha_Agenda: Date;
|
|
1691
|
+
Fecha_Liquidacion: Date;
|
|
1692
|
+
Reutilización_de_Drop: string;
|
|
1693
|
+
ProductosServicios_Actuales: ProductosServiciosValDTO[];
|
|
1694
|
+
ProductosServicios_Contratados: ProductosServiciosValDTO[];
|
|
1695
|
+
Inventario: InventarioValDTO[];
|
|
1696
|
+
Cliente_Contratista: Cliente_ContratistaDTO;
|
|
1697
|
+
Empresa: EmpresaValDTO;
|
|
1698
|
+
EECC: EECC_DTO;
|
|
1699
|
+
Tecnico: TecnicoValDTO;
|
|
1700
|
+
PB: number;
|
|
1701
|
+
PB_AP: number;
|
|
1702
|
+
PB_Decos: number;
|
|
1703
|
+
PB_Total: number;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
declare class ProductosServiciosLiqDTO {
|
|
1707
|
+
Codigo: string;
|
|
1708
|
+
Descripcion: string;
|
|
1709
|
+
Familia: string;
|
|
1710
|
+
OperacionComercial: string;
|
|
1711
|
+
Cantidad: number;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
declare class InventarioLiqDTO {
|
|
1715
|
+
Descripcion: string;
|
|
1716
|
+
LoteSAP: string;
|
|
1717
|
+
TipoInventario: string;
|
|
1718
|
+
CodigoSAP: string;
|
|
1719
|
+
NumeroSerie: string;
|
|
1720
|
+
Cantidad: number;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
declare class BitacoraLiqDTO {
|
|
1724
|
+
ID_Estado: number;
|
|
1725
|
+
Estado: string;
|
|
1726
|
+
Fecha_Proceso: Date;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
declare class LiquidadaTOAENTITY {
|
|
1730
|
+
ID_Orden: number;
|
|
1731
|
+
Pais: CodigoNombreDTO;
|
|
1732
|
+
Delegacion: CodigoNombreDTO;
|
|
1733
|
+
Tecnico: string;
|
|
1734
|
+
ID_Recurso: number;
|
|
1735
|
+
Peticion: string;
|
|
1736
|
+
Orden: string;
|
|
1737
|
+
AccessId: number;
|
|
1738
|
+
DPX: string;
|
|
1739
|
+
DPY: string;
|
|
1740
|
+
PVA: number;
|
|
1741
|
+
Agencia: string;
|
|
1742
|
+
Comuna: string;
|
|
1743
|
+
Direccion: string;
|
|
1744
|
+
Ciudad: string;
|
|
1745
|
+
Intervalo: string;
|
|
1746
|
+
Cliente: string;
|
|
1747
|
+
RutCliente: string;
|
|
1748
|
+
Telefono: string;
|
|
1749
|
+
Contacto: string[];
|
|
1750
|
+
EmailCliente: string;
|
|
1751
|
+
SubTipoActividad: string;
|
|
1752
|
+
TipoTrabajo: string;
|
|
1753
|
+
Actividad: string;
|
|
1754
|
+
Estado: string;
|
|
1755
|
+
HabilidadTrabajo: string;
|
|
1756
|
+
ZonaTrabajo: string;
|
|
1757
|
+
PlantaAsignada: string;
|
|
1758
|
+
Armario: string;
|
|
1759
|
+
OLT: string;
|
|
1760
|
+
Fecha_Reclamo: Date;
|
|
1761
|
+
Fecha_Cita: Date;
|
|
1762
|
+
Fecha_Liquidacion: Date;
|
|
1763
|
+
SLA_Inicio: Date;
|
|
1764
|
+
SLA_Fin: Date;
|
|
1765
|
+
TICA: string;
|
|
1766
|
+
Segmento: string;
|
|
1767
|
+
Capacidad: string;
|
|
1768
|
+
Tecnologia_Voz: string;
|
|
1769
|
+
Tecnologia_BA: string;
|
|
1770
|
+
Tecnologia_TV: string;
|
|
1771
|
+
Tipo_Acceso: string;
|
|
1772
|
+
CCN: string;
|
|
1773
|
+
Rural: string;
|
|
1774
|
+
ZonaRoja: string;
|
|
1775
|
+
Tipo_Agendamiento: string;
|
|
1776
|
+
Causa_Reparacion: string;
|
|
1777
|
+
TipoProducto: string;
|
|
1778
|
+
Cierre_STB: string;
|
|
1779
|
+
Cierre_BA: string;
|
|
1780
|
+
Cierre_TV: string;
|
|
1781
|
+
Motivo_Reparacion: string;
|
|
1782
|
+
SubMotivo_Reparacion: string;
|
|
1783
|
+
Giro: string;
|
|
1784
|
+
NombreContacto: string;
|
|
1785
|
+
Observaciones: string;
|
|
1786
|
+
Inicio_Fin: string;
|
|
1787
|
+
Reutilización_de_Drop: string;
|
|
1788
|
+
ProductosServicios_Actuales: ProductosServiciosLiqDTO[];
|
|
1789
|
+
ProductosServicios_Contratados: ProductosServiciosLiqDTO[];
|
|
1790
|
+
Inventario: InventarioLiqDTO[];
|
|
1791
|
+
TipoFibra: string;
|
|
1792
|
+
EstadoProceso: EstadoDTO;
|
|
1793
|
+
Fecha_Proceso: Date;
|
|
1794
|
+
Bitacora: BitacoraLiqDTO[];
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, Cliente_ContratistaDTO, 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, EECC_DTO, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiquidadaTOAENTITY, 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, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, 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, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -1617,4 +1617,181 @@ declare class UsuarioENTITY {
|
|
|
1617
1617
|
Contratistas: ContratistasDTO;
|
|
1618
1618
|
}
|
|
1619
1619
|
|
|
1620
|
-
|
|
1620
|
+
declare class Cliente_ContratistaDTO {
|
|
1621
|
+
RUC: string;
|
|
1622
|
+
RazonSocial: string;
|
|
1623
|
+
TipoEmpresa: string;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
declare class EECC_DTO {
|
|
1627
|
+
RUC: string;
|
|
1628
|
+
RazonSocial: string;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
declare class EmpresaValDTO {
|
|
1632
|
+
RUC: string;
|
|
1633
|
+
RazonSocial: string;
|
|
1634
|
+
TipoEmpresa: string;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
declare class InventarioValDTO {
|
|
1638
|
+
Descripcion: string;
|
|
1639
|
+
LoteSAP: string;
|
|
1640
|
+
TipoInventario: string;
|
|
1641
|
+
CodigoSAP: string;
|
|
1642
|
+
NumeroSerie: string;
|
|
1643
|
+
Cantidad: number;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
declare class ProductosServiciosValDTO {
|
|
1647
|
+
Codigo: string;
|
|
1648
|
+
Descripcion: string;
|
|
1649
|
+
Familia: string;
|
|
1650
|
+
OperacionComercial: string;
|
|
1651
|
+
Cantidad: number;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
declare class TecnicoValDTO {
|
|
1655
|
+
Nombres: string;
|
|
1656
|
+
ID_Recurso: number;
|
|
1657
|
+
RUT: string;
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
declare class ValorizadaTOAENTITY {
|
|
1661
|
+
ID_OrdenVal: number;
|
|
1662
|
+
Orden: string;
|
|
1663
|
+
Peticion: string;
|
|
1664
|
+
AccessId: number;
|
|
1665
|
+
FTTX_BAS: string;
|
|
1666
|
+
Tipo_Trabajo: string;
|
|
1667
|
+
TipoTrabajo: string;
|
|
1668
|
+
Agencia: string;
|
|
1669
|
+
Estado: string;
|
|
1670
|
+
SubTipoActividad: string;
|
|
1671
|
+
Actividad: string;
|
|
1672
|
+
FTTX_AP: string;
|
|
1673
|
+
FO: number;
|
|
1674
|
+
Proteus: number;
|
|
1675
|
+
AP: number;
|
|
1676
|
+
Migracion: number;
|
|
1677
|
+
Acometida: number;
|
|
1678
|
+
ITI: number;
|
|
1679
|
+
Telefono: number;
|
|
1680
|
+
Deco: number;
|
|
1681
|
+
Deco_Conectado: number;
|
|
1682
|
+
Deco_baja: number;
|
|
1683
|
+
LNB: number;
|
|
1684
|
+
HGU: number;
|
|
1685
|
+
DTH: number;
|
|
1686
|
+
BA_Desnuda: number;
|
|
1687
|
+
Nro_Productos: number;
|
|
1688
|
+
LlaveRegla: string;
|
|
1689
|
+
PB_Bucle: number;
|
|
1690
|
+
Fecha_Agenda: Date;
|
|
1691
|
+
Fecha_Liquidacion: Date;
|
|
1692
|
+
Reutilización_de_Drop: string;
|
|
1693
|
+
ProductosServicios_Actuales: ProductosServiciosValDTO[];
|
|
1694
|
+
ProductosServicios_Contratados: ProductosServiciosValDTO[];
|
|
1695
|
+
Inventario: InventarioValDTO[];
|
|
1696
|
+
Cliente_Contratista: Cliente_ContratistaDTO;
|
|
1697
|
+
Empresa: EmpresaValDTO;
|
|
1698
|
+
EECC: EECC_DTO;
|
|
1699
|
+
Tecnico: TecnicoValDTO;
|
|
1700
|
+
PB: number;
|
|
1701
|
+
PB_AP: number;
|
|
1702
|
+
PB_Decos: number;
|
|
1703
|
+
PB_Total: number;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
declare class ProductosServiciosLiqDTO {
|
|
1707
|
+
Codigo: string;
|
|
1708
|
+
Descripcion: string;
|
|
1709
|
+
Familia: string;
|
|
1710
|
+
OperacionComercial: string;
|
|
1711
|
+
Cantidad: number;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
declare class InventarioLiqDTO {
|
|
1715
|
+
Descripcion: string;
|
|
1716
|
+
LoteSAP: string;
|
|
1717
|
+
TipoInventario: string;
|
|
1718
|
+
CodigoSAP: string;
|
|
1719
|
+
NumeroSerie: string;
|
|
1720
|
+
Cantidad: number;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
declare class BitacoraLiqDTO {
|
|
1724
|
+
ID_Estado: number;
|
|
1725
|
+
Estado: string;
|
|
1726
|
+
Fecha_Proceso: Date;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
declare class LiquidadaTOAENTITY {
|
|
1730
|
+
ID_Orden: number;
|
|
1731
|
+
Pais: CodigoNombreDTO;
|
|
1732
|
+
Delegacion: CodigoNombreDTO;
|
|
1733
|
+
Tecnico: string;
|
|
1734
|
+
ID_Recurso: number;
|
|
1735
|
+
Peticion: string;
|
|
1736
|
+
Orden: string;
|
|
1737
|
+
AccessId: number;
|
|
1738
|
+
DPX: string;
|
|
1739
|
+
DPY: string;
|
|
1740
|
+
PVA: number;
|
|
1741
|
+
Agencia: string;
|
|
1742
|
+
Comuna: string;
|
|
1743
|
+
Direccion: string;
|
|
1744
|
+
Ciudad: string;
|
|
1745
|
+
Intervalo: string;
|
|
1746
|
+
Cliente: string;
|
|
1747
|
+
RutCliente: string;
|
|
1748
|
+
Telefono: string;
|
|
1749
|
+
Contacto: string[];
|
|
1750
|
+
EmailCliente: string;
|
|
1751
|
+
SubTipoActividad: string;
|
|
1752
|
+
TipoTrabajo: string;
|
|
1753
|
+
Actividad: string;
|
|
1754
|
+
Estado: string;
|
|
1755
|
+
HabilidadTrabajo: string;
|
|
1756
|
+
ZonaTrabajo: string;
|
|
1757
|
+
PlantaAsignada: string;
|
|
1758
|
+
Armario: string;
|
|
1759
|
+
OLT: string;
|
|
1760
|
+
Fecha_Reclamo: Date;
|
|
1761
|
+
Fecha_Cita: Date;
|
|
1762
|
+
Fecha_Liquidacion: Date;
|
|
1763
|
+
SLA_Inicio: Date;
|
|
1764
|
+
SLA_Fin: Date;
|
|
1765
|
+
TICA: string;
|
|
1766
|
+
Segmento: string;
|
|
1767
|
+
Capacidad: string;
|
|
1768
|
+
Tecnologia_Voz: string;
|
|
1769
|
+
Tecnologia_BA: string;
|
|
1770
|
+
Tecnologia_TV: string;
|
|
1771
|
+
Tipo_Acceso: string;
|
|
1772
|
+
CCN: string;
|
|
1773
|
+
Rural: string;
|
|
1774
|
+
ZonaRoja: string;
|
|
1775
|
+
Tipo_Agendamiento: string;
|
|
1776
|
+
Causa_Reparacion: string;
|
|
1777
|
+
TipoProducto: string;
|
|
1778
|
+
Cierre_STB: string;
|
|
1779
|
+
Cierre_BA: string;
|
|
1780
|
+
Cierre_TV: string;
|
|
1781
|
+
Motivo_Reparacion: string;
|
|
1782
|
+
SubMotivo_Reparacion: string;
|
|
1783
|
+
Giro: string;
|
|
1784
|
+
NombreContacto: string;
|
|
1785
|
+
Observaciones: string;
|
|
1786
|
+
Inicio_Fin: string;
|
|
1787
|
+
Reutilización_de_Drop: string;
|
|
1788
|
+
ProductosServicios_Actuales: ProductosServiciosLiqDTO[];
|
|
1789
|
+
ProductosServicios_Contratados: ProductosServiciosLiqDTO[];
|
|
1790
|
+
Inventario: InventarioLiqDTO[];
|
|
1791
|
+
TipoFibra: string;
|
|
1792
|
+
EstadoProceso: EstadoDTO;
|
|
1793
|
+
Fecha_Proceso: Date;
|
|
1794
|
+
Bitacora: BitacoraLiqDTO[];
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, Cliente_ContratistaDTO, 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, EECC_DTO, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiquidadaTOAENTITY, 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, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, 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, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|