sigo-entities 1.0.35 → 1.0.37
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 +19 -72
- package/dist/index.d.ts +19 -72
- package/dist/index.js +5765 -6077
- package/dist/index.mjs +4912 -5238
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2176,76 +2176,6 @@ declare class SeguimientoObraDTO {
|
|
|
2176
2176
|
Estado_Sirope: string;
|
|
2177
2177
|
}
|
|
2178
2178
|
|
|
2179
|
-
declare class CubicajeHistoricoDTO {
|
|
2180
|
-
Actividad: string;
|
|
2181
|
-
Estado: string;
|
|
2182
|
-
Inicio: Date;
|
|
2183
|
-
Fin: Date;
|
|
2184
|
-
Usuario: string;
|
|
2185
|
-
Comentario: string;
|
|
2186
|
-
}
|
|
2187
|
-
|
|
2188
|
-
declare class CubicajeCabeceraDTO {
|
|
2189
|
-
codigoCalc: string;
|
|
2190
|
-
codigo: string;
|
|
2191
|
-
nombre: string;
|
|
2192
|
-
contrato: string;
|
|
2193
|
-
agencia: string;
|
|
2194
|
-
numoe: string;
|
|
2195
|
-
nombreoe: string;
|
|
2196
|
-
tipooe: string;
|
|
2197
|
-
inioe: Date;
|
|
2198
|
-
finoe: Date;
|
|
2199
|
-
PE: string;
|
|
2200
|
-
ITOCTC: string;
|
|
2201
|
-
central: string;
|
|
2202
|
-
cliente: string;
|
|
2203
|
-
direccion: string;
|
|
2204
|
-
comuna: string;
|
|
2205
|
-
nombreproyecto: string;
|
|
2206
|
-
ito: string;
|
|
2207
|
-
red: string;
|
|
2208
|
-
PEP1: string;
|
|
2209
|
-
PEP2: string;
|
|
2210
|
-
GESTOR: string;
|
|
2211
|
-
CostoTotal: number;
|
|
2212
|
-
Historico: CubicajeHistoricoDTO[];
|
|
2213
|
-
}
|
|
2214
|
-
|
|
2215
|
-
declare class CubicajeDetalleDTO {
|
|
2216
|
-
codigo: string;
|
|
2217
|
-
linea: string;
|
|
2218
|
-
dirdesde: string;
|
|
2219
|
-
altdesde: string;
|
|
2220
|
-
dirhasta: string;
|
|
2221
|
-
althasta: string;
|
|
2222
|
-
plano: string;
|
|
2223
|
-
codesp: string;
|
|
2224
|
-
codact: string;
|
|
2225
|
-
codclave: string;
|
|
2226
|
-
tarea: string;
|
|
2227
|
-
codmo: string;
|
|
2228
|
-
coduo: string;
|
|
2229
|
-
canmocub: number;
|
|
2230
|
-
canmoinf: number;
|
|
2231
|
-
canmoapr: number;
|
|
2232
|
-
canuocub: number;
|
|
2233
|
-
canuoinf: number;
|
|
2234
|
-
canuoapr: number;
|
|
2235
|
-
origen: string;
|
|
2236
|
-
codigobarra: string;
|
|
2237
|
-
}
|
|
2238
|
-
|
|
2239
|
-
declare class CubicajeENTITY {
|
|
2240
|
-
ID_Cubicacion: number;
|
|
2241
|
-
ID_MacroObra: number;
|
|
2242
|
-
cabecera: CubicajeCabeceraDTO;
|
|
2243
|
-
detalle: CubicajeDetalleDTO[];
|
|
2244
|
-
Fecha: Date;
|
|
2245
|
-
ZonaAsignada: string;
|
|
2246
|
-
Actividad: string;
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
2179
|
declare class GomNovedadesTipoNovedadDTO {
|
|
2250
2180
|
ID_TipoNovedad: number;
|
|
2251
2181
|
Codigo: string;
|
|
@@ -2329,7 +2259,8 @@ declare class DetalleCubicajeDTO {
|
|
|
2329
2259
|
declare enum OrigenCUB {
|
|
2330
2260
|
CREATE_MANUAL = "CREATE MANUAL",
|
|
2331
2261
|
CREADO_POR_WORK_PROYECT = "CREADO POR WORK PROYECT",
|
|
2332
|
-
SIN_ORIGEN = "SIN_ORIGEN"
|
|
2262
|
+
SIN_ORIGEN = "SIN_ORIGEN",
|
|
2263
|
+
WEB_SCRAPING = "WEB_SCRAPING"
|
|
2333
2264
|
}
|
|
2334
2265
|
declare class CubicacionENTITY {
|
|
2335
2266
|
ID_Cubicacion: number;
|
|
@@ -2376,6 +2307,22 @@ declare class CubicacionAlemaniaAL02ENTITY extends CubicacionENTITY {
|
|
|
2376
2307
|
cabecera: CabeceraCubicajeAlemaniaDTO;
|
|
2377
2308
|
}
|
|
2378
2309
|
|
|
2310
|
+
declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
declare class MaterialCubicacionPeruDTO {
|
|
2314
|
+
Codigo: string;
|
|
2315
|
+
Descripcion: string;
|
|
2316
|
+
CantidadIngresada: number;
|
|
2317
|
+
CantidadFinal: number;
|
|
2318
|
+
CostoMaterial: number;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
declare class CubicacionPeru9112ENTITY extends CubicacionENTITY {
|
|
2322
|
+
cabecera: CabeceraCubicajePeruDTO;
|
|
2323
|
+
materiales: MaterialCubicacionPeruDTO;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2379
2326
|
declare class HitoDTO {
|
|
2380
2327
|
Idx: number;
|
|
2381
2328
|
Estado: string;
|
|
@@ -4373,4 +4320,4 @@ declare class ToaClaroENTITY {
|
|
|
4373
4320
|
Aptitudlaboral?: string;
|
|
4374
4321
|
}
|
|
4375
4322
|
|
|
4376
|
-
export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, ConsumoMaterialENTITY, ContrataDTO$1 as ContrataDTO, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY,
|
|
4323
|
+
export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, ConsumoMaterialENTITY, ContrataDTO$1 as ContrataDTO, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, 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, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleDTO, 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, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, 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, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraENTITY, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialesDTO$1 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioDTO, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, 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$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|
package/dist/index.d.ts
CHANGED
|
@@ -2176,76 +2176,6 @@ declare class SeguimientoObraDTO {
|
|
|
2176
2176
|
Estado_Sirope: string;
|
|
2177
2177
|
}
|
|
2178
2178
|
|
|
2179
|
-
declare class CubicajeHistoricoDTO {
|
|
2180
|
-
Actividad: string;
|
|
2181
|
-
Estado: string;
|
|
2182
|
-
Inicio: Date;
|
|
2183
|
-
Fin: Date;
|
|
2184
|
-
Usuario: string;
|
|
2185
|
-
Comentario: string;
|
|
2186
|
-
}
|
|
2187
|
-
|
|
2188
|
-
declare class CubicajeCabeceraDTO {
|
|
2189
|
-
codigoCalc: string;
|
|
2190
|
-
codigo: string;
|
|
2191
|
-
nombre: string;
|
|
2192
|
-
contrato: string;
|
|
2193
|
-
agencia: string;
|
|
2194
|
-
numoe: string;
|
|
2195
|
-
nombreoe: string;
|
|
2196
|
-
tipooe: string;
|
|
2197
|
-
inioe: Date;
|
|
2198
|
-
finoe: Date;
|
|
2199
|
-
PE: string;
|
|
2200
|
-
ITOCTC: string;
|
|
2201
|
-
central: string;
|
|
2202
|
-
cliente: string;
|
|
2203
|
-
direccion: string;
|
|
2204
|
-
comuna: string;
|
|
2205
|
-
nombreproyecto: string;
|
|
2206
|
-
ito: string;
|
|
2207
|
-
red: string;
|
|
2208
|
-
PEP1: string;
|
|
2209
|
-
PEP2: string;
|
|
2210
|
-
GESTOR: string;
|
|
2211
|
-
CostoTotal: number;
|
|
2212
|
-
Historico: CubicajeHistoricoDTO[];
|
|
2213
|
-
}
|
|
2214
|
-
|
|
2215
|
-
declare class CubicajeDetalleDTO {
|
|
2216
|
-
codigo: string;
|
|
2217
|
-
linea: string;
|
|
2218
|
-
dirdesde: string;
|
|
2219
|
-
altdesde: string;
|
|
2220
|
-
dirhasta: string;
|
|
2221
|
-
althasta: string;
|
|
2222
|
-
plano: string;
|
|
2223
|
-
codesp: string;
|
|
2224
|
-
codact: string;
|
|
2225
|
-
codclave: string;
|
|
2226
|
-
tarea: string;
|
|
2227
|
-
codmo: string;
|
|
2228
|
-
coduo: string;
|
|
2229
|
-
canmocub: number;
|
|
2230
|
-
canmoinf: number;
|
|
2231
|
-
canmoapr: number;
|
|
2232
|
-
canuocub: number;
|
|
2233
|
-
canuoinf: number;
|
|
2234
|
-
canuoapr: number;
|
|
2235
|
-
origen: string;
|
|
2236
|
-
codigobarra: string;
|
|
2237
|
-
}
|
|
2238
|
-
|
|
2239
|
-
declare class CubicajeENTITY {
|
|
2240
|
-
ID_Cubicacion: number;
|
|
2241
|
-
ID_MacroObra: number;
|
|
2242
|
-
cabecera: CubicajeCabeceraDTO;
|
|
2243
|
-
detalle: CubicajeDetalleDTO[];
|
|
2244
|
-
Fecha: Date;
|
|
2245
|
-
ZonaAsignada: string;
|
|
2246
|
-
Actividad: string;
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
2179
|
declare class GomNovedadesTipoNovedadDTO {
|
|
2250
2180
|
ID_TipoNovedad: number;
|
|
2251
2181
|
Codigo: string;
|
|
@@ -2329,7 +2259,8 @@ declare class DetalleCubicajeDTO {
|
|
|
2329
2259
|
declare enum OrigenCUB {
|
|
2330
2260
|
CREATE_MANUAL = "CREATE MANUAL",
|
|
2331
2261
|
CREADO_POR_WORK_PROYECT = "CREADO POR WORK PROYECT",
|
|
2332
|
-
SIN_ORIGEN = "SIN_ORIGEN"
|
|
2262
|
+
SIN_ORIGEN = "SIN_ORIGEN",
|
|
2263
|
+
WEB_SCRAPING = "WEB_SCRAPING"
|
|
2333
2264
|
}
|
|
2334
2265
|
declare class CubicacionENTITY {
|
|
2335
2266
|
ID_Cubicacion: number;
|
|
@@ -2376,6 +2307,22 @@ declare class CubicacionAlemaniaAL02ENTITY extends CubicacionENTITY {
|
|
|
2376
2307
|
cabecera: CabeceraCubicajeAlemaniaDTO;
|
|
2377
2308
|
}
|
|
2378
2309
|
|
|
2310
|
+
declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
declare class MaterialCubicacionPeruDTO {
|
|
2314
|
+
Codigo: string;
|
|
2315
|
+
Descripcion: string;
|
|
2316
|
+
CantidadIngresada: number;
|
|
2317
|
+
CantidadFinal: number;
|
|
2318
|
+
CostoMaterial: number;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
declare class CubicacionPeru9112ENTITY extends CubicacionENTITY {
|
|
2322
|
+
cabecera: CabeceraCubicajePeruDTO;
|
|
2323
|
+
materiales: MaterialCubicacionPeruDTO;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2379
2326
|
declare class HitoDTO {
|
|
2380
2327
|
Idx: number;
|
|
2381
2328
|
Estado: string;
|
|
@@ -4373,4 +4320,4 @@ declare class ToaClaroENTITY {
|
|
|
4373
4320
|
Aptitudlaboral?: string;
|
|
4374
4321
|
}
|
|
4375
4322
|
|
|
4376
|
-
export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, ConsumoMaterialENTITY, ContrataDTO$1 as ContrataDTO, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY,
|
|
4323
|
+
export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaDTO, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeAlemaniaDTO, CabeceraCubicajeChileDTO, CabeceraCubicajeDTO, CabeceraCubicajePeruDTO, CalculatePercentsDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, CodigoTituloDTO, ConsumoMaterialENTITY, ContrataDTO$1 as ContrataDTO, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionAlemaniaAL02ENTITY, CubicacionChile9512ENTITY, 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, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionMODTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, DireccionDTO, DocumentacionBaremoPexENTITY, DocumentacionPEXENTITY, DocumentoDetalleDTO, 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, FlagsDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, 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, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MOBaremoDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraENTITY, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialCubicacionPeruDTO, MaterialLogisticaDTO, MaterialMOGlobalDTO, MaterialesDTO$1 as MaterialesDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoDTO$4 as PeriodoDTO, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioDTO, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaChileDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataDocumentacionDataWithPercentsByFasesChileDTO, ResumenAvanceDataDocumentacionDataWithPercentsChile, ResumenAvanceDataGranTotal, ResumenAvanceDataGranTotalEmpresasChileDTO, ResumenAvanceDataGranTotalManoObraCHILEDTO, ResumenAvanceDataGranTotalValorizacionesByPeriodosDTO, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, SubManoObraDTO$1 as SubManoObraDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, 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$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultima_PreLiquidacionDTO, Ultima_asignacionDTO$1 as Ultima_asignacionDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizacionesDTO$1 as ValorizacionesDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|