sigo-entities 1.2.355 → 1.2.356
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
|
@@ -2606,13 +2606,13 @@ __decorateClass([
|
|
|
2606
2606
|
__decorateClass([
|
|
2607
2607
|
(0, import_class_validator46.IsString)({ message: "debe ser un texto" }),
|
|
2608
2608
|
(0, import_class_validator46.IsNotEmpty)({ message: "es requerido" }),
|
|
2609
|
-
(0, import_class_validator46.Length)(1,
|
|
2609
|
+
(0, import_class_validator46.Length)(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
2610
2610
|
(0, import_class_transformer48.Expose)()
|
|
2611
2611
|
], DetalleDTO.prototype, "CodigoBusqueda", 2);
|
|
2612
2612
|
__decorateClass([
|
|
2613
2613
|
(0, import_class_validator46.IsString)({ message: "debe ser un texto" }),
|
|
2614
2614
|
(0, import_class_validator46.IsNotEmpty)({ message: "es requerido" }),
|
|
2615
|
-
(0, import_class_validator46.Length)(1,
|
|
2615
|
+
(0, import_class_validator46.Length)(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
2616
2616
|
(0, import_class_transformer48.Expose)()
|
|
2617
2617
|
], DetalleDTO.prototype, "CodigoLlave", 2);
|
|
2618
2618
|
__decorateClass([
|
package/dist/index.mjs
CHANGED
|
@@ -1791,13 +1791,13 @@ __decorateClass([
|
|
|
1791
1791
|
__decorateClass([
|
|
1792
1792
|
IsString35({ message: "debe ser un texto" }),
|
|
1793
1793
|
IsNotEmpty34({ message: "es requerido" }),
|
|
1794
|
-
Length28(1,
|
|
1794
|
+
Length28(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
1795
1795
|
Expose43()
|
|
1796
1796
|
], DetalleDTO.prototype, "CodigoBusqueda", 2);
|
|
1797
1797
|
__decorateClass([
|
|
1798
1798
|
IsString35({ message: "debe ser un texto" }),
|
|
1799
1799
|
IsNotEmpty34({ message: "es requerido" }),
|
|
1800
|
-
Length28(1,
|
|
1800
|
+
Length28(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
1801
1801
|
Expose43()
|
|
1802
1802
|
], DetalleDTO.prototype, "CodigoLlave", 2);
|
|
1803
1803
|
__decorateClass([
|