@athenna/http 1.8.5 → 1.8.6

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/index.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenna/http",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
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>",
@@ -54,11 +54,11 @@
54
54
  "#tests/*": "./tests/*.js"
55
55
  },
56
56
  "dependencies": {
57
- "@athenna/artisan": "1.6.3",
57
+ "@athenna/artisan": "1.6.4",
58
58
  "@athenna/common": "1.0.2",
59
59
  "@athenna/config": "1.2.2",
60
- "@athenna/ioc": "1.3.1",
61
- "@athenna/logger": "1.4.0",
60
+ "@athenna/ioc": "1.3.2",
61
+ "@athenna/logger": "1.4.1",
62
62
  "@fastify/cors": "8.1.1",
63
63
  "@fastify/helmet": "10.0.2",
64
64
  "@fastify/rate-limit": "7.5.0",
package/src/index.d.ts CHANGED
@@ -14,8 +14,8 @@ import { FastifyHelmetOptions } from '@fastify/helmet'
14
14
  import { FastifyReply, FastifyRequest, RouteOptions } from 'fastify'
15
15
  import { RateLimitOptions } from '@fastify/rate-limit'
16
16
 
17
- export const Server: Facade & Http
18
- export const Route: Facade & Router.Router
17
+ export const Server: typeof Facade & Http
18
+ export const Route: typeof Facade & Router.Router
19
19
 
20
20
  interface FastifySwaggerSchema {
21
21
  hide?: boolean