@nestjs/platform-fastify 10.1.0 → 10.1.2

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
@@ -85,7 +85,7 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors
85
85
 
86
86
  #### Silver Sponsors
87
87
 
88
- <table style="text-align:center;"><tr><td>
88
+ <table style="text-align:center;"><tr>
89
89
  <td><a href="https://n.inc" target="_blank"><img src="https://nestjs.com/img/n-inc-logo.svg" width="120" valign="middle" /></td></tr>
90
90
  </table>
91
91
 
@@ -63,7 +63,7 @@ export interface NestFastifyApplication<TServer extends RawServerBase = RawServe
63
63
  * Starts the application.
64
64
  * @returns A Promise that, when resolved, is a reference to the underlying HttpServer.
65
65
  */
66
- listen(port: number | string, callback?: (err: Error, address: string) => void): Promise<any>;
67
- listen(port: number | string, address: string, callback?: (err: Error, address: string) => void): Promise<any>;
68
- listen(port: number | string, address: string, backlog: number, callback?: (err: Error, address: string) => void): Promise<any>;
66
+ listen(port: number | string, callback?: (err: Error, address: string) => void): Promise<TServer>;
67
+ listen(port: number | string, address: string, callback?: (err: Error, address: string) => void): Promise<TServer>;
68
+ listen(port: number | string, address: string, backlog: number, callback?: (err: Error, address: string) => void): Promise<TServer>;
69
69
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/platform-fastify",
3
- "version": "10.1.0",
3
+ "version": "10.1.2",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@platform-fastify)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "license": "MIT",
@@ -21,10 +21,10 @@
21
21
  "@fastify/cors": "8.3.0",
22
22
  "@fastify/formbody": "7.4.0",
23
23
  "@fastify/middie": "8.3.0",
24
- "fastify": "4.19.2",
24
+ "fastify": "4.20.0",
25
25
  "light-my-request": "5.10.0",
26
26
  "path-to-regexp": "3.2.0",
27
- "tslib": "2.6.0"
27
+ "tslib": "2.6.1"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@fastify/static": "^6.0.0",