sigo-entities 1.2.415 → 1.2.416
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 +1 -0
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -49166,6 +49166,7 @@ __decorateClass([
|
|
|
49166
49166
|
__decorateClass([
|
|
49167
49167
|
(0, import_class_transformer777.Expose)(),
|
|
49168
49168
|
(0, import_class_validator754.IsDefined)({ message: "El campo quantity es obligatorio" }),
|
|
49169
|
+
(0, import_class_transformer777.Type)(() => Number),
|
|
49169
49170
|
(0, import_class_validator754.IsNumber)(),
|
|
49170
49171
|
(0, import_class_validator754.Min)(1, { message: "La cantidad minima es $constraint1" })
|
|
49171
49172
|
], MaterialesBantelDTO.prototype, "cantidad", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -48555,7 +48555,7 @@ import {
|
|
|
48555
48555
|
import "reflect-metadata";
|
|
48556
48556
|
|
|
48557
48557
|
// src/operativa/procesos/bantel/shared/dto/ubicacion-bantel-dto.ts
|
|
48558
|
-
import { Expose as Expose750 } from "class-transformer";
|
|
48558
|
+
import { Expose as Expose750, Type as Type471 } from "class-transformer";
|
|
48559
48559
|
import {
|
|
48560
48560
|
IsDefined as IsDefined255,
|
|
48561
48561
|
IsString as IsString620,
|
|
@@ -48660,6 +48660,7 @@ __decorateClass([
|
|
|
48660
48660
|
__decorateClass([
|
|
48661
48661
|
Expose750(),
|
|
48662
48662
|
IsDefined255({ message: "El campo quantity es obligatorio" }),
|
|
48663
|
+
Type471(() => Number),
|
|
48663
48664
|
IsNumber492(),
|
|
48664
48665
|
Min336(1, { message: "La cantidad minima es $constraint1" })
|
|
48665
48666
|
], MaterialesBantelDTO.prototype, "cantidad", 2);
|