sigo-entities 1.2.257 → 1.2.258
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
|
@@ -1374,7 +1374,7 @@ var BitacoraDTO = class {
|
|
|
1374
1374
|
};
|
|
1375
1375
|
__decorateClass([
|
|
1376
1376
|
(0, import_class_validator20.IsString)({ message: "debe ser un texto" }),
|
|
1377
|
-
(0, import_class_validator20.Length)(0,
|
|
1377
|
+
(0, import_class_validator20.Length)(0, 300, { message: "debe tener entre 0 y 300 caracteres" }),
|
|
1378
1378
|
(0, import_class_transformer22.Expose)()
|
|
1379
1379
|
], BitacoraDTO.prototype, "Action", 2);
|
|
1380
1380
|
__decorateClass([
|
|
@@ -1390,7 +1390,7 @@ __decorateClass([
|
|
|
1390
1390
|
], BitacoraDTO.prototype, "Usuario", 2);
|
|
1391
1391
|
__decorateClass([
|
|
1392
1392
|
(0, import_class_validator20.IsString)({ message: "debe ser un texto" }),
|
|
1393
|
-
(0, import_class_validator20.Length)(0,
|
|
1393
|
+
(0, import_class_validator20.Length)(0, 300, { message: "debe tener entre 0 y 300 caracteres" }),
|
|
1394
1394
|
(0, import_class_transformer22.Expose)()
|
|
1395
1395
|
], BitacoraDTO.prototype, "Description", 2);
|
|
1396
1396
|
|
package/dist/index.mjs
CHANGED
|
@@ -716,7 +716,7 @@ var BitacoraDTO = class {
|
|
|
716
716
|
};
|
|
717
717
|
__decorateClass([
|
|
718
718
|
IsString13({ message: "debe ser un texto" }),
|
|
719
|
-
Length11(0,
|
|
719
|
+
Length11(0, 300, { message: "debe tener entre 0 y 300 caracteres" }),
|
|
720
720
|
Expose18()
|
|
721
721
|
], BitacoraDTO.prototype, "Action", 2);
|
|
722
722
|
__decorateClass([
|
|
@@ -732,7 +732,7 @@ __decorateClass([
|
|
|
732
732
|
], BitacoraDTO.prototype, "Usuario", 2);
|
|
733
733
|
__decorateClass([
|
|
734
734
|
IsString13({ message: "debe ser un texto" }),
|
|
735
|
-
Length11(0,
|
|
735
|
+
Length11(0, 300, { message: "debe tener entre 0 y 300 caracteres" }),
|
|
736
736
|
Expose18()
|
|
737
737
|
], BitacoraDTO.prototype, "Description", 2);
|
|
738
738
|
|