@nestjs/common 9.4.2 → 9.4.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/common",
3
- "version": "9.4.2",
3
+ "version": "9.4.3",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@common)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "homepage": "https://nestjs.com",
@@ -19,7 +19,7 @@
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
21
  "iterare": "1.2.1",
22
- "tslib": "2.5.2",
22
+ "tslib": "2.5.3",
23
23
  "uid": "2.0.2"
24
24
  },
25
25
  "peerDependencies": {
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ParseEnumPipe = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const index_1 = require("../index");
6
+ const core_1 = require("../decorators/core");
6
7
  const http_error_by_code_util_1 = require("../utils/http-error-by-code.util");
7
8
  /**
8
9
  * Defines the built-in ParseEnum Pipe
@@ -42,8 +43,8 @@ let ParseEnumPipe = class ParseEnumPipe {
42
43
  }
43
44
  };
44
45
  ParseEnumPipe = tslib_1.__decorate([
45
- (0, index_1.Injectable)(),
46
- tslib_1.__param(1, (0, index_1.Optional)()),
46
+ (0, core_1.Injectable)(),
47
+ tslib_1.__param(1, (0, core_1.Optional)()),
47
48
  tslib_1.__metadata("design:paramtypes", [Object, Object])
48
49
  ], ParseEnumPipe);
49
50
  exports.ParseEnumPipe = ParseEnumPipe;