sigo-entities 1.2.122 → 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.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
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)(),
|
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(),
|