@vercube/core 0.0.3 → 0.0.4

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 (76) hide show
  1. package/dist/index.d.mts +1193 -0
  2. package/dist/index.mjs +175 -174
  3. package/package.json +8 -23
  4. package/dist/Common/App.d.ts +0 -65
  5. package/dist/Common/Container.d.ts +0 -8
  6. package/dist/Common/CreateApp.d.ts +0 -8
  7. package/dist/Config/Config.d.ts +0 -7
  8. package/dist/Config/DefaultConfig.d.ts +0 -6
  9. package/dist/Config/Loader.d.ts +0 -7
  10. package/dist/Decorators/Hooks/Listen.d.ts +0 -9
  11. package/dist/Decorators/Http/Body.d.ts +0 -15
  12. package/dist/Decorators/Http/Connect.d.ts +0 -10
  13. package/dist/Decorators/Http/Controller.d.ts +0 -10
  14. package/dist/Decorators/Http/Delete.d.ts +0 -10
  15. package/dist/Decorators/Http/Get.d.ts +0 -10
  16. package/dist/Decorators/Http/Head.d.ts +0 -10
  17. package/dist/Decorators/Http/Header.d.ts +0 -11
  18. package/dist/Decorators/Http/Headers.d.ts +0 -9
  19. package/dist/Decorators/Http/Middleware.d.ts +0 -27
  20. package/dist/Decorators/Http/MultipartFormData.d.ts +0 -15
  21. package/dist/Decorators/Http/Options.d.ts +0 -10
  22. package/dist/Decorators/Http/Param.d.ts +0 -12
  23. package/dist/Decorators/Http/Patch.d.ts +0 -10
  24. package/dist/Decorators/Http/Post.d.ts +0 -10
  25. package/dist/Decorators/Http/Put.d.ts +0 -10
  26. package/dist/Decorators/Http/QueryParam.d.ts +0 -16
  27. package/dist/Decorators/Http/QueryParams.d.ts +0 -15
  28. package/dist/Decorators/Http/Redirect.d.ts +0 -13
  29. package/dist/Decorators/Http/Request.d.ts +0 -9
  30. package/dist/Decorators/Http/Response.d.ts +0 -9
  31. package/dist/Decorators/Http/Session.d.ts +0 -9
  32. package/dist/Decorators/Http/SetHeader.d.ts +0 -7
  33. package/dist/Decorators/Http/Status.d.ts +0 -11
  34. package/dist/Decorators/Http/Trace.d.ts +0 -10
  35. package/dist/Errors/Http/BadRequestError.d.ts +0 -17
  36. package/dist/Errors/Http/ForbiddenError.d.ts +0 -17
  37. package/dist/Errors/Http/InternalServerError.d.ts +0 -17
  38. package/dist/Errors/Http/MethodNotAllowedError.d.ts +0 -17
  39. package/dist/Errors/Http/NotAcceptableError.d.ts +0 -17
  40. package/dist/Errors/Http/NotFoundError.d.ts +0 -17
  41. package/dist/Errors/Http/UnauthorizedError.d.ts +0 -17
  42. package/dist/Errors/HttpError.d.ts +0 -17
  43. package/dist/Hooks/Router/RouterAfterInitHook.d.ts +0 -1
  44. package/dist/Hooks/Router/RouterBeforeInitHook.d.ts +0 -1
  45. package/dist/Middleware/ValidationMiddleware.d.ts +0 -23
  46. package/dist/Resolvers/Body.d.ts +0 -22
  47. package/dist/Resolvers/Headers.d.ts +0 -14
  48. package/dist/Resolvers/Query.d.ts +0 -14
  49. package/dist/Resolvers/RouterParam.d.ts +0 -13
  50. package/dist/Services/Config/RuntimeConfig.d.ts +0 -22
  51. package/dist/Services/ErrorHandler/DefaultErrorHandlerProvider.d.ts +0 -16
  52. package/dist/Services/ErrorHandler/ErrorHandlerProvider.d.ts +0 -16
  53. package/dist/Services/Hooks/HooksService.d.ts +0 -76
  54. package/dist/Services/HttpServer/HttpServer.d.ts +0 -57
  55. package/dist/Services/Metadata/MetadataResolver.d.ts +0 -42
  56. package/dist/Services/Middleware/BaseMiddleware.d.ts +0 -31
  57. package/dist/Services/Middleware/GlobalMiddlewareRegistry.d.ts +0 -31
  58. package/dist/Services/Plugins/BasePlugin.d.ts +0 -16
  59. package/dist/Services/Plugins/PluginsRegistry.d.ts +0 -26
  60. package/dist/Services/Router/RequestHandler.d.ts +0 -63
  61. package/dist/Services/Router/Router.d.ts +0 -40
  62. package/dist/Services/Router/StaticRequestHandler.d.ts +0 -38
  63. package/dist/Services/Validation/StandardSchemaValidationProvider.d.ts +0 -17
  64. package/dist/Services/Validation/ValidationProvider.d.ts +0 -17
  65. package/dist/Types/CommonTypes.d.ts +0 -7
  66. package/dist/Types/ConfigTypes.d.ts +0 -124
  67. package/dist/Types/HooksTypes.d.ts +0 -17
  68. package/dist/Types/HttpTypes.d.ts +0 -63
  69. package/dist/Types/MetadataTypes.d.ts +0 -56
  70. package/dist/Types/RouterTypes.d.ts +0 -37
  71. package/dist/Types/ValidationTypes.d.ts +0 -6
  72. package/dist/Utils/InternalUtils.d.ts +0 -1
  73. package/dist/Utils/Mine.d.ts +0 -3
  74. package/dist/Utils/Utils.d.ts +0 -22
  75. package/dist/index.cjs +0 -2704
  76. package/dist/index.d.ts +0 -52
package/dist/index.d.ts DELETED
@@ -1,52 +0,0 @@
1
- export * from "./Common/App.js";
2
- export * from "./Common/CreateApp.js";
3
- export * from "./Config/Config.js";
4
- export * from "./Config/Loader.js";
5
- export * from "./Decorators/Http/Body.js";
6
- export * from "./Decorators/Http/Connect.js";
7
- export * from "./Decorators/Http/Controller.js";
8
- export * from "./Decorators/Http/Delete.js";
9
- export * from "./Decorators/Http/Get.js";
10
- export * from "./Decorators/Http/Head.js";
11
- export * from "./Decorators/Http/Header.js";
12
- export * from "./Decorators/Http/Headers.js";
13
- export * from "./Decorators/Http/Options.js";
14
- export * from "./Decorators/Http/Param.js";
15
- export * from "./Decorators/Http/Patch.js";
16
- export * from "./Decorators/Http/Post.js";
17
- export * from "./Decorators/Http/Put.js";
18
- export * from "./Decorators/Http/QueryParam.js";
19
- export * from "./Decorators/Http/QueryParams.js";
20
- export * from "./Decorators/Http/Request.js";
21
- export * from "./Decorators/Http/Response.js";
22
- export * from "./Decorators/Http/Trace.js";
23
- export * from "./Decorators/Http/SetHeader.js";
24
- export * from "./Decorators/Http/Status.js";
25
- export * from "./Decorators/Http/Redirect.js";
26
- export * from "./Decorators/Http/Middleware.js";
27
- export * from "./Decorators/Http/MultipartFormData.js";
28
- export * from "./Decorators/Http/Session.js";
29
- export * from "./Decorators/Hooks/Listen.js";
30
- export * from "./Services/Hooks/HooksService.js";
31
- export * from "./Services/Plugins/BasePlugin.js";
32
- export * from "./Services/Middleware/BaseMiddleware.js";
33
- export * from "./Services/Middleware/GlobalMiddlewareRegistry.js";
34
- export * from "./Services/HttpServer/HttpServer.js";
35
- export * from "./Services/Metadata/MetadataResolver.js";
36
- export * from "./Services/ErrorHandler/ErrorHandlerProvider.js";
37
- export * from "./Services/Router/Router.js";
38
- export * from "./Errors/HttpError.js";
39
- export * from "./Errors/Http/BadRequestError.js";
40
- export * from "./Errors/Http/ForbiddenError.js";
41
- export * from "./Errors/Http/InternalServerError.js";
42
- export * from "./Errors/Http/MethodNotAllowedError.js";
43
- export * from "./Errors/Http/NotAcceptableError.js";
44
- export * from "./Errors/Http/NotFoundError.js";
45
- export * from "./Errors/Http/UnauthorizedError.js";
46
- export * from "./Types/CommonTypes.js";
47
- export * from "./Types/HooksTypes.js";
48
- export * from "./Types/HttpTypes.js";
49
- export * from "./Types/MetadataTypes.js";
50
- export * from "./Types/ConfigTypes.js";
51
- export * from "./Types/RouterTypes.js";
52
- export * from "./Utils/Utils.js";