@athenna/http 4.37.0 → 4.38.0
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 +12 -12
- package/src/debug/index.d.ts +0 -1
- package/src/server/ServerImpl.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@athenna/http",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.38.0",
|
|
4
4
|
"description": "The Athenna Http server. Built on top of fastify.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "João Lenon <lenon@athenna.io>",
|
|
@@ -74,21 +74,21 @@
|
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@athenna/artisan": "^4.45.0",
|
|
77
|
-
"@athenna/common": "^4.
|
|
78
|
-
"@athenna/config": "^4.
|
|
79
|
-
"@athenna/ioc": "^4.
|
|
80
|
-
"@athenna/logger": "^4.
|
|
81
|
-
"@athenna/test": "^4.
|
|
77
|
+
"@athenna/common": "^4.44.0",
|
|
78
|
+
"@athenna/config": "^4.24.0",
|
|
79
|
+
"@athenna/ioc": "^4.24.0",
|
|
80
|
+
"@athenna/logger": "^4.25.0",
|
|
81
|
+
"@athenna/test": "^4.28.0",
|
|
82
82
|
"@athenna/tsconfig": "^4.16.0",
|
|
83
|
-
"@athenna/view": "^4.
|
|
83
|
+
"@athenna/view": "^4.27.0",
|
|
84
84
|
"@fastify/cors": "^8.5.0",
|
|
85
85
|
"@fastify/helmet": "^11.1.1",
|
|
86
86
|
"@fastify/rate-limit": "^8.1.1",
|
|
87
87
|
"@fastify/static": "^7.0.4",
|
|
88
|
-
"@fastify/swagger": "^8.
|
|
89
|
-
"@fastify/swagger-ui": "^3.
|
|
90
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
91
|
-
"@typescript-eslint/parser": "^7.
|
|
88
|
+
"@fastify/swagger": "^8.15.0",
|
|
89
|
+
"@fastify/swagger-ui": "^3.1.0",
|
|
90
|
+
"@typescript-eslint/eslint-plugin": "^7.17.0",
|
|
91
|
+
"@typescript-eslint/parser": "^7.17.0",
|
|
92
92
|
"autocannon": "^7.15.0",
|
|
93
93
|
"commitizen": "^4.3.0",
|
|
94
94
|
"cz-conventional-changelog": "^3.3.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"eslint-plugin-import": "^2.29.1",
|
|
99
99
|
"eslint-plugin-n": "^15.7.0",
|
|
100
100
|
"eslint-plugin-prettier": "^4.2.1",
|
|
101
|
-
"eslint-plugin-promise": "^6.
|
|
101
|
+
"eslint-plugin-promise": "^6.6.0",
|
|
102
102
|
"foreground-child": "^2.0.0",
|
|
103
103
|
"husky": "^3.1.0",
|
|
104
104
|
"lint-staged": "^12.5.0",
|
package/src/debug/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
* For the full copyright and license information, please view the LICENSE
|
|
7
7
|
* file that was distributed with this source code.
|
|
8
8
|
*/
|
|
9
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
10
9
|
import type { InjectOptions, FastifyInstance, PrintRoutesOptions, FastifyListenOptions, FastifyServerOptions, LightMyRequestChain, LightMyRequestResponse } from 'fastify';
|
|
11
10
|
import type { RouteJson, ErrorHandler, RequestHandler, InterceptHandler, TerminateHandler, SwaggerDocument } from '#src/types';
|
|
12
11
|
import type { AddressInfo } from 'node:net';
|