sigo-entities 0.0.44 → 0.0.46
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 +65 -65
- package/dist/index.d.ts +65 -65
- package/dist/index.js +1666 -1668
- package/dist/index.mjs +1311 -1312
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -249,6 +249,70 @@ declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
|
249
249
|
ID_ZonaTrabajo: number;
|
|
250
250
|
}
|
|
251
251
|
|
|
252
|
+
declare class EquipoLogisticaDTO {
|
|
253
|
+
Posicion: number;
|
|
254
|
+
Collection: string;
|
|
255
|
+
NroDocumento: string;
|
|
256
|
+
NroContable: string;
|
|
257
|
+
Serie: string;
|
|
258
|
+
MAC: string;
|
|
259
|
+
Marca: string;
|
|
260
|
+
Modelo: string;
|
|
261
|
+
Validado: ValidadoDTO;
|
|
262
|
+
Estado: EstadoDTO;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
declare class DetalleDTO {
|
|
266
|
+
NroContable: string;
|
|
267
|
+
Bodega: CodigoNombreDTO;
|
|
268
|
+
Reserva: string;
|
|
269
|
+
OrdenTrabajo: string;
|
|
270
|
+
Item: ItemDetalleLogisticaDTO;
|
|
271
|
+
Posicion: number;
|
|
272
|
+
Lote: string;
|
|
273
|
+
Cantidad: number;
|
|
274
|
+
CantidadRecepcion: number;
|
|
275
|
+
Precio: number;
|
|
276
|
+
Tipo: string;
|
|
277
|
+
Bobina: string;
|
|
278
|
+
CorteInicioBobina: number;
|
|
279
|
+
Equipos: EquipoLogisticaDTO[];
|
|
280
|
+
TipoStock: TipoStockStockPersonalDTO;
|
|
281
|
+
CodigoBusqueda: string;
|
|
282
|
+
CodigoLlave: string;
|
|
283
|
+
Notas: string;
|
|
284
|
+
Estado: EstadoDTO;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
declare class EstadoIntegracionDTO {
|
|
288
|
+
Estado: boolean;
|
|
289
|
+
FileId: string;
|
|
290
|
+
Mensaje: string;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
declare class FechaDTO {
|
|
294
|
+
Guia: Date;
|
|
295
|
+
Ingreso: Date;
|
|
296
|
+
Aprobacion: Date;
|
|
297
|
+
Recepcion: Date;
|
|
298
|
+
Anulacion: Date;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
declare class MovimientoAlmacenDTO {
|
|
302
|
+
ID_MovimientoAlmacen: number;
|
|
303
|
+
TipoMovimientoAlmacen: TipoMovimientoAlmacenDTO;
|
|
304
|
+
Codigo: string;
|
|
305
|
+
TipoStock: TipoStockStockPersonalDTO;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
declare class UsuarioLogisticaDTO {
|
|
309
|
+
Guia: UsuarioID_UsuarioDTO;
|
|
310
|
+
Ingreso: UsuarioID_UsuarioDTO;
|
|
311
|
+
Aprobacion: UsuarioID_UsuarioDTO;
|
|
312
|
+
Recepcion: UsuarioID_UsuarioDTO;
|
|
313
|
+
Anulacion: UsuarioID_UsuarioDTO;
|
|
314
|
+
}
|
|
315
|
+
|
|
252
316
|
declare class ContrataDTO {
|
|
253
317
|
FechaRegistro: Date;
|
|
254
318
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -662,70 +726,6 @@ declare class DatosTransportistaDTO {
|
|
|
662
726
|
RUCEmpresa: string;
|
|
663
727
|
}
|
|
664
728
|
|
|
665
|
-
declare class EquipoLogisticaDTO {
|
|
666
|
-
Posicion: number;
|
|
667
|
-
Collection: string;
|
|
668
|
-
NroDocumento: string;
|
|
669
|
-
NroContable: string;
|
|
670
|
-
Serie: string;
|
|
671
|
-
MAC: string;
|
|
672
|
-
Marca: string;
|
|
673
|
-
Modelo: string;
|
|
674
|
-
Validado: ValidadoDTO;
|
|
675
|
-
Estado: EstadoDTO;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
declare class DetalleDTO {
|
|
679
|
-
NroContable: string;
|
|
680
|
-
Bodega: CodigoNombreDTO;
|
|
681
|
-
Reserva: string;
|
|
682
|
-
OrdenTrabajo: string;
|
|
683
|
-
Item: ItemDetalleLogisticaDTO;
|
|
684
|
-
Posicion: number;
|
|
685
|
-
Lote: string;
|
|
686
|
-
Cantidad: number;
|
|
687
|
-
CantidadRecepcion: number;
|
|
688
|
-
Precio: number;
|
|
689
|
-
Tipo: string;
|
|
690
|
-
Bobina: string;
|
|
691
|
-
CorteInicioBobina: number;
|
|
692
|
-
Equipos: EquipoLogisticaDTO[];
|
|
693
|
-
TipoStock: TipoStockStockPersonalDTO;
|
|
694
|
-
CodigoBusqueda: string;
|
|
695
|
-
CodigoLlave: string;
|
|
696
|
-
Notas: string;
|
|
697
|
-
Estado: EstadoDTO;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
declare class EstadoIntegracionDTO {
|
|
701
|
-
Estado: boolean;
|
|
702
|
-
FileId: string;
|
|
703
|
-
Mensaje: string;
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
declare class FechaDTO {
|
|
707
|
-
Guia: Date;
|
|
708
|
-
Ingreso: Date;
|
|
709
|
-
Aprobacion: Date;
|
|
710
|
-
Recepcion: Date;
|
|
711
|
-
Anulacion: Date;
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
declare class MovimientoAlmacenDTO {
|
|
715
|
-
ID_MovimientoAlmacen: number;
|
|
716
|
-
TipoMovimientoAlmacen: TipoMovimientoAlmacenDTO;
|
|
717
|
-
Codigo: string;
|
|
718
|
-
TipoStock: TipoStockStockPersonalDTO;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
declare class UsuarioLogisticaDTO {
|
|
722
|
-
Guia: UsuarioID_UsuarioDTO;
|
|
723
|
-
Ingreso: UsuarioID_UsuarioDTO;
|
|
724
|
-
Aprobacion: UsuarioID_UsuarioDTO;
|
|
725
|
-
Recepcion: UsuarioID_UsuarioDTO;
|
|
726
|
-
Anulacion: UsuarioID_UsuarioDTO;
|
|
727
|
-
}
|
|
728
|
-
|
|
729
729
|
declare class SalidaAlmacenENTITY {
|
|
730
730
|
ID_DespachoAlmacen: number;
|
|
731
731
|
ID_GOM: number;
|
|
@@ -979,4 +979,4 @@ declare class PersonalENTITY {
|
|
|
979
979
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
980
980
|
}
|
|
981
981
|
|
|
982
|
-
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO,
|
|
982
|
+
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, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, 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
|
@@ -249,6 +249,70 @@ declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
|
249
249
|
ID_ZonaTrabajo: number;
|
|
250
250
|
}
|
|
251
251
|
|
|
252
|
+
declare class EquipoLogisticaDTO {
|
|
253
|
+
Posicion: number;
|
|
254
|
+
Collection: string;
|
|
255
|
+
NroDocumento: string;
|
|
256
|
+
NroContable: string;
|
|
257
|
+
Serie: string;
|
|
258
|
+
MAC: string;
|
|
259
|
+
Marca: string;
|
|
260
|
+
Modelo: string;
|
|
261
|
+
Validado: ValidadoDTO;
|
|
262
|
+
Estado: EstadoDTO;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
declare class DetalleDTO {
|
|
266
|
+
NroContable: string;
|
|
267
|
+
Bodega: CodigoNombreDTO;
|
|
268
|
+
Reserva: string;
|
|
269
|
+
OrdenTrabajo: string;
|
|
270
|
+
Item: ItemDetalleLogisticaDTO;
|
|
271
|
+
Posicion: number;
|
|
272
|
+
Lote: string;
|
|
273
|
+
Cantidad: number;
|
|
274
|
+
CantidadRecepcion: number;
|
|
275
|
+
Precio: number;
|
|
276
|
+
Tipo: string;
|
|
277
|
+
Bobina: string;
|
|
278
|
+
CorteInicioBobina: number;
|
|
279
|
+
Equipos: EquipoLogisticaDTO[];
|
|
280
|
+
TipoStock: TipoStockStockPersonalDTO;
|
|
281
|
+
CodigoBusqueda: string;
|
|
282
|
+
CodigoLlave: string;
|
|
283
|
+
Notas: string;
|
|
284
|
+
Estado: EstadoDTO;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
declare class EstadoIntegracionDTO {
|
|
288
|
+
Estado: boolean;
|
|
289
|
+
FileId: string;
|
|
290
|
+
Mensaje: string;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
declare class FechaDTO {
|
|
294
|
+
Guia: Date;
|
|
295
|
+
Ingreso: Date;
|
|
296
|
+
Aprobacion: Date;
|
|
297
|
+
Recepcion: Date;
|
|
298
|
+
Anulacion: Date;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
declare class MovimientoAlmacenDTO {
|
|
302
|
+
ID_MovimientoAlmacen: number;
|
|
303
|
+
TipoMovimientoAlmacen: TipoMovimientoAlmacenDTO;
|
|
304
|
+
Codigo: string;
|
|
305
|
+
TipoStock: TipoStockStockPersonalDTO;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
declare class UsuarioLogisticaDTO {
|
|
309
|
+
Guia: UsuarioID_UsuarioDTO;
|
|
310
|
+
Ingreso: UsuarioID_UsuarioDTO;
|
|
311
|
+
Aprobacion: UsuarioID_UsuarioDTO;
|
|
312
|
+
Recepcion: UsuarioID_UsuarioDTO;
|
|
313
|
+
Anulacion: UsuarioID_UsuarioDTO;
|
|
314
|
+
}
|
|
315
|
+
|
|
252
316
|
declare class ContrataDTO {
|
|
253
317
|
FechaRegistro: Date;
|
|
254
318
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -662,70 +726,6 @@ declare class DatosTransportistaDTO {
|
|
|
662
726
|
RUCEmpresa: string;
|
|
663
727
|
}
|
|
664
728
|
|
|
665
|
-
declare class EquipoLogisticaDTO {
|
|
666
|
-
Posicion: number;
|
|
667
|
-
Collection: string;
|
|
668
|
-
NroDocumento: string;
|
|
669
|
-
NroContable: string;
|
|
670
|
-
Serie: string;
|
|
671
|
-
MAC: string;
|
|
672
|
-
Marca: string;
|
|
673
|
-
Modelo: string;
|
|
674
|
-
Validado: ValidadoDTO;
|
|
675
|
-
Estado: EstadoDTO;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
declare class DetalleDTO {
|
|
679
|
-
NroContable: string;
|
|
680
|
-
Bodega: CodigoNombreDTO;
|
|
681
|
-
Reserva: string;
|
|
682
|
-
OrdenTrabajo: string;
|
|
683
|
-
Item: ItemDetalleLogisticaDTO;
|
|
684
|
-
Posicion: number;
|
|
685
|
-
Lote: string;
|
|
686
|
-
Cantidad: number;
|
|
687
|
-
CantidadRecepcion: number;
|
|
688
|
-
Precio: number;
|
|
689
|
-
Tipo: string;
|
|
690
|
-
Bobina: string;
|
|
691
|
-
CorteInicioBobina: number;
|
|
692
|
-
Equipos: EquipoLogisticaDTO[];
|
|
693
|
-
TipoStock: TipoStockStockPersonalDTO;
|
|
694
|
-
CodigoBusqueda: string;
|
|
695
|
-
CodigoLlave: string;
|
|
696
|
-
Notas: string;
|
|
697
|
-
Estado: EstadoDTO;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
declare class EstadoIntegracionDTO {
|
|
701
|
-
Estado: boolean;
|
|
702
|
-
FileId: string;
|
|
703
|
-
Mensaje: string;
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
declare class FechaDTO {
|
|
707
|
-
Guia: Date;
|
|
708
|
-
Ingreso: Date;
|
|
709
|
-
Aprobacion: Date;
|
|
710
|
-
Recepcion: Date;
|
|
711
|
-
Anulacion: Date;
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
declare class MovimientoAlmacenDTO {
|
|
715
|
-
ID_MovimientoAlmacen: number;
|
|
716
|
-
TipoMovimientoAlmacen: TipoMovimientoAlmacenDTO;
|
|
717
|
-
Codigo: string;
|
|
718
|
-
TipoStock: TipoStockStockPersonalDTO;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
declare class UsuarioLogisticaDTO {
|
|
722
|
-
Guia: UsuarioID_UsuarioDTO;
|
|
723
|
-
Ingreso: UsuarioID_UsuarioDTO;
|
|
724
|
-
Aprobacion: UsuarioID_UsuarioDTO;
|
|
725
|
-
Recepcion: UsuarioID_UsuarioDTO;
|
|
726
|
-
Anulacion: UsuarioID_UsuarioDTO;
|
|
727
|
-
}
|
|
728
|
-
|
|
729
729
|
declare class SalidaAlmacenENTITY {
|
|
730
730
|
ID_DespachoAlmacen: number;
|
|
731
731
|
ID_GOM: number;
|
|
@@ -979,4 +979,4 @@ declare class PersonalENTITY {
|
|
|
979
979
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
980
980
|
}
|
|
981
981
|
|
|
982
|
-
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO,
|
|
982
|
+
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, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, 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 };
|