sigo-entities 0.0.286 → 0.0.287

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 CHANGED
@@ -16,6 +16,13 @@ interface IParams<T> {
16
16
  }
17
17
  declare function validateArrayBody<T extends object>(params: IParams<T>): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;
18
18
 
19
+ declare class ActaFinalCubicacionSharedDTO {
20
+ DescripcionMO: string;
21
+ BaremoUnitario: number;
22
+ CantidadHP: number;
23
+ Valor: number;
24
+ }
25
+
19
26
  declare class AlmacenDTO {
20
27
  Codigo: string;
21
28
  ID_Almacen: number;
@@ -33,6 +40,24 @@ declare class AlmacenLogisticaDTO extends CodigoNombreDTO {
33
40
  ID_Almacen: number;
34
41
  }
35
42
 
43
+ declare class CodigoRazonSocialDTO {
44
+ Codigo: string;
45
+ RazonSocial: string;
46
+ }
47
+
48
+ declare class AsignacionGomDTO_Old {
49
+ FechaAsignacion: Date;
50
+ Usuario: UsuarioDTO;
51
+ Empresa: CodigoRazonSocialDTO;
52
+ Personal: PersonalDTO[];
53
+ }
54
+ declare class AsignacionGomDTO {
55
+ FechaAsignacion: Date;
56
+ Usuario: UsuarioDTO;
57
+ Empresa: CodigoRazonSocialDTO;
58
+ Personal: PersonalDTO[];
59
+ }
60
+
36
61
  declare class UsuarioBitacoraDTO {
37
62
  User: string;
38
63
  Apellidos: string;
@@ -102,15 +127,75 @@ declare class ContratoOTDTO {
102
127
  OT: OTGlobalDTO;
103
128
  }
104
129
 
130
+ declare class ContratoOTGeneralDTO {
131
+ ID_ContratoOT: number;
132
+ Codigo: string;
133
+ Descripcion: string;
134
+ Sistema: string;
135
+ }
136
+
137
+ declare class VigenciaDTO {
138
+ FechaInicio: Date;
139
+ FechaFin: Date;
140
+ }
141
+
142
+ declare class ContratoOT_PRE_DTO {
143
+ ID_ContratoOT: number;
144
+ Codigo: string;
145
+ Descripcion: string;
146
+ Sistema: string;
147
+ Vigencia: VigenciaDTO;
148
+ CheckPrecioMO: boolean;
149
+ }
150
+
105
151
  declare class CoordenadasDTO {
106
152
  X: string;
107
153
  Y: string;
108
154
  }
109
155
 
156
+ declare class DatosManoObraGlobalDetalleChileDTO {
157
+ ManoObraBaremo: any;
158
+ }
159
+
160
+ declare class DatosManoObraGlobalDTO {
161
+ Actividad: string;
162
+ Alcance: string;
163
+ Material: any;
164
+ DetalleChile: DatosManoObraGlobalDetalleChileDTO;
165
+ }
166
+
167
+ declare class DatosPrecioEspecialidadDTO {
168
+ Moneda: string;
169
+ Simbolo: string;
170
+ Decimales: number;
171
+ Agencias: any;
172
+ Contratistas: any;
173
+ }
174
+
175
+ declare class DatosReferenciaDTO {
176
+ ID_DatosReferencia: number;
177
+ CD: string;
178
+ Circuito: string;
179
+ }
180
+
181
+ declare class DatosUnidadObraMaterialDTO {
182
+ Codigo: string;
183
+ Descripcion: string;
184
+ Materiales: any;
185
+ }
186
+
110
187
  declare class DelegacionDTO extends CodigoNombreDTO {
111
188
  ID_Delegacion: number;
112
189
  }
113
190
 
191
+ declare class DeleteBaremoFaseDTO {
192
+ ID_Valorizacion: number;
193
+ ID_Trabajo: number;
194
+ ID: string;
195
+ LineaCodigoCub: string;
196
+ ManoObra_Codigo: string;
197
+ }
198
+
114
199
  declare class EquipoLogisticaDTO {
115
200
  Posicion: number;
116
201
  Collection: string;
@@ -354,15 +439,66 @@ declare class MovimientoAlmacenDTO {
354
439
  TipoStock: TipoStockStockPersonalDTO;
355
440
  }
356
441
 
442
+ declare class NodoDocDTO {
443
+ label: string;
444
+ Titulo: string;
445
+ Codigo: string;
446
+ Descripcion: string;
447
+ Files: FilesDocDTO[];
448
+ Extension: string[];
449
+ Size: SizeDTO;
450
+ Requerido: boolean;
451
+ CantidadMin: number;
452
+ CantidadMax: number;
453
+ Children: NodoDocDTO[];
454
+ Estado: EstadoDTO;
455
+ }
456
+
357
457
  declare class NombreDescripcionDTO {
358
458
  Nombre: string;
359
459
  Descripcion: string;
360
460
  }
361
461
 
462
+ declare class UsuarioRegistrarDTO {
463
+ NumeroDocumentoIdentidad: string;
464
+ ApellidoPaterno: string;
465
+ ApellidoMaterno: string;
466
+ Nombres: string;
467
+ }
468
+
469
+ declare class PagosECDTO {
470
+ porcentaje: number;
471
+ fecha: Date;
472
+ codigoFecha: string;
473
+ usuario: UsuarioRegistrarDTO;
474
+ nroDocumento: string;
475
+ nroFactura: string;
476
+ }
477
+
362
478
  declare class PaisStockPersonalDTO extends CodigoNombreDTO {
363
479
  ID_Pais: number;
364
480
  }
365
481
 
482
+ interface PayloadTokenDTO {
483
+ User: string;
484
+ IdUsuario: number;
485
+ Nombres: string;
486
+ ApellidoPaterno: string;
487
+ ApellidoMaterno: string;
488
+ Identificacion: string;
489
+ SuperUsuario: boolean;
490
+ }
491
+
492
+ declare class PeriodoDTO$4 {
493
+ ID_Periodo: number;
494
+ Codigo: string;
495
+ FechaInicio: Date;
496
+ FechaFin?: Date | null;
497
+ FechaMaxima?: Date | null;
498
+ Mes: number;
499
+ Anio: number;
500
+ }
501
+
366
502
  declare class PersonalDTO {
367
503
  Identificacion: string;
368
504
  IdPersonal: number;
@@ -384,6 +520,13 @@ declare class PersonalLogisticaDTO$1 {
384
520
  Firma: string;
385
521
  }
386
522
 
523
+ declare class PreciosVigentesDTO {
524
+ ID_PreciosVigentes: number;
525
+ Precio: number;
526
+ Vigencia: VigenciaDTO;
527
+ Estado: EstadoDTO;
528
+ }
529
+
387
530
  declare class TipoMovimientoAlmacenDTO {
388
531
  ID_TipoMovimientoAlmacen: number;
389
532
  Nombre: string;
@@ -394,13 +537,6 @@ declare class TipoStockStockPersonalDTO {
394
537
  Nombre: string;
395
538
  }
396
539
 
397
- declare class UsuarioRegistrarDTO {
398
- NumeroDocumentoIdentidad: string;
399
- ApellidoPaterno: string;
400
- ApellidoMaterno: string;
401
- Nombres: string;
402
- }
403
-
404
540
  declare class UsuarioLogisticaDTO {
405
541
  Guia: UsuarioID_UsuarioDTO;
406
542
  Ingreso: UsuarioID_UsuarioDTO;
@@ -409,139 +545,13 @@ declare class UsuarioLogisticaDTO {
409
545
  Anulacion: UsuarioID_UsuarioDTO;
410
546
  }
411
547
 
412
- declare class ZonaTrabajoDTO extends CodigoNombreDTO {
413
- ID_ZonaTrabajo: number;
414
- }
415
-
416
- declare class DatosManoObraGlobalDetalleChileDTO {
417
- ManoObraBaremo: any;
418
- }
419
-
420
- declare class DatosManoObraGlobalDTO {
421
- Actividad: string;
422
- Alcance: string;
423
- Material: any;
424
- DetalleChile: DatosManoObraGlobalDetalleChileDTO;
425
- }
426
-
427
- declare class DatosPrecioEspecialidadDTO {
428
- Moneda: string;
429
- Simbolo: string;
430
- Decimales: number;
431
- Agencias: any;
432
- Contratistas: any;
433
- }
434
-
435
- declare class DatosUnidadObraMaterialDTO {
436
- Codigo: string;
437
- Descripcion: string;
438
- Materiales: any;
439
- }
440
-
441
- declare class DeleteBaremoFaseDTO {
442
- ID_Valorizacion: number;
443
- ID_Trabajo: number;
444
- ID: string;
445
- LineaCodigoCub: string;
446
- ManoObra_Codigo: string;
447
- }
448
-
449
- interface PayloadTokenDTO {
450
- User: string;
451
- IdUsuario: number;
452
- Nombres: string;
453
- ApellidoPaterno: string;
454
- ApellidoMaterno: string;
455
- Identificacion: string;
456
- SuperUsuario: boolean;
457
- }
458
-
459
- declare class PagosECDTO {
460
- porcentaje: number;
461
- fecha: Date;
462
- codigoFecha: string;
463
- usuario: UsuarioRegistrarDTO;
464
- nroDocumento: string;
465
- nroFactura: string;
466
- }
467
-
468
- declare class NodoDocDTO {
469
- label: string;
470
- Titulo: string;
471
- Codigo: string;
472
- Descripcion: string;
473
- Files: FilesDocDTO[];
474
- Extension: string[];
475
- Size: SizeDTO;
476
- Requerido: boolean;
477
- CantidadMin: number;
478
- CantidadMax: number;
479
- Children: NodoDocDTO[];
480
- Estado: EstadoDTO;
481
- }
482
-
483
- declare class ContratoOTGeneralDTO {
484
- ID_ContratoOT: number;
485
- Codigo: string;
486
- Descripcion: string;
487
- Sistema: string;
488
- }
489
-
490
- declare class VigenciaDTO {
491
- FechaInicio: Date;
492
- FechaFin: Date;
493
- }
494
-
495
- declare class PreciosVigentesDTO {
496
- ID_PreciosVigentes: number;
497
- Precio: number;
498
- Vigencia: VigenciaDTO;
499
- Estado: EstadoDTO;
500
- }
501
-
502
548
  declare class VarianteDTO {
503
549
  ID_Variante: number;
504
550
  Descripcion: string;
505
551
  }
506
552
 
507
- declare class ContratoOT_PRE_DTO {
508
- ID_ContratoOT: number;
509
- Codigo: string;
510
- Descripcion: string;
511
- Sistema: string;
512
- Vigencia: VigenciaDTO;
513
- CheckPrecioMO: boolean;
514
- }
515
-
516
- declare class CodigoRazonSocialDTO {
517
- Codigo: string;
518
- RazonSocial: string;
519
- }
520
-
521
- declare class AsignacionGomDTO_Old {
522
- FechaAsignacion: Date;
523
- Usuario: UsuarioDTO;
524
- Empresa: CodigoRazonSocialDTO;
525
- Personal: PersonalDTO[];
526
- }
527
- declare class AsignacionGomDTO {
528
- FechaAsignacion: Date;
529
- Usuario: UsuarioDTO;
530
- Empresa: CodigoRazonSocialDTO;
531
- Personal: PersonalDTO[];
532
- }
533
-
534
- declare class DatosReferenciaDTO {
535
- ID_DatosReferencia: number;
536
- CD: string;
537
- Circuito: string;
538
- }
539
-
540
- declare class ActaFinalCubicacionSharedDTO {
541
- DescripcionMO: string;
542
- BaremoUnitario: number;
543
- CantidadHP: number;
544
- Valor: number;
553
+ declare class ZonaTrabajoDTO extends CodigoNombreDTO {
554
+ ID_ZonaTrabajo: number;
545
555
  }
546
556
 
547
557
  declare class MailStructureENTITY {
@@ -1144,16 +1154,6 @@ declare class ReservaManoObraRegularizacionENTITY {
1144
1154
  Bitacora: BitacoraDTO[];
1145
1155
  }
1146
1156
 
1147
- declare class PeriodoDTO$4 {
1148
- ID_Periodo: number;
1149
- Codigo: string;
1150
- FechaInicio: Date;
1151
- FechaFin?: Date | null;
1152
- FechaMaxima?: Date | null;
1153
- Mes: number;
1154
- Anio: number;
1155
- }
1156
-
1157
1157
  declare class CertificacionProduccionDTO$1 {
1158
1158
  Mes: number;
1159
1159
  Anio: number;
@@ -1163,20 +1163,10 @@ declare class CertificacionProduccionDTO$1 {
1163
1163
  FechaRegistro: Date;
1164
1164
  }
1165
1165
 
1166
- declare class MaterialesDTO$1 {
1167
- Codigo: string;
1168
- CodigoLlave: string;
1169
- Descripcion: string;
1170
- Estado: EstadoDTO;
1171
- UnidadMedida: UnidadMedidaDTO$2;
1172
- Cantidad: number;
1173
- CantidadStock: number;
1174
- CantidadSinStock: number;
1175
- CantidadReutilizada: number;
1176
- CantidadContratista: number;
1177
- CantidadInformada: number;
1178
- Accion: CodigoDescripcionDTO;
1179
- Motivo: CodigoDescripcionDTO;
1166
+ declare class ContrataDTO$1 {
1167
+ FechaRegistro: Date;
1168
+ Ultimo_Estado_Interno: EstadoInternoDTO;
1169
+ Estados_Internos: EstadoInternoDTO[];
1180
1170
  }
1181
1171
 
1182
1172
  declare class DetalleChileDTO$1 {
@@ -1208,6 +1198,17 @@ declare class DetalleChileDTO$1 {
1208
1198
  PuntoBaremo: number;
1209
1199
  }
1210
1200
 
1201
+ declare class EstadoHPListDTO$2 {
1202
+ Estado: boolean;
1203
+ Especialidad: string;
1204
+ }
1205
+
1206
+ declare class FotosSSTDTO$1 {
1207
+ Titulo: string;
1208
+ Descripcion: string;
1209
+ Foto: FotosDTO;
1210
+ }
1211
+
1211
1212
  declare class HomePassDTO$1 {
1212
1213
  ID_HPListMO: number;
1213
1214
  Type: string;
@@ -1221,6 +1222,36 @@ declare class HomePassDTO$1 {
1221
1222
  HouseNumbreComplement: string;
1222
1223
  }
1223
1224
 
1225
+ declare class MaterialesDTO$1 {
1226
+ Codigo: string;
1227
+ CodigoLlave: string;
1228
+ Descripcion: string;
1229
+ Estado: EstadoDTO;
1230
+ UnidadMedida: UnidadMedidaDTO$2;
1231
+ Cantidad: number;
1232
+ CantidadStock: number;
1233
+ CantidadSinStock: number;
1234
+ CantidadReutilizada: number;
1235
+ CantidadContratista: number;
1236
+ CantidadInformada: number;
1237
+ Accion: CodigoDescripcionDTO;
1238
+ Motivo: CodigoDescripcionDTO;
1239
+ }
1240
+
1241
+ declare class ParteDiarioDTO$1 {
1242
+ Codigo: string;
1243
+ Fecha: Date;
1244
+ Fotos_SST: FotosSSTDTO$1[];
1245
+ Valorizaciones: number[];
1246
+ Personal: PersonalDTO[];
1247
+ Lider: PersonalDTO;
1248
+ UsuarioEdicion: UsuarioDTO;
1249
+ UsuarioAprobacion: UsuarioDTO;
1250
+ Novedad: string;
1251
+ UltimoEstadoInterno: EstadoInternoDTO;
1252
+ EstadosInternos: EstadoInternoDTO[];
1253
+ }
1254
+
1224
1255
  declare class SubManoObraDTO$1 {
1225
1256
  Codigo: string;
1226
1257
  Nombre: string;
@@ -1230,6 +1261,22 @@ declare class SubManoObraDTO$1 {
1230
1261
  Estado: EstadoDTO;
1231
1262
  }
1232
1263
 
1264
+ declare class TurnoDTO$1 {
1265
+ Codigo: string;
1266
+ Hora_Fin: number;
1267
+ Hora_Inicio: number;
1268
+ }
1269
+
1270
+ declare class UbicacionDTO$1 {
1271
+ ID_Direccion: number;
1272
+ Direccion: string;
1273
+ Localidad_Descrip: string;
1274
+ Coordenadas: CoordenadasDTO;
1275
+ Municipio: string;
1276
+ Zona: string;
1277
+ Tipo_Zona: string;
1278
+ }
1279
+
1233
1280
  declare class ValorizacionDTO {
1234
1281
  ID_Valorizacion: number;
1235
1282
  Amap: number;
@@ -1264,11 +1311,6 @@ declare class ValorizacionDTO {
1264
1311
  TotalContrata: number;
1265
1312
  }
1266
1313
 
1267
- declare class EstadoHPListDTO$2 {
1268
- Estado: boolean;
1269
- Especialidad: string;
1270
- }
1271
-
1272
1314
  declare class Ultima_PreLiquidacionDTO {
1273
1315
  Personal: PersonalDTO;
1274
1316
  Valorizacion: ValorizacionDTO[];
@@ -1278,12 +1320,6 @@ declare class Ultima_PreLiquidacionDTO {
1278
1320
  Asfaltado: EstadoHPListDTO$2;
1279
1321
  }
1280
1322
 
1281
- declare class TurnoDTO$1 {
1282
- Codigo: string;
1283
- Hora_Fin: number;
1284
- Hora_Inicio: number;
1285
- }
1286
-
1287
1323
  declare class ValorizacionesDTO$1 {
1288
1324
  ID_AsignacionValorizacion: number;
1289
1325
  ID_Amap: number;
@@ -1312,36 +1348,6 @@ declare class Ultima_asignacionDTO$1 {
1312
1348
  Valorizaciones: ValorizacionesDTO$1[];
1313
1349
  }
1314
1350
 
1315
- declare class FotosSSTDTO$1 {
1316
- Titulo: string;
1317
- Descripcion: string;
1318
- Foto: FotosDTO;
1319
- }
1320
-
1321
- declare class ParteDiarioDTO$1 {
1322
- Codigo: string;
1323
- Fecha: Date;
1324
- Fotos_SST: FotosSSTDTO$1[];
1325
- Valorizaciones: number[];
1326
- Personal: PersonalDTO[];
1327
- Lider: PersonalDTO;
1328
- UsuarioEdicion: UsuarioDTO;
1329
- UsuarioAprobacion: UsuarioDTO;
1330
- Novedad: string;
1331
- UltimoEstadoInterno: EstadoInternoDTO;
1332
- EstadosInternos: EstadoInternoDTO[];
1333
- }
1334
-
1335
- declare class UbicacionDTO$1 {
1336
- ID_Direccion: number;
1337
- Direccion: string;
1338
- Localidad_Descrip: string;
1339
- Coordenadas: CoordenadasDTO;
1340
- Municipio: string;
1341
- Zona: string;
1342
- Tipo_Zona: string;
1343
- }
1344
-
1345
1351
  declare class TrabajoENTITY {
1346
1352
  ID_Trabajo: number;
1347
1353
  ID_GOM: number;
@@ -1359,12 +1365,6 @@ declare class TrabajoENTITY {
1359
1365
  PartesDiarios: ParteDiarioDTO$1[];
1360
1366
  }
1361
1367
 
1362
- declare class ContrataDTO$1 {
1363
- FechaRegistro: Date;
1364
- Ultimo_Estado_Interno: EstadoInternoDTO;
1365
- Estados_Internos: EstadoInternoDTO[];
1366
- }
1367
-
1368
1368
  declare class FaseDTO$1 {
1369
1369
  ID_Fase: number;
1370
1370
  TipoFase: number;
@@ -4434,4 +4434,4 @@ declare class ISheetsJsonChileTdC {
4434
4434
  Coordenadas: IDataSheetCoordenadas[];
4435
4435
  }
4436
4436
 
4437
- export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GOMDatosManoObraDTO, GOMDatosManoObraDatosCatalogoMODTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomDatosManoObraCantidadDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialMOGlobalDTO, 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, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraBaseENTITY, ReservaManoObraChileENTITY, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaMaterialBaseENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataGranTotal, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraChileDTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, Ultimo_PrecioDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
4437
+ export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, 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, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileDTO$1 as DetalleChileDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GOMDatosManoObraDTO, GOMDatosManoObraDatosCatalogoMODTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomDatosManoObraCantidadDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, HomePassDTO$1 as HomePassDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, 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, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraBaseENTITY, ReservaManoObraChileENTITY, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaMaterialBaseENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataGranTotal, 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, 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, Ultimo_PrecioDTO, 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$1 as WBEDTO, ZonaTrabajoDTO, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };