@athenna/http 1.6.5 → 1.6.7

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": "@athenna/http",
3
- "version": "1.6.5",
3
+ "version": "1.6.7",
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,9 +54,9 @@
54
54
  "#tests/*": "./tests/*.js"
55
55
  },
56
56
  "dependencies": {
57
- "@athenna/artisan": "1.4.7",
57
+ "@athenna/artisan": "1.4.9",
58
58
  "@athenna/ioc": "1.2.4",
59
- "@athenna/logger": "1.3.0",
59
+ "@athenna/logger": "1.3.1",
60
60
  "@secjs/utils": "1.9.9",
61
61
  "fastify": "3.27.4",
62
62
  "fastify-cors": "6.0.3",
@@ -1,7 +1,7 @@
1
1
  import { join } from 'node:path'
2
2
  import { Folder, Module } from '@secjs/utils'
3
3
 
4
- export class HttpCommandsLoader {
4
+ export class HttpLoader {
5
5
  /**
6
6
  * Return all commands from http package.
7
7
  *
package/src/index.d.ts CHANGED
@@ -579,7 +579,7 @@ export interface ResponseContract {
579
579
  getFastifyResponse(): FastifyReply
580
580
  }
581
581
 
582
- export class HttpCommandsLoader {
582
+ export class HttpLoader {
583
583
  /**
584
584
  * Return all commands from http package.
585
585
  *
package/src/index.js CHANGED
@@ -22,7 +22,8 @@ export * from './Handlers/HttpExceptionHandler.js'
22
22
  export * from './Commands/Route/List.js'
23
23
  export * from './Commands/Make/Controller.js'
24
24
  export * from './Commands/Make/Middleware.js'
25
- export * from './Helpers/HttpCommandsLoader.js'
25
+
26
+ export * from './Helpers/HttpLoader.js'
26
27
 
27
28
  export * from './Exceptions/BadGatewayException.js'
28
29
  export * from './Exceptions/BadRequestException.js'