@vercube/core 0.0.2 → 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.
- package/dist/index.d.mts +1193 -0
- package/dist/index.mjs +196 -191
- package/package.json +8 -23
- package/dist/Common/App.d.ts +0 -65
- package/dist/Common/Container.d.ts +0 -8
- package/dist/Common/CreateApp.d.ts +0 -8
- package/dist/Config/Config.d.ts +0 -7
- package/dist/Config/DefaultConfig.d.ts +0 -6
- package/dist/Config/Loader.d.ts +0 -7
- package/dist/Decorators/Hooks/Listen.d.ts +0 -9
- package/dist/Decorators/Http/Body.d.ts +0 -15
- package/dist/Decorators/Http/Connect.d.ts +0 -10
- package/dist/Decorators/Http/Controller.d.ts +0 -10
- package/dist/Decorators/Http/Delete.d.ts +0 -10
- package/dist/Decorators/Http/Get.d.ts +0 -10
- package/dist/Decorators/Http/Head.d.ts +0 -10
- package/dist/Decorators/Http/Header.d.ts +0 -11
- package/dist/Decorators/Http/Headers.d.ts +0 -9
- package/dist/Decorators/Http/Middleware.d.ts +0 -27
- package/dist/Decorators/Http/MultipartFormData.d.ts +0 -15
- package/dist/Decorators/Http/Options.d.ts +0 -10
- package/dist/Decorators/Http/Param.d.ts +0 -12
- package/dist/Decorators/Http/Patch.d.ts +0 -10
- package/dist/Decorators/Http/Post.d.ts +0 -10
- package/dist/Decorators/Http/Put.d.ts +0 -10
- package/dist/Decorators/Http/QueryParam.d.ts +0 -16
- package/dist/Decorators/Http/QueryParams.d.ts +0 -15
- package/dist/Decorators/Http/Redirect.d.ts +0 -13
- package/dist/Decorators/Http/Request.d.ts +0 -9
- package/dist/Decorators/Http/Response.d.ts +0 -9
- package/dist/Decorators/Http/Session.d.ts +0 -9
- package/dist/Decorators/Http/SetHeader.d.ts +0 -7
- package/dist/Decorators/Http/Status.d.ts +0 -11
- package/dist/Decorators/Http/Trace.d.ts +0 -10
- package/dist/Errors/Http/BadRequestError.d.ts +0 -17
- package/dist/Errors/Http/ForbiddenError.d.ts +0 -17
- package/dist/Errors/Http/InternalServerError.d.ts +0 -17
- package/dist/Errors/Http/MethodNotAllowedError.d.ts +0 -17
- package/dist/Errors/Http/NotAcceptableError.d.ts +0 -17
- package/dist/Errors/Http/NotFoundError.d.ts +0 -17
- package/dist/Errors/Http/UnauthorizedError.d.ts +0 -17
- package/dist/Errors/HttpError.d.ts +0 -17
- package/dist/Hooks/Router/RouterAfterInitHook.d.ts +0 -1
- package/dist/Hooks/Router/RouterBeforeInitHook.d.ts +0 -1
- package/dist/Middleware/ValidationMiddleware.d.ts +0 -23
- package/dist/Resolvers/Body.d.ts +0 -22
- package/dist/Resolvers/Headers.d.ts +0 -14
- package/dist/Resolvers/Query.d.ts +0 -14
- package/dist/Resolvers/RouterParam.d.ts +0 -13
- package/dist/Services/Config/RuntimeConfig.d.ts +0 -22
- package/dist/Services/ErrorHandler/DefaultErrorHandlerProvider.d.ts +0 -16
- package/dist/Services/ErrorHandler/ErrorHandlerProvider.d.ts +0 -16
- package/dist/Services/Hooks/HooksService.d.ts +0 -76
- package/dist/Services/HttpServer/HttpServer.d.ts +0 -57
- package/dist/Services/Metadata/MetadataResolver.d.ts +0 -42
- package/dist/Services/Middleware/BaseMiddleware.d.ts +0 -31
- package/dist/Services/Middleware/GlobalMiddlewareRegistry.d.ts +0 -31
- package/dist/Services/Plugins/BasePlugin.d.ts +0 -16
- package/dist/Services/Plugins/PluginsRegistry.d.ts +0 -26
- package/dist/Services/Router/RequestHandler.d.ts +0 -63
- package/dist/Services/Router/Router.d.ts +0 -40
- package/dist/Services/Router/StaticRequestHandler.d.ts +0 -38
- package/dist/Services/Validation/StandardSchemaValidationProvider.d.ts +0 -17
- package/dist/Services/Validation/ValidationProvider.d.ts +0 -17
- package/dist/Types/CommonTypes.d.ts +0 -6
- package/dist/Types/ConfigTypes.d.ts +0 -124
- package/dist/Types/HooksTypes.d.ts +0 -17
- package/dist/Types/HttpTypes.d.ts +0 -63
- package/dist/Types/MetadataTypes.d.ts +0 -56
- package/dist/Types/RouterTypes.d.ts +0 -37
- package/dist/Types/ValidationTypes.d.ts +0 -6
- package/dist/Utils/InternalUtils.d.ts +0 -5
- package/dist/Utils/Mine.d.ts +0 -3
- package/dist/Utils/Utils.d.ts +0 -22
- package/dist/index.cjs +0 -2693
- package/dist/index.d.ts +0 -51
package/dist/index.d.ts
DELETED
|
@@ -1,51 +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 "./Errors/HttpError.js";
|
|
38
|
-
export * from "./Errors/Http/BadRequestError.js";
|
|
39
|
-
export * from "./Errors/Http/ForbiddenError.js";
|
|
40
|
-
export * from "./Errors/Http/InternalServerError.js";
|
|
41
|
-
export * from "./Errors/Http/MethodNotAllowedError.js";
|
|
42
|
-
export * from "./Errors/Http/NotAcceptableError.js";
|
|
43
|
-
export * from "./Errors/Http/NotFoundError.js";
|
|
44
|
-
export * from "./Errors/Http/UnauthorizedError.js";
|
|
45
|
-
export * from "./Types/CommonTypes.js";
|
|
46
|
-
export * from "./Types/HooksTypes.js";
|
|
47
|
-
export * from "./Types/HttpTypes.js";
|
|
48
|
-
export * from "./Types/MetadataTypes.js";
|
|
49
|
-
export * from "./Types/ConfigTypes.js";
|
|
50
|
-
export * from "./Types/RouterTypes.js";
|
|
51
|
-
export * from "./Utils/Utils.js";
|