sigo-entities 1.1.7 → 1.1.9
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 +147 -79
- package/dist/index.d.ts +147 -79
- package/dist/index.js +11769 -11474
- package/dist/index.mjs +11270 -10980
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -429,6 +429,7 @@ declare class EstadoInternoWithoutSubstateDTO {
|
|
|
429
429
|
Orden: number;
|
|
430
430
|
ColorFondo: string;
|
|
431
431
|
Tipo: string;
|
|
432
|
+
Sistema: string;
|
|
432
433
|
UsuarioEdicion: UsuarioEdicionDTO;
|
|
433
434
|
}
|
|
434
435
|
|
|
@@ -844,6 +845,18 @@ declare class PrecioAgencia_mam_onnetENTITY {
|
|
|
844
845
|
Estado: EstadoDTO;
|
|
845
846
|
}
|
|
846
847
|
|
|
848
|
+
declare class ADM_RM_ZonasActividadENTITY {
|
|
849
|
+
ID_RM_ZonaActividad: number;
|
|
850
|
+
Codigo: string;
|
|
851
|
+
Zona: string;
|
|
852
|
+
Actividad: string;
|
|
853
|
+
Precio_v: number;
|
|
854
|
+
Precio_c: number;
|
|
855
|
+
Estado: EstadoDTO;
|
|
856
|
+
Pais: CodigoNombreDTO;
|
|
857
|
+
Delegacion: CodigoNombreDTO;
|
|
858
|
+
}
|
|
859
|
+
|
|
847
860
|
declare class DatosPrecioMaterialDTO {
|
|
848
861
|
Precio: number;
|
|
849
862
|
Moneda: string;
|
|
@@ -1931,6 +1944,16 @@ declare class ChangeStateBaremosDTO {
|
|
|
1931
1944
|
ASFALTADO: string;
|
|
1932
1945
|
}
|
|
1933
1946
|
|
|
1947
|
+
declare class DocumentosInicialesDTO {
|
|
1948
|
+
ID_Trabajo: number;
|
|
1949
|
+
Observacion: string;
|
|
1950
|
+
Fecha: Date;
|
|
1951
|
+
Usuario: UsuarioDTO;
|
|
1952
|
+
Description: string;
|
|
1953
|
+
Obra: string;
|
|
1954
|
+
OrdenTrabajo: string;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1934
1957
|
declare class ObraENTITY {
|
|
1935
1958
|
ID_incidencia: number;
|
|
1936
1959
|
ID_MacroObra: number;
|
|
@@ -1958,16 +1981,6 @@ declare class ObraENTITY {
|
|
|
1958
1981
|
TotalesGeneralObra: TotalGeneralObraDTO;
|
|
1959
1982
|
}
|
|
1960
1983
|
|
|
1961
|
-
declare class DocumentosInicialesDTO {
|
|
1962
|
-
ID_Trabajo: number;
|
|
1963
|
-
Observacion: string;
|
|
1964
|
-
Fecha: Date;
|
|
1965
|
-
Usuario: UsuarioDTO;
|
|
1966
|
-
Description: string;
|
|
1967
|
-
Obra: string;
|
|
1968
|
-
OrdenTrabajo: string;
|
|
1969
|
-
}
|
|
1970
|
-
|
|
1971
1984
|
declare class DetalleChileChileObraDTO extends DetalleChileObraDTO {
|
|
1972
1985
|
}
|
|
1973
1986
|
|
|
@@ -1996,6 +2009,92 @@ declare class ObraColombia9612ENTITY extends ObraENTITY {
|
|
|
1996
2009
|
DetalleChile: DetalleChileColombiaObraDTO;
|
|
1997
2010
|
}
|
|
1998
2011
|
|
|
2012
|
+
declare class CuadrillaDTO$3 {
|
|
2013
|
+
Codigo: string;
|
|
2014
|
+
Descripcion: string;
|
|
2015
|
+
Identificacion: string;
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
declare class EmpresaDTO$3 {
|
|
2019
|
+
Codigo: string;
|
|
2020
|
+
RazonSocial: string;
|
|
2021
|
+
Propia: boolean;
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
declare class ManoObraDTO$2 {
|
|
2025
|
+
Codigo: string;
|
|
2026
|
+
Nombre: string;
|
|
2027
|
+
UnidadMedida: string;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
declare class PeriodoDTO$2 {
|
|
2031
|
+
FechaInicio: Date;
|
|
2032
|
+
FechaFin: Date;
|
|
2033
|
+
FechaMaxima: Date;
|
|
2034
|
+
Anio: number;
|
|
2035
|
+
Mes: number;
|
|
2036
|
+
Codigo: string;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
declare class Ultimo_Estado_InternoDTO {
|
|
2040
|
+
ID_EstadoInterno: number;
|
|
2041
|
+
ID_EstadoInternoPadre: number;
|
|
2042
|
+
Fecha: Date;
|
|
2043
|
+
Descripcion: string;
|
|
2044
|
+
Icono: string;
|
|
2045
|
+
Color: string;
|
|
2046
|
+
Orden: number;
|
|
2047
|
+
ColorFondo: string;
|
|
2048
|
+
Tipo: string;
|
|
2049
|
+
Observacion: string;
|
|
2050
|
+
Sistema: string;
|
|
2051
|
+
UsuarioEdicion: UsuarioEdicionDTO;
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
declare class UnidadMedidaDTO$1 {
|
|
2055
|
+
Codigo: string;
|
|
2056
|
+
Nombre: string;
|
|
2057
|
+
UnidadMedida: string;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
declare class DetalleChileAlemaniaObraDTO {
|
|
2061
|
+
codigoCalc: string;
|
|
2062
|
+
codigo: string;
|
|
2063
|
+
nombre: string;
|
|
2064
|
+
contrato: string;
|
|
2065
|
+
agencia: string;
|
|
2066
|
+
numoe: string;
|
|
2067
|
+
nombreoe: string;
|
|
2068
|
+
tipooe: string;
|
|
2069
|
+
inioe: Date;
|
|
2070
|
+
finoe: Date;
|
|
2071
|
+
PE: string;
|
|
2072
|
+
ITOCTC: string;
|
|
2073
|
+
central: string;
|
|
2074
|
+
cliente: string;
|
|
2075
|
+
direccion: string;
|
|
2076
|
+
comuna: string;
|
|
2077
|
+
nombreproyecto: string;
|
|
2078
|
+
ito: string;
|
|
2079
|
+
red: string;
|
|
2080
|
+
PEP2: string;
|
|
2081
|
+
PEP1: string;
|
|
2082
|
+
GESTOR: string;
|
|
2083
|
+
ActaFinal: ActaFinalCubicacionSharedDTO;
|
|
2084
|
+
CostoTotal: number;
|
|
2085
|
+
Historico: HistoricoDTO[];
|
|
2086
|
+
UltimoEstadoCliente: Ultimo_Estado_InternoDTO;
|
|
2087
|
+
EstadosCliente: EstadoInternoWithoutSubstateDTO[];
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
declare class ObraAlemaniaAL02ENTITY extends ObraENTITY {
|
|
2091
|
+
DetalleChile: DetalleChileAlemaniaObraDTO;
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
declare class ObraAlemaniaAL04ENTITY extends ObraENTITY {
|
|
2095
|
+
DetalleChile: DetalleChileAlemaniaObraDTO;
|
|
2096
|
+
}
|
|
2097
|
+
|
|
1999
2098
|
declare class EmpresaPCMODTO {
|
|
2000
2099
|
ID_Empresa: number;
|
|
2001
2100
|
Codigo: string;
|
|
@@ -2392,6 +2491,9 @@ declare class CubicacionColombia9612ENTITY extends CubicacionENTITY {
|
|
|
2392
2491
|
cabecera: CabeceraCubicacionColombiaDTO;
|
|
2393
2492
|
}
|
|
2394
2493
|
|
|
2494
|
+
declare class PrecioContratistaMaterialENTITY {
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2395
2497
|
declare class HitoDTO {
|
|
2396
2498
|
Idx: number;
|
|
2397
2499
|
Estado: string;
|
|
@@ -2475,18 +2577,6 @@ declare class CentroCostosENTITY {
|
|
|
2475
2577
|
Bitacora: BitacoraDTO[];
|
|
2476
2578
|
}
|
|
2477
2579
|
|
|
2478
|
-
declare class RM_ZonasActividadENTITY {
|
|
2479
|
-
ID_ZonasActividad: number;
|
|
2480
|
-
Codigo: string;
|
|
2481
|
-
Zona: string;
|
|
2482
|
-
Actividad: string;
|
|
2483
|
-
Precio_v: number;
|
|
2484
|
-
Precio_c: number;
|
|
2485
|
-
Estado: EstadoDTO;
|
|
2486
|
-
Pais: CodigoNombreDTO;
|
|
2487
|
-
Delegacion: CodigoNombreDTO;
|
|
2488
|
-
}
|
|
2489
|
-
|
|
2490
2580
|
declare class EmpresaZonasActividadDTO extends EmpresaDTO$4 {
|
|
2491
2581
|
constructor();
|
|
2492
2582
|
NumeroDocumentoIdentidad: string;
|
|
@@ -2499,6 +2589,17 @@ declare class ActividadZonasActividadDTO {
|
|
|
2499
2589
|
Precio: Number;
|
|
2500
2590
|
}
|
|
2501
2591
|
|
|
2592
|
+
declare class RM_ZonasActividadENTITY {
|
|
2593
|
+
ID_ZonasActividad: number;
|
|
2594
|
+
Pais: CodigoNombreDTO;
|
|
2595
|
+
Delegacion: CodigoNombreDTO;
|
|
2596
|
+
Empresa: EmpresaZonasActividadDTO;
|
|
2597
|
+
Actividades: ActividadZonasActividadDTO[];
|
|
2598
|
+
Vigencia: VigenciaDTO;
|
|
2599
|
+
Estado: EstadoDTO;
|
|
2600
|
+
Bitacora: BitacoraDTO[];
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2502
2603
|
declare class RM_MaterialENTITY {
|
|
2503
2604
|
ID_RM_Material: number;
|
|
2504
2605
|
Codigo_Sima: string;
|
|
@@ -2589,25 +2690,25 @@ declare class RM_ComunaENTITY {
|
|
|
2589
2690
|
Estado: EstadoDTO;
|
|
2590
2691
|
}
|
|
2591
2692
|
|
|
2592
|
-
declare class CuadrillaDTO$
|
|
2693
|
+
declare class CuadrillaDTO$2 {
|
|
2593
2694
|
Codigo: string;
|
|
2594
2695
|
Descripcion: string;
|
|
2595
2696
|
Identificacion: string;
|
|
2596
2697
|
}
|
|
2597
2698
|
|
|
2598
|
-
declare class EmpresaDTO$
|
|
2699
|
+
declare class EmpresaDTO$2 {
|
|
2599
2700
|
Codigo: string;
|
|
2600
2701
|
RazonSocial: string;
|
|
2601
2702
|
Propia: string;
|
|
2602
2703
|
}
|
|
2603
2704
|
|
|
2604
|
-
declare class ManoObraDTO$
|
|
2705
|
+
declare class ManoObraDTO$1 {
|
|
2605
2706
|
Codigo: string;
|
|
2606
2707
|
Nombre: string;
|
|
2607
2708
|
UnidadMedida: string;
|
|
2608
2709
|
}
|
|
2609
2710
|
|
|
2610
|
-
declare class PeriodoDTO$
|
|
2711
|
+
declare class PeriodoDTO$1 {
|
|
2611
2712
|
FechaInicio: Date;
|
|
2612
2713
|
FechaFin: Date;
|
|
2613
2714
|
FechaMaxima: Date;
|
|
@@ -2625,14 +2726,14 @@ declare class BaremosAlemaniaENTITY {
|
|
|
2625
2726
|
AddressID: string;
|
|
2626
2727
|
Tipo: string;
|
|
2627
2728
|
Contrato: string;
|
|
2628
|
-
Cuadrilla: CuadrillaDTO$
|
|
2629
|
-
Empresa: EmpresaDTO$
|
|
2729
|
+
Cuadrilla: CuadrillaDTO$2;
|
|
2730
|
+
Empresa: EmpresaDTO$2;
|
|
2630
2731
|
Especialidad: CodigoNombreDTO;
|
|
2631
2732
|
Actividad: CodigoNombreDTO;
|
|
2632
|
-
ManoObra: ManoObraDTO$
|
|
2733
|
+
ManoObra: ManoObraDTO$1;
|
|
2633
2734
|
MaterialesUtilizados: Array<any>;
|
|
2634
2735
|
MaterialesRetirados: Array<any>;
|
|
2635
|
-
Periodo: PeriodoDTO$
|
|
2736
|
+
Periodo: PeriodoDTO$1;
|
|
2636
2737
|
ZonaAsignada: string;
|
|
2637
2738
|
Agencia: string;
|
|
2638
2739
|
Cantidad: number;
|
|
@@ -2756,7 +2857,7 @@ declare class BaremoAlemaniaENTITY {
|
|
|
2756
2857
|
Cancelado: Boolean;
|
|
2757
2858
|
}
|
|
2758
2859
|
|
|
2759
|
-
declare class PeriodoDTO
|
|
2860
|
+
declare class PeriodoDTO {
|
|
2760
2861
|
FechaInicio: Date;
|
|
2761
2862
|
FechaFin: Date;
|
|
2762
2863
|
FechaMaxima: Date;
|
|
@@ -2765,25 +2866,25 @@ declare class PeriodoDTO$1 {
|
|
|
2765
2866
|
Codigo: string;
|
|
2766
2867
|
}
|
|
2767
2868
|
|
|
2768
|
-
declare class CuadrillaDTO$
|
|
2869
|
+
declare class CuadrillaDTO$1 {
|
|
2769
2870
|
Codigo: string;
|
|
2770
2871
|
Descripcion: string;
|
|
2771
2872
|
Identificacion: string;
|
|
2772
2873
|
}
|
|
2773
2874
|
|
|
2774
|
-
declare class EmpresaDTO$
|
|
2875
|
+
declare class EmpresaDTO$1 {
|
|
2775
2876
|
Codigo: string;
|
|
2776
2877
|
RazonSocial: string;
|
|
2777
2878
|
Propia: boolean;
|
|
2778
2879
|
}
|
|
2779
2880
|
|
|
2780
|
-
declare class ManoObraDTO
|
|
2881
|
+
declare class ManoObraDTO {
|
|
2781
2882
|
Codigo: string;
|
|
2782
2883
|
Nombre: string;
|
|
2783
2884
|
UnidadMedida: string;
|
|
2784
2885
|
}
|
|
2785
2886
|
|
|
2786
|
-
declare class UnidadMedidaDTO
|
|
2887
|
+
declare class UnidadMedidaDTO {
|
|
2787
2888
|
Codigo: string;
|
|
2788
2889
|
Nombre: string;
|
|
2789
2890
|
UnidadMedida: string;
|
|
@@ -2797,12 +2898,12 @@ declare class BaremosChileENTITY {
|
|
|
2797
2898
|
ID_GOM: number;
|
|
2798
2899
|
ZonaAsignada: string;
|
|
2799
2900
|
Agencia: string;
|
|
2800
|
-
Cuadrilla: CuadrillaDTO$
|
|
2801
|
-
Empresa: EmpresaDTO$
|
|
2901
|
+
Cuadrilla: CuadrillaDTO$1;
|
|
2902
|
+
Empresa: EmpresaDTO$1;
|
|
2802
2903
|
Especialidad: CodigoNombreDTO;
|
|
2803
2904
|
Actividad: CodigoNombreDTO;
|
|
2804
|
-
ManoObra: ManoObraDTO
|
|
2805
|
-
UnidadObra: UnidadMedidaDTO
|
|
2905
|
+
ManoObra: ManoObraDTO;
|
|
2906
|
+
UnidadObra: UnidadMedidaDTO;
|
|
2806
2907
|
MaterialesUtilizados: Array<any>;
|
|
2807
2908
|
MaterialesRetirados: Array<any>;
|
|
2808
2909
|
Cantidad: number;
|
|
@@ -2811,7 +2912,7 @@ declare class BaremosChileENTITY {
|
|
|
2811
2912
|
PrecioContratista: number;
|
|
2812
2913
|
Simbolo: string;
|
|
2813
2914
|
Moneda: string;
|
|
2814
|
-
Periodo: PeriodoDTO
|
|
2915
|
+
Periodo: PeriodoDTO;
|
|
2815
2916
|
Anio: number;
|
|
2816
2917
|
Mes: number;
|
|
2817
2918
|
PB_Total: number;
|
|
@@ -2820,39 +2921,6 @@ declare class BaremosChileENTITY {
|
|
|
2820
2921
|
Cancelado: boolean;
|
|
2821
2922
|
}
|
|
2822
2923
|
|
|
2823
|
-
declare class CuadrillaDTO$1 {
|
|
2824
|
-
Codigo: string;
|
|
2825
|
-
Descripcion: string;
|
|
2826
|
-
Identificacion: string;
|
|
2827
|
-
}
|
|
2828
|
-
|
|
2829
|
-
declare class EmpresaDTO$1 {
|
|
2830
|
-
Codigo: string;
|
|
2831
|
-
RazonSocial: string;
|
|
2832
|
-
Propia: boolean;
|
|
2833
|
-
}
|
|
2834
|
-
|
|
2835
|
-
declare class ManoObraDTO {
|
|
2836
|
-
Codigo: string;
|
|
2837
|
-
Nombre: string;
|
|
2838
|
-
UnidadMedida: string;
|
|
2839
|
-
}
|
|
2840
|
-
|
|
2841
|
-
declare class PeriodoDTO {
|
|
2842
|
-
FechaInicio: Date;
|
|
2843
|
-
FechaFin: Date;
|
|
2844
|
-
FechaMaxima: Date;
|
|
2845
|
-
Anio: number;
|
|
2846
|
-
Mes: number;
|
|
2847
|
-
Codigo: string;
|
|
2848
|
-
}
|
|
2849
|
-
|
|
2850
|
-
declare class UnidadMedidaDTO {
|
|
2851
|
-
Codigo: string;
|
|
2852
|
-
Nombre: string;
|
|
2853
|
-
UnidadMedida: string;
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
2924
|
declare class BaremosColombiaENTITY {
|
|
2857
2925
|
_id?: string;
|
|
2858
2926
|
foreignKey: string;
|
|
@@ -2861,12 +2929,12 @@ declare class BaremosColombiaENTITY {
|
|
|
2861
2929
|
ID_GOM: number;
|
|
2862
2930
|
ZonaAsignada: string;
|
|
2863
2931
|
Agencia: string;
|
|
2864
|
-
Cuadrilla: CuadrillaDTO$
|
|
2865
|
-
Empresa: EmpresaDTO$
|
|
2932
|
+
Cuadrilla: CuadrillaDTO$3;
|
|
2933
|
+
Empresa: EmpresaDTO$3;
|
|
2866
2934
|
Especialidad: CodigoNombreDTO;
|
|
2867
2935
|
Actividad: CodigoNombreDTO;
|
|
2868
|
-
ManoObra: ManoObraDTO;
|
|
2869
|
-
UnidadObra: UnidadMedidaDTO;
|
|
2936
|
+
ManoObra: ManoObraDTO$2;
|
|
2937
|
+
UnidadObra: UnidadMedidaDTO$1;
|
|
2870
2938
|
MaterialesUtilizados: Array<any>;
|
|
2871
2939
|
MaterialesRetirados: Array<any>;
|
|
2872
2940
|
CoeficienteMaterial: number;
|
|
@@ -2876,7 +2944,7 @@ declare class BaremosColombiaENTITY {
|
|
|
2876
2944
|
PrecioContratista: number;
|
|
2877
2945
|
Simbolo: string;
|
|
2878
2946
|
Moneda: string;
|
|
2879
|
-
Periodo: PeriodoDTO;
|
|
2947
|
+
Periodo: PeriodoDTO$2;
|
|
2880
2948
|
Anio: number;
|
|
2881
2949
|
Mes: number;
|
|
2882
2950
|
PB_Total: number;
|
|
@@ -5203,4 +5271,4 @@ declare class OnnetFibraENTITY extends BitacoraDeOrdenesDTO {
|
|
|
5203
5271
|
DetailMaintenanceOrder: DetailMaintenanceOrderDTO;
|
|
5204
5272
|
}
|
|
5205
5273
|
|
|
5206
|
-
export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexosDetailMantenanceOrderDTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremoAlemaniaENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataGridTabBusinessHP, DataGridTabResidentialHP, DataWithPercentItemChile, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleDTO, DocumentosInicialesDTO, EECC_DTO, EFaseObraBaremo, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, 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, FasesObraBaremoDTO, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, 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, ItemLogisticaDTO, ItemsOrdenDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraBaremoProduccionDTO, ManoObraENTITY, ManoObraGlobalENTITY, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesDTO$1 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTGlobalDTO, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdenDetailMaintenanceDTO, OrigenCUB, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioDTO, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ComunaENTITY, RM_MaterialENTITY, RM_ZonasActividadENTITY, RecursosPersonalDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoConsumoMaterial, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, ToaClaroENTITY, TotalGeneralObraChileDTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, TurnoDTO$1 as TurnoDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, peru9112TOAENTITY, transformToDateIfEmpty, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
|
5274
|
+
export { ADM_RM_ZonasActividadENTITY, ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenExtraENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AnexosDetailMantenanceOrderDTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremoAlemaniaENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraDeOrdenesDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, BodyUpdateFasesDTO, CabeceraCubicacionColombiaDTO, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionCubicacionDTO, CausacionDTO, CentroCostosDTO, CentroCostosENTITY, CertificacionDTO, ChangeStateBaremosDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, ConsumoMaterialAlemaniaENTITY, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CosumoMaterialAlemaniaDTO, CuadrillaBaremoDTO, CuadrillaDTO, CuadrillaENTITY, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, CubicacionColombia9612ENTITY, CubicacionENTITY, CubicacionPeru9112ENTITY, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DataChildrenTreeNodes, DataGridTabBusinessHP, DataGridTabResidentialHP, DataWithPercentItemChile, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoItemDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTecnicosDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetailMaintenanceOrderDTO, DetalleChileAlemaniaObraDTO, DetalleChileChileObraDTO, DetalleChileColombiaObraDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleOrdenRealDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleDTO, DocumentosInicialesDTO, EECC_DTO, EFaseObraBaremo, EmpalmeDTO, EmpresaBaremoDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, 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, FasesObraBaremoDTO, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosDetailMaintenanceDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GranFamiliaItemENTITY, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, 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, ItemLogisticaDTO, ItemsOrdenDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, ListaCapacidadesCableDTO, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraBaremoProduccionDTO, ManoObraENTITY, ManoObraGlobalENTITY, ManoObraGlobalPCMOAlemaniaAL02DTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialUtilizadoRetiradoBaremoDTO, MaterialesDTO$1 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTGlobalDTO, ObraAlemaniaAL02ENTITY, ObraAlemaniaAL04ENTITY, ObraChile9512ENTITY, ObraColombia9612ENTITY, ObraENTITY, OnnetFibraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrdenDetailMaintenanceDTO, OrigenCUB, PagosECBaremoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoBaremoDTO, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalCuadrillaDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PersonalTOADTO, PrecioAgencia_mam_onnetENTITY, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioContratistaMaterialENTITY, PrecioDTO, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PrecioTrabajoDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProduccionDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ComunaENTITY, RM_MaterialENTITY, RM_ZonasActividadENTITY, RecursosPersonalDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SistemaRecurso, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoAlmacenENTITY, TipoClaveENTITY, TipoConsumoMaterial, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovilCuadrillaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockENTITY, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, ToaClaroENTITY, TotalGeneralObraChileDTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, TurnoDTO$1 as TurnoDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_PreLiquidacionTMOAlemaniaDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaENTITY, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBaremoDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionTMOAlemaniaDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoCuadrillaDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, peru9112TOAENTITY, transformToDateIfEmpty, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|