sigo-entities 0.0.79 → 0.0.81
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 +138 -11
- package/dist/index.d.ts +138 -11
- package/dist/index.js +2961 -2230
- package/dist/index.mjs +2437 -1718
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -349,6 +349,14 @@ declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
|
349
349
|
ID_ZonaTrabajo: number;
|
|
350
350
|
}
|
|
351
351
|
|
|
352
|
+
declare class EmpresaPersonalDTO {
|
|
353
|
+
ID_Empresa: number;
|
|
354
|
+
Codigo: string;
|
|
355
|
+
NombreComercial: string;
|
|
356
|
+
RazonSocial: string;
|
|
357
|
+
NumeroDocumentoIdentidad: string;
|
|
358
|
+
}
|
|
359
|
+
|
|
352
360
|
declare class MailStructureENTITY {
|
|
353
361
|
ID_MailStructure: number;
|
|
354
362
|
Codigo: string;
|
|
@@ -1245,14 +1253,6 @@ declare class DatosTrabajoCatalogoDTO {
|
|
|
1245
1253
|
Code02: string;
|
|
1246
1254
|
}
|
|
1247
1255
|
|
|
1248
|
-
declare class EmpresaUsuarioDTO {
|
|
1249
|
-
ID_Empresa: number;
|
|
1250
|
-
Codigo: string;
|
|
1251
|
-
NombreComercial: string;
|
|
1252
|
-
RazonSocial: string;
|
|
1253
|
-
NumeroDocumentoIdentidad: string;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
1256
|
declare class OTDTO {
|
|
1257
1257
|
ID_OT: number;
|
|
1258
1258
|
Codigo: string;
|
|
@@ -1289,8 +1289,8 @@ declare class PersonalENTITY {
|
|
|
1289
1289
|
Sincronizacion: SincronizacionPersonalDTO;
|
|
1290
1290
|
Administrativo: boolean;
|
|
1291
1291
|
OTs: OTDTO[];
|
|
1292
|
-
EmpresaUsuario:
|
|
1293
|
-
EmpresasUsuario:
|
|
1292
|
+
EmpresaUsuario: EmpresaPersonalDTO;
|
|
1293
|
+
EmpresasUsuario: EmpresaPersonalDTO[];
|
|
1294
1294
|
}
|
|
1295
1295
|
|
|
1296
1296
|
declare class PerfilENTITY {
|
|
@@ -1405,4 +1405,131 @@ declare class EmpresaENTITY {
|
|
|
1405
1405
|
Bitacora: BitacoraDTO[];
|
|
1406
1406
|
}
|
|
1407
1407
|
|
|
1408
|
-
|
|
1408
|
+
declare class EmpresaUsuarioDTO {
|
|
1409
|
+
CodEmpresa: string;
|
|
1410
|
+
CDEmpresa: string;
|
|
1411
|
+
Empresa: string;
|
|
1412
|
+
Grupo: string;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
declare class TipoDocumentoUsuarioDTO {
|
|
1416
|
+
TipoDocumento: string;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
declare class SocketDTO {
|
|
1420
|
+
SocketId: string;
|
|
1421
|
+
IdOpcionSistema: number;
|
|
1422
|
+
OpcionSistema: string;
|
|
1423
|
+
Fecha: Date;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
declare class ProfileDTO {
|
|
1427
|
+
IdPerfil: number;
|
|
1428
|
+
Perfil: string;
|
|
1429
|
+
Codigo: string;
|
|
1430
|
+
Pais: CodigoNombreDTO;
|
|
1431
|
+
Delegacion: CodigoNombreDTO;
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
declare class DatosTrabajoUsuarioDTO {
|
|
1435
|
+
Delegacion: string;
|
|
1436
|
+
OT: string;
|
|
1437
|
+
Area: string;
|
|
1438
|
+
Cargo: string;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
declare class HistoricoEmpresasDTO {
|
|
1442
|
+
Fecha: Date;
|
|
1443
|
+
Usuario: UsuarioDTO;
|
|
1444
|
+
EmpresaUsuario: EmpresaPersonalDTO;
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
declare class AlmacenUsuarioGIADTO {
|
|
1448
|
+
ID_AlmacenGIA: number;
|
|
1449
|
+
Address: string;
|
|
1450
|
+
Address2: string;
|
|
1451
|
+
CDEmpresa: string;
|
|
1452
|
+
CDPais: string;
|
|
1453
|
+
CodDelegacion: string;
|
|
1454
|
+
CodEmpresa: string;
|
|
1455
|
+
CodOT: string;
|
|
1456
|
+
Code: string;
|
|
1457
|
+
Empresa: string;
|
|
1458
|
+
Grupo: string;
|
|
1459
|
+
Mostrar: string;
|
|
1460
|
+
Name: string;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
declare class PermisosAppDTO {
|
|
1464
|
+
ID_PermisosApp: number;
|
|
1465
|
+
Codigo: string;
|
|
1466
|
+
Nombre: string;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
declare class DelegacionZonalesDTO {
|
|
1470
|
+
IdDelegacion: number;
|
|
1471
|
+
Delegacion: string;
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
declare class ZonalesDTO {
|
|
1475
|
+
IdPais: number;
|
|
1476
|
+
Pais: string;
|
|
1477
|
+
IdZonal: number;
|
|
1478
|
+
Zonal: string;
|
|
1479
|
+
Fecha_Registro: Date;
|
|
1480
|
+
Estado: number;
|
|
1481
|
+
IdUsuario: number;
|
|
1482
|
+
Usuario: string;
|
|
1483
|
+
Delegacion: DelegacionZonalesDTO[];
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
declare class ContratistasDTO {
|
|
1487
|
+
IdContratista: number;
|
|
1488
|
+
Contratista: string;
|
|
1489
|
+
IdArea: number;
|
|
1490
|
+
Area: string;
|
|
1491
|
+
IdNegocio: number;
|
|
1492
|
+
Negocio: string;
|
|
1493
|
+
IdPerfil: number;
|
|
1494
|
+
Perfil: string;
|
|
1495
|
+
Fecha_Registro: Date;
|
|
1496
|
+
IdUsuario: number;
|
|
1497
|
+
Usuario: string;
|
|
1498
|
+
Estado: number;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
declare class UsuarioENTITY {
|
|
1502
|
+
IdUsuario: number;
|
|
1503
|
+
User: string;
|
|
1504
|
+
Password: string;
|
|
1505
|
+
Nombres: string;
|
|
1506
|
+
ApellidoPaterno: string;
|
|
1507
|
+
ApellidoMaterno: string;
|
|
1508
|
+
TipoDocumento: TipoDocumentoUsuarioDTO;
|
|
1509
|
+
Identificacion: string;
|
|
1510
|
+
Email: string;
|
|
1511
|
+
Empresa: EmpresaUsuarioDTO;
|
|
1512
|
+
Estado: EstadoAntiguoDTO;
|
|
1513
|
+
Socket: SocketDTO;
|
|
1514
|
+
Foto: FotoDTO;
|
|
1515
|
+
Profile: ProfileDTO[];
|
|
1516
|
+
Pais: CodigoNombreDTO;
|
|
1517
|
+
Codigo: string;
|
|
1518
|
+
DatosTrabajo: DatosTrabajoUsuarioDTO;
|
|
1519
|
+
Delegacion: DelegacionDTO;
|
|
1520
|
+
EmpresaUsuario: EmpresaPersonalDTO;
|
|
1521
|
+
HistoricoEmpresas: HistoricoEmpresasDTO[];
|
|
1522
|
+
ZonaTrabajo: ZonaTrabajoDTO[];
|
|
1523
|
+
ResetPassword: number;
|
|
1524
|
+
Bitacora: BitacoraDTO[];
|
|
1525
|
+
isCreate: boolean;
|
|
1526
|
+
SuperUsuario: boolean;
|
|
1527
|
+
Almacen: AlmacenLogisticaDTO[];
|
|
1528
|
+
AlmacenGIA: AlmacenUsuarioGIADTO[];
|
|
1529
|
+
PaisesGestion: CodigoNombreDTO[];
|
|
1530
|
+
PermisosApp: PermisosAppDTO[];
|
|
1531
|
+
Zonales: ZonalesDTO[];
|
|
1532
|
+
Contratistas: ContratistasDTO;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
export { AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -349,6 +349,14 @@ declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
|
349
349
|
ID_ZonaTrabajo: number;
|
|
350
350
|
}
|
|
351
351
|
|
|
352
|
+
declare class EmpresaPersonalDTO {
|
|
353
|
+
ID_Empresa: number;
|
|
354
|
+
Codigo: string;
|
|
355
|
+
NombreComercial: string;
|
|
356
|
+
RazonSocial: string;
|
|
357
|
+
NumeroDocumentoIdentidad: string;
|
|
358
|
+
}
|
|
359
|
+
|
|
352
360
|
declare class MailStructureENTITY {
|
|
353
361
|
ID_MailStructure: number;
|
|
354
362
|
Codigo: string;
|
|
@@ -1245,14 +1253,6 @@ declare class DatosTrabajoCatalogoDTO {
|
|
|
1245
1253
|
Code02: string;
|
|
1246
1254
|
}
|
|
1247
1255
|
|
|
1248
|
-
declare class EmpresaUsuarioDTO {
|
|
1249
|
-
ID_Empresa: number;
|
|
1250
|
-
Codigo: string;
|
|
1251
|
-
NombreComercial: string;
|
|
1252
|
-
RazonSocial: string;
|
|
1253
|
-
NumeroDocumentoIdentidad: string;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
1256
|
declare class OTDTO {
|
|
1257
1257
|
ID_OT: number;
|
|
1258
1258
|
Codigo: string;
|
|
@@ -1289,8 +1289,8 @@ declare class PersonalENTITY {
|
|
|
1289
1289
|
Sincronizacion: SincronizacionPersonalDTO;
|
|
1290
1290
|
Administrativo: boolean;
|
|
1291
1291
|
OTs: OTDTO[];
|
|
1292
|
-
EmpresaUsuario:
|
|
1293
|
-
EmpresasUsuario:
|
|
1292
|
+
EmpresaUsuario: EmpresaPersonalDTO;
|
|
1293
|
+
EmpresasUsuario: EmpresaPersonalDTO[];
|
|
1294
1294
|
}
|
|
1295
1295
|
|
|
1296
1296
|
declare class PerfilENTITY {
|
|
@@ -1405,4 +1405,131 @@ declare class EmpresaENTITY {
|
|
|
1405
1405
|
Bitacora: BitacoraDTO[];
|
|
1406
1406
|
}
|
|
1407
1407
|
|
|
1408
|
-
|
|
1408
|
+
declare class EmpresaUsuarioDTO {
|
|
1409
|
+
CodEmpresa: string;
|
|
1410
|
+
CDEmpresa: string;
|
|
1411
|
+
Empresa: string;
|
|
1412
|
+
Grupo: string;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
declare class TipoDocumentoUsuarioDTO {
|
|
1416
|
+
TipoDocumento: string;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
declare class SocketDTO {
|
|
1420
|
+
SocketId: string;
|
|
1421
|
+
IdOpcionSistema: number;
|
|
1422
|
+
OpcionSistema: string;
|
|
1423
|
+
Fecha: Date;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
declare class ProfileDTO {
|
|
1427
|
+
IdPerfil: number;
|
|
1428
|
+
Perfil: string;
|
|
1429
|
+
Codigo: string;
|
|
1430
|
+
Pais: CodigoNombreDTO;
|
|
1431
|
+
Delegacion: CodigoNombreDTO;
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
declare class DatosTrabajoUsuarioDTO {
|
|
1435
|
+
Delegacion: string;
|
|
1436
|
+
OT: string;
|
|
1437
|
+
Area: string;
|
|
1438
|
+
Cargo: string;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
declare class HistoricoEmpresasDTO {
|
|
1442
|
+
Fecha: Date;
|
|
1443
|
+
Usuario: UsuarioDTO;
|
|
1444
|
+
EmpresaUsuario: EmpresaPersonalDTO;
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
declare class AlmacenUsuarioGIADTO {
|
|
1448
|
+
ID_AlmacenGIA: number;
|
|
1449
|
+
Address: string;
|
|
1450
|
+
Address2: string;
|
|
1451
|
+
CDEmpresa: string;
|
|
1452
|
+
CDPais: string;
|
|
1453
|
+
CodDelegacion: string;
|
|
1454
|
+
CodEmpresa: string;
|
|
1455
|
+
CodOT: string;
|
|
1456
|
+
Code: string;
|
|
1457
|
+
Empresa: string;
|
|
1458
|
+
Grupo: string;
|
|
1459
|
+
Mostrar: string;
|
|
1460
|
+
Name: string;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
declare class PermisosAppDTO {
|
|
1464
|
+
ID_PermisosApp: number;
|
|
1465
|
+
Codigo: string;
|
|
1466
|
+
Nombre: string;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
declare class DelegacionZonalesDTO {
|
|
1470
|
+
IdDelegacion: number;
|
|
1471
|
+
Delegacion: string;
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
declare class ZonalesDTO {
|
|
1475
|
+
IdPais: number;
|
|
1476
|
+
Pais: string;
|
|
1477
|
+
IdZonal: number;
|
|
1478
|
+
Zonal: string;
|
|
1479
|
+
Fecha_Registro: Date;
|
|
1480
|
+
Estado: number;
|
|
1481
|
+
IdUsuario: number;
|
|
1482
|
+
Usuario: string;
|
|
1483
|
+
Delegacion: DelegacionZonalesDTO[];
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
declare class ContratistasDTO {
|
|
1487
|
+
IdContratista: number;
|
|
1488
|
+
Contratista: string;
|
|
1489
|
+
IdArea: number;
|
|
1490
|
+
Area: string;
|
|
1491
|
+
IdNegocio: number;
|
|
1492
|
+
Negocio: string;
|
|
1493
|
+
IdPerfil: number;
|
|
1494
|
+
Perfil: string;
|
|
1495
|
+
Fecha_Registro: Date;
|
|
1496
|
+
IdUsuario: number;
|
|
1497
|
+
Usuario: string;
|
|
1498
|
+
Estado: number;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
declare class UsuarioENTITY {
|
|
1502
|
+
IdUsuario: number;
|
|
1503
|
+
User: string;
|
|
1504
|
+
Password: string;
|
|
1505
|
+
Nombres: string;
|
|
1506
|
+
ApellidoPaterno: string;
|
|
1507
|
+
ApellidoMaterno: string;
|
|
1508
|
+
TipoDocumento: TipoDocumentoUsuarioDTO;
|
|
1509
|
+
Identificacion: string;
|
|
1510
|
+
Email: string;
|
|
1511
|
+
Empresa: EmpresaUsuarioDTO;
|
|
1512
|
+
Estado: EstadoAntiguoDTO;
|
|
1513
|
+
Socket: SocketDTO;
|
|
1514
|
+
Foto: FotoDTO;
|
|
1515
|
+
Profile: ProfileDTO[];
|
|
1516
|
+
Pais: CodigoNombreDTO;
|
|
1517
|
+
Codigo: string;
|
|
1518
|
+
DatosTrabajo: DatosTrabajoUsuarioDTO;
|
|
1519
|
+
Delegacion: DelegacionDTO;
|
|
1520
|
+
EmpresaUsuario: EmpresaPersonalDTO;
|
|
1521
|
+
HistoricoEmpresas: HistoricoEmpresasDTO[];
|
|
1522
|
+
ZonaTrabajo: ZonaTrabajoDTO[];
|
|
1523
|
+
ResetPassword: number;
|
|
1524
|
+
Bitacora: BitacoraDTO[];
|
|
1525
|
+
isCreate: boolean;
|
|
1526
|
+
SuperUsuario: boolean;
|
|
1527
|
+
Almacen: AlmacenLogisticaDTO[];
|
|
1528
|
+
AlmacenGIA: AlmacenUsuarioGIADTO[];
|
|
1529
|
+
PaisesGestion: CodigoNombreDTO[];
|
|
1530
|
+
PermisosApp: PermisosAppDTO[];
|
|
1531
|
+
Zonales: ZonalesDTO[];
|
|
1532
|
+
Contratistas: ContratistasDTO;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
export { AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|