sigo-entities 0.0.52 → 0.0.53
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 +34 -10
- package/dist/index.d.ts +34 -10
- package/dist/index.js +444 -328
- package/dist/index.mjs +445 -329
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -96,7 +96,7 @@ declare class DetalleDTO {
|
|
|
96
96
|
Estado: EstadoDTO;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
declare class EmpresaDTO {
|
|
99
|
+
declare class EmpresaDTO$1 {
|
|
100
100
|
Codigo: string;
|
|
101
101
|
RazonSocial: string;
|
|
102
102
|
Propia: boolean;
|
|
@@ -277,7 +277,7 @@ declare class ItemDetalleLogisticaDTO {
|
|
|
277
277
|
Ind_SB: string;
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
declare class LoteDTO {
|
|
280
|
+
declare class LoteDTO$1 {
|
|
281
281
|
ID: number;
|
|
282
282
|
Lote: string;
|
|
283
283
|
FechaCaducidad: Date;
|
|
@@ -294,15 +294,15 @@ declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
|
294
294
|
ID_Pais: number;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
-
declare class PersonalLogisticaDTO {
|
|
297
|
+
declare class PersonalLogisticaDTO$1 {
|
|
298
298
|
Codigo: string;
|
|
299
299
|
IdPersonal: number;
|
|
300
300
|
IdRegister: number;
|
|
301
301
|
Identificacion: string;
|
|
302
302
|
Apellidos: string;
|
|
303
303
|
Nombres: string;
|
|
304
|
-
Lotes: LoteDTO[];
|
|
305
|
-
Empresa: EmpresaDTO;
|
|
304
|
+
Lotes: LoteDTO$1[];
|
|
305
|
+
Empresa: EmpresaDTO$1;
|
|
306
306
|
Firma: string;
|
|
307
307
|
}
|
|
308
308
|
|
|
@@ -507,7 +507,7 @@ declare class Ultima_asignacionDTO {
|
|
|
507
507
|
Turno: TurnoDTO;
|
|
508
508
|
Fecha: Date;
|
|
509
509
|
Usuario: UsuarioDTO;
|
|
510
|
-
Empresa: EmpresaDTO;
|
|
510
|
+
Empresa: EmpresaDTO$1;
|
|
511
511
|
Valorizaciones: ValorizacionesDTO[];
|
|
512
512
|
}
|
|
513
513
|
|
|
@@ -747,7 +747,7 @@ declare class SalidaAlmacenENTITY {
|
|
|
747
747
|
NroDocumento: string;
|
|
748
748
|
OrdenTrabajo: string;
|
|
749
749
|
Empresa: EmpresaLogisticaDTO;
|
|
750
|
-
Personal: PersonalLogisticaDTO;
|
|
750
|
+
Personal: PersonalLogisticaDTO$1;
|
|
751
751
|
Detalle: DetalleDTO[];
|
|
752
752
|
Bodega: CodigoNombreDTO;
|
|
753
753
|
Fechas: FechaDTO;
|
|
@@ -764,7 +764,7 @@ declare class StockPersonalENTITY {
|
|
|
764
764
|
Pais: PaisStockPersonalDTO;
|
|
765
765
|
Delegacion: CodigoNombreDTO;
|
|
766
766
|
Empresa: EmpresaLogisticaDTO;
|
|
767
|
-
Personal: PersonalLogisticaDTO;
|
|
767
|
+
Personal: PersonalLogisticaDTO$1;
|
|
768
768
|
Almacen: AlmacenLogisticaDTO;
|
|
769
769
|
Bodega: CodigoNombreDTO;
|
|
770
770
|
ZonaTrabajo: ZonaTrabajoDTO;
|
|
@@ -833,7 +833,7 @@ declare class DevolucionAlmacenENTITY {
|
|
|
833
833
|
NroDocumento: string;
|
|
834
834
|
OrdenTrabajo: string;
|
|
835
835
|
Empresa: EmpresaLogisticaDTO;
|
|
836
|
-
Personal: PersonalLogisticaDTO;
|
|
836
|
+
Personal: PersonalLogisticaDTO$1;
|
|
837
837
|
Detalle: DetalleDTO[];
|
|
838
838
|
Bodega: CodigoNombreDTO;
|
|
839
839
|
Fechas: FechaDTO;
|
|
@@ -908,6 +908,30 @@ declare class ItemENTITY {
|
|
|
908
908
|
Bitacora: BitacoraDTO[];
|
|
909
909
|
}
|
|
910
910
|
|
|
911
|
+
declare class EmpresaDTO {
|
|
912
|
+
Codigo: string;
|
|
913
|
+
RazonSocial: string;
|
|
914
|
+
Propia: boolean;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
declare class LoteDTO {
|
|
918
|
+
ID: number;
|
|
919
|
+
Lote: string;
|
|
920
|
+
FechaCaducidad: Date;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
declare class PersonalLogisticaDTO {
|
|
924
|
+
Codigo: string;
|
|
925
|
+
IdPersonal: number;
|
|
926
|
+
IdRegister: number;
|
|
927
|
+
Identificacion: string;
|
|
928
|
+
Apellidos: string;
|
|
929
|
+
Nombres: string;
|
|
930
|
+
Lotes: LoteDTO[];
|
|
931
|
+
Empresa: EmpresaDTO;
|
|
932
|
+
Firma: string;
|
|
933
|
+
}
|
|
934
|
+
|
|
911
935
|
declare class IngresoAlmacenENTITY {
|
|
912
936
|
ID_IngresoAlmacen: number;
|
|
913
937
|
ID_GOM: number;
|
|
@@ -1019,4 +1043,4 @@ declare class PersonalENTITY {
|
|
|
1019
1043
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
1020
1044
|
}
|
|
1021
1045
|
|
|
1022
|
-
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
1046
|
+
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -96,7 +96,7 @@ declare class DetalleDTO {
|
|
|
96
96
|
Estado: EstadoDTO;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
declare class EmpresaDTO {
|
|
99
|
+
declare class EmpresaDTO$1 {
|
|
100
100
|
Codigo: string;
|
|
101
101
|
RazonSocial: string;
|
|
102
102
|
Propia: boolean;
|
|
@@ -277,7 +277,7 @@ declare class ItemDetalleLogisticaDTO {
|
|
|
277
277
|
Ind_SB: string;
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
declare class LoteDTO {
|
|
280
|
+
declare class LoteDTO$1 {
|
|
281
281
|
ID: number;
|
|
282
282
|
Lote: string;
|
|
283
283
|
FechaCaducidad: Date;
|
|
@@ -294,15 +294,15 @@ declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
|
294
294
|
ID_Pais: number;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
-
declare class PersonalLogisticaDTO {
|
|
297
|
+
declare class PersonalLogisticaDTO$1 {
|
|
298
298
|
Codigo: string;
|
|
299
299
|
IdPersonal: number;
|
|
300
300
|
IdRegister: number;
|
|
301
301
|
Identificacion: string;
|
|
302
302
|
Apellidos: string;
|
|
303
303
|
Nombres: string;
|
|
304
|
-
Lotes: LoteDTO[];
|
|
305
|
-
Empresa: EmpresaDTO;
|
|
304
|
+
Lotes: LoteDTO$1[];
|
|
305
|
+
Empresa: EmpresaDTO$1;
|
|
306
306
|
Firma: string;
|
|
307
307
|
}
|
|
308
308
|
|
|
@@ -507,7 +507,7 @@ declare class Ultima_asignacionDTO {
|
|
|
507
507
|
Turno: TurnoDTO;
|
|
508
508
|
Fecha: Date;
|
|
509
509
|
Usuario: UsuarioDTO;
|
|
510
|
-
Empresa: EmpresaDTO;
|
|
510
|
+
Empresa: EmpresaDTO$1;
|
|
511
511
|
Valorizaciones: ValorizacionesDTO[];
|
|
512
512
|
}
|
|
513
513
|
|
|
@@ -747,7 +747,7 @@ declare class SalidaAlmacenENTITY {
|
|
|
747
747
|
NroDocumento: string;
|
|
748
748
|
OrdenTrabajo: string;
|
|
749
749
|
Empresa: EmpresaLogisticaDTO;
|
|
750
|
-
Personal: PersonalLogisticaDTO;
|
|
750
|
+
Personal: PersonalLogisticaDTO$1;
|
|
751
751
|
Detalle: DetalleDTO[];
|
|
752
752
|
Bodega: CodigoNombreDTO;
|
|
753
753
|
Fechas: FechaDTO;
|
|
@@ -764,7 +764,7 @@ declare class StockPersonalENTITY {
|
|
|
764
764
|
Pais: PaisStockPersonalDTO;
|
|
765
765
|
Delegacion: CodigoNombreDTO;
|
|
766
766
|
Empresa: EmpresaLogisticaDTO;
|
|
767
|
-
Personal: PersonalLogisticaDTO;
|
|
767
|
+
Personal: PersonalLogisticaDTO$1;
|
|
768
768
|
Almacen: AlmacenLogisticaDTO;
|
|
769
769
|
Bodega: CodigoNombreDTO;
|
|
770
770
|
ZonaTrabajo: ZonaTrabajoDTO;
|
|
@@ -833,7 +833,7 @@ declare class DevolucionAlmacenENTITY {
|
|
|
833
833
|
NroDocumento: string;
|
|
834
834
|
OrdenTrabajo: string;
|
|
835
835
|
Empresa: EmpresaLogisticaDTO;
|
|
836
|
-
Personal: PersonalLogisticaDTO;
|
|
836
|
+
Personal: PersonalLogisticaDTO$1;
|
|
837
837
|
Detalle: DetalleDTO[];
|
|
838
838
|
Bodega: CodigoNombreDTO;
|
|
839
839
|
Fechas: FechaDTO;
|
|
@@ -908,6 +908,30 @@ declare class ItemENTITY {
|
|
|
908
908
|
Bitacora: BitacoraDTO[];
|
|
909
909
|
}
|
|
910
910
|
|
|
911
|
+
declare class EmpresaDTO {
|
|
912
|
+
Codigo: string;
|
|
913
|
+
RazonSocial: string;
|
|
914
|
+
Propia: boolean;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
declare class LoteDTO {
|
|
918
|
+
ID: number;
|
|
919
|
+
Lote: string;
|
|
920
|
+
FechaCaducidad: Date;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
declare class PersonalLogisticaDTO {
|
|
924
|
+
Codigo: string;
|
|
925
|
+
IdPersonal: number;
|
|
926
|
+
IdRegister: number;
|
|
927
|
+
Identificacion: string;
|
|
928
|
+
Apellidos: string;
|
|
929
|
+
Nombres: string;
|
|
930
|
+
Lotes: LoteDTO[];
|
|
931
|
+
Empresa: EmpresaDTO;
|
|
932
|
+
Firma: string;
|
|
933
|
+
}
|
|
934
|
+
|
|
911
935
|
declare class IngresoAlmacenENTITY {
|
|
912
936
|
ID_IngresoAlmacen: number;
|
|
913
937
|
ID_GOM: number;
|
|
@@ -1019,4 +1043,4 @@ declare class PersonalENTITY {
|
|
|
1019
1043
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
1020
1044
|
}
|
|
1021
1045
|
|
|
1022
|
-
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
1046
|
+
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|