@nestjs/common 9.4.1 → 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/Readme.md CHANGED
@@ -136,7 +136,8 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors
136
136
  <td align="center" valign="middle"><a href="https://boringowl.io/" target="_blank"><img src="https://nestjs.com/img/boringowl-logo.svg" width="120" valign="middle" /></a></td>
137
137
  <td align="center" valign="middle"><a href="https://www.mobilefactory.jp/" target="_blank"><img src="https://nestjs.com/img/mobilefactory-logo.png" width="100" valign="middle" /></a></td>
138
138
  <td align="center" valign="middle"><a href="https://nordbot.app/" target="_blank"><img src="https://nestjs.com/img/nordbot-logo.png" width="120" valign="middle" /></a></td>
139
- <td align="center" valign="middle"><a href="https://doppio.sh/" target="_blank"><img src="https://nestjs.com/img/dopiosh-logo.png" width="50" valign="middle" /></a></td>
139
+ <td align="center" valign="middle"><a href="https://doppio.sh/" target="_blank"><img src="https://nestjs.com/img/dopiosh-logo.png" width="50" valign="middle" /></a></td></tr><tr>
140
+ <td align="center" valign="middle"><a href="https://www.hingehealth.com/" target="_blank"><img src="https://nestjs.com/img/hinge-health-logo.svg" width="100" valign="middle" /></a></td>
140
141
  </tr></table>
141
142
 
142
143
  ## Backers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/common",
3
- "version": "9.4.1",
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.0",
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;