sigo-entities 1.2.121 → 1.2.123
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6798,7 +6798,8 @@ declare enum StateFibramas {
|
|
|
6798
6798
|
}
|
|
6799
6799
|
declare enum StateServiceFibramas {
|
|
6800
6800
|
ACTIVO = "ACTIVO",
|
|
6801
|
-
PENDIENTE = "POR INSTALAR"
|
|
6801
|
+
PENDIENTE = "POR INSTALAR",
|
|
6802
|
+
CORTADO = "CORTADO"
|
|
6802
6803
|
}
|
|
6803
6804
|
|
|
6804
6805
|
declare class MaterialesFibramasDBDTO {
|
package/dist/index.d.ts
CHANGED
|
@@ -6798,7 +6798,8 @@ declare enum StateFibramas {
|
|
|
6798
6798
|
}
|
|
6799
6799
|
declare enum StateServiceFibramas {
|
|
6800
6800
|
ACTIVO = "ACTIVO",
|
|
6801
|
-
PENDIENTE = "POR INSTALAR"
|
|
6801
|
+
PENDIENTE = "POR INSTALAR",
|
|
6802
|
+
CORTADO = "CORTADO"
|
|
6802
6803
|
}
|
|
6803
6804
|
|
|
6804
6805
|
declare class MaterialesFibramasDBDTO {
|
package/dist/index.js
CHANGED
|
@@ -2236,14 +2236,14 @@ __decorateClass([
|
|
|
2236
2236
|
(0, import_class_transformer44.Transform)(({ value }) => isNaN(Number(value)) ? value : Number(value)),
|
|
2237
2237
|
(0, import_class_validator45.IsNumber)({}, { message: "debe ser un numero" }),
|
|
2238
2238
|
(0, import_class_validator45.IsNotEmpty)({ message: "es requerido" }),
|
|
2239
|
-
(0, import_class_validator45.Min)(
|
|
2239
|
+
(0, import_class_validator45.Min)(0.01, { message: "el valor m\xEDnimo es 0.01" })
|
|
2240
2240
|
], DetalleDTO.prototype, "Cantidad", 2);
|
|
2241
2241
|
__decorateClass([
|
|
2242
2242
|
(0, import_class_transformer44.Expose)(),
|
|
2243
2243
|
(0, import_class_transformer44.Transform)(({ value }) => isNaN(Number(value)) ? value : Number(value)),
|
|
2244
2244
|
(0, import_class_validator45.IsNumber)({}, { message: "debe ser un numero" }),
|
|
2245
2245
|
(0, import_class_validator45.IsNotEmpty)({ message: "es requerido" }),
|
|
2246
|
-
(0, import_class_validator45.Min)(
|
|
2246
|
+
(0, import_class_validator45.Min)(0.01, { message: "el valor m\xEDnimo es 0.01" })
|
|
2247
2247
|
], DetalleDTO.prototype, "CantidadRecepcion", 2);
|
|
2248
2248
|
__decorateClass([
|
|
2249
2249
|
(0, import_class_transformer44.Expose)(),
|
|
@@ -36145,6 +36145,7 @@ var StateFibramas = /* @__PURE__ */ ((StateFibramas2) => {
|
|
|
36145
36145
|
var StateServiceFibramas = /* @__PURE__ */ ((StateServiceFibramas2) => {
|
|
36146
36146
|
StateServiceFibramas2["ACTIVO"] = "ACTIVO";
|
|
36147
36147
|
StateServiceFibramas2["PENDIENTE"] = "POR INSTALAR";
|
|
36148
|
+
StateServiceFibramas2["CORTADO"] = "CORTADO";
|
|
36148
36149
|
return StateServiceFibramas2;
|
|
36149
36150
|
})(StateServiceFibramas || {});
|
|
36150
36151
|
|
package/dist/index.mjs
CHANGED
|
@@ -1634,14 +1634,14 @@ __decorateClass([
|
|
|
1634
1634
|
Transform4(({ value }) => isNaN(Number(value)) ? value : Number(value)),
|
|
1635
1635
|
IsNumber25({}, { message: "debe ser un numero" }),
|
|
1636
1636
|
IsNotEmpty33({ message: "es requerido" }),
|
|
1637
|
-
Min23(
|
|
1637
|
+
Min23(0.01, { message: "el valor m\xEDnimo es 0.01" })
|
|
1638
1638
|
], DetalleDTO.prototype, "Cantidad", 2);
|
|
1639
1639
|
__decorateClass([
|
|
1640
1640
|
Expose42(),
|
|
1641
1641
|
Transform4(({ value }) => isNaN(Number(value)) ? value : Number(value)),
|
|
1642
1642
|
IsNumber25({}, { message: "debe ser un numero" }),
|
|
1643
1643
|
IsNotEmpty33({ message: "es requerido" }),
|
|
1644
|
-
Min23(
|
|
1644
|
+
Min23(0.01, { message: "el valor m\xEDnimo es 0.01" })
|
|
1645
1645
|
], DetalleDTO.prototype, "CantidadRecepcion", 2);
|
|
1646
1646
|
__decorateClass([
|
|
1647
1647
|
Expose42(),
|
|
@@ -35773,6 +35773,7 @@ var StateFibramas = /* @__PURE__ */ ((StateFibramas2) => {
|
|
|
35773
35773
|
var StateServiceFibramas = /* @__PURE__ */ ((StateServiceFibramas2) => {
|
|
35774
35774
|
StateServiceFibramas2["ACTIVO"] = "ACTIVO";
|
|
35775
35775
|
StateServiceFibramas2["PENDIENTE"] = "POR INSTALAR";
|
|
35776
|
+
StateServiceFibramas2["CORTADO"] = "CORTADO";
|
|
35776
35777
|
return StateServiceFibramas2;
|
|
35777
35778
|
})(StateServiceFibramas || {});
|
|
35778
35779
|
|