sigo-entities 1.1.97 → 1.1.99
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 +78 -63
- package/dist/index.d.ts +78 -63
- package/dist/index.js +8927 -8734
- package/dist/index.mjs +7111 -6921
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -718,6 +718,7 @@ declare class KeyIntegracionENTITY {
|
|
|
718
718
|
|
|
719
719
|
declare class EstadoInternoENTITY {
|
|
720
720
|
ID_EstadoInterno: number;
|
|
721
|
+
ID_EstadoInternoPadre: number;
|
|
721
722
|
Estado: EstadoDTO;
|
|
722
723
|
Fecha: Date;
|
|
723
724
|
Descripcion: string;
|
|
@@ -2632,20 +2633,56 @@ declare class CubicacionAlemaniaAL02ENTITY extends CubicacionENTITY {
|
|
|
2632
2633
|
cabecera: CabeceraCubicajeAlemaniaDTO;
|
|
2633
2634
|
}
|
|
2634
2635
|
|
|
2635
|
-
declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
2636
|
-
}
|
|
2637
|
-
|
|
2638
2636
|
declare class MaterialCubicacionPeruDTO {
|
|
2639
|
-
|
|
2637
|
+
CodigoPO: string;
|
|
2638
|
+
CodigoItemPlan: string;
|
|
2639
|
+
CodigoMaterial: string;
|
|
2640
2640
|
Descripcion: string;
|
|
2641
2641
|
CantidadIngresada: number;
|
|
2642
2642
|
CantidadFinal: number;
|
|
2643
|
-
|
|
2643
|
+
ValeReserva: string;
|
|
2644
|
+
PrecioUnitario: number;
|
|
2645
|
+
CodigoEECC: string;
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
declare class DetallePeruFechasDTO {
|
|
2649
|
+
FechaCreacionIp: Date;
|
|
2650
|
+
FechaInicio: Date;
|
|
2651
|
+
FechaTermino: Date;
|
|
2652
|
+
FechaRECVR: Date;
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
declare class DetallePeruDTO {
|
|
2656
|
+
Fase: string;
|
|
2657
|
+
EmpresaCliente: string;
|
|
2658
|
+
EstadoMacroObraCliente: string;
|
|
2659
|
+
SubEstadoMacroObraCliente: string;
|
|
2660
|
+
Central: string;
|
|
2661
|
+
Region: string;
|
|
2662
|
+
EECC: string;
|
|
2663
|
+
Paquetizado: string;
|
|
2664
|
+
Modelo: string;
|
|
2665
|
+
EstadoCliente: string;
|
|
2666
|
+
Zonal: string;
|
|
2667
|
+
TotalManoObra: number;
|
|
2668
|
+
TotalMaterial: number;
|
|
2669
|
+
VR: string;
|
|
2670
|
+
EstadoObra: string;
|
|
2671
|
+
Materiales: MaterialCubicacionPeruDTO[];
|
|
2672
|
+
Fechas: DetallePeruFechasDTO;
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
declare class DetalleAtipicaPeruDTO {
|
|
2679
|
+
Material: MaterialCubicacionPeruDTO[];
|
|
2644
2680
|
}
|
|
2645
2681
|
|
|
2646
2682
|
declare class CubicacionPeru9112ENTITY extends CubicacionENTITY {
|
|
2647
2683
|
cabecera: CabeceraCubicajePeruDTO;
|
|
2648
|
-
|
|
2684
|
+
DetallePeru: DetallePeruDTO;
|
|
2685
|
+
DetalleAtipica?: DetalleAtipicaPeruDTO;
|
|
2649
2686
|
}
|
|
2650
2687
|
|
|
2651
2688
|
declare class CausacionCubicacionDTO {
|
|
@@ -3413,67 +3450,12 @@ declare class BaremoProcessMaterialesUtilizadosDTO {
|
|
|
3413
3450
|
Tipo: string;
|
|
3414
3451
|
}
|
|
3415
3452
|
|
|
3416
|
-
declare class BaremoProcessUsuarioEdicionDTO {
|
|
3417
|
-
Cuadrilla: string;
|
|
3418
|
-
User: string;
|
|
3419
|
-
Identificacion: string;
|
|
3420
|
-
}
|
|
3421
|
-
|
|
3422
|
-
declare class BaremoProcessSUBEstadoDTO {
|
|
3423
|
-
ID_EstadoInterno: number;
|
|
3424
|
-
ID_EstadoInternoPadre: number;
|
|
3425
|
-
Fecha: Date;
|
|
3426
|
-
Descripcion: string;
|
|
3427
|
-
Icono: string;
|
|
3428
|
-
Color: string;
|
|
3429
|
-
Orden: number;
|
|
3430
|
-
ColorFondo: string;
|
|
3431
|
-
Tipo: string;
|
|
3432
|
-
Observacion: string;
|
|
3433
|
-
UsuarioEdicion: BaremoProcessUsuarioEdicionDTO;
|
|
3434
|
-
}
|
|
3435
|
-
|
|
3436
|
-
declare class BaremoProcessFotos_sstDTO {
|
|
3437
|
-
Titulo: string;
|
|
3438
|
-
Descripcion: string;
|
|
3439
|
-
Foto: FotoDTO;
|
|
3440
|
-
}
|
|
3441
|
-
|
|
3442
3453
|
declare class BaremoProcessUsuariosDTO {
|
|
3443
3454
|
Preliquidacion: string;
|
|
3444
3455
|
Liquidacion: string;
|
|
3445
3456
|
Produccion: string;
|
|
3446
3457
|
}
|
|
3447
3458
|
|
|
3448
|
-
declare class BaremoProcessEstadoInternoDTO {
|
|
3449
|
-
ID_EstadoInterno: number;
|
|
3450
|
-
Fecha: Date;
|
|
3451
|
-
Descripcion: string;
|
|
3452
|
-
Icono: string;
|
|
3453
|
-
Color: string;
|
|
3454
|
-
Orden: number;
|
|
3455
|
-
ColorFondo: string;
|
|
3456
|
-
Tipo: string;
|
|
3457
|
-
Observacion: string;
|
|
3458
|
-
UsuarioEdicion: BaremoProcessUsuarioEdicionDTO;
|
|
3459
|
-
UltimoSubEstado: BaremoProcessSUBEstadoDTO;
|
|
3460
|
-
SubEstados: BaremoProcessSUBEstadoDTO[];
|
|
3461
|
-
}
|
|
3462
|
-
|
|
3463
|
-
declare class BaremoProcessPartesDiariosDTO {
|
|
3464
|
-
Codigo: string;
|
|
3465
|
-
Fecha: Date;
|
|
3466
|
-
EstadosInternos: BaremoProcessEstadoInternoDTO[];
|
|
3467
|
-
Fotos_SST: BaremoProcessFotos_sstDTO[];
|
|
3468
|
-
Lider: PersonalDTO;
|
|
3469
|
-
Novedad: string;
|
|
3470
|
-
Personal: any[];
|
|
3471
|
-
UltimoEstadoInterno: BaremoProcessEstadoInternoDTO;
|
|
3472
|
-
UsuarioAprobacion: UsuarioDTO;
|
|
3473
|
-
UsuarioEdicion: UsuarioDTO;
|
|
3474
|
-
Valorizaciones: number[];
|
|
3475
|
-
}
|
|
3476
|
-
|
|
3477
3459
|
declare class BaremoProcessENTITY {
|
|
3478
3460
|
ID_Valorizacion: number;
|
|
3479
3461
|
Cluster: string;
|
|
@@ -3510,7 +3492,6 @@ declare class BaremoProcessENTITY {
|
|
|
3510
3492
|
Anio: number;
|
|
3511
3493
|
Fechas: BaremoProcessFechasDTO;
|
|
3512
3494
|
Usuarios: BaremoProcessUsuariosDTO;
|
|
3513
|
-
PartesDiarios: BaremoProcessPartesDiariosDTO[];
|
|
3514
3495
|
FasesObra: any[];
|
|
3515
3496
|
PagosEC: any[];
|
|
3516
3497
|
Total_PB: number;
|
|
@@ -3586,6 +3567,39 @@ declare class ResumenProcessReservaMaterial {
|
|
|
3586
3567
|
Propio: boolean;
|
|
3587
3568
|
}
|
|
3588
3569
|
|
|
3570
|
+
declare class ResumenProcessFotos_sstDTO {
|
|
3571
|
+
Titulo: string;
|
|
3572
|
+
Descripcion: string;
|
|
3573
|
+
Foto: FotoDTO;
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
declare class ResumenProcessUsuarioEdicionDTO {
|
|
3577
|
+
Cuadrilla: string;
|
|
3578
|
+
User: string;
|
|
3579
|
+
Identificacion: string;
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
declare class ResumenProcessEstadoInternoDTO {
|
|
3583
|
+
Fecha: Date;
|
|
3584
|
+
Descripcion: string;
|
|
3585
|
+
Tipo: string;
|
|
3586
|
+
Observacion: string;
|
|
3587
|
+
UsuarioEdicion: ResumenProcessUsuarioEdicionDTO;
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
declare class ResumenProcessPartesDiariosDTO {
|
|
3591
|
+
Codigo: string;
|
|
3592
|
+
Fecha: Date;
|
|
3593
|
+
Fotos_SST: ResumenProcessFotos_sstDTO[];
|
|
3594
|
+
Lider: PersonalDTO;
|
|
3595
|
+
Novedad: string;
|
|
3596
|
+
Personal: any[];
|
|
3597
|
+
UltimoEstadoInterno: ResumenProcessEstadoInternoDTO;
|
|
3598
|
+
UsuarioAprobacion: UsuarioDTO;
|
|
3599
|
+
UsuarioEdicion: UsuarioDTO;
|
|
3600
|
+
Valorizaciones: number[];
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3589
3603
|
declare class ResumenProcessENTITY {
|
|
3590
3604
|
ID_incidencia: number;
|
|
3591
3605
|
ID_MacroObra: number;
|
|
@@ -3604,6 +3618,7 @@ declare class ResumenProcessENTITY {
|
|
|
3604
3618
|
Anio: number;
|
|
3605
3619
|
Mes: number;
|
|
3606
3620
|
ReservaMaterial: ResumenProcessReservaMaterial[];
|
|
3621
|
+
PartesDiarios: ResumenProcessPartesDiariosDTO[];
|
|
3607
3622
|
Total_PB: number;
|
|
3608
3623
|
Total_MO: number;
|
|
3609
3624
|
Total_MAT: number;
|
|
@@ -5882,4 +5897,4 @@ declare class RequestNumberTTLENTITY {
|
|
|
5882
5897
|
createdAt: Date;
|
|
5883
5898
|
}
|
|
5884
5899
|
|
|
5885
|
-
export { ADM_RM_ZonasActividadENTITY, ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddMOPContrataMODTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexosDetailMantenanceOrderDTO, AreaGOMDTO, AreaGOMDatosReferenciaDTO, AreaGOMENTITY, AreaGOMSubGOMSDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremoAlemaniaENTITY, BaremoProcessENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, BodyUpdateOne, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CargoPersonalENTITY, CausacionCubicacionColombiaDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, CondicionDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ContratoPagosENTITY, Contrato_DTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataDocumentacionDTO, DataGridTabBusinessHP, DataGridTabResidentialHP, DataScraperClaroVTRENTITY, DataWithPercentItemChile, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleAtipicaDTO, DetalleChileAlemaniaObraDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleColombiaDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleClienteDTO, DocumentoDetalleNoClienteDTO, DocumentosInicialesDTO, EECC_DTO, EFaseObraBaremo, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$2 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EspecialidadDTO, EstadoAntiguoDTO, EstadoDTO, EstadoDePagoDTO, EstadoFaseObraBaremo, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FasePagoDTO, FasesObraBaremoDTO, FasesType, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FechasValorizacionBaremoDTO, FilesDocDTO, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, HomePassDTO$1 as HomePassDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemExtraENTITY, ItemLogisticaDTO, ItemsOrdenDTO, ItemsOrdenScraperClaroVTRDTO, KeyDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MOChileVigenciaDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraBaremoENTITY, ManoObraBaremoProduccionDTO, ManoObraENTITY, ManoObraGlobalDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, ManoObraMttoENTITY, ManoObraPorUnidadObraENTITY, MarcaDTO, MaterialAmapDTO, MaterialAmapMODTO, MaterialCubicacionColombiaDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesCubicacionDTO, MaterialesDTO$2 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTBYESPECIALIDADGEMEINDEENTITY, OTDTO, OTENTITY, OTGlobalDTO, OTGlobalENTITY, ObraAlemaniaAL02ENTITY, ObraAlemaniaAL04ENTITY, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdenDetailMaintenanceDTO, OrigenCUB, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, PasosDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PermisosAppENTITY, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PersonalTrabajoDTO, Peru9112TOAENTITY, PrecioActualDTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioContratistaMaterialENTITY, PrecioDTO, PrecioEmpresaDTO, PrecioEspecialidadENTITY, PrecioManoObraENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PresupuestoDTO, PresupuestoOTENTITY, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ActividadENTITY, RM_ComunaENTITY, RM_ManoObraENTITY, RM_MaterialENTITY, RM_PaquetizadoENTITY, RM_ZonasActividadENTITY, RecursosPersonalDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, RequestNumberTTLENTITY, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumenProcessENTITY, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, ScrapingCredentialENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SocketDTO, StateInventory, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TOAOrderStockENTITY, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoConsumoMaterial, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovilENTITY, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoObraENTITY, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, ToaClaroENTITY, TotBaremosDTO, TotalGeneralObraChile9512DTO, TotalGeneralObraChileDTO, TotalGeneralObraColombia9612DTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$2 as UbicacionDTO, UbicacionObraDTO, UbicacionPresupuestoDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraENTITY, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, ValorizadoPorEstado, ValorizadoTotalObraColombia9612DTO, ValorizadoTotalObraDTO, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaKeyDTO, VigenciaOTDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, convertTypeNumber, latLngDTO, transformToDateIfEmpty, trimAndUpperCaseString, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
|
5900
|
+
export { ADM_RM_ZonasActividadENTITY, ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddMOPContrataMODTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexosDetailMantenanceOrderDTO, AreaGOMDTO, AreaGOMDatosReferenciaDTO, AreaGOMENTITY, AreaGOMSubGOMSDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremoAlemaniaENTITY, BaremoProcessENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, BodyUpdateOne, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CargoPersonalENTITY, CausacionCubicacionColombiaDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, CondicionDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ContratoPagosENTITY, Contrato_DTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataDocumentacionDTO, DataGridTabBusinessHP, DataGridTabResidentialHP, DataScraperClaroVTRENTITY, DataWithPercentItemChile, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleAtipicaDTO, DetalleAtipicaPeruDTO, DetalleChileAlemaniaObraDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleColombiaDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetallePeruDTO, DetallePeruFechasDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleClienteDTO, DocumentoDetalleNoClienteDTO, DocumentosInicialesDTO, EECC_DTO, EFaseObraBaremo, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$2 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EspecialidadDTO, EstadoAntiguoDTO, EstadoDTO, EstadoDePagoDTO, EstadoFaseObraBaremo, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FasePagoDTO, FasesObraBaremoDTO, FasesType, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FechasValorizacionBaremoDTO, FilesDocDTO, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, HomePassDTO$1 as HomePassDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemExtraENTITY, ItemLogisticaDTO, ItemsOrdenDTO, ItemsOrdenScraperClaroVTRDTO, KeyDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MOChileVigenciaDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraBaremoENTITY, ManoObraBaremoProduccionDTO, ManoObraENTITY, ManoObraGlobalDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, ManoObraMttoENTITY, ManoObraPorUnidadObraENTITY, MarcaDTO, MaterialAmapDTO, MaterialAmapMODTO, MaterialCubicacionColombiaDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesCubicacionDTO, MaterialesDTO$2 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTBYESPECIALIDADGEMEINDEENTITY, OTDTO, OTENTITY, OTGlobalDTO, OTGlobalENTITY, ObraAlemaniaAL02ENTITY, ObraAlemaniaAL04ENTITY, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdenDetailMaintenanceDTO, OrigenCUB, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, PasosDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PermisosAppENTITY, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PersonalTrabajoDTO, Peru9112TOAENTITY, PrecioActualDTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioContratistaMaterialENTITY, PrecioDTO, PrecioEmpresaDTO, PrecioEspecialidadENTITY, PrecioManoObraENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PresupuestoDTO, PresupuestoOTENTITY, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ActividadENTITY, RM_ComunaENTITY, RM_ManoObraENTITY, RM_MaterialENTITY, RM_PaquetizadoENTITY, RM_ZonasActividadENTITY, RecursosPersonalDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, RequestNumberTTLENTITY, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumenProcessENTITY, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, ScrapingCredentialENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SocketDTO, StateInventory, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TOAOrderStockENTITY, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoConsumoMaterial, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovilENTITY, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoObraENTITY, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, ToaClaroENTITY, TotBaremosDTO, TotalGeneralObraChile9512DTO, TotalGeneralObraChileDTO, TotalGeneralObraColombia9612DTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$2 as UbicacionDTO, UbicacionObraDTO, UbicacionPresupuestoDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraENTITY, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, ValorizadoPorEstado, ValorizadoTotalObraColombia9612DTO, ValorizadoTotalObraDTO, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaKeyDTO, VigenciaOTDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, convertTypeNumber, latLngDTO, transformToDateIfEmpty, trimAndUpperCaseString, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
package/dist/index.d.ts
CHANGED
|
@@ -718,6 +718,7 @@ declare class KeyIntegracionENTITY {
|
|
|
718
718
|
|
|
719
719
|
declare class EstadoInternoENTITY {
|
|
720
720
|
ID_EstadoInterno: number;
|
|
721
|
+
ID_EstadoInternoPadre: number;
|
|
721
722
|
Estado: EstadoDTO;
|
|
722
723
|
Fecha: Date;
|
|
723
724
|
Descripcion: string;
|
|
@@ -2632,20 +2633,56 @@ declare class CubicacionAlemaniaAL02ENTITY extends CubicacionENTITY {
|
|
|
2632
2633
|
cabecera: CabeceraCubicajeAlemaniaDTO;
|
|
2633
2634
|
}
|
|
2634
2635
|
|
|
2635
|
-
declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
2636
|
-
}
|
|
2637
|
-
|
|
2638
2636
|
declare class MaterialCubicacionPeruDTO {
|
|
2639
|
-
|
|
2637
|
+
CodigoPO: string;
|
|
2638
|
+
CodigoItemPlan: string;
|
|
2639
|
+
CodigoMaterial: string;
|
|
2640
2640
|
Descripcion: string;
|
|
2641
2641
|
CantidadIngresada: number;
|
|
2642
2642
|
CantidadFinal: number;
|
|
2643
|
-
|
|
2643
|
+
ValeReserva: string;
|
|
2644
|
+
PrecioUnitario: number;
|
|
2645
|
+
CodigoEECC: string;
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
declare class DetallePeruFechasDTO {
|
|
2649
|
+
FechaCreacionIp: Date;
|
|
2650
|
+
FechaInicio: Date;
|
|
2651
|
+
FechaTermino: Date;
|
|
2652
|
+
FechaRECVR: Date;
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
declare class DetallePeruDTO {
|
|
2656
|
+
Fase: string;
|
|
2657
|
+
EmpresaCliente: string;
|
|
2658
|
+
EstadoMacroObraCliente: string;
|
|
2659
|
+
SubEstadoMacroObraCliente: string;
|
|
2660
|
+
Central: string;
|
|
2661
|
+
Region: string;
|
|
2662
|
+
EECC: string;
|
|
2663
|
+
Paquetizado: string;
|
|
2664
|
+
Modelo: string;
|
|
2665
|
+
EstadoCliente: string;
|
|
2666
|
+
Zonal: string;
|
|
2667
|
+
TotalManoObra: number;
|
|
2668
|
+
TotalMaterial: number;
|
|
2669
|
+
VR: string;
|
|
2670
|
+
EstadoObra: string;
|
|
2671
|
+
Materiales: MaterialCubicacionPeruDTO[];
|
|
2672
|
+
Fechas: DetallePeruFechasDTO;
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
declare class DetalleAtipicaPeruDTO {
|
|
2679
|
+
Material: MaterialCubicacionPeruDTO[];
|
|
2644
2680
|
}
|
|
2645
2681
|
|
|
2646
2682
|
declare class CubicacionPeru9112ENTITY extends CubicacionENTITY {
|
|
2647
2683
|
cabecera: CabeceraCubicajePeruDTO;
|
|
2648
|
-
|
|
2684
|
+
DetallePeru: DetallePeruDTO;
|
|
2685
|
+
DetalleAtipica?: DetalleAtipicaPeruDTO;
|
|
2649
2686
|
}
|
|
2650
2687
|
|
|
2651
2688
|
declare class CausacionCubicacionDTO {
|
|
@@ -3413,67 +3450,12 @@ declare class BaremoProcessMaterialesUtilizadosDTO {
|
|
|
3413
3450
|
Tipo: string;
|
|
3414
3451
|
}
|
|
3415
3452
|
|
|
3416
|
-
declare class BaremoProcessUsuarioEdicionDTO {
|
|
3417
|
-
Cuadrilla: string;
|
|
3418
|
-
User: string;
|
|
3419
|
-
Identificacion: string;
|
|
3420
|
-
}
|
|
3421
|
-
|
|
3422
|
-
declare class BaremoProcessSUBEstadoDTO {
|
|
3423
|
-
ID_EstadoInterno: number;
|
|
3424
|
-
ID_EstadoInternoPadre: number;
|
|
3425
|
-
Fecha: Date;
|
|
3426
|
-
Descripcion: string;
|
|
3427
|
-
Icono: string;
|
|
3428
|
-
Color: string;
|
|
3429
|
-
Orden: number;
|
|
3430
|
-
ColorFondo: string;
|
|
3431
|
-
Tipo: string;
|
|
3432
|
-
Observacion: string;
|
|
3433
|
-
UsuarioEdicion: BaremoProcessUsuarioEdicionDTO;
|
|
3434
|
-
}
|
|
3435
|
-
|
|
3436
|
-
declare class BaremoProcessFotos_sstDTO {
|
|
3437
|
-
Titulo: string;
|
|
3438
|
-
Descripcion: string;
|
|
3439
|
-
Foto: FotoDTO;
|
|
3440
|
-
}
|
|
3441
|
-
|
|
3442
3453
|
declare class BaremoProcessUsuariosDTO {
|
|
3443
3454
|
Preliquidacion: string;
|
|
3444
3455
|
Liquidacion: string;
|
|
3445
3456
|
Produccion: string;
|
|
3446
3457
|
}
|
|
3447
3458
|
|
|
3448
|
-
declare class BaremoProcessEstadoInternoDTO {
|
|
3449
|
-
ID_EstadoInterno: number;
|
|
3450
|
-
Fecha: Date;
|
|
3451
|
-
Descripcion: string;
|
|
3452
|
-
Icono: string;
|
|
3453
|
-
Color: string;
|
|
3454
|
-
Orden: number;
|
|
3455
|
-
ColorFondo: string;
|
|
3456
|
-
Tipo: string;
|
|
3457
|
-
Observacion: string;
|
|
3458
|
-
UsuarioEdicion: BaremoProcessUsuarioEdicionDTO;
|
|
3459
|
-
UltimoSubEstado: BaremoProcessSUBEstadoDTO;
|
|
3460
|
-
SubEstados: BaremoProcessSUBEstadoDTO[];
|
|
3461
|
-
}
|
|
3462
|
-
|
|
3463
|
-
declare class BaremoProcessPartesDiariosDTO {
|
|
3464
|
-
Codigo: string;
|
|
3465
|
-
Fecha: Date;
|
|
3466
|
-
EstadosInternos: BaremoProcessEstadoInternoDTO[];
|
|
3467
|
-
Fotos_SST: BaremoProcessFotos_sstDTO[];
|
|
3468
|
-
Lider: PersonalDTO;
|
|
3469
|
-
Novedad: string;
|
|
3470
|
-
Personal: any[];
|
|
3471
|
-
UltimoEstadoInterno: BaremoProcessEstadoInternoDTO;
|
|
3472
|
-
UsuarioAprobacion: UsuarioDTO;
|
|
3473
|
-
UsuarioEdicion: UsuarioDTO;
|
|
3474
|
-
Valorizaciones: number[];
|
|
3475
|
-
}
|
|
3476
|
-
|
|
3477
3459
|
declare class BaremoProcessENTITY {
|
|
3478
3460
|
ID_Valorizacion: number;
|
|
3479
3461
|
Cluster: string;
|
|
@@ -3510,7 +3492,6 @@ declare class BaremoProcessENTITY {
|
|
|
3510
3492
|
Anio: number;
|
|
3511
3493
|
Fechas: BaremoProcessFechasDTO;
|
|
3512
3494
|
Usuarios: BaremoProcessUsuariosDTO;
|
|
3513
|
-
PartesDiarios: BaremoProcessPartesDiariosDTO[];
|
|
3514
3495
|
FasesObra: any[];
|
|
3515
3496
|
PagosEC: any[];
|
|
3516
3497
|
Total_PB: number;
|
|
@@ -3586,6 +3567,39 @@ declare class ResumenProcessReservaMaterial {
|
|
|
3586
3567
|
Propio: boolean;
|
|
3587
3568
|
}
|
|
3588
3569
|
|
|
3570
|
+
declare class ResumenProcessFotos_sstDTO {
|
|
3571
|
+
Titulo: string;
|
|
3572
|
+
Descripcion: string;
|
|
3573
|
+
Foto: FotoDTO;
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
declare class ResumenProcessUsuarioEdicionDTO {
|
|
3577
|
+
Cuadrilla: string;
|
|
3578
|
+
User: string;
|
|
3579
|
+
Identificacion: string;
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
declare class ResumenProcessEstadoInternoDTO {
|
|
3583
|
+
Fecha: Date;
|
|
3584
|
+
Descripcion: string;
|
|
3585
|
+
Tipo: string;
|
|
3586
|
+
Observacion: string;
|
|
3587
|
+
UsuarioEdicion: ResumenProcessUsuarioEdicionDTO;
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
declare class ResumenProcessPartesDiariosDTO {
|
|
3591
|
+
Codigo: string;
|
|
3592
|
+
Fecha: Date;
|
|
3593
|
+
Fotos_SST: ResumenProcessFotos_sstDTO[];
|
|
3594
|
+
Lider: PersonalDTO;
|
|
3595
|
+
Novedad: string;
|
|
3596
|
+
Personal: any[];
|
|
3597
|
+
UltimoEstadoInterno: ResumenProcessEstadoInternoDTO;
|
|
3598
|
+
UsuarioAprobacion: UsuarioDTO;
|
|
3599
|
+
UsuarioEdicion: UsuarioDTO;
|
|
3600
|
+
Valorizaciones: number[];
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3589
3603
|
declare class ResumenProcessENTITY {
|
|
3590
3604
|
ID_incidencia: number;
|
|
3591
3605
|
ID_MacroObra: number;
|
|
@@ -3604,6 +3618,7 @@ declare class ResumenProcessENTITY {
|
|
|
3604
3618
|
Anio: number;
|
|
3605
3619
|
Mes: number;
|
|
3606
3620
|
ReservaMaterial: ResumenProcessReservaMaterial[];
|
|
3621
|
+
PartesDiarios: ResumenProcessPartesDiariosDTO[];
|
|
3607
3622
|
Total_PB: number;
|
|
3608
3623
|
Total_MO: number;
|
|
3609
3624
|
Total_MAT: number;
|
|
@@ -5882,4 +5897,4 @@ declare class RequestNumberTTLENTITY {
|
|
|
5882
5897
|
createdAt: Date;
|
|
5883
5898
|
}
|
|
5884
5899
|
|
|
5885
|
-
export { ADM_RM_ZonasActividadENTITY, ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddMOPContrataMODTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexosDetailMantenanceOrderDTO, AreaGOMDTO, AreaGOMDatosReferenciaDTO, AreaGOMENTITY, AreaGOMSubGOMSDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremoAlemaniaENTITY, BaremoProcessENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, BodyUpdateOne, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CargoPersonalENTITY, CausacionCubicacionColombiaDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, CondicionDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ContratoPagosENTITY, Contrato_DTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataDocumentacionDTO, DataGridTabBusinessHP, DataGridTabResidentialHP, DataScraperClaroVTRENTITY, DataWithPercentItemChile, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleAtipicaDTO, DetalleChileAlemaniaObraDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleColombiaDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleClienteDTO, DocumentoDetalleNoClienteDTO, DocumentosInicialesDTO, EECC_DTO, EFaseObraBaremo, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$2 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EspecialidadDTO, EstadoAntiguoDTO, EstadoDTO, EstadoDePagoDTO, EstadoFaseObraBaremo, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FasePagoDTO, FasesObraBaremoDTO, FasesType, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FechasValorizacionBaremoDTO, FilesDocDTO, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, HomePassDTO$1 as HomePassDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemExtraENTITY, ItemLogisticaDTO, ItemsOrdenDTO, ItemsOrdenScraperClaroVTRDTO, KeyDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MOChileVigenciaDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraBaremoENTITY, ManoObraBaremoProduccionDTO, ManoObraENTITY, ManoObraGlobalDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, ManoObraMttoENTITY, ManoObraPorUnidadObraENTITY, MarcaDTO, MaterialAmapDTO, MaterialAmapMODTO, MaterialCubicacionColombiaDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesCubicacionDTO, MaterialesDTO$2 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTBYESPECIALIDADGEMEINDEENTITY, OTDTO, OTENTITY, OTGlobalDTO, OTGlobalENTITY, ObraAlemaniaAL02ENTITY, ObraAlemaniaAL04ENTITY, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdenDetailMaintenanceDTO, OrigenCUB, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, PasosDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PermisosAppENTITY, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PersonalTrabajoDTO, Peru9112TOAENTITY, PrecioActualDTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioContratistaMaterialENTITY, PrecioDTO, PrecioEmpresaDTO, PrecioEspecialidadENTITY, PrecioManoObraENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PresupuestoDTO, PresupuestoOTENTITY, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ActividadENTITY, RM_ComunaENTITY, RM_ManoObraENTITY, RM_MaterialENTITY, RM_PaquetizadoENTITY, RM_ZonasActividadENTITY, RecursosPersonalDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, RequestNumberTTLENTITY, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumenProcessENTITY, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, ScrapingCredentialENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SocketDTO, StateInventory, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TOAOrderStockENTITY, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoConsumoMaterial, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovilENTITY, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoObraENTITY, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, ToaClaroENTITY, TotBaremosDTO, TotalGeneralObraChile9512DTO, TotalGeneralObraChileDTO, TotalGeneralObraColombia9612DTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$2 as UbicacionDTO, UbicacionObraDTO, UbicacionPresupuestoDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraENTITY, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, ValorizadoPorEstado, ValorizadoTotalObraColombia9612DTO, ValorizadoTotalObraDTO, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaKeyDTO, VigenciaOTDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, convertTypeNumber, latLngDTO, transformToDateIfEmpty, trimAndUpperCaseString, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
|
5900
|
+
export { ADM_RM_ZonasActividadENTITY, ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddMOPContrataMODTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexosDetailMantenanceOrderDTO, AreaGOMDTO, AreaGOMDatosReferenciaDTO, AreaGOMENTITY, AreaGOMSubGOMSDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremoAlemaniaENTITY, BaremoProcessENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, BodyUpdateOne, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CargoPersonalENTITY, CausacionCubicacionColombiaDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, CondicionDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ContratoPagosENTITY, Contrato_DTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataDocumentacionDTO, DataGridTabBusinessHP, DataGridTabResidentialHP, DataScraperClaroVTRENTITY, DataWithPercentItemChile, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleAtipicaDTO, DetalleAtipicaPeruDTO, DetalleChileAlemaniaObraDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleColombiaDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetallePeruDTO, DetallePeruFechasDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleClienteDTO, DocumentoDetalleNoClienteDTO, DocumentosInicialesDTO, EECC_DTO, EFaseObraBaremo, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$2 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EspecialidadDTO, EstadoAntiguoDTO, EstadoDTO, EstadoDePagoDTO, EstadoFaseObraBaremo, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FasePagoDTO, FasesObraBaremoDTO, FasesType, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FechasValorizacionBaremoDTO, FilesDocDTO, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, HomePassDTO$1 as HomePassDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemExtraENTITY, ItemLogisticaDTO, ItemsOrdenDTO, ItemsOrdenScraperClaroVTRDTO, KeyDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MOChileVigenciaDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraBaremoENTITY, ManoObraBaremoProduccionDTO, ManoObraENTITY, ManoObraGlobalDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, ManoObraMttoENTITY, ManoObraPorUnidadObraENTITY, MarcaDTO, MaterialAmapDTO, MaterialAmapMODTO, MaterialCubicacionColombiaDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesCubicacionDTO, MaterialesDTO$2 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTBYESPECIALIDADGEMEINDEENTITY, OTDTO, OTENTITY, OTGlobalDTO, OTGlobalENTITY, ObraAlemaniaAL02ENTITY, ObraAlemaniaAL04ENTITY, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdenDetailMaintenanceDTO, OrigenCUB, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, PasosDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PermisosAppENTITY, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PersonalTrabajoDTO, Peru9112TOAENTITY, PrecioActualDTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioContratistaMaterialENTITY, PrecioDTO, PrecioEmpresaDTO, PrecioEspecialidadENTITY, PrecioManoObraENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PresupuestoDTO, PresupuestoOTENTITY, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ActividadENTITY, RM_ComunaENTITY, RM_ManoObraENTITY, RM_MaterialENTITY, RM_PaquetizadoENTITY, RM_ZonasActividadENTITY, RecursosPersonalDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, RequestNumberTTLENTITY, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumenProcessENTITY, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, ScrapingCredentialENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SocketDTO, StateInventory, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TOAOrderStockENTITY, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoConsumoMaterial, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovilENTITY, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoObraENTITY, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, ToaClaroENTITY, TotBaremosDTO, TotalGeneralObraChile9512DTO, TotalGeneralObraChileDTO, TotalGeneralObraColombia9612DTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$2 as UbicacionDTO, UbicacionObraDTO, UbicacionPresupuestoDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraENTITY, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, ValorizadoPorEstado, ValorizadoTotalObraColombia9612DTO, ValorizadoTotalObraDTO, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaKeyDTO, VigenciaOTDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, convertTypeNumber, latLngDTO, transformToDateIfEmpty, trimAndUpperCaseString, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|