sigo-entities 0.0.29 → 0.0.30
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -416,7 +416,7 @@ __decorateClass([
|
|
|
416
416
|
(0, import_class_transformer12.Expose)(),
|
|
417
417
|
(0, import_class_validator12.IsString)({ message: "debe ser un texto" }),
|
|
418
418
|
(0, import_class_validator12.IsNotEmpty)({ message: "es requerido" }),
|
|
419
|
-
(0, import_class_validator12.Length)(1,
|
|
419
|
+
(0, import_class_validator12.Length)(1, 150, { message: "debe tener entre 1 y 150 caracteres" })
|
|
420
420
|
], EmpresaLogisticaDTO.prototype, "RazonSocial", 2);
|
|
421
421
|
|
|
422
422
|
// src/shared/dto/estado-dto.ts
|
package/dist/index.mjs
CHANGED
|
@@ -332,7 +332,7 @@ __decorateClass([
|
|
|
332
332
|
Expose11(),
|
|
333
333
|
IsString10({ message: "debe ser un texto" }),
|
|
334
334
|
IsNotEmpty11({ message: "es requerido" }),
|
|
335
|
-
Length10(1,
|
|
335
|
+
Length10(1, 150, { message: "debe tener entre 1 y 150 caracteres" })
|
|
336
336
|
], EmpresaLogisticaDTO.prototype, "RazonSocial", 2);
|
|
337
337
|
|
|
338
338
|
// src/shared/dto/estado-dto.ts
|