sigo-entities 0.0.292 → 0.0.293

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 CHANGED
@@ -368,6 +368,7 @@ __export(src_exports, {
368
368
  validateArrayBody: () => validateArrayBody
369
369
  });
370
370
  module.exports = __toCommonJS(src_exports);
371
+ var import_reflect_metadata = require("reflect-metadata");
371
372
 
372
373
  // src/administracion/mail structure/shared/dto/destinatario-dto.ts
373
374
  var import_class_transformer = require("class-transformer");
package/dist/index.mjs CHANGED
@@ -9,6 +9,9 @@ var __decorateClass = (decorators, target, key, kind) => {
9
9
  return result;
10
10
  };
11
11
 
12
+ // src/index.ts
13
+ import "reflect-metadata";
14
+
12
15
  // src/administracion/mail structure/shared/dto/destinatario-dto.ts
13
16
  import { Expose } from "class-transformer";
14
17
  import { IsEmail, IsNotEmpty, IsString, Length } from "class-validator";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigo-entities",
3
- "version": "0.0.292",
3
+ "version": "0.0.293",
4
4
  "description": "Desarrollo de modelos de datos SIGO",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25,5 +25,8 @@
25
25
  "dependencies": {
26
26
  "class-transformer": "^0.5.1",
27
27
  "class-validator": "^0.14.1"
28
+ },
29
+ "peerDependencies": {
30
+ "reflect-metadata": "^0.2.2"
28
31
  }
29
- }
32
+ }