sigo-entities 0.0.272 → 0.0.274
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 +319 -53
- package/dist/index.d.ts +319 -53
- package/dist/index.js +12761 -11300
- package/dist/index.mjs +11140 -9716
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -479,6 +479,39 @@ declare class NodoDocDTO {
|
|
|
479
479
|
Estado: EstadoDTO;
|
|
480
480
|
}
|
|
481
481
|
|
|
482
|
+
declare class ContratoOTGeneralDTO {
|
|
483
|
+
ID_ContratoOT: number;
|
|
484
|
+
Codigo: string;
|
|
485
|
+
Descripcion: string;
|
|
486
|
+
Sistema: string;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
declare class VigenciaDTO {
|
|
490
|
+
FechaInicio: Date;
|
|
491
|
+
FechaFin: Date;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
declare class PreciosVigentesDTO {
|
|
495
|
+
ID_PreciosVigentes: number;
|
|
496
|
+
Precio: number;
|
|
497
|
+
Vigencia: VigenciaDTO;
|
|
498
|
+
Estado: EstadoDTO;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
declare class VarianteDTO {
|
|
502
|
+
ID_Variante: number;
|
|
503
|
+
Descripcion: string;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
declare class ContratoOT_PRE_DTO {
|
|
507
|
+
ID_ContratoOT: number;
|
|
508
|
+
Codigo: string;
|
|
509
|
+
Descripcion: string;
|
|
510
|
+
Sistema: string;
|
|
511
|
+
Vigencia: VigenciaDTO;
|
|
512
|
+
CheckPrecioMO: boolean;
|
|
513
|
+
}
|
|
514
|
+
|
|
482
515
|
declare class MailStructureENTITY {
|
|
483
516
|
ID_MailStructure: number;
|
|
484
517
|
Codigo: string;
|
|
@@ -531,6 +564,159 @@ declare class EstadoInternoENTITY {
|
|
|
531
564
|
Bitacora: BitacoraDTO[];
|
|
532
565
|
}
|
|
533
566
|
|
|
567
|
+
declare class Ultimo_PrecioDTO {
|
|
568
|
+
ID_PreciosVigentes: number;
|
|
569
|
+
Precio: number;
|
|
570
|
+
Vigencia: VigenciaDTO;
|
|
571
|
+
Estado: EstadoDTO;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
declare class PreciosDTO {
|
|
575
|
+
ID_PreciosVigentes: number;
|
|
576
|
+
Precio: number;
|
|
577
|
+
Vigencia: VigenciaDTO;
|
|
578
|
+
Estado: EstadoDTO;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
declare class ActividadesDTO {
|
|
582
|
+
ID_PrecioActividad: number;
|
|
583
|
+
Codigo: string;
|
|
584
|
+
Descripcion: string;
|
|
585
|
+
Ultimo_Precio: Ultimo_PrecioDTO;
|
|
586
|
+
Precios: PreciosDTO[];
|
|
587
|
+
FechaRegistro: Date;
|
|
588
|
+
Estado: EstadoDTO;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
declare class AgenciasDTO {
|
|
592
|
+
ID_PreciosAgencia: number;
|
|
593
|
+
Codigo: string;
|
|
594
|
+
Nombre: string;
|
|
595
|
+
Ultimo_Precio: Ultimo_PrecioDTO;
|
|
596
|
+
Precios: PreciosDTO[];
|
|
597
|
+
Estado: EstadoDTO;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
declare class ZonasDTO {
|
|
601
|
+
ID_PreciosZonas: number;
|
|
602
|
+
Codigo: string;
|
|
603
|
+
Descripcion: string;
|
|
604
|
+
Actividades: ActividadesDTO[];
|
|
605
|
+
Estado: EstadoDTO;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
declare class Contratistas_PE_DTO {
|
|
609
|
+
ID_PrecioContrata: number;
|
|
610
|
+
Zonas: ZonasDTO[];
|
|
611
|
+
Empresa: EmpresaPersonalDTO;
|
|
612
|
+
Estado: EstadoDTO;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
declare class PrecioEspecialidadENTITY {
|
|
616
|
+
ID_PrecioEspecialidad: number;
|
|
617
|
+
Pais: CodigoNombreDTO;
|
|
618
|
+
Delegacion: CodigoNombreDTO;
|
|
619
|
+
ContratoOT: ContratoOT_PRE_DTO;
|
|
620
|
+
Moneda: string;
|
|
621
|
+
Simbolo: string;
|
|
622
|
+
Decimales: number;
|
|
623
|
+
Agencias: AgenciasDTO[];
|
|
624
|
+
Contratistas: Contratistas_PE_DTO[];
|
|
625
|
+
Especialidad: CodigoNombreDTO;
|
|
626
|
+
Estado: EstadoDTO;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
declare class MaterialLogisticaDTO {
|
|
630
|
+
ID_Material: number;
|
|
631
|
+
ID_Item: number;
|
|
632
|
+
Codigo: string;
|
|
633
|
+
Descripcion: string;
|
|
634
|
+
Unidad: UnidadMedidaDTO$2;
|
|
635
|
+
CantidadMax: number;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
declare class MaterialAmapDTO {
|
|
639
|
+
ID_MaterialAmap: number;
|
|
640
|
+
ID_Item: number;
|
|
641
|
+
Transaccion: string;
|
|
642
|
+
Requerido: number;
|
|
643
|
+
Codigo: string;
|
|
644
|
+
Descripcion: string;
|
|
645
|
+
Unidad: string;
|
|
646
|
+
CantidadMax: number;
|
|
647
|
+
Grupo: string;
|
|
648
|
+
MaterialLogistica: MaterialLogisticaDTO[];
|
|
649
|
+
Estado: EstadoDTO;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
declare class UnidadObraMaterialENTITY {
|
|
653
|
+
ID_UnidadObraMaterial: number;
|
|
654
|
+
Pais: CodigoNombreDTO;
|
|
655
|
+
Delegacion: CodigoNombreDTO;
|
|
656
|
+
Codigo: string;
|
|
657
|
+
Descripcion: string;
|
|
658
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
659
|
+
ContratoOT: ContratoOTGeneralDTO;
|
|
660
|
+
Materiales: MaterialAmapDTO[];
|
|
661
|
+
Estado: EstadoDTO;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
declare class latLngDTO {
|
|
665
|
+
lat: number;
|
|
666
|
+
lng: number;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
declare class ContratoOT_ZT_DTO {
|
|
670
|
+
Codigo: string;
|
|
671
|
+
Descripcion: string;
|
|
672
|
+
Sistema: string;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
declare class ZonaTrabajoENTITY {
|
|
676
|
+
ID_ZonaTrabajo: number;
|
|
677
|
+
Empresa: EmpresaLogisticaDTO;
|
|
678
|
+
Pais: CodigoNombreDTO;
|
|
679
|
+
Delegacion: CodigoNombreDTO;
|
|
680
|
+
Codigo: string;
|
|
681
|
+
Nombre: string;
|
|
682
|
+
Descripcion: string;
|
|
683
|
+
Direccion: string;
|
|
684
|
+
Coordenadas: latLngDTO;
|
|
685
|
+
Estado: EstadoDTO;
|
|
686
|
+
ContratoOT: ContratoOT_ZT_DTO;
|
|
687
|
+
Agencias: CodigoNombreDTO[];
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
declare class ItemDetallePMDTO {
|
|
691
|
+
ID_Item: number;
|
|
692
|
+
Codigo: string;
|
|
693
|
+
Nombre: string;
|
|
694
|
+
Descripcion: string;
|
|
695
|
+
Variante: VarianteDTO;
|
|
696
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
697
|
+
GranFamiliaItem: GranFamiliaItemDTO;
|
|
698
|
+
FamiliaItem: FamiliaItemDTO;
|
|
699
|
+
Ind_SB: string;
|
|
700
|
+
Tipo: string;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
declare class PrecioMaterialENTITY {
|
|
704
|
+
ID_PrecioMaterial: number;
|
|
705
|
+
Contrato: ContratoOT_PRE_DTO;
|
|
706
|
+
Pais: CodigoNombreDTO;
|
|
707
|
+
Delegacion: CodigoNombreDTO;
|
|
708
|
+
Codigo: string;
|
|
709
|
+
Descripcion: string;
|
|
710
|
+
Precio: number;
|
|
711
|
+
Vigencia: VigenciaDTO;
|
|
712
|
+
PreciosVigentes: PreciosVigentesDTO[];
|
|
713
|
+
Moneda: string;
|
|
714
|
+
Simbolo: string;
|
|
715
|
+
Decimales: number;
|
|
716
|
+
Item: ItemDetallePMDTO;
|
|
717
|
+
Estado: EstadoDTO;
|
|
718
|
+
}
|
|
719
|
+
|
|
534
720
|
declare class CodigoRazonSocialDTO {
|
|
535
721
|
Codigo: string;
|
|
536
722
|
RazonSocial: string;
|
|
@@ -556,18 +742,6 @@ declare class DatosItemDTO {
|
|
|
556
742
|
Propio: boolean;
|
|
557
743
|
}
|
|
558
744
|
|
|
559
|
-
declare class VigenciaDTO {
|
|
560
|
-
FechaInicio: Date;
|
|
561
|
-
FechaFin: Date;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
declare class PreciosVigentesDTO {
|
|
565
|
-
ID_PreciosVigentes: number;
|
|
566
|
-
Precio: number;
|
|
567
|
-
Vigencia: VigenciaDTO;
|
|
568
|
-
Estado: EstadoDTO;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
745
|
declare class DatosPrecioMaterialDTO_Old {
|
|
572
746
|
Precio: number;
|
|
573
747
|
Moneda: string;
|
|
@@ -602,11 +776,6 @@ declare class ItemCantidadesDTO {
|
|
|
602
776
|
Fecha: Date;
|
|
603
777
|
}
|
|
604
778
|
|
|
605
|
-
declare class VarianteDTO {
|
|
606
|
-
ID_Variante: number;
|
|
607
|
-
Descripcion: string;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
779
|
declare class WBEDTO$1 {
|
|
611
780
|
ID_WBE: number;
|
|
612
781
|
CodigoWBE: string;
|
|
@@ -2096,6 +2265,89 @@ declare class ReservaMaterialCodigoRazonSocialDTO {
|
|
|
2096
2265
|
RazonSocial: string;
|
|
2097
2266
|
}
|
|
2098
2267
|
|
|
2268
|
+
declare class ActaFinalCubicacionDTO {
|
|
2269
|
+
DescripcionMO: string;
|
|
2270
|
+
BaremoUnitario: number;
|
|
2271
|
+
CantidadHP: number;
|
|
2272
|
+
Valor: number;
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
declare class HistorialCubicacionDTO {
|
|
2276
|
+
Actividad: string;
|
|
2277
|
+
Estado: string;
|
|
2278
|
+
Inicio: Date;
|
|
2279
|
+
Fin: Date;
|
|
2280
|
+
Usuario: string;
|
|
2281
|
+
Comentario: string;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
declare class CabeceraCubicajeDTO {
|
|
2285
|
+
codigoCalc: string;
|
|
2286
|
+
codigo: string;
|
|
2287
|
+
nombre: string;
|
|
2288
|
+
contrato: string;
|
|
2289
|
+
agencia: string;
|
|
2290
|
+
numoe: string;
|
|
2291
|
+
nombreoe: string;
|
|
2292
|
+
tipooe: string;
|
|
2293
|
+
inioe: string;
|
|
2294
|
+
finoe: string;
|
|
2295
|
+
PE: string;
|
|
2296
|
+
ITOCTC: string;
|
|
2297
|
+
central: string;
|
|
2298
|
+
cliente: string;
|
|
2299
|
+
direccion: string;
|
|
2300
|
+
comuna: string;
|
|
2301
|
+
nombreproyecto: string;
|
|
2302
|
+
ito: string;
|
|
2303
|
+
red: string;
|
|
2304
|
+
PEP2: string;
|
|
2305
|
+
PEP1: string;
|
|
2306
|
+
GESTOR: string;
|
|
2307
|
+
ActaFinal: ActaFinalCubicacionDTO;
|
|
2308
|
+
CostoTotal: number;
|
|
2309
|
+
Historico: HistorialCubicacionDTO[];
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
declare class DetalleCubicajeDTO {
|
|
2313
|
+
codigo: string;
|
|
2314
|
+
linea: string;
|
|
2315
|
+
dirdesde: string;
|
|
2316
|
+
altdesde: string;
|
|
2317
|
+
dirhasta: string;
|
|
2318
|
+
althasta: string;
|
|
2319
|
+
plano: string;
|
|
2320
|
+
codesp: string;
|
|
2321
|
+
codact: string;
|
|
2322
|
+
codclave: string;
|
|
2323
|
+
tarea: string;
|
|
2324
|
+
codmo: string;
|
|
2325
|
+
coduo: string;
|
|
2326
|
+
canmocub: number;
|
|
2327
|
+
canmoinf: number;
|
|
2328
|
+
canmoapr: number;
|
|
2329
|
+
canuocub: number;
|
|
2330
|
+
canuoinf: number;
|
|
2331
|
+
canuoapr: number;
|
|
2332
|
+
origen: string;
|
|
2333
|
+
codigobarra: string;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
declare class CubicacionENTITY {
|
|
2337
|
+
ID_Cubicacion: number;
|
|
2338
|
+
ID_MacroObra: number;
|
|
2339
|
+
cabecera: CabeceraCubicajeDTO;
|
|
2340
|
+
detalle: DetalleCubicajeDTO[];
|
|
2341
|
+
Accion: string;
|
|
2342
|
+
Fecha: Date;
|
|
2343
|
+
ZonaAsignada: string;
|
|
2344
|
+
UsuarioEdicion: UsuarioEdicionDTO;
|
|
2345
|
+
Actividad: string;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
declare class CubicacionChile9512ENTITY extends CubicacionENTITY {
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2099
2351
|
declare class HitoDTO {
|
|
2100
2352
|
Idx: number;
|
|
2101
2353
|
Estado: string;
|
|
@@ -2139,41 +2391,10 @@ declare class DetalleManoObraChileDTO {
|
|
|
2139
2391
|
ManoObraBaremo: ManoObraBaremoDTO[];
|
|
2140
2392
|
}
|
|
2141
2393
|
|
|
2142
|
-
declare class
|
|
2143
|
-
ID_Material: number;
|
|
2144
|
-
ID_Item: number;
|
|
2394
|
+
declare class MaterialDTO {
|
|
2145
2395
|
Codigo: string;
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
CantidadMax: number;
|
|
2149
|
-
}
|
|
2150
|
-
|
|
2151
|
-
declare class MaterialAmapDTO {
|
|
2152
|
-
ID_MaterialAmap: number;
|
|
2153
|
-
ID_Item: number;
|
|
2154
|
-
Transaccion: string;
|
|
2155
|
-
Requerido: number;
|
|
2156
|
-
Codigo: string;
|
|
2157
|
-
Descripcion: string;
|
|
2158
|
-
Unidad: string;
|
|
2159
|
-
CantidadMax: number;
|
|
2160
|
-
Grupo: string;
|
|
2161
|
-
MaterialLogistica: MaterialLogisticaDTO[];
|
|
2162
|
-
Estado: EstadoDTO;
|
|
2163
|
-
}
|
|
2164
|
-
|
|
2165
|
-
declare class ManoObraGlobalENTITY {
|
|
2166
|
-
ID_ManoObraGlobal: number;
|
|
2167
|
-
Pais: CodigoNombreDTO;
|
|
2168
|
-
Delegacion: CodigoNombreDTO;
|
|
2169
|
-
Amap: number;
|
|
2170
|
-
Codigo: string;
|
|
2171
|
-
Alcance: string;
|
|
2172
|
-
ContratoOT: ContratoOTDTO;
|
|
2173
|
-
Unidad: UnidadMedidaDTO$2;
|
|
2174
|
-
Material: MaterialAmapDTO[];
|
|
2175
|
-
DetalleChile: DetalleManoObraChileDTO;
|
|
2176
|
-
Bitacora: BitacoraDTO[];
|
|
2396
|
+
Nombre: string;
|
|
2397
|
+
Cantidad: number;
|
|
2177
2398
|
Estado: EstadoDTO;
|
|
2178
2399
|
}
|
|
2179
2400
|
|
|
@@ -2218,6 +2439,29 @@ declare class RM_ZonasActividadENTITY {
|
|
|
2218
2439
|
Bitacora: BitacoraDTO[];
|
|
2219
2440
|
}
|
|
2220
2441
|
|
|
2442
|
+
declare class TipoActividadMOENTITY {
|
|
2443
|
+
ID_TipoActividadMO: number;
|
|
2444
|
+
Pais: CodigoNombreDTO;
|
|
2445
|
+
Delegacion: CodigoNombreDTO;
|
|
2446
|
+
Codigo: string;
|
|
2447
|
+
Descripcion: string;
|
|
2448
|
+
Estado: EstadoDTO;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
declare class PeriodoENTITY {
|
|
2452
|
+
ID_Periodo: number;
|
|
2453
|
+
Pais: CodigoNombreDTO;
|
|
2454
|
+
Delegacion: CodigoNombreDTO;
|
|
2455
|
+
Codigo: string;
|
|
2456
|
+
FechaInicio: Date;
|
|
2457
|
+
FechaFin: Date;
|
|
2458
|
+
FechaMaxima: Date;
|
|
2459
|
+
Mes: number;
|
|
2460
|
+
Anio: number;
|
|
2461
|
+
DiasMaximoCierre: number;
|
|
2462
|
+
Estado: EstadoDTO;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2221
2465
|
declare class CuadrillaDTO$3 {
|
|
2222
2466
|
Codigo: string;
|
|
2223
2467
|
Descripcion: string;
|
|
@@ -2906,7 +3150,7 @@ declare class EmpresaStockPersonalDTO {
|
|
|
2906
3150
|
declare class ItemENTITY {
|
|
2907
3151
|
ID_Item: number;
|
|
2908
3152
|
Propio: boolean;
|
|
2909
|
-
|
|
3153
|
+
Pais: PaisStockPersonalDTO;
|
|
2910
3154
|
Delegacion: CodigoNombreDTO;
|
|
2911
3155
|
Empresa: EmpresaStockPersonalDTO;
|
|
2912
3156
|
Cliente: ClienteDTO;
|
|
@@ -3464,6 +3708,28 @@ declare class UsuariosAutoinventarioENTITY {
|
|
|
3464
3708
|
Reportado: boolean;
|
|
3465
3709
|
}
|
|
3466
3710
|
|
|
3711
|
+
declare class TipoEspecialidadMOENTITY {
|
|
3712
|
+
ID_TipoEspecialidadMO: number;
|
|
3713
|
+
Pais: CodigoNombreDTO;
|
|
3714
|
+
Delegacion: CodigoNombreDTO;
|
|
3715
|
+
Codigo: string;
|
|
3716
|
+
Descripcion: string;
|
|
3717
|
+
Estado: EstadoDTO;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
declare class ContratoOTENTITY {
|
|
3721
|
+
ID_ContratoOT: number;
|
|
3722
|
+
Codigo: string;
|
|
3723
|
+
Descripcion: string;
|
|
3724
|
+
Sistema: string;
|
|
3725
|
+
Pais: CodigoNombreDTO;
|
|
3726
|
+
Delegacion: CodigoNombreDTO;
|
|
3727
|
+
OT: OTGlobalDTO;
|
|
3728
|
+
Vigencia: VigenciaDTO;
|
|
3729
|
+
Estado: EstadoDTO;
|
|
3730
|
+
CheckPrecioMO: boolean;
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3467
3733
|
declare class Cliente_ContratistaDTO {
|
|
3468
3734
|
RUC: string;
|
|
3469
3735
|
RazonSocial: string;
|
|
@@ -3969,4 +4235,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
3969
4235
|
Coordenadas: IDataSheetCoordenadas[];
|
|
3970
4236
|
}
|
|
3971
4237
|
|
|
3972
|
-
export { ActividadZonasActividadDTO, AddressListENTITY, AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, 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, 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, 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, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO,
|
|
4238
|
+
export { ActaFinalCubicacionDTO, 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, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, 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, 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, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaManoObraV2ENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, 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 };
|