sigo-entities 0.0.170 → 0.0.171
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -11394,6 +11394,7 @@ var DataAdicionalDTO = class {
|
|
|
11394
11394
|
col = "";
|
|
11395
11395
|
operacion = "consultar" /* CONSULTAR */;
|
|
11396
11396
|
fecha = /* @__PURE__ */ new Date();
|
|
11397
|
+
localName = "";
|
|
11397
11398
|
};
|
|
11398
11399
|
__decorateClass([
|
|
11399
11400
|
(0, import_class_validator195.IsString)({ message: "debe ser un texto" }),
|
|
@@ -11415,6 +11416,11 @@ __decorateClass([
|
|
|
11415
11416
|
(0, import_class_validator195.IsNotEmpty)({ message: "es requerido" }),
|
|
11416
11417
|
(0, import_class_transformer195.Expose)()
|
|
11417
11418
|
], DataAdicionalDTO.prototype, "fecha", 2);
|
|
11419
|
+
__decorateClass([
|
|
11420
|
+
(0, import_class_validator195.IsString)({ message: "debe ser un texto" }),
|
|
11421
|
+
(0, import_class_validator195.Length)(0, 150, { message: "debe tener entre 0 y 150 caracteres" }),
|
|
11422
|
+
(0, import_class_transformer195.Expose)()
|
|
11423
|
+
], DataAdicionalDTO.prototype, "localName", 2);
|
|
11418
11424
|
|
|
11419
11425
|
// src/configuracion/notificaciones/shared/index.ts
|
|
11420
11426
|
var import_class_transformer196 = require("class-transformer");
|
package/dist/index.mjs
CHANGED
|
@@ -11194,6 +11194,7 @@ var DataAdicionalDTO = class {
|
|
|
11194
11194
|
col = "";
|
|
11195
11195
|
operacion = "consultar" /* CONSULTAR */;
|
|
11196
11196
|
fecha = /* @__PURE__ */ new Date();
|
|
11197
|
+
localName = "";
|
|
11197
11198
|
};
|
|
11198
11199
|
__decorateClass([
|
|
11199
11200
|
IsString170({ message: "debe ser un texto" }),
|
|
@@ -11215,6 +11216,11 @@ __decorateClass([
|
|
|
11215
11216
|
IsNotEmpty186({ message: "es requerido" }),
|
|
11216
11217
|
Expose194()
|
|
11217
11218
|
], DataAdicionalDTO.prototype, "fecha", 2);
|
|
11219
|
+
__decorateClass([
|
|
11220
|
+
IsString170({ message: "debe ser un texto" }),
|
|
11221
|
+
Length152(0, 150, { message: "debe tener entre 0 y 150 caracteres" }),
|
|
11222
|
+
Expose194()
|
|
11223
|
+
], DataAdicionalDTO.prototype, "localName", 2);
|
|
11218
11224
|
|
|
11219
11225
|
// src/configuracion/notificaciones/shared/index.ts
|
|
11220
11226
|
import { Expose as Expose195, Transform as Transform2, Type as Type138 } from "class-transformer";
|