sigo-entities 0.0.241 → 0.0.242
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 +299 -7
- package/dist/index.d.ts +299 -7
- package/dist/index.js +953 -0
- package/dist/index.mjs +930 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1737,7 +1737,7 @@ declare class CentroCostosENTITY {
|
|
|
1737
1737
|
Bitacora: BitacoraDTO[];
|
|
1738
1738
|
}
|
|
1739
1739
|
|
|
1740
|
-
declare class CuadrillaDTO$
|
|
1740
|
+
declare class CuadrillaDTO$3 {
|
|
1741
1741
|
Codigo: string;
|
|
1742
1742
|
Descripcion: string;
|
|
1743
1743
|
Identificacion: string;
|
|
@@ -1774,7 +1774,7 @@ declare class BaremosAlemaniaENTITY {
|
|
|
1774
1774
|
Contrato: string;
|
|
1775
1775
|
ZonaAsignada: string;
|
|
1776
1776
|
Agencia: string;
|
|
1777
|
-
Cuadrilla: CuadrillaDTO$
|
|
1777
|
+
Cuadrilla: CuadrillaDTO$3;
|
|
1778
1778
|
Empresa: EmpresaDTO$3;
|
|
1779
1779
|
Especialidad: CodigoNombreDTO;
|
|
1780
1780
|
Actividad: CodigoNombreDTO;
|
|
@@ -1801,7 +1801,7 @@ declare class PeriodoDTO$1 {
|
|
|
1801
1801
|
Codigo: string;
|
|
1802
1802
|
}
|
|
1803
1803
|
|
|
1804
|
-
declare class CuadrillaDTO$
|
|
1804
|
+
declare class CuadrillaDTO$2 {
|
|
1805
1805
|
Codigo: string;
|
|
1806
1806
|
Descripcion: string;
|
|
1807
1807
|
Identificacion: string;
|
|
@@ -1833,7 +1833,7 @@ declare class BaremosChileENTITY {
|
|
|
1833
1833
|
ID_GOM: number;
|
|
1834
1834
|
ZonaAsignada: string;
|
|
1835
1835
|
Agencia: string;
|
|
1836
|
-
Cuadrilla: CuadrillaDTO$
|
|
1836
|
+
Cuadrilla: CuadrillaDTO$2;
|
|
1837
1837
|
Empresa: EmpresaDTO$2;
|
|
1838
1838
|
Especialidad: CodigoNombreDTO;
|
|
1839
1839
|
Actividad: CodigoNombreDTO;
|
|
@@ -1856,7 +1856,7 @@ declare class BaremosChileENTITY {
|
|
|
1856
1856
|
Cancelado: boolean;
|
|
1857
1857
|
}
|
|
1858
1858
|
|
|
1859
|
-
declare class CuadrillaDTO {
|
|
1859
|
+
declare class CuadrillaDTO$1 {
|
|
1860
1860
|
Codigo: string;
|
|
1861
1861
|
Descripcion: string;
|
|
1862
1862
|
Identificacion: string;
|
|
@@ -1897,7 +1897,7 @@ declare class BaremosColombiaENTITY {
|
|
|
1897
1897
|
ID_GOM: number;
|
|
1898
1898
|
ZonaAsignada: string;
|
|
1899
1899
|
Agencia: string;
|
|
1900
|
-
Cuadrilla: CuadrillaDTO;
|
|
1900
|
+
Cuadrilla: CuadrillaDTO$1;
|
|
1901
1901
|
Empresa: EmpresaDTO$1;
|
|
1902
1902
|
Especialidad: CodigoNombreDTO;
|
|
1903
1903
|
Actividad: CodigoNombreDTO;
|
|
@@ -3054,4 +3054,296 @@ declare class BaremosTOAChileENTITY {
|
|
|
3054
3054
|
Vigencia: VigenciaBaremosDTO[];
|
|
3055
3055
|
}
|
|
3056
3056
|
|
|
3057
|
-
|
|
3057
|
+
declare class ClienteTdCDTO {
|
|
3058
|
+
Codigo: string;
|
|
3059
|
+
Cliente: string;
|
|
3060
|
+
Centro_Operativo: string;
|
|
3061
|
+
Tipo_Via: string;
|
|
3062
|
+
Numero_Via: string;
|
|
3063
|
+
Numero_Placa: string;
|
|
3064
|
+
Codigo_Unidad_Predial: string;
|
|
3065
|
+
Numero_Unidad_Predial: string;
|
|
3066
|
+
Codigo_Modalidad_Unidad_Predial: string;
|
|
3067
|
+
Numero_Modalidad_Unidad_Predial: string;
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
declare class ContratistaDTO {
|
|
3071
|
+
CO: string;
|
|
3072
|
+
Contratista: string;
|
|
3073
|
+
Contrato: string;
|
|
3074
|
+
Codigo_Externo: string;
|
|
3075
|
+
Codigo_TdC_Externo: string;
|
|
3076
|
+
Nombre_TdC: string;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
declare class CoordenadasTdCDTO {
|
|
3080
|
+
Tipo_Actividad: string;
|
|
3081
|
+
Fecha_Captura: string;
|
|
3082
|
+
Presicion: string;
|
|
3083
|
+
Longitud: string;
|
|
3084
|
+
Latitud: string;
|
|
3085
|
+
}
|
|
3086
|
+
|
|
3087
|
+
declare class EmpresaTdCDTO {
|
|
3088
|
+
Codigo: string;
|
|
3089
|
+
Ruc: string;
|
|
3090
|
+
Razon: string;
|
|
3091
|
+
}
|
|
3092
|
+
|
|
3093
|
+
declare class CuadrillaDTO {
|
|
3094
|
+
Codigo: string;
|
|
3095
|
+
Cuadrilla: string;
|
|
3096
|
+
Jefe: string;
|
|
3097
|
+
Empresa: EmpresaTdCDTO;
|
|
3098
|
+
}
|
|
3099
|
+
|
|
3100
|
+
declare class CumplimientoDTO {
|
|
3101
|
+
Numero_Serie: string;
|
|
3102
|
+
Apellido: string;
|
|
3103
|
+
Nombre: string;
|
|
3104
|
+
Tiempo: string;
|
|
3105
|
+
}
|
|
3106
|
+
|
|
3107
|
+
declare class EmpalmeDTO {
|
|
3108
|
+
Latitud: string;
|
|
3109
|
+
Longitud: string;
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
declare class FechasDTO {
|
|
3113
|
+
hora_Creacion: Date;
|
|
3114
|
+
Hora_Carga: Date;
|
|
3115
|
+
Hora_Salida: Date;
|
|
3116
|
+
Inicio: Date;
|
|
3117
|
+
Fin: Date;
|
|
3118
|
+
Plazo_ANS_Legal: Date;
|
|
3119
|
+
Plazo_ANS_Interno: Date;
|
|
3120
|
+
Plazo_ANS_Contratista: Date;
|
|
3121
|
+
Inicio_Previsto: Date;
|
|
3122
|
+
Fin_Previsto: Date;
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
declare class MarcaDTO {
|
|
3126
|
+
Codigo: string;
|
|
3127
|
+
Marca: string;
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
declare class ModeloDTO {
|
|
3131
|
+
Codigo: string;
|
|
3132
|
+
Modelo: string;
|
|
3133
|
+
}
|
|
3134
|
+
|
|
3135
|
+
declare class InventarioDTO {
|
|
3136
|
+
Codigo: string;
|
|
3137
|
+
Descripcion: string;
|
|
3138
|
+
UM: string;
|
|
3139
|
+
Tipo_Material: string;
|
|
3140
|
+
Acción: string;
|
|
3141
|
+
Serie: string;
|
|
3142
|
+
Numero_Medidor: string;
|
|
3143
|
+
Tipo_Registrador: string;
|
|
3144
|
+
Marca: MarcaDTO;
|
|
3145
|
+
Modelo: ModeloDTO;
|
|
3146
|
+
Tipo_Tecnologia: string;
|
|
3147
|
+
Ubicacion: string;
|
|
3148
|
+
Propiedad: string;
|
|
3149
|
+
Numero_Digitos: string;
|
|
3150
|
+
Fecha_Instalacion: string;
|
|
3151
|
+
}
|
|
3152
|
+
|
|
3153
|
+
declare class MedidorDTO {
|
|
3154
|
+
Latitud: string;
|
|
3155
|
+
Longitud: string;
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
declare class OperacionDTO {
|
|
3159
|
+
Codigo: string;
|
|
3160
|
+
Descripcion: string;
|
|
3161
|
+
Tipo: string;
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
declare class ResultadoDTO {
|
|
3165
|
+
Causal: string;
|
|
3166
|
+
Resultado: string;
|
|
3167
|
+
Causal_Anulacion_Suspension: string;
|
|
3168
|
+
Causal_Anulacion: string;
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3171
|
+
declare class UbicacionTdCDTO {
|
|
3172
|
+
Localizacion: string;
|
|
3173
|
+
Municipio: string;
|
|
3174
|
+
Tipo_Agrupacion: string;
|
|
3175
|
+
Codigo_Postal: string;
|
|
3176
|
+
Direccion: string;
|
|
3177
|
+
Provincia: string;
|
|
3178
|
+
Agrupacion: string;
|
|
3179
|
+
Manzana: string;
|
|
3180
|
+
Lote: string;
|
|
3181
|
+
Ruta_Lectura: string;
|
|
3182
|
+
Zona: string;
|
|
3183
|
+
Longitud: string;
|
|
3184
|
+
Latitud: string;
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
declare class TdCENTITY {
|
|
3188
|
+
ID: number;
|
|
3189
|
+
Orden: string;
|
|
3190
|
+
Contratista: ContratistaDTO;
|
|
3191
|
+
Proceso: string;
|
|
3192
|
+
Tipo_TdC: string;
|
|
3193
|
+
Ciclo_Trabajo: string;
|
|
3194
|
+
Estado_TdC: string;
|
|
3195
|
+
Cliente: ClienteTdCDTO;
|
|
3196
|
+
Ubicacion: UbicacionTdCDTO;
|
|
3197
|
+
Operacion: OperacionDTO;
|
|
3198
|
+
Cuadrilla: CuadrillaDTO;
|
|
3199
|
+
Resultado: ResultadoDTO;
|
|
3200
|
+
Cumplimiento: CumplimientoDTO[];
|
|
3201
|
+
Fechas: FechasDTO;
|
|
3202
|
+
Observaciones: string;
|
|
3203
|
+
Medidor: MedidorDTO;
|
|
3204
|
+
Transformador: string;
|
|
3205
|
+
Empalme: EmpalmeDTO;
|
|
3206
|
+
Coordenadas: CoordenadasTdCDTO[];
|
|
3207
|
+
Inventario: InventarioDTO[];
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
declare class IDataSheetCoordenadas {
|
|
3211
|
+
'Código TdC': string;
|
|
3212
|
+
Proceso: string;
|
|
3213
|
+
'Tipo TdC': string;
|
|
3214
|
+
'Código Operación': number;
|
|
3215
|
+
'Descripción Operación': string;
|
|
3216
|
+
'Tipo de Actividad': string;
|
|
3217
|
+
'Fecha Captura': string;
|
|
3218
|
+
'Precisión': number;
|
|
3219
|
+
Longitud: number;
|
|
3220
|
+
Latitud: number;
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
declare class IDataSheetLineasTdC {
|
|
3224
|
+
'Código TdC': string;
|
|
3225
|
+
Proceso: string;
|
|
3226
|
+
'Tipo TdC': string;
|
|
3227
|
+
'Código Operación': number;
|
|
3228
|
+
'Descripción Operación': string;
|
|
3229
|
+
'Tipo de operación': string;
|
|
3230
|
+
'Código Cuadrilla': string;
|
|
3231
|
+
Cuadrilla: string;
|
|
3232
|
+
'Jefe de Equipo': string;
|
|
3233
|
+
'Jefe de Equipo_1': string;
|
|
3234
|
+
'Nota Codificada': string;
|
|
3235
|
+
'Causal Resultado': string;
|
|
3236
|
+
Resultado: string;
|
|
3237
|
+
'Fecha Hora en carga': string;
|
|
3238
|
+
'Fecha Hora llegada al sitio': string;
|
|
3239
|
+
'Fecha de inicio': string;
|
|
3240
|
+
'Fecha de fin': string;
|
|
3241
|
+
Observaciones: string;
|
|
3242
|
+
'Placa vehículo': string;
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
declare class IDataSheetMateriales {
|
|
3246
|
+
'Código TdC': string;
|
|
3247
|
+
Proceso: string;
|
|
3248
|
+
'Tipo TdC': string;
|
|
3249
|
+
'Código Operación': number;
|
|
3250
|
+
'Descripción Operación': string;
|
|
3251
|
+
'Código': string;
|
|
3252
|
+
'Descripción': string;
|
|
3253
|
+
'Unidad de Medida': string;
|
|
3254
|
+
'Tipo Material': string;
|
|
3255
|
+
'Cantidad Consumida': number;
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3258
|
+
declare class IDataSheetMedidores {
|
|
3259
|
+
'Código TdC': string;
|
|
3260
|
+
Proceso: string;
|
|
3261
|
+
'Tipo TdC': string;
|
|
3262
|
+
'Acción': string;
|
|
3263
|
+
'Número Medidor': string;
|
|
3264
|
+
'Código Marca': string;
|
|
3265
|
+
'Marca Medidor': string;
|
|
3266
|
+
'Código Modelo': string;
|
|
3267
|
+
'Modelo Medidor': string;
|
|
3268
|
+
'Clase Factor De Facturación': string;
|
|
3269
|
+
'Factor De Facturación': string;
|
|
3270
|
+
'Tipo Medidor': string;
|
|
3271
|
+
'Tipo Tecnología': string;
|
|
3272
|
+
'Tipo Registrador': string;
|
|
3273
|
+
'Año Fabricación': string;
|
|
3274
|
+
'Clase Del Medidor': string;
|
|
3275
|
+
'Tipo Medida': string;
|
|
3276
|
+
'Ubicación Del Medidor': string;
|
|
3277
|
+
'Número De Fabricación Del Medidor': string;
|
|
3278
|
+
'Origen De Medidor': string;
|
|
3279
|
+
'Propiedad Del Medidor': string;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
declare class IDataSheetTdC {
|
|
3283
|
+
CO: string;
|
|
3284
|
+
Contratista: string;
|
|
3285
|
+
Contrato: string;
|
|
3286
|
+
'Fecha y Hora de Creación de la Orden': string;
|
|
3287
|
+
'Código TdC': string;
|
|
3288
|
+
'Código Sistema Externo de Origen': string;
|
|
3289
|
+
'Código Externo del TdC': string;
|
|
3290
|
+
Proceso: string;
|
|
3291
|
+
'Tipo TdC': string;
|
|
3292
|
+
'Ciclo de trabajo': string;
|
|
3293
|
+
'Estado TdC': string;
|
|
3294
|
+
'Causal de Anulación/Suspensión': string;
|
|
3295
|
+
'Causal Anulación': string;
|
|
3296
|
+
'Nombre TdC pre-homologación': string;
|
|
3297
|
+
'Código Cliente': string;
|
|
3298
|
+
'Nombre y Apellido Cliente': string;
|
|
3299
|
+
'Ruta De Lectura': string;
|
|
3300
|
+
Zona: string;
|
|
3301
|
+
Longitud: string;
|
|
3302
|
+
Latitud: string;
|
|
3303
|
+
'Centro Operativo Cliente': string;
|
|
3304
|
+
'Tipo Via': string;
|
|
3305
|
+
'Núm. Via Dirección': string;
|
|
3306
|
+
'Núm. Placa Dirección': string;
|
|
3307
|
+
'Cód. Unidad Predial': string;
|
|
3308
|
+
'Num. Unidad Predial': string;
|
|
3309
|
+
'Cód. Modalidad Unidad Predial': string;
|
|
3310
|
+
'Núm. Modalidad Unidad Predial': string;
|
|
3311
|
+
'Localización Terreno': string;
|
|
3312
|
+
Municipio: string;
|
|
3313
|
+
'Tipo Agrupación': string;
|
|
3314
|
+
'Código Postal': string;
|
|
3315
|
+
'Texto Dirección': string;
|
|
3316
|
+
Provincia: string;
|
|
3317
|
+
'Agrupación': string;
|
|
3318
|
+
Manzana: string;
|
|
3319
|
+
Lote: string;
|
|
3320
|
+
'Fecha plazo ANS Legal': string;
|
|
3321
|
+
'Fecha plazo ANS Interno': string;
|
|
3322
|
+
'Fecha plazo ANS Contratista': string;
|
|
3323
|
+
'Fecha Prevista Incio Actividades': string;
|
|
3324
|
+
'Fecha Prevista Terminación Trabajos': string;
|
|
3325
|
+
'Número de Transformador': string;
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3328
|
+
declare class IDataSheetTiemposCumplimentados {
|
|
3329
|
+
'Código TdC': string;
|
|
3330
|
+
Proceso: string;
|
|
3331
|
+
'Tipo TdC': string;
|
|
3332
|
+
'Código Operación': number;
|
|
3333
|
+
'Descripción Operación': string;
|
|
3334
|
+
'Número de Serie': string;
|
|
3335
|
+
Apellido: string;
|
|
3336
|
+
Nombre: string;
|
|
3337
|
+
'Tiempo cumplimentado': number;
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
declare class ISheetsJsonChileTdC {
|
|
3341
|
+
TdC: IDataSheetTdC[];
|
|
3342
|
+
Medidores: IDataSheetMedidores[];
|
|
3343
|
+
'Líneas TdC': IDataSheetLineasTdC[];
|
|
3344
|
+
Materiales: IDataSheetMateriales[];
|
|
3345
|
+
'Tiempos Cumplimentados': IDataSheetTiemposCumplimentados[];
|
|
3346
|
+
Coordenadas: IDataSheetCoordenadas[];
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
export { AddressListENTITY, AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, ContratoDTO, ContratoOTDTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, 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, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialLogisticaDTO, MedidorDTO, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TdCENTITY, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, convertStringsToDates, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|