sigo-entities 0.0.61 → 0.0.63
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 +84 -1
- package/dist/index.d.ts +84 -1
- package/dist/index.js +659 -199
- package/dist/index.mjs +650 -199
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1103,6 +1103,27 @@ declare class AlmacenENTITY {
|
|
|
1103
1103
|
Bitacora: BitacoraDTO[];
|
|
1104
1104
|
}
|
|
1105
1105
|
|
|
1106
|
+
declare class AtiendeBodegaDTO {
|
|
1107
|
+
Contrato: number;
|
|
1108
|
+
ZonaTrabajo: string[];
|
|
1109
|
+
Fecha: Date;
|
|
1110
|
+
Estado: EstadoDTO;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
declare class BodegaENTITY {
|
|
1114
|
+
ID_Bodega: number;
|
|
1115
|
+
Almacen: AlmacenLogisticaDTO;
|
|
1116
|
+
Delegacion: CodigoNombreDTO;
|
|
1117
|
+
Codigo: string;
|
|
1118
|
+
Nombre: string;
|
|
1119
|
+
Descripcion: string;
|
|
1120
|
+
Atiende: AtiendeBodegaDTO[];
|
|
1121
|
+
Log: LogAlmacenDTO;
|
|
1122
|
+
Estado: EstadoDTO;
|
|
1123
|
+
Pais: CodigoNombreDTO;
|
|
1124
|
+
Bitacora: BitacoraDTO[];
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1106
1127
|
declare class OptionCatalogoDTO {
|
|
1107
1128
|
Code: string;
|
|
1108
1129
|
Key: string;
|
|
@@ -1176,4 +1197,66 @@ declare class PersonalENTITY {
|
|
|
1176
1197
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
1177
1198
|
}
|
|
1178
1199
|
|
|
1179
|
-
|
|
1200
|
+
declare class DatosGeneralesDTO {
|
|
1201
|
+
Ubicacion: UbicacionAlmacenDTO;
|
|
1202
|
+
CorreoElectronico: string[];
|
|
1203
|
+
Telefono: string[];
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
declare class DatosGIADTO {
|
|
1207
|
+
_id: string;
|
|
1208
|
+
Code: string;
|
|
1209
|
+
Key: string;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
declare class TipoMiembroGrupoEmpresaDTO {
|
|
1213
|
+
ID_TipoMiembroGrupoEmpresa: number;
|
|
1214
|
+
Nombre: string;
|
|
1215
|
+
PermiteOtroGrupo: boolean;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
declare class GrupoEmpresaDTO {
|
|
1219
|
+
ID_GrupoEmpresa: number;
|
|
1220
|
+
Codigo: string;
|
|
1221
|
+
Nombre: string;
|
|
1222
|
+
TipoMiembroGrupoEmpresa: TipoMiembroGrupoEmpresaDTO;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
declare class RepresentanteLegalDTO {
|
|
1226
|
+
ID_Persona: number;
|
|
1227
|
+
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
1228
|
+
NumeroDocumentoIdentidad: string;
|
|
1229
|
+
ApellidoPaterno: string;
|
|
1230
|
+
ApellidoMaterno: string;
|
|
1231
|
+
Nombres: string;
|
|
1232
|
+
CorreoElectronico: string[];
|
|
1233
|
+
Telefono: string[];
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
declare class TipoEmpresaDTO {
|
|
1237
|
+
ID_TipoEmpresa: number;
|
|
1238
|
+
Nombre: string;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
declare class EmpresaENITY {
|
|
1242
|
+
ID_Empresa: number;
|
|
1243
|
+
Pais: PaisStockPersonalDTO;
|
|
1244
|
+
TipoEmpresa: TipoEmpresaDTO;
|
|
1245
|
+
GrupoEmpresa: GrupoEmpresaDTO[];
|
|
1246
|
+
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
1247
|
+
NumeroDocumentoIdentidad: string;
|
|
1248
|
+
Codigo: string;
|
|
1249
|
+
Lotes: LoteDTO$1[];
|
|
1250
|
+
RazonSocial: string;
|
|
1251
|
+
NombreComercial: string;
|
|
1252
|
+
Propia: boolean;
|
|
1253
|
+
Documentacion: object;
|
|
1254
|
+
DatosGenerales: DatosGeneralesDTO;
|
|
1255
|
+
RepresentanteLegal: RepresentanteLegalDTO;
|
|
1256
|
+
Delegacion: CodigoNombreDTO[];
|
|
1257
|
+
DatosGIA: DatosGIADTO;
|
|
1258
|
+
Estado: EstadoDTO;
|
|
1259
|
+
Bitacora: BitacoraDTO[];
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
export { AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENITY, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoStockStockPersonalDTO, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, 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
|
@@ -1103,6 +1103,27 @@ declare class AlmacenENTITY {
|
|
|
1103
1103
|
Bitacora: BitacoraDTO[];
|
|
1104
1104
|
}
|
|
1105
1105
|
|
|
1106
|
+
declare class AtiendeBodegaDTO {
|
|
1107
|
+
Contrato: number;
|
|
1108
|
+
ZonaTrabajo: string[];
|
|
1109
|
+
Fecha: Date;
|
|
1110
|
+
Estado: EstadoDTO;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
declare class BodegaENTITY {
|
|
1114
|
+
ID_Bodega: number;
|
|
1115
|
+
Almacen: AlmacenLogisticaDTO;
|
|
1116
|
+
Delegacion: CodigoNombreDTO;
|
|
1117
|
+
Codigo: string;
|
|
1118
|
+
Nombre: string;
|
|
1119
|
+
Descripcion: string;
|
|
1120
|
+
Atiende: AtiendeBodegaDTO[];
|
|
1121
|
+
Log: LogAlmacenDTO;
|
|
1122
|
+
Estado: EstadoDTO;
|
|
1123
|
+
Pais: CodigoNombreDTO;
|
|
1124
|
+
Bitacora: BitacoraDTO[];
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1106
1127
|
declare class OptionCatalogoDTO {
|
|
1107
1128
|
Code: string;
|
|
1108
1129
|
Key: string;
|
|
@@ -1176,4 +1197,66 @@ declare class PersonalENTITY {
|
|
|
1176
1197
|
EmpresasUsuario: EmpresaUsuarioDTO[];
|
|
1177
1198
|
}
|
|
1178
1199
|
|
|
1179
|
-
|
|
1200
|
+
declare class DatosGeneralesDTO {
|
|
1201
|
+
Ubicacion: UbicacionAlmacenDTO;
|
|
1202
|
+
CorreoElectronico: string[];
|
|
1203
|
+
Telefono: string[];
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
declare class DatosGIADTO {
|
|
1207
|
+
_id: string;
|
|
1208
|
+
Code: string;
|
|
1209
|
+
Key: string;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
declare class TipoMiembroGrupoEmpresaDTO {
|
|
1213
|
+
ID_TipoMiembroGrupoEmpresa: number;
|
|
1214
|
+
Nombre: string;
|
|
1215
|
+
PermiteOtroGrupo: boolean;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
declare class GrupoEmpresaDTO {
|
|
1219
|
+
ID_GrupoEmpresa: number;
|
|
1220
|
+
Codigo: string;
|
|
1221
|
+
Nombre: string;
|
|
1222
|
+
TipoMiembroGrupoEmpresa: TipoMiembroGrupoEmpresaDTO;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
declare class RepresentanteLegalDTO {
|
|
1226
|
+
ID_Persona: number;
|
|
1227
|
+
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
1228
|
+
NumeroDocumentoIdentidad: string;
|
|
1229
|
+
ApellidoPaterno: string;
|
|
1230
|
+
ApellidoMaterno: string;
|
|
1231
|
+
Nombres: string;
|
|
1232
|
+
CorreoElectronico: string[];
|
|
1233
|
+
Telefono: string[];
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
declare class TipoEmpresaDTO {
|
|
1237
|
+
ID_TipoEmpresa: number;
|
|
1238
|
+
Nombre: string;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
declare class EmpresaENITY {
|
|
1242
|
+
ID_Empresa: number;
|
|
1243
|
+
Pais: PaisStockPersonalDTO;
|
|
1244
|
+
TipoEmpresa: TipoEmpresaDTO;
|
|
1245
|
+
GrupoEmpresa: GrupoEmpresaDTO[];
|
|
1246
|
+
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
1247
|
+
NumeroDocumentoIdentidad: string;
|
|
1248
|
+
Codigo: string;
|
|
1249
|
+
Lotes: LoteDTO$1[];
|
|
1250
|
+
RazonSocial: string;
|
|
1251
|
+
NombreComercial: string;
|
|
1252
|
+
Propia: boolean;
|
|
1253
|
+
Documentacion: object;
|
|
1254
|
+
DatosGenerales: DatosGeneralesDTO;
|
|
1255
|
+
RepresentanteLegal: RepresentanteLegalDTO;
|
|
1256
|
+
Delegacion: CodigoNombreDTO[];
|
|
1257
|
+
DatosGIA: DatosGIADTO;
|
|
1258
|
+
Estado: EstadoDTO;
|
|
1259
|
+
Bitacora: BitacoraDTO[];
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
export { AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BitacoraAntiguaDTO, BitacoraDTO, BodegaENTITY, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DestinatarioDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO$1 as EmpresaDTO, EmpresaENITY, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, IngresoAlmacenENTITY, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoEmpresaDTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoStockStockPersonalDTO, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|