sigo-entities 0.0.273 → 0.0.274
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 +236 -53
- package/dist/index.d.ts +236 -53
- package/dist/index.js +10977 -9958
- package/dist/index.mjs +10784 -9797
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -479,6 +479,39 @@ declare class NodoDocDTO {
|
|
|
479
479
|
Estado: EstadoDTO;
|
|
480
480
|
}
|
|
481
481
|
|
|
482
|
+
declare class ContratoOTGeneralDTO {
|
|
483
|
+
ID_ContratoOT: number;
|
|
484
|
+
Codigo: string;
|
|
485
|
+
Descripcion: string;
|
|
486
|
+
Sistema: string;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
declare class VigenciaDTO {
|
|
490
|
+
FechaInicio: Date;
|
|
491
|
+
FechaFin: Date;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
declare class PreciosVigentesDTO {
|
|
495
|
+
ID_PreciosVigentes: number;
|
|
496
|
+
Precio: number;
|
|
497
|
+
Vigencia: VigenciaDTO;
|
|
498
|
+
Estado: EstadoDTO;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
declare class VarianteDTO {
|
|
502
|
+
ID_Variante: number;
|
|
503
|
+
Descripcion: string;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
declare class ContratoOT_PRE_DTO {
|
|
507
|
+
ID_ContratoOT: number;
|
|
508
|
+
Codigo: string;
|
|
509
|
+
Descripcion: string;
|
|
510
|
+
Sistema: string;
|
|
511
|
+
Vigencia: VigenciaDTO;
|
|
512
|
+
CheckPrecioMO: boolean;
|
|
513
|
+
}
|
|
514
|
+
|
|
482
515
|
declare class MailStructureENTITY {
|
|
483
516
|
ID_MailStructure: number;
|
|
484
517
|
Codigo: string;
|
|
@@ -531,6 +564,159 @@ declare class EstadoInternoENTITY {
|
|
|
531
564
|
Bitacora: BitacoraDTO[];
|
|
532
565
|
}
|
|
533
566
|
|
|
567
|
+
declare class Ultimo_PrecioDTO {
|
|
568
|
+
ID_PreciosVigentes: number;
|
|
569
|
+
Precio: number;
|
|
570
|
+
Vigencia: VigenciaDTO;
|
|
571
|
+
Estado: EstadoDTO;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
declare class PreciosDTO {
|
|
575
|
+
ID_PreciosVigentes: number;
|
|
576
|
+
Precio: number;
|
|
577
|
+
Vigencia: VigenciaDTO;
|
|
578
|
+
Estado: EstadoDTO;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
declare class ActividadesDTO {
|
|
582
|
+
ID_PrecioActividad: number;
|
|
583
|
+
Codigo: string;
|
|
584
|
+
Descripcion: string;
|
|
585
|
+
Ultimo_Precio: Ultimo_PrecioDTO;
|
|
586
|
+
Precios: PreciosDTO[];
|
|
587
|
+
FechaRegistro: Date;
|
|
588
|
+
Estado: EstadoDTO;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
declare class AgenciasDTO {
|
|
592
|
+
ID_PreciosAgencia: number;
|
|
593
|
+
Codigo: string;
|
|
594
|
+
Nombre: string;
|
|
595
|
+
Ultimo_Precio: Ultimo_PrecioDTO;
|
|
596
|
+
Precios: PreciosDTO[];
|
|
597
|
+
Estado: EstadoDTO;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
declare class ZonasDTO {
|
|
601
|
+
ID_PreciosZonas: number;
|
|
602
|
+
Codigo: string;
|
|
603
|
+
Descripcion: string;
|
|
604
|
+
Actividades: ActividadesDTO[];
|
|
605
|
+
Estado: EstadoDTO;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
declare class Contratistas_PE_DTO {
|
|
609
|
+
ID_PrecioContrata: number;
|
|
610
|
+
Zonas: ZonasDTO[];
|
|
611
|
+
Empresa: EmpresaPersonalDTO;
|
|
612
|
+
Estado: EstadoDTO;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
declare class PrecioEspecialidadENTITY {
|
|
616
|
+
ID_PrecioEspecialidad: number;
|
|
617
|
+
Pais: CodigoNombreDTO;
|
|
618
|
+
Delegacion: CodigoNombreDTO;
|
|
619
|
+
ContratoOT: ContratoOT_PRE_DTO;
|
|
620
|
+
Moneda: string;
|
|
621
|
+
Simbolo: string;
|
|
622
|
+
Decimales: number;
|
|
623
|
+
Agencias: AgenciasDTO[];
|
|
624
|
+
Contratistas: Contratistas_PE_DTO[];
|
|
625
|
+
Especialidad: CodigoNombreDTO;
|
|
626
|
+
Estado: EstadoDTO;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
declare class MaterialLogisticaDTO {
|
|
630
|
+
ID_Material: number;
|
|
631
|
+
ID_Item: number;
|
|
632
|
+
Codigo: string;
|
|
633
|
+
Descripcion: string;
|
|
634
|
+
Unidad: UnidadMedidaDTO$2;
|
|
635
|
+
CantidadMax: number;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
declare class MaterialAmapDTO {
|
|
639
|
+
ID_MaterialAmap: number;
|
|
640
|
+
ID_Item: number;
|
|
641
|
+
Transaccion: string;
|
|
642
|
+
Requerido: number;
|
|
643
|
+
Codigo: string;
|
|
644
|
+
Descripcion: string;
|
|
645
|
+
Unidad: string;
|
|
646
|
+
CantidadMax: number;
|
|
647
|
+
Grupo: string;
|
|
648
|
+
MaterialLogistica: MaterialLogisticaDTO[];
|
|
649
|
+
Estado: EstadoDTO;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
declare class UnidadObraMaterialENTITY {
|
|
653
|
+
ID_UnidadObraMaterial: number;
|
|
654
|
+
Pais: CodigoNombreDTO;
|
|
655
|
+
Delegacion: CodigoNombreDTO;
|
|
656
|
+
Codigo: string;
|
|
657
|
+
Descripcion: string;
|
|
658
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
659
|
+
ContratoOT: ContratoOTGeneralDTO;
|
|
660
|
+
Materiales: MaterialAmapDTO[];
|
|
661
|
+
Estado: EstadoDTO;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
declare class latLngDTO {
|
|
665
|
+
lat: number;
|
|
666
|
+
lng: number;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
declare class ContratoOT_ZT_DTO {
|
|
670
|
+
Codigo: string;
|
|
671
|
+
Descripcion: string;
|
|
672
|
+
Sistema: string;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
declare class ZonaTrabajoENTITY {
|
|
676
|
+
ID_ZonaTrabajo: number;
|
|
677
|
+
Empresa: EmpresaLogisticaDTO;
|
|
678
|
+
Pais: CodigoNombreDTO;
|
|
679
|
+
Delegacion: CodigoNombreDTO;
|
|
680
|
+
Codigo: string;
|
|
681
|
+
Nombre: string;
|
|
682
|
+
Descripcion: string;
|
|
683
|
+
Direccion: string;
|
|
684
|
+
Coordenadas: latLngDTO;
|
|
685
|
+
Estado: EstadoDTO;
|
|
686
|
+
ContratoOT: ContratoOT_ZT_DTO;
|
|
687
|
+
Agencias: CodigoNombreDTO[];
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
declare class ItemDetallePMDTO {
|
|
691
|
+
ID_Item: number;
|
|
692
|
+
Codigo: string;
|
|
693
|
+
Nombre: string;
|
|
694
|
+
Descripcion: string;
|
|
695
|
+
Variante: VarianteDTO;
|
|
696
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
697
|
+
GranFamiliaItem: GranFamiliaItemDTO;
|
|
698
|
+
FamiliaItem: FamiliaItemDTO;
|
|
699
|
+
Ind_SB: string;
|
|
700
|
+
Tipo: string;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
declare class PrecioMaterialENTITY {
|
|
704
|
+
ID_PrecioMaterial: number;
|
|
705
|
+
Contrato: ContratoOT_PRE_DTO;
|
|
706
|
+
Pais: CodigoNombreDTO;
|
|
707
|
+
Delegacion: CodigoNombreDTO;
|
|
708
|
+
Codigo: string;
|
|
709
|
+
Descripcion: string;
|
|
710
|
+
Precio: number;
|
|
711
|
+
Vigencia: VigenciaDTO;
|
|
712
|
+
PreciosVigentes: PreciosVigentesDTO[];
|
|
713
|
+
Moneda: string;
|
|
714
|
+
Simbolo: string;
|
|
715
|
+
Decimales: number;
|
|
716
|
+
Item: ItemDetallePMDTO;
|
|
717
|
+
Estado: EstadoDTO;
|
|
718
|
+
}
|
|
719
|
+
|
|
534
720
|
declare class CodigoRazonSocialDTO {
|
|
535
721
|
Codigo: string;
|
|
536
722
|
RazonSocial: string;
|
|
@@ -556,18 +742,6 @@ declare class DatosItemDTO {
|
|
|
556
742
|
Propio: boolean;
|
|
557
743
|
}
|
|
558
744
|
|
|
559
|
-
declare class VigenciaDTO {
|
|
560
|
-
FechaInicio: Date;
|
|
561
|
-
FechaFin: Date;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
declare class PreciosVigentesDTO {
|
|
565
|
-
ID_PreciosVigentes: number;
|
|
566
|
-
Precio: number;
|
|
567
|
-
Vigencia: VigenciaDTO;
|
|
568
|
-
Estado: EstadoDTO;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
745
|
declare class DatosPrecioMaterialDTO_Old {
|
|
572
746
|
Precio: number;
|
|
573
747
|
Moneda: string;
|
|
@@ -602,11 +776,6 @@ declare class ItemCantidadesDTO {
|
|
|
602
776
|
Fecha: Date;
|
|
603
777
|
}
|
|
604
778
|
|
|
605
|
-
declare class VarianteDTO {
|
|
606
|
-
ID_Variante: number;
|
|
607
|
-
Descripcion: string;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
779
|
declare class WBEDTO$1 {
|
|
611
780
|
ID_WBE: number;
|
|
612
781
|
CodigoWBE: string;
|
|
@@ -2222,41 +2391,10 @@ declare class DetalleManoObraChileDTO {
|
|
|
2222
2391
|
ManoObraBaremo: ManoObraBaremoDTO[];
|
|
2223
2392
|
}
|
|
2224
2393
|
|
|
2225
|
-
declare class
|
|
2226
|
-
ID_Material: number;
|
|
2227
|
-
ID_Item: number;
|
|
2394
|
+
declare class MaterialDTO {
|
|
2228
2395
|
Codigo: string;
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
CantidadMax: number;
|
|
2232
|
-
}
|
|
2233
|
-
|
|
2234
|
-
declare class MaterialAmapDTO {
|
|
2235
|
-
ID_MaterialAmap: number;
|
|
2236
|
-
ID_Item: number;
|
|
2237
|
-
Transaccion: string;
|
|
2238
|
-
Requerido: number;
|
|
2239
|
-
Codigo: string;
|
|
2240
|
-
Descripcion: string;
|
|
2241
|
-
Unidad: string;
|
|
2242
|
-
CantidadMax: number;
|
|
2243
|
-
Grupo: string;
|
|
2244
|
-
MaterialLogistica: MaterialLogisticaDTO[];
|
|
2245
|
-
Estado: EstadoDTO;
|
|
2246
|
-
}
|
|
2247
|
-
|
|
2248
|
-
declare class ManoObraGlobalENTITY {
|
|
2249
|
-
ID_ManoObraGlobal: number;
|
|
2250
|
-
Pais: CodigoNombreDTO;
|
|
2251
|
-
Delegacion: CodigoNombreDTO;
|
|
2252
|
-
Amap: number;
|
|
2253
|
-
Codigo: string;
|
|
2254
|
-
Alcance: string;
|
|
2255
|
-
ContratoOT: ContratoOTDTO;
|
|
2256
|
-
Unidad: UnidadMedidaDTO$2;
|
|
2257
|
-
Material: MaterialAmapDTO[];
|
|
2258
|
-
DetalleChile: DetalleManoObraChileDTO;
|
|
2259
|
-
Bitacora: BitacoraDTO[];
|
|
2396
|
+
Nombre: string;
|
|
2397
|
+
Cantidad: number;
|
|
2260
2398
|
Estado: EstadoDTO;
|
|
2261
2399
|
}
|
|
2262
2400
|
|
|
@@ -2301,6 +2439,29 @@ declare class RM_ZonasActividadENTITY {
|
|
|
2301
2439
|
Bitacora: BitacoraDTO[];
|
|
2302
2440
|
}
|
|
2303
2441
|
|
|
2442
|
+
declare class TipoActividadMOENTITY {
|
|
2443
|
+
ID_TipoActividadMO: number;
|
|
2444
|
+
Pais: CodigoNombreDTO;
|
|
2445
|
+
Delegacion: CodigoNombreDTO;
|
|
2446
|
+
Codigo: string;
|
|
2447
|
+
Descripcion: string;
|
|
2448
|
+
Estado: EstadoDTO;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
declare class PeriodoENTITY {
|
|
2452
|
+
ID_Periodo: number;
|
|
2453
|
+
Pais: CodigoNombreDTO;
|
|
2454
|
+
Delegacion: CodigoNombreDTO;
|
|
2455
|
+
Codigo: string;
|
|
2456
|
+
FechaInicio: Date;
|
|
2457
|
+
FechaFin: Date;
|
|
2458
|
+
FechaMaxima: Date;
|
|
2459
|
+
Mes: number;
|
|
2460
|
+
Anio: number;
|
|
2461
|
+
DiasMaximoCierre: number;
|
|
2462
|
+
Estado: EstadoDTO;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2304
2465
|
declare class CuadrillaDTO$3 {
|
|
2305
2466
|
Codigo: string;
|
|
2306
2467
|
Descripcion: string;
|
|
@@ -2989,7 +3150,7 @@ declare class EmpresaStockPersonalDTO {
|
|
|
2989
3150
|
declare class ItemENTITY {
|
|
2990
3151
|
ID_Item: number;
|
|
2991
3152
|
Propio: boolean;
|
|
2992
|
-
|
|
3153
|
+
Pais: PaisStockPersonalDTO;
|
|
2993
3154
|
Delegacion: CodigoNombreDTO;
|
|
2994
3155
|
Empresa: EmpresaStockPersonalDTO;
|
|
2995
3156
|
Cliente: ClienteDTO;
|
|
@@ -3547,6 +3708,28 @@ declare class UsuariosAutoinventarioENTITY {
|
|
|
3547
3708
|
Reportado: boolean;
|
|
3548
3709
|
}
|
|
3549
3710
|
|
|
3711
|
+
declare class TipoEspecialidadMOENTITY {
|
|
3712
|
+
ID_TipoEspecialidadMO: number;
|
|
3713
|
+
Pais: CodigoNombreDTO;
|
|
3714
|
+
Delegacion: CodigoNombreDTO;
|
|
3715
|
+
Codigo: string;
|
|
3716
|
+
Descripcion: string;
|
|
3717
|
+
Estado: EstadoDTO;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
declare class ContratoOTENTITY {
|
|
3721
|
+
ID_ContratoOT: number;
|
|
3722
|
+
Codigo: string;
|
|
3723
|
+
Descripcion: string;
|
|
3724
|
+
Sistema: string;
|
|
3725
|
+
Pais: CodigoNombreDTO;
|
|
3726
|
+
Delegacion: CodigoNombreDTO;
|
|
3727
|
+
OT: OTGlobalDTO;
|
|
3728
|
+
Vigencia: VigenciaDTO;
|
|
3729
|
+
Estado: EstadoDTO;
|
|
3730
|
+
CheckPrecioMO: boolean;
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3550
3733
|
declare class Cliente_ContratistaDTO {
|
|
3551
3734
|
RUC: string;
|
|
3552
3735
|
RazonSocial: string;
|
|
@@ -4052,4 +4235,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
4052
4235
|
Coordenadas: IDataSheetCoordenadas[];
|
|
4053
4236
|
}
|
|
4054
4237
|
|
|
4055
|
-
export { ActaFinalCubicacionDTO, ActividadZonasActividadDTO, AddressListENTITY, AgenciaENTITY, 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, ContratoDTO, ContratoOTDTO, 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, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO,
|
|
4238
|
+
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, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, 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, 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 };
|