sigo-entities 0.0.244 → 0.0.246
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 +12 -24
- package/dist/index.d.ts +12 -24
- package/dist/index.js +1053 -1132
- package/dist/index.mjs +788 -868
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2829,6 +2829,11 @@ declare class NotificacionesENTITY {
|
|
|
2829
2829
|
urlDestino: string;
|
|
2830
2830
|
}
|
|
2831
2831
|
|
|
2832
|
+
declare class UserAutoinventarioENTITY {
|
|
2833
|
+
KeyFecha: string;
|
|
2834
|
+
Identificacion: string;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2832
2837
|
declare class Cliente_ContratistaDTO {
|
|
2833
2838
|
RUC: string;
|
|
2834
2839
|
RazonSocial: string;
|
|
@@ -3058,13 +3063,6 @@ declare class ClienteTdCDTO {
|
|
|
3058
3063
|
Codigo: string;
|
|
3059
3064
|
Cliente: string;
|
|
3060
3065
|
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
3066
|
}
|
|
3069
3067
|
|
|
3070
3068
|
declare class ContratistaDTO {
|
|
@@ -3073,12 +3071,11 @@ declare class ContratistaDTO {
|
|
|
3073
3071
|
Contrato: string;
|
|
3074
3072
|
Codigo_Externo: string;
|
|
3075
3073
|
Codigo_TdC_Externo: string;
|
|
3076
|
-
Nombre_TdC: string;
|
|
3077
3074
|
}
|
|
3078
3075
|
|
|
3079
3076
|
declare class CoordenadasTdCDTO {
|
|
3080
3077
|
Tipo_Actividad: string;
|
|
3081
|
-
Fecha_Captura:
|
|
3078
|
+
Fecha_Captura: Date;
|
|
3082
3079
|
Presicion: string;
|
|
3083
3080
|
Longitud: string;
|
|
3084
3081
|
Latitud: string;
|
|
@@ -3086,8 +3083,8 @@ declare class CoordenadasTdCDTO {
|
|
|
3086
3083
|
|
|
3087
3084
|
declare class EmpresaTdCDTO {
|
|
3088
3085
|
Codigo: string;
|
|
3089
|
-
|
|
3090
|
-
|
|
3086
|
+
Propia: boolean;
|
|
3087
|
+
RazonSocial: string;
|
|
3091
3088
|
}
|
|
3092
3089
|
|
|
3093
3090
|
declare class CuadrillaDTO {
|
|
@@ -3101,7 +3098,7 @@ declare class CumplimientoDTO {
|
|
|
3101
3098
|
Numero_Serie: string;
|
|
3102
3099
|
Apellido: string;
|
|
3103
3100
|
Nombre: string;
|
|
3104
|
-
Tiempo:
|
|
3101
|
+
Tiempo: number;
|
|
3105
3102
|
}
|
|
3106
3103
|
|
|
3107
3104
|
declare class EmpalmeDTO {
|
|
@@ -3146,8 +3143,7 @@ declare class InventarioDTO {
|
|
|
3146
3143
|
Tipo_Tecnologia: string;
|
|
3147
3144
|
Ubicacion: string;
|
|
3148
3145
|
Propiedad: string;
|
|
3149
|
-
|
|
3150
|
-
Fecha_Instalacion: string;
|
|
3146
|
+
Fecha_Instalacion: Date;
|
|
3151
3147
|
}
|
|
3152
3148
|
|
|
3153
3149
|
declare class MedidorDTO {
|
|
@@ -3157,34 +3153,26 @@ declare class MedidorDTO {
|
|
|
3157
3153
|
|
|
3158
3154
|
declare class OperacionDTO {
|
|
3159
3155
|
Codigo: string;
|
|
3160
|
-
Descripcion: string;
|
|
3161
3156
|
Tipo: string;
|
|
3162
3157
|
}
|
|
3163
3158
|
|
|
3164
3159
|
declare class ResultadoDTO {
|
|
3165
3160
|
Causal: string;
|
|
3166
3161
|
Resultado: string;
|
|
3167
|
-
Causal_Anulacion_Suspension: string;
|
|
3168
|
-
Causal_Anulacion: string;
|
|
3169
3162
|
}
|
|
3170
3163
|
|
|
3171
3164
|
declare class UbicacionTdCDTO {
|
|
3172
|
-
Localizacion: string;
|
|
3173
3165
|
Municipio: string;
|
|
3174
3166
|
Tipo_Agrupacion: string;
|
|
3175
|
-
Codigo_Postal: string;
|
|
3176
3167
|
Direccion: string;
|
|
3177
3168
|
Provincia: string;
|
|
3178
|
-
Agrupacion: string;
|
|
3179
|
-
Manzana: string;
|
|
3180
|
-
Lote: string;
|
|
3181
3169
|
Ruta_Lectura: string;
|
|
3182
3170
|
Zona: string;
|
|
3183
3171
|
Longitud: string;
|
|
3184
3172
|
Latitud: string;
|
|
3185
3173
|
}
|
|
3186
3174
|
|
|
3187
|
-
declare class
|
|
3175
|
+
declare class ChileTdCENTITY {
|
|
3188
3176
|
ID: number;
|
|
3189
3177
|
Orden: string;
|
|
3190
3178
|
Contratista: ContratistaDTO;
|
|
@@ -3351,4 +3339,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
3351
3339
|
Coordenadas: IDataSheetCoordenadas[];
|
|
3352
3340
|
}
|
|
3353
3341
|
|
|
3354
|
-
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,
|
|
3342
|
+
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, ChileTdCENTITY, 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, 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, UserAutoinventarioENTITY, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -2829,6 +2829,11 @@ declare class NotificacionesENTITY {
|
|
|
2829
2829
|
urlDestino: string;
|
|
2830
2830
|
}
|
|
2831
2831
|
|
|
2832
|
+
declare class UserAutoinventarioENTITY {
|
|
2833
|
+
KeyFecha: string;
|
|
2834
|
+
Identificacion: string;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2832
2837
|
declare class Cliente_ContratistaDTO {
|
|
2833
2838
|
RUC: string;
|
|
2834
2839
|
RazonSocial: string;
|
|
@@ -3058,13 +3063,6 @@ declare class ClienteTdCDTO {
|
|
|
3058
3063
|
Codigo: string;
|
|
3059
3064
|
Cliente: string;
|
|
3060
3065
|
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
3066
|
}
|
|
3069
3067
|
|
|
3070
3068
|
declare class ContratistaDTO {
|
|
@@ -3073,12 +3071,11 @@ declare class ContratistaDTO {
|
|
|
3073
3071
|
Contrato: string;
|
|
3074
3072
|
Codigo_Externo: string;
|
|
3075
3073
|
Codigo_TdC_Externo: string;
|
|
3076
|
-
Nombre_TdC: string;
|
|
3077
3074
|
}
|
|
3078
3075
|
|
|
3079
3076
|
declare class CoordenadasTdCDTO {
|
|
3080
3077
|
Tipo_Actividad: string;
|
|
3081
|
-
Fecha_Captura:
|
|
3078
|
+
Fecha_Captura: Date;
|
|
3082
3079
|
Presicion: string;
|
|
3083
3080
|
Longitud: string;
|
|
3084
3081
|
Latitud: string;
|
|
@@ -3086,8 +3083,8 @@ declare class CoordenadasTdCDTO {
|
|
|
3086
3083
|
|
|
3087
3084
|
declare class EmpresaTdCDTO {
|
|
3088
3085
|
Codigo: string;
|
|
3089
|
-
|
|
3090
|
-
|
|
3086
|
+
Propia: boolean;
|
|
3087
|
+
RazonSocial: string;
|
|
3091
3088
|
}
|
|
3092
3089
|
|
|
3093
3090
|
declare class CuadrillaDTO {
|
|
@@ -3101,7 +3098,7 @@ declare class CumplimientoDTO {
|
|
|
3101
3098
|
Numero_Serie: string;
|
|
3102
3099
|
Apellido: string;
|
|
3103
3100
|
Nombre: string;
|
|
3104
|
-
Tiempo:
|
|
3101
|
+
Tiempo: number;
|
|
3105
3102
|
}
|
|
3106
3103
|
|
|
3107
3104
|
declare class EmpalmeDTO {
|
|
@@ -3146,8 +3143,7 @@ declare class InventarioDTO {
|
|
|
3146
3143
|
Tipo_Tecnologia: string;
|
|
3147
3144
|
Ubicacion: string;
|
|
3148
3145
|
Propiedad: string;
|
|
3149
|
-
|
|
3150
|
-
Fecha_Instalacion: string;
|
|
3146
|
+
Fecha_Instalacion: Date;
|
|
3151
3147
|
}
|
|
3152
3148
|
|
|
3153
3149
|
declare class MedidorDTO {
|
|
@@ -3157,34 +3153,26 @@ declare class MedidorDTO {
|
|
|
3157
3153
|
|
|
3158
3154
|
declare class OperacionDTO {
|
|
3159
3155
|
Codigo: string;
|
|
3160
|
-
Descripcion: string;
|
|
3161
3156
|
Tipo: string;
|
|
3162
3157
|
}
|
|
3163
3158
|
|
|
3164
3159
|
declare class ResultadoDTO {
|
|
3165
3160
|
Causal: string;
|
|
3166
3161
|
Resultado: string;
|
|
3167
|
-
Causal_Anulacion_Suspension: string;
|
|
3168
|
-
Causal_Anulacion: string;
|
|
3169
3162
|
}
|
|
3170
3163
|
|
|
3171
3164
|
declare class UbicacionTdCDTO {
|
|
3172
|
-
Localizacion: string;
|
|
3173
3165
|
Municipio: string;
|
|
3174
3166
|
Tipo_Agrupacion: string;
|
|
3175
|
-
Codigo_Postal: string;
|
|
3176
3167
|
Direccion: string;
|
|
3177
3168
|
Provincia: string;
|
|
3178
|
-
Agrupacion: string;
|
|
3179
|
-
Manzana: string;
|
|
3180
|
-
Lote: string;
|
|
3181
3169
|
Ruta_Lectura: string;
|
|
3182
3170
|
Zona: string;
|
|
3183
3171
|
Longitud: string;
|
|
3184
3172
|
Latitud: string;
|
|
3185
3173
|
}
|
|
3186
3174
|
|
|
3187
|
-
declare class
|
|
3175
|
+
declare class ChileTdCENTITY {
|
|
3188
3176
|
ID: number;
|
|
3189
3177
|
Orden: string;
|
|
3190
3178
|
Contratista: ContratistaDTO;
|
|
@@ -3351,4 +3339,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
3351
3339
|
Coordenadas: IDataSheetCoordenadas[];
|
|
3352
3340
|
}
|
|
3353
3341
|
|
|
3354
|
-
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,
|
|
3342
|
+
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, ChileTdCENTITY, 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, 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, UserAutoinventarioENTITY, 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 };
|