sigo-entities 0.0.282 → 0.0.284
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 +115 -8
- package/dist/index.d.ts +115 -8
- package/dist/index.js +6948 -6449
- package/dist/index.mjs +6253 -5750
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1858,12 +1858,6 @@ declare class AddressListENTITY {
|
|
|
1858
1858
|
BusinessHPList: HPListDTO[];
|
|
1859
1859
|
}
|
|
1860
1860
|
|
|
1861
|
-
declare class IncidenciasDTO {
|
|
1862
|
-
ID_Incidencia: number;
|
|
1863
|
-
Obra: string;
|
|
1864
|
-
Proyecto: string;
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
1861
|
declare class MacroObraENTITY {
|
|
1868
1862
|
ID_MacroObra: number;
|
|
1869
1863
|
Codigo: string;
|
|
@@ -1874,11 +1868,124 @@ declare class MacroObraENTITY {
|
|
|
1874
1868
|
ZonaAsignada: string;
|
|
1875
1869
|
ContratoOT: ContratoObraOTDTO;
|
|
1876
1870
|
FechaRegistro: Date;
|
|
1877
|
-
Incidencias: IncidenciasDTO[];
|
|
1878
1871
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
1879
1872
|
Estados_Internos: EstadoInternoDTO[];
|
|
1880
1873
|
}
|
|
1881
1874
|
|
|
1875
|
+
declare class IncidenciasDTO {
|
|
1876
|
+
ID_Incidencia: number;
|
|
1877
|
+
Obra: string;
|
|
1878
|
+
Proyecto: string;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
declare class PresupuestadoTotalObraChilaDTO {
|
|
1882
|
+
TotMetros: number;
|
|
1883
|
+
TotMetrosAsfalto: number;
|
|
1884
|
+
TotalMOPB: number;
|
|
1885
|
+
TotalMOValor: number;
|
|
1886
|
+
TotalMATValor: number;
|
|
1887
|
+
Empresas: any[];
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
declare class ManoObraCHILEDTO {
|
|
1891
|
+
Total: number;
|
|
1892
|
+
TotalUsado: number;
|
|
1893
|
+
PorcentajeUsado: number;
|
|
1894
|
+
FPorcentajeUsado: string;
|
|
1895
|
+
FTotal: string;
|
|
1896
|
+
FTotalUsado: string;
|
|
1897
|
+
}
|
|
1898
|
+
declare class ResumenAvanceDataGranTotal {
|
|
1899
|
+
Total: number;
|
|
1900
|
+
TotalUsado: number;
|
|
1901
|
+
PorcentajeUsado: number;
|
|
1902
|
+
ManoObra: ManoObraCHILEDTO;
|
|
1903
|
+
Reserva: ManoObraCHILEDTO;
|
|
1904
|
+
FTotal: string;
|
|
1905
|
+
FPorcentajeUsado: string;
|
|
1906
|
+
FTotalUsado: string;
|
|
1907
|
+
ValorizacionesByPeriodos: any[];
|
|
1908
|
+
Empresas: any[];
|
|
1909
|
+
Simbolo: string;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
declare class CalculatePercentsDTO {
|
|
1913
|
+
data: number;
|
|
1914
|
+
dataOK: number;
|
|
1915
|
+
dataNOOK: number;
|
|
1916
|
+
dataProgress: number;
|
|
1917
|
+
Advance: number;
|
|
1918
|
+
AdvancePercent: number;
|
|
1919
|
+
Pending: number;
|
|
1920
|
+
PendingPercent: number;
|
|
1921
|
+
Process: number;
|
|
1922
|
+
ProcessPercent: number;
|
|
1923
|
+
}
|
|
1924
|
+
declare class DocumentoDetalleDTO {
|
|
1925
|
+
modelTreeNodes: any[];
|
|
1926
|
+
dataChildrenTreeNodes: any[];
|
|
1927
|
+
data: any[];
|
|
1928
|
+
dataOK: any[];
|
|
1929
|
+
dataNOOK: any[];
|
|
1930
|
+
dataProgress: any[];
|
|
1931
|
+
Estado: string;
|
|
1932
|
+
calculatePercents: CalculatePercentsDTO;
|
|
1933
|
+
DataGridTabBusinessHP?: any[];
|
|
1934
|
+
DataGridTabResidentialHP?: any[];
|
|
1935
|
+
}
|
|
1936
|
+
declare class ResumentAvanceDocumentacionHPDTO {
|
|
1937
|
+
NoCliente: DocumentoDetalleDTO;
|
|
1938
|
+
Cliente: DocumentoDetalleDTO;
|
|
1939
|
+
Estado: string;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
declare class DataGroupToDrawDTO {
|
|
1943
|
+
IsDebug: boolean;
|
|
1944
|
+
Codigo: any[];
|
|
1945
|
+
Titulo: any[];
|
|
1946
|
+
FileExist: any[];
|
|
1947
|
+
children: any[];
|
|
1948
|
+
Size: any[];
|
|
1949
|
+
SizeImages: any[];
|
|
1950
|
+
SizeProgress: any[];
|
|
1951
|
+
SizeNoImages: any[];
|
|
1952
|
+
Advance: any[];
|
|
1953
|
+
AdvancePercent: any[];
|
|
1954
|
+
Pending: any[];
|
|
1955
|
+
PendingPercent: any[];
|
|
1956
|
+
Progress: any[];
|
|
1957
|
+
ProgressPercent: any[];
|
|
1958
|
+
}
|
|
1959
|
+
declare class ResumenAvanceDataDocumentacionDTO {
|
|
1960
|
+
IsDebug: boolean;
|
|
1961
|
+
DataGroupToDraw: DataGroupToDrawDTO;
|
|
1962
|
+
DataWithPercents: any[];
|
|
1963
|
+
DataWithPercentsByFases: any[];
|
|
1964
|
+
Estado: string;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
declare class ResumenAvanceChileDTO {
|
|
1968
|
+
DataGranTotal: ResumenAvanceDataGranTotal;
|
|
1969
|
+
DocumentacionHP: ResumentAvanceDocumentacionHPDTO;
|
|
1970
|
+
DataDocumentacion: ResumenAvanceDataDocumentacionDTO;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
declare class TotalGeneralObraChileDTO {
|
|
1974
|
+
PresupuestadoTotalObra: PresupuestadoTotalObraChilaDTO;
|
|
1975
|
+
ValorizadoTotalObra: PresupuestadoTotalObraChilaDTO;
|
|
1976
|
+
HP: number;
|
|
1977
|
+
ResumenAvance: ResumenAvanceChileDTO;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
declare class IncidenciasChileDTO extends IncidenciasDTO {
|
|
1981
|
+
Estado: EstadoDTO;
|
|
1982
|
+
TotalesGeneralObra: TotalGeneralObraChileDTO;
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
declare class MacroObraChileENTITY extends MacroObraENTITY {
|
|
1986
|
+
Incidencias: IncidenciasChileDTO[];
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1882
1989
|
declare enum Tipo_MO {
|
|
1883
1990
|
CEL = "CEL",
|
|
1884
1991
|
EMP = "EMP",
|
|
@@ -4291,4 +4398,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
4291
4398
|
Coordenadas: IDataSheetCoordenadas[];
|
|
4292
4399
|
}
|
|
4293
4400
|
|
|
4294
|
-
export { ActaFinalCubicacionDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GOMDatosManoObraDTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialMOGlobalDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaManoObraV2ENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, Ultimo_PrecioDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
|
4401
|
+
export { ActaFinalCubicacionDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GOMDatosManoObraDTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialMOGlobalDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaManoObraV2ENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataGranTotal, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraChileDTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, Ultimo_PrecioDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
package/dist/index.d.ts
CHANGED
|
@@ -1858,12 +1858,6 @@ declare class AddressListENTITY {
|
|
|
1858
1858
|
BusinessHPList: HPListDTO[];
|
|
1859
1859
|
}
|
|
1860
1860
|
|
|
1861
|
-
declare class IncidenciasDTO {
|
|
1862
|
-
ID_Incidencia: number;
|
|
1863
|
-
Obra: string;
|
|
1864
|
-
Proyecto: string;
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
1861
|
declare class MacroObraENTITY {
|
|
1868
1862
|
ID_MacroObra: number;
|
|
1869
1863
|
Codigo: string;
|
|
@@ -1874,11 +1868,124 @@ declare class MacroObraENTITY {
|
|
|
1874
1868
|
ZonaAsignada: string;
|
|
1875
1869
|
ContratoOT: ContratoObraOTDTO;
|
|
1876
1870
|
FechaRegistro: Date;
|
|
1877
|
-
Incidencias: IncidenciasDTO[];
|
|
1878
1871
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
1879
1872
|
Estados_Internos: EstadoInternoDTO[];
|
|
1880
1873
|
}
|
|
1881
1874
|
|
|
1875
|
+
declare class IncidenciasDTO {
|
|
1876
|
+
ID_Incidencia: number;
|
|
1877
|
+
Obra: string;
|
|
1878
|
+
Proyecto: string;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
declare class PresupuestadoTotalObraChilaDTO {
|
|
1882
|
+
TotMetros: number;
|
|
1883
|
+
TotMetrosAsfalto: number;
|
|
1884
|
+
TotalMOPB: number;
|
|
1885
|
+
TotalMOValor: number;
|
|
1886
|
+
TotalMATValor: number;
|
|
1887
|
+
Empresas: any[];
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
declare class ManoObraCHILEDTO {
|
|
1891
|
+
Total: number;
|
|
1892
|
+
TotalUsado: number;
|
|
1893
|
+
PorcentajeUsado: number;
|
|
1894
|
+
FPorcentajeUsado: string;
|
|
1895
|
+
FTotal: string;
|
|
1896
|
+
FTotalUsado: string;
|
|
1897
|
+
}
|
|
1898
|
+
declare class ResumenAvanceDataGranTotal {
|
|
1899
|
+
Total: number;
|
|
1900
|
+
TotalUsado: number;
|
|
1901
|
+
PorcentajeUsado: number;
|
|
1902
|
+
ManoObra: ManoObraCHILEDTO;
|
|
1903
|
+
Reserva: ManoObraCHILEDTO;
|
|
1904
|
+
FTotal: string;
|
|
1905
|
+
FPorcentajeUsado: string;
|
|
1906
|
+
FTotalUsado: string;
|
|
1907
|
+
ValorizacionesByPeriodos: any[];
|
|
1908
|
+
Empresas: any[];
|
|
1909
|
+
Simbolo: string;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
declare class CalculatePercentsDTO {
|
|
1913
|
+
data: number;
|
|
1914
|
+
dataOK: number;
|
|
1915
|
+
dataNOOK: number;
|
|
1916
|
+
dataProgress: number;
|
|
1917
|
+
Advance: number;
|
|
1918
|
+
AdvancePercent: number;
|
|
1919
|
+
Pending: number;
|
|
1920
|
+
PendingPercent: number;
|
|
1921
|
+
Process: number;
|
|
1922
|
+
ProcessPercent: number;
|
|
1923
|
+
}
|
|
1924
|
+
declare class DocumentoDetalleDTO {
|
|
1925
|
+
modelTreeNodes: any[];
|
|
1926
|
+
dataChildrenTreeNodes: any[];
|
|
1927
|
+
data: any[];
|
|
1928
|
+
dataOK: any[];
|
|
1929
|
+
dataNOOK: any[];
|
|
1930
|
+
dataProgress: any[];
|
|
1931
|
+
Estado: string;
|
|
1932
|
+
calculatePercents: CalculatePercentsDTO;
|
|
1933
|
+
DataGridTabBusinessHP?: any[];
|
|
1934
|
+
DataGridTabResidentialHP?: any[];
|
|
1935
|
+
}
|
|
1936
|
+
declare class ResumentAvanceDocumentacionHPDTO {
|
|
1937
|
+
NoCliente: DocumentoDetalleDTO;
|
|
1938
|
+
Cliente: DocumentoDetalleDTO;
|
|
1939
|
+
Estado: string;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
declare class DataGroupToDrawDTO {
|
|
1943
|
+
IsDebug: boolean;
|
|
1944
|
+
Codigo: any[];
|
|
1945
|
+
Titulo: any[];
|
|
1946
|
+
FileExist: any[];
|
|
1947
|
+
children: any[];
|
|
1948
|
+
Size: any[];
|
|
1949
|
+
SizeImages: any[];
|
|
1950
|
+
SizeProgress: any[];
|
|
1951
|
+
SizeNoImages: any[];
|
|
1952
|
+
Advance: any[];
|
|
1953
|
+
AdvancePercent: any[];
|
|
1954
|
+
Pending: any[];
|
|
1955
|
+
PendingPercent: any[];
|
|
1956
|
+
Progress: any[];
|
|
1957
|
+
ProgressPercent: any[];
|
|
1958
|
+
}
|
|
1959
|
+
declare class ResumenAvanceDataDocumentacionDTO {
|
|
1960
|
+
IsDebug: boolean;
|
|
1961
|
+
DataGroupToDraw: DataGroupToDrawDTO;
|
|
1962
|
+
DataWithPercents: any[];
|
|
1963
|
+
DataWithPercentsByFases: any[];
|
|
1964
|
+
Estado: string;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
declare class ResumenAvanceChileDTO {
|
|
1968
|
+
DataGranTotal: ResumenAvanceDataGranTotal;
|
|
1969
|
+
DocumentacionHP: ResumentAvanceDocumentacionHPDTO;
|
|
1970
|
+
DataDocumentacion: ResumenAvanceDataDocumentacionDTO;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
declare class TotalGeneralObraChileDTO {
|
|
1974
|
+
PresupuestadoTotalObra: PresupuestadoTotalObraChilaDTO;
|
|
1975
|
+
ValorizadoTotalObra: PresupuestadoTotalObraChilaDTO;
|
|
1976
|
+
HP: number;
|
|
1977
|
+
ResumenAvance: ResumenAvanceChileDTO;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
declare class IncidenciasChileDTO extends IncidenciasDTO {
|
|
1981
|
+
Estado: EstadoDTO;
|
|
1982
|
+
TotalesGeneralObra: TotalGeneralObraChileDTO;
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
declare class MacroObraChileENTITY extends MacroObraENTITY {
|
|
1986
|
+
Incidencias: IncidenciasChileDTO[];
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1882
1989
|
declare enum Tipo_MO {
|
|
1883
1990
|
CEL = "CEL",
|
|
1884
1991
|
EMP = "EMP",
|
|
@@ -4291,4 +4398,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
4291
4398
|
Coordenadas: IDataSheetCoordenadas[];
|
|
4292
4399
|
}
|
|
4293
4400
|
|
|
4294
|
-
export { ActaFinalCubicacionDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GOMDatosManoObraDTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialMOGlobalDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaManoObraV2ENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, Ultimo_PrecioDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
|
4401
|
+
export { ActaFinalCubicacionDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GOMDatosManoObraDTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialMOGlobalDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaManoObraV2ENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataGranTotal, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraChileDTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, Ultimo_PrecioDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|