sigo-entities 1.0.36 → 1.0.37
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 +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +5322 -5289
- package/dist/index.mjs +2822 -2789
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2259,7 +2259,8 @@ declare class DetalleCubicajeDTO {
|
|
|
2259
2259
|
declare enum OrigenCUB {
|
|
2260
2260
|
CREATE_MANUAL = "CREATE MANUAL",
|
|
2261
2261
|
CREADO_POR_WORK_PROYECT = "CREADO POR WORK PROYECT",
|
|
2262
|
-
SIN_ORIGEN = "SIN_ORIGEN"
|
|
2262
|
+
SIN_ORIGEN = "SIN_ORIGEN",
|
|
2263
|
+
WEB_SCRAPING = "WEB_SCRAPING"
|
|
2263
2264
|
}
|
|
2264
2265
|
declare class CubicacionENTITY {
|
|
2265
2266
|
ID_Cubicacion: number;
|
|
@@ -2310,6 +2311,11 @@ declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
|
2310
2311
|
}
|
|
2311
2312
|
|
|
2312
2313
|
declare class MaterialCubicacionPeruDTO {
|
|
2314
|
+
Codigo: string;
|
|
2315
|
+
Descripcion: string;
|
|
2316
|
+
CantidadIngresada: number;
|
|
2317
|
+
CantidadFinal: number;
|
|
2318
|
+
CostoMaterial: number;
|
|
2313
2319
|
}
|
|
2314
2320
|
|
|
2315
2321
|
declare class CubicacionPeru9112ENTITY extends CubicacionENTITY {
|
package/dist/index.d.ts
CHANGED
|
@@ -2259,7 +2259,8 @@ declare class DetalleCubicajeDTO {
|
|
|
2259
2259
|
declare enum OrigenCUB {
|
|
2260
2260
|
CREATE_MANUAL = "CREATE MANUAL",
|
|
2261
2261
|
CREADO_POR_WORK_PROYECT = "CREADO POR WORK PROYECT",
|
|
2262
|
-
SIN_ORIGEN = "SIN_ORIGEN"
|
|
2262
|
+
SIN_ORIGEN = "SIN_ORIGEN",
|
|
2263
|
+
WEB_SCRAPING = "WEB_SCRAPING"
|
|
2263
2264
|
}
|
|
2264
2265
|
declare class CubicacionENTITY {
|
|
2265
2266
|
ID_Cubicacion: number;
|
|
@@ -2310,6 +2311,11 @@ declare class CabeceraCubicajePeruDTO extends CabeceraCubicajeDTO {
|
|
|
2310
2311
|
}
|
|
2311
2312
|
|
|
2312
2313
|
declare class MaterialCubicacionPeruDTO {
|
|
2314
|
+
Codigo: string;
|
|
2315
|
+
Descripcion: string;
|
|
2316
|
+
CantidadIngresada: number;
|
|
2317
|
+
CantidadFinal: number;
|
|
2318
|
+
CostoMaterial: number;
|
|
2313
2319
|
}
|
|
2314
2320
|
|
|
2315
2321
|
declare class CubicacionPeru9112ENTITY extends CubicacionENTITY {
|