raiton 0.0.2 → 1.0.0-alpha.2
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/CHANGELOG.md +32 -0
- package/README.md +98 -1
- package/build/bin/index.mjs +6816 -47
- package/build/raiton-1.0.0-alpha.2.tgz +0 -0
- package/package.json +22 -35
- package/source/bin/bootstrapper.ts +15 -0
- package/source/bin/cli-tools.ts +73 -0
- package/source/bin/cli.ts +12 -0
- package/source/bin/index.ts +6 -0
- package/source/commands/artifact.command.ts +28 -0
- package/source/commands/build.command.ts +31 -0
- package/source/commands/develop.command.ts +47 -0
- package/source/commands/grafts.command.ts +27 -0
- package/source/commands/start.command.ts +28 -0
- package/source/core/application.ts +115 -0
- package/source/core/artifacts/artifact.ts +109 -0
- package/source/core/artifacts/artifacts.ts +10 -0
- package/source/core/artifacts/index.ts +1 -0
- package/source/core/artifacts/runner.ts +3 -0
- package/source/core/builder.ts +138 -0
- package/source/core/bytes.util.ts +17 -0
- package/source/core/command.ts +24 -0
- package/source/core/commands.ts +44 -0
- package/source/core/config/config.ts +51 -0
- package/source/core/config/define.ts +13 -0
- package/source/core/config/index.ts +2 -0
- package/source/core/context.ts +33 -0
- package/source/core/controller/builder.ts +38 -0
- package/source/core/controller/compiler.ts +22 -0
- package/source/core/controller/index.ts +3 -0
- package/source/core/controller/metadata.ts +13 -0
- package/source/core/directories.ts +30 -0
- package/source/core/helpers/index.ts +1 -0
- package/source/core/helpers/raiton.ts +3 -0
- package/source/core/hmr.ts +106 -0
- package/source/core/hooks.ts +28 -0
- package/source/core/index.ts +13 -0
- package/source/core/injection/index.ts +1 -0
- package/source/core/injection/injection.ts +157 -0
- package/source/core/middleware/compose.ts +40 -0
- package/source/core/middleware/index.ts +2 -0
- package/source/core/middleware/pipeline.ts +27 -0
- package/source/core/plugins/index.ts +2 -0
- package/source/core/plugins/plugin.ts +8 -0
- package/source/core/plugins/scope.ts +46 -0
- package/source/core/process.util.ts +12 -0
- package/source/core/raiton.ts +21 -0
- package/source/core/router/handler.ts +59 -0
- package/source/core/router/index.ts +4 -0
- package/source/core/router/matcher.ts +51 -0
- package/source/core/router/route.ts +63 -0
- package/source/core/router/router.ts +31 -0
- package/source/core/server.ts +26 -0
- package/source/core/thread.ts +87 -0
- package/source/env.d.ts +3 -0
- package/source/requirements.ts +27 -0
- package/source/sdk/artifacts.ts +55 -0
- package/source/sdk/constants/decorators.constant.ts +7 -0
- package/source/sdk/constants/index.ts +2 -0
- package/source/sdk/constants/microservices.constant.ts +4 -0
- package/source/sdk/controllers.ts +4 -0
- package/source/sdk/data-transfer-object.ts +7 -0
- package/source/sdk/decorators/access-guard.decorator.ts +9 -0
- package/source/sdk/decorators/controllable.decorator.ts +20 -0
- package/source/sdk/decorators/index.ts +5 -0
- package/source/sdk/decorators/injection.decorator.ts +46 -0
- package/source/sdk/decorators/middleware.decorator.ts +15 -0
- package/source/sdk/decorators/parametrable.ts +24 -0
- package/source/sdk/decorators/payload.decorator.ts +77 -0
- package/source/sdk/decorators/routable.decorator.ts +48 -0
- package/source/sdk/encryption.ts +155 -0
- package/source/sdk/enums/encrypted.enum.ts +13 -0
- package/source/sdk/enums/event.message.enum.ts +4 -0
- package/{build/sdk/enums/http-parameters.enum.d.ts → source/sdk/enums/http-parameters.enum.ts} +3 -5
- package/source/sdk/enums/http.enum.ts +10 -0
- package/source/sdk/enums/index.ts +6 -0
- package/{build/sdk/enums/runtime.enum.d.ts → source/sdk/enums/runtime.enum.ts} +2 -4
- package/{build/sdk/enums/timestamp.enum.d.ts → source/sdk/enums/timestamp.enum.ts} +2 -4
- package/source/sdk/env.ts +40 -0
- package/source/sdk/index.ts +6 -0
- package/source/sdk/json.ts +55 -0
- package/source/sdk/plugins/body-parser.plugin.ts +119 -0
- package/source/sdk/plugins/index.ts +2 -0
- package/source/sdk/plugins/security/body-limit.ts +19 -0
- package/source/sdk/plugins/security/cors.ts +44 -0
- package/source/sdk/plugins/security/headers.ts +14 -0
- package/source/sdk/plugins/security/index.ts +13 -0
- package/source/sdk/plugins/security/method-guard.ts +14 -0
- package/source/sdk/plugins/security/rate-limit.ts +42 -0
- package/source/sdk/repositories.ts +14 -0
- package/source/sdk/request.ts +3 -0
- package/source/sdk/responses.ts +45 -0
- package/source/sdk/runtime/bun/server.ts +72 -0
- package/source/sdk/runtime/deno/server.ts +53 -0
- package/source/sdk/runtime/index.ts +47 -0
- package/source/sdk/runtime/node/server.ts +60 -0
- package/source/sdk/runtime/web/server.ts +57 -0
- package/{build/sdk/schemes.d.ts → source/sdk/schemes.ts} +91 -33
- package/source/sdk/services.ts +9 -0
- package/{build/sdk/throwable.d.ts → source/sdk/throwable.ts} +35 -12
- package/source/sdk/utilities/alias-path.util.ts +49 -0
- package/source/sdk/utilities/artifacts.util.ts +62 -0
- package/source/sdk/utilities/callable.util.ts +27 -0
- package/source/sdk/utilities/controller.util.ts +8 -0
- package/source/sdk/utilities/index.ts +7 -0
- package/source/sdk/utilities/json.util.ts +21 -0
- package/source/sdk/utilities/path.util.ts +19 -0
- package/source/sdk/utilities/url.ts +5 -0
- package/source/sdk/utilities/utilities.util.ts +25 -0
- package/source/types/access-guards.ts +4 -0
- package/{build/types/application.d.ts → source/types/application.ts} +23 -7
- package/source/types/artifact.ts +40 -0
- package/source/types/builder.ts +48 -0
- package/source/types/config.ts +7 -0
- package/source/types/controller.ts +34 -0
- package/source/types/contruct.ts +3 -0
- package/source/types/core.ts +28 -0
- package/source/types/data-transfer-object.ts +4 -0
- package/{build/types/directory.d.ts → source/types/directory.ts} +4 -4
- package/source/types/encryption.ts +17 -0
- package/source/types/generic.ts +3 -0
- package/{build/types/hmr.d.ts → source/types/hmr.ts} +19 -5
- package/source/types/http-responses.ts +8 -0
- package/source/types/index.ts +26 -0
- package/source/types/injection.ts +13 -0
- package/source/types/middleware.ts +18 -0
- package/source/types/parseable.ts +7 -0
- package/source/types/plugin.ts +10 -0
- package/source/types/raiton.ts +9 -0
- package/source/types/responses.ts +10 -0
- package/source/types/router.ts +11 -0
- package/source/types/runtime.ts +53 -0
- package/{build/types/scheme.d.ts → source/types/scheme.ts} +33 -8
- package/source/types/server.ts +12 -0
- package/source/types/thread.ts +31 -0
- package/source/types/utilities.ts +4 -0
- package/source/types/values.ts +3 -0
- package/.releaserc.json +0 -45
- package/build/bin/bootstrapper.d.ts +0 -5
- package/build/bin/bootstrapper.mjs +0 -46
- package/build/bin/cli.d.ts +0 -5
- package/build/bin/cli.mjs +0 -6
- package/build/bin/index.d.ts +0 -1
- package/build/chunk-3PWMRP6G.mjs +0 -16
- package/build/chunk-52JR26TI.mjs +0 -29
- package/build/chunk-5LNOA4SK.mjs +0 -16
- package/build/chunk-AUGL35CF.mjs +0 -24
- package/build/chunk-BVILWYAP.mjs +0 -14
- package/build/chunk-BYYJRCB4.mjs +0 -10
- package/build/chunk-FFRJ4AUA.mjs +0 -16
- package/build/chunk-GPJSLV3Q.mjs +0 -50
- package/build/chunk-HVFHDVAH.mjs +0 -20
- package/build/chunk-IOCHNQMF.mjs +0 -13
- package/build/chunk-JATYBWHL.mjs +0 -36
- package/build/chunk-JWNBO7XV.mjs +0 -53
- package/build/chunk-K4IQQ2KF.mjs +0 -55
- package/build/chunk-K4KLOLSO.mjs +0 -645
- package/build/chunk-M2RZZJQR.mjs +0 -27
- package/build/chunk-MLFGBJDV.mjs +0 -12
- package/build/chunk-NB62GSFI.mjs +0 -27
- package/build/chunk-O7R3NJQN.mjs +0 -19
- package/build/chunk-P3IRIFPT.mjs +0 -53
- package/build/chunk-QFSXFOEN.mjs +0 -56
- package/build/chunk-QHCQ4AUA.mjs +0 -14
- package/build/chunk-QI7OFSXB.mjs +0 -37
- package/build/chunk-RVH2YBNU.mjs +0 -111
- package/build/chunk-RXG7754R.mjs +0 -25
- package/build/chunk-S3ONGVNZ.mjs +0 -11
- package/build/chunk-SRR4467I.mjs +0 -29
- package/build/chunk-T6L55AUG.mjs +0 -32
- package/build/chunk-TOJFTPAY.mjs +0 -83
- package/build/chunk-UAPCBU3J.mjs +0 -12
- package/build/chunk-UCHBN3DV.mjs +0 -52
- package/build/chunk-UWM46HLZ.mjs +0 -18
- package/build/chunk-UZFCGVHP.mjs +0 -8
- package/build/chunk-VQINCGLQ.mjs +0 -59
- package/build/chunk-VRL4S7UF.mjs +0 -74
- package/build/chunk-WAWFDMOH.mjs +0 -72
- package/build/chunk-X3JFRRRQ.mjs +0 -45
- package/build/chunk-XFBLELHI.mjs +0 -34
- package/build/chunk-XIGE72LC.mjs +0 -34
- package/build/chunk-XW7EPAD7.mjs +0 -0
- package/build/chunk-YGIZFKLJ.mjs +0 -20
- package/build/chunk-YRVIAORI.mjs +0 -8
- package/build/chunk-YXU5W2CB.mjs +0 -12
- package/build/commands/artifact.command.d.ts +0 -14
- package/build/commands/artifact.command.mjs +0 -59
- package/build/commands/build.command.d.ts +0 -14
- package/build/commands/build.command.mjs +0 -65
- package/build/commands/develop.command.d.ts +0 -13
- package/build/commands/develop.command.mjs +0 -75
- package/build/commands/grafts.command.d.ts +0 -12
- package/build/commands/grafts.command.mjs +0 -58
- package/build/commands/start.command.d.ts +0 -12
- package/build/commands/start.command.mjs +0 -64
- package/build/core/application.d.ts +0 -27
- package/build/core/application.mjs +0 -124
- package/build/core/artifact.d.ts +0 -19
- package/build/core/artifact.mjs +0 -133
- package/build/core/builder.d.ts +0 -35
- package/build/core/builder.mjs +0 -45
- package/build/core/bytes.util.d.ts +0 -6
- package/build/core/bytes.util.mjs +0 -8
- package/build/core/command.d.ts +0 -15
- package/build/core/command.mjs +0 -6
- package/build/core/commands.d.ts +0 -13
- package/build/core/commands.mjs +0 -7
- package/build/core/config.d.ts +0 -10
- package/build/core/config.mjs +0 -7
- package/build/core/context.d.ts +0 -15
- package/build/core/context.mjs +0 -6
- package/build/core/controller/builder.d.ts +0 -10
- package/build/core/controller/builder.mjs +0 -45
- package/build/core/controller/compiler.d.ts +0 -6
- package/build/core/controller/compiler.mjs +0 -45
- package/build/core/controller/index.d.ts +0 -13
- package/build/core/controller/index.mjs +0 -50
- package/build/core/controller/metadata.d.ts +0 -10
- package/build/core/controller/metadata.mjs +0 -6
- package/build/core/directories.d.ts +0 -11
- package/build/core/directories.mjs +0 -8
- package/build/core/hmr.d.ts +0 -22
- package/build/core/hmr.mjs +0 -6
- package/build/core/hooks.d.ts +0 -12
- package/build/core/hooks.mjs +0 -6
- package/build/core/index.d.ts +0 -41
- package/build/core/index.mjs +0 -100
- package/build/core/middleware/compose.d.ts +0 -8
- package/build/core/middleware/compose.mjs +0 -6
- package/build/core/middleware/index.d.ts +0 -6
- package/build/core/middleware/index.mjs +0 -11
- package/build/core/middleware/pipeline.d.ts +0 -14
- package/build/core/middleware/pipeline.mjs +0 -7
- package/build/core/plugins/index.d.ts +0 -14
- package/build/core/plugins/index.mjs +0 -48
- package/build/core/plugins/plugin.d.ts +0 -17
- package/build/core/plugins/plugin.mjs +0 -6
- package/build/core/plugins/scope.d.ts +0 -24
- package/build/core/plugins/scope.mjs +0 -45
- package/build/core/process.util.d.ts +0 -3
- package/build/core/process.util.mjs +0 -6
- package/build/core/raiton.d.ts +0 -20
- package/build/core/raiton.mjs +0 -6
- package/build/core/router/handler.d.ts +0 -10
- package/build/core/router/handler.mjs +0 -45
- package/build/core/router/index.d.ts +0 -12
- package/build/core/router/index.mjs +0 -54
- package/build/core/router/matcher.d.ts +0 -21
- package/build/core/router/matcher.mjs +0 -6
- package/build/core/router/route.d.ts +0 -20
- package/build/core/router/route.mjs +0 -6
- package/build/core/router/router.d.ts +0 -16
- package/build/core/router/router.mjs +0 -8
- package/build/core/thread.d.ts +0 -30
- package/build/core/thread.mjs +0 -45
- package/build/env.d.d.ts +0 -2
- package/build/env.d.mjs +0 -0
- package/build/raiton-0.0.2.tgz +0 -0
- package/build/requirements.d.ts +0 -2
- package/build/requirements.mjs +0 -19
- package/build/sdk/artifacts.d.ts +0 -13
- package/build/sdk/artifacts.mjs +0 -45
- package/build/sdk/constants/decorators.constant.d.ts +0 -11
- package/build/sdk/constants/decorators.constant.mjs +0 -6
- package/build/sdk/constants/index.d.ts +0 -2
- package/build/sdk/constants/index.mjs +0 -11
- package/build/sdk/constants/microservices.constant.d.ts +0 -5
- package/build/sdk/constants/microservices.constant.mjs +0 -6
- package/build/sdk/controllers.d.ts +0 -4
- package/build/sdk/controllers.mjs +0 -6
- package/build/sdk/data-transfer-object.d.ts +0 -7
- package/build/sdk/data-transfer-object.mjs +0 -7
- package/build/sdk/decorators/access-guard.decorator.d.ts +0 -2
- package/build/sdk/decorators/access-guard.decorator.mjs +0 -0
- package/build/sdk/decorators/controllable.d.ts +0 -3
- package/build/sdk/decorators/controllable.mjs +0 -45
- package/build/sdk/decorators/controllers.decorator.d.ts +0 -2
- package/build/sdk/decorators/controllers.decorator.mjs +0 -0
- package/build/sdk/decorators/grafts.decorator.d.ts +0 -2
- package/build/sdk/decorators/grafts.decorator.mjs +0 -0
- package/build/sdk/decorators/index.d.ts +0 -3
- package/build/sdk/decorators/index.mjs +0 -75
- package/build/sdk/decorators/parameters.decorator.d.ts +0 -2
- package/build/sdk/decorators/parameters.decorator.mjs +0 -0
- package/build/sdk/decorators/parametrable.d.ts +0 -9
- package/build/sdk/decorators/parametrable.mjs +0 -57
- package/build/sdk/decorators/payload.decorator.d.ts +0 -2
- package/build/sdk/decorators/payload.decorator.mjs +0 -0
- package/build/sdk/decorators/routable.d.ts +0 -10
- package/build/sdk/decorators/routable.mjs +0 -59
- package/build/sdk/dependency-container.d.ts +0 -19
- package/build/sdk/dependency-container.mjs +0 -46
- package/build/sdk/encryption.d.ts +0 -27
- package/build/sdk/encryption.mjs +0 -141
- package/build/sdk/enums/encrypted.enum.d.ts +0 -15
- package/build/sdk/enums/encrypted.enum.mjs +0 -6
- package/build/sdk/enums/event.message.enum.d.ts +0 -6
- package/build/sdk/enums/event.message.enum.mjs +0 -6
- package/build/sdk/enums/http-parameters.enum.mjs +0 -6
- package/build/sdk/enums/http.enum.d.ts +0 -12
- package/build/sdk/enums/http.enum.mjs +0 -6
- package/build/sdk/enums/index.d.ts +0 -6
- package/build/sdk/enums/index.mjs +0 -27
- package/build/sdk/enums/runtime.enum.mjs +0 -6
- package/build/sdk/enums/timestamp.enum.mjs +0 -6
- package/build/sdk/env.d.ts +0 -6
- package/build/sdk/env.mjs +0 -74
- package/build/sdk/fastify.d.ts +0 -11
- package/build/sdk/fastify.mjs +0 -9
- package/build/sdk/grafts.d.ts +0 -15
- package/build/sdk/grafts.mjs +0 -71
- package/build/sdk/index.d.ts +0 -34
- package/build/sdk/index.mjs +0 -126
- package/build/sdk/json.d.ts +0 -17
- package/build/sdk/json.mjs +0 -87
- package/build/sdk/plugins/body-parser.plugin.d.ts +0 -17
- package/build/sdk/plugins/body-parser.plugin.mjs +0 -7
- package/build/sdk/plugins/index.d.ts +0 -17
- package/build/sdk/plugins/index.mjs +0 -48
- package/build/sdk/plugins/security/body-limit.d.ts +0 -17
- package/build/sdk/plugins/security/body-limit.mjs +0 -45
- package/build/sdk/plugins/security/cors.d.ts +0 -22
- package/build/sdk/plugins/security/cors.mjs +0 -45
- package/build/sdk/plugins/security/headers.d.ts +0 -17
- package/build/sdk/plugins/security/headers.mjs +0 -45
- package/build/sdk/plugins/security/index.d.ts +0 -25
- package/build/sdk/plugins/security/index.mjs +0 -45
- package/build/sdk/plugins/security/method-guard.d.ts +0 -17
- package/build/sdk/plugins/security/method-guard.mjs +0 -45
- package/build/sdk/plugins/security/rate-limit.d.ts +0 -21
- package/build/sdk/plugins/security/rate-limit.mjs +0 -45
- package/build/sdk/repositories.d.ts +0 -7
- package/build/sdk/repositories.mjs +0 -17
- package/build/sdk/request.d.ts +0 -4
- package/build/sdk/request.mjs +0 -6
- package/build/sdk/responses.d.ts +0 -8
- package/build/sdk/responses.mjs +0 -20
- package/build/sdk/routes.d.ts +0 -7
- package/build/sdk/routes.mjs +0 -61
- package/build/sdk/runtime/bun/server.d.ts +0 -6
- package/build/sdk/runtime/bun/server.mjs +0 -6
- package/build/sdk/runtime/deno/server.d.ts +0 -6
- package/build/sdk/runtime/deno/server.mjs +0 -6
- package/build/sdk/runtime/index.d.ts +0 -15
- package/build/sdk/runtime/index.mjs +0 -11
- package/build/sdk/runtime/node/reply.d.ts +0 -2
- package/build/sdk/runtime/node/reply.mjs +0 -0
- package/build/sdk/runtime/node/request.d.ts +0 -2
- package/build/sdk/runtime/node/request.mjs +0 -0
- package/build/sdk/runtime/node/server.d.ts +0 -6
- package/build/sdk/runtime/node/server.mjs +0 -6
- package/build/sdk/runtime/web/server.d.ts +0 -6
- package/build/sdk/runtime/web/server.mjs +0 -6
- package/build/sdk/schemes.mjs +0 -129
- package/build/sdk/services.d.ts +0 -8
- package/build/sdk/services.mjs +0 -10
- package/build/sdk/throwable.mjs +0 -14
- package/build/sdk/utilities/alias-path.util.d.ts +0 -9
- package/build/sdk/utilities/alias-path.util.mjs +0 -6
- package/build/sdk/utilities/artifacts.util.d.ts +0 -3
- package/build/sdk/utilities/artifacts.util.mjs +0 -45
- package/build/sdk/utilities/callable.util.d.ts +0 -3
- package/build/sdk/utilities/callable.util.mjs +0 -6
- package/build/sdk/utilities/controller.util.d.ts +0 -3
- package/build/sdk/utilities/controller.util.mjs +0 -6
- package/build/sdk/utilities/index.d.ts +0 -7
- package/build/sdk/utilities/index.mjs +0 -62
- package/build/sdk/utilities/json.util.d.ts +0 -3
- package/build/sdk/utilities/json.util.mjs +0 -6
- package/build/sdk/utilities/parameters-arguments.util.d.ts +0 -2
- package/build/sdk/utilities/parameters-arguments.util.mjs +0 -0
- package/build/sdk/utilities/url.d.ts +0 -3
- package/build/sdk/utilities/url.mjs +0 -7
- package/build/sdk/utilities/utilities.util.d.ts +0 -6
- package/build/sdk/utilities/utilities.util.mjs +0 -8
- package/build/types/access-guards.d.ts +0 -6
- package/build/types/access-guards.mjs +0 -0
- package/build/types/application.mjs +0 -0
- package/build/types/artifact.d.ts +0 -21
- package/build/types/artifact.mjs +0 -0
- package/build/types/builder.d.ts +0 -32
- package/build/types/builder.mjs +0 -0
- package/build/types/config.d.ts +0 -6
- package/build/types/config.mjs +0 -0
- package/build/types/controller.d.ts +0 -25
- package/build/types/controller.mjs +0 -0
- package/build/types/contruct.d.ts +0 -3
- package/build/types/contruct.mjs +0 -0
- package/build/types/core.d.ts +0 -15
- package/build/types/core.mjs +0 -0
- package/build/types/data-transfer-object.d.ts +0 -5
- package/build/types/data-transfer-object.mjs +0 -0
- package/build/types/dependency-container.d.ts +0 -20
- package/build/types/dependency-container.mjs +0 -0
- package/build/types/directory.mjs +0 -0
- package/build/types/encryption.d.ts +0 -16
- package/build/types/encryption.mjs +0 -0
- package/build/types/generic.d.ts +0 -4
- package/build/types/generic.mjs +0 -0
- package/build/types/hmr.mjs +0 -0
- package/build/types/http-responses.d.ts +0 -10
- package/build/types/http-responses.mjs +0 -0
- package/build/types/index.d.ts +0 -45
- package/build/types/index.mjs +0 -0
- package/build/types/middleware.d.ts +0 -12
- package/build/types/middleware.mjs +0 -0
- package/build/types/parameters.d.ts +0 -19
- package/build/types/parameters.mjs +0 -0
- package/build/types/parseable.d.ts +0 -5
- package/build/types/parseable.mjs +0 -0
- package/build/types/payload.d.ts +0 -6
- package/build/types/payload.mjs +0 -0
- package/build/types/plugin.d.ts +0 -20
- package/build/types/plugin.mjs +0 -0
- package/build/types/raiton.d.ts +0 -12
- package/build/types/raiton.mjs +0 -0
- package/build/types/repositories.d.ts +0 -8
- package/build/types/repositories.mjs +0 -0
- package/build/types/router.d.ts +0 -14
- package/build/types/router.mjs +0 -0
- package/build/types/runtime.d.ts +0 -37
- package/build/types/runtime.mjs +0 -0
- package/build/types/scheme.mjs +0 -0
- package/build/types/server.d.ts +0 -57
- package/build/types/server.mjs +0 -0
- package/build/types/services.d.ts +0 -8
- package/build/types/services.mjs +0 -0
- package/build/types/thread.d.ts +0 -24
- package/build/types/thread.mjs +0 -0
- package/build/types/utilities.d.ts +0 -6
- package/build/types/utilities.mjs +0 -0
- package/build/types/values.d.ts +0 -4
- package/build/types/values.mjs +0 -0
- /package/{build/chunk-4OWCGDUD.mjs → source/sdk/runtime/node/reply.ts} +0 -0
- /package/{build/chunk-DIWD7ZCJ.mjs → source/sdk/runtime/node/request.ts} +0 -0
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export { getControllerMetadata } from './metadata.js';
|
|
2
|
-
export { compileController } from './compiler.js';
|
|
3
|
-
export { ControllerBuilder } from './builder.js';
|
|
4
|
-
import '../../types/controller.js';
|
|
5
|
-
import '../../sdk/enums/http.enum.js';
|
|
6
|
-
import '../../sdk/enums/http-parameters.enum.js';
|
|
7
|
-
import '../../types/core.js';
|
|
8
|
-
import '../../types/runtime.js';
|
|
9
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
10
|
-
import '../../types/application.js';
|
|
11
|
-
import '../../types/builder.js';
|
|
12
|
-
import 'esbuild';
|
|
13
|
-
import '../../types/hmr.js';
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ControllerBuilder,
|
|
3
|
-
compileController
|
|
4
|
-
} from "../../chunk-K4KLOLSO.mjs";
|
|
5
|
-
import "../../chunk-RXG7754R.mjs";
|
|
6
|
-
import "../../chunk-IOCHNQMF.mjs";
|
|
7
|
-
import "../../chunk-M2RZZJQR.mjs";
|
|
8
|
-
import "../../chunk-RVH2YBNU.mjs";
|
|
9
|
-
import "../../chunk-MLFGBJDV.mjs";
|
|
10
|
-
import "../../chunk-GPJSLV3Q.mjs";
|
|
11
|
-
import "../../chunk-QFSXFOEN.mjs";
|
|
12
|
-
import "../../chunk-JWNBO7XV.mjs";
|
|
13
|
-
import "../../chunk-K4IQQ2KF.mjs";
|
|
14
|
-
import "../../chunk-UCHBN3DV.mjs";
|
|
15
|
-
import "../../chunk-VRL4S7UF.mjs";
|
|
16
|
-
import "../../chunk-XW7EPAD7.mjs";
|
|
17
|
-
import "../../chunk-QHCQ4AUA.mjs";
|
|
18
|
-
import "../../chunk-YRVIAORI.mjs";
|
|
19
|
-
import "../../chunk-UZFCGVHP.mjs";
|
|
20
|
-
import "../../chunk-XIGE72LC.mjs";
|
|
21
|
-
import "../../chunk-X3JFRRRQ.mjs";
|
|
22
|
-
import "../../chunk-P3IRIFPT.mjs";
|
|
23
|
-
import {
|
|
24
|
-
getControllerMetadata
|
|
25
|
-
} from "../../chunk-S3ONGVNZ.mjs";
|
|
26
|
-
import "../../chunk-DIWD7ZCJ.mjs";
|
|
27
|
-
import "../../chunk-52JR26TI.mjs";
|
|
28
|
-
import "../../chunk-JATYBWHL.mjs";
|
|
29
|
-
import "../../chunk-VQINCGLQ.mjs";
|
|
30
|
-
import "../../chunk-4OWCGDUD.mjs";
|
|
31
|
-
import "../../chunk-YXU5W2CB.mjs";
|
|
32
|
-
import "../../chunk-UAPCBU3J.mjs";
|
|
33
|
-
import "../../chunk-O7R3NJQN.mjs";
|
|
34
|
-
import "../../chunk-BYYJRCB4.mjs";
|
|
35
|
-
import "../../chunk-FFRJ4AUA.mjs";
|
|
36
|
-
import "../../chunk-3PWMRP6G.mjs";
|
|
37
|
-
import "../../chunk-T6L55AUG.mjs";
|
|
38
|
-
import "../../chunk-QI7OFSXB.mjs";
|
|
39
|
-
import "../../chunk-TOJFTPAY.mjs";
|
|
40
|
-
import "../../chunk-NB62GSFI.mjs";
|
|
41
|
-
import "../../chunk-5LNOA4SK.mjs";
|
|
42
|
-
import "../../chunk-YGIZFKLJ.mjs";
|
|
43
|
-
import "../../chunk-UWM46HLZ.mjs";
|
|
44
|
-
import "../../chunk-XFBLELHI.mjs";
|
|
45
|
-
import "../../chunk-HVFHDVAH.mjs";
|
|
46
|
-
export {
|
|
47
|
-
ControllerBuilder,
|
|
48
|
-
compileController,
|
|
49
|
-
getControllerMetadata
|
|
50
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ControllerMeta } from '../../types/controller.js';
|
|
2
|
-
import '../../sdk/enums/http.enum.js';
|
|
3
|
-
import '../../sdk/enums/http-parameters.enum.js';
|
|
4
|
-
import '../../types/core.js';
|
|
5
|
-
import '../../types/runtime.js';
|
|
6
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
7
|
-
|
|
8
|
-
declare function getControllerMetadata(target: any): ControllerMeta;
|
|
9
|
-
|
|
10
|
-
export { getControllerMetadata };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare class RaitonDirectories {
|
|
2
|
-
static readonly index: string;
|
|
3
|
-
static readonly bootstrapFile = "main.js";
|
|
4
|
-
static caches(workdir: string): string;
|
|
5
|
-
static artifacts(workdir: string): string;
|
|
6
|
-
static server(workdir: string): string;
|
|
7
|
-
static root(workdir: string): string;
|
|
8
|
-
static app(): string;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export { RaitonDirectories };
|
package/build/core/hmr.d.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { HmrInterface, HMRMetadataInterface } from '../types/hmr.js';
|
|
2
|
-
|
|
3
|
-
declare class Hmr implements HmrInterface {
|
|
4
|
-
protected files: Map<string, HMRMetadataInterface>;
|
|
5
|
-
set(file: string, filename: string, size?: number): this;
|
|
6
|
-
clear(): this;
|
|
7
|
-
entries(): Record<string, HMRMetadataInterface>;
|
|
8
|
-
has(key: string): boolean;
|
|
9
|
-
refresh(): Promise<this>;
|
|
10
|
-
load<T>(key: string): Promise<T | undefined>;
|
|
11
|
-
reload<T>(key: string): Promise<T | undefined>;
|
|
12
|
-
unset(key: string): this;
|
|
13
|
-
size(): number;
|
|
14
|
-
each(callable: (value: HMRMetadataInterface, key: string, map: Map<string, HMRMetadataInterface>) => void | Promise<void>): Promise<this>;
|
|
15
|
-
get(key: string): HMRMetadataInterface | undefined;
|
|
16
|
-
getEntries(): Array<[string, HMRMetadataInterface]>;
|
|
17
|
-
getKeys(): string[];
|
|
18
|
-
getValues(): Array<HMRMetadataInterface>;
|
|
19
|
-
upsert<T>(key: string, filename: string, size?: number): Promise<T | undefined>;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export { Hmr };
|
package/build/core/hmr.mjs
DELETED
package/build/core/hooks.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { HookName, HookHandler } from '../types/core.js';
|
|
2
|
-
import '../types/runtime.js';
|
|
3
|
-
import '../sdk/enums/runtime.enum.js';
|
|
4
|
-
|
|
5
|
-
declare class HookStore {
|
|
6
|
-
private hooks;
|
|
7
|
-
add(name: HookName, handler: HookHandler): void;
|
|
8
|
-
run(name: HookName, ctx: any): Promise<void>;
|
|
9
|
-
clone(): HookStore;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export { HookStore };
|
package/build/core/hooks.mjs
DELETED
package/build/core/index.d.ts
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
export { RaitonConfig } from './config.js';
|
|
2
|
-
export { until } from './process.util.js';
|
|
3
|
-
export { RaitonBuilder } from './builder.js';
|
|
4
|
-
export { Hmr } from './hmr.js';
|
|
5
|
-
export { formatBytes, parseBytes } from './bytes.util.js';
|
|
6
|
-
export { RaitonCommands } from './commands.js';
|
|
7
|
-
export { RaitonCommand } from './command.js';
|
|
8
|
-
export { RaitonDirectories } from './directories.js';
|
|
9
|
-
export { Raiton } from './raiton.js';
|
|
10
|
-
export { getControllerMetadata } from './controller/metadata.js';
|
|
11
|
-
export { compileController } from './controller/compiler.js';
|
|
12
|
-
export { ControllerBuilder } from './controller/builder.js';
|
|
13
|
-
export { PluginScope } from './plugins/scope.js';
|
|
14
|
-
export { definePlugin } from './plugins/plugin.js';
|
|
15
|
-
export { compose } from './middleware/compose.js';
|
|
16
|
-
export { MiddlewarePipeline } from './middleware/pipeline.js';
|
|
17
|
-
export { Route } from './router/route.js';
|
|
18
|
-
export { RouteMatcher } from './router/matcher.js';
|
|
19
|
-
export { Router } from './router/router.js';
|
|
20
|
-
export { createHandler } from './router/handler.js';
|
|
21
|
-
import '../types/config.js';
|
|
22
|
-
import 'esbuild';
|
|
23
|
-
import '../types/builder.js';
|
|
24
|
-
import '../types/hmr.js';
|
|
25
|
-
import '../types/utilities.js';
|
|
26
|
-
import 'commander';
|
|
27
|
-
import '../types/thread.js';
|
|
28
|
-
import '../types/application.js';
|
|
29
|
-
import '../sdk/enums/http.enum.js';
|
|
30
|
-
import '../sdk/enums/runtime.enum.js';
|
|
31
|
-
import '@protorians/core';
|
|
32
|
-
import '../types/raiton.js';
|
|
33
|
-
import '../types/controller.js';
|
|
34
|
-
import '../sdk/enums/http-parameters.enum.js';
|
|
35
|
-
import '../types/core.js';
|
|
36
|
-
import '../types/runtime.js';
|
|
37
|
-
import './hooks.js';
|
|
38
|
-
import '../types/plugin.js';
|
|
39
|
-
import '../types/middleware.js';
|
|
40
|
-
import './context.js';
|
|
41
|
-
import '../types/router.js';
|
package/build/core/index.mjs
DELETED
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ControllerBuilder,
|
|
3
|
-
PluginScope,
|
|
4
|
-
RaitonBuilder,
|
|
5
|
-
compileController,
|
|
6
|
-
createHandler
|
|
7
|
-
} from "../chunk-K4KLOLSO.mjs";
|
|
8
|
-
import "../chunk-RXG7754R.mjs";
|
|
9
|
-
import "../chunk-IOCHNQMF.mjs";
|
|
10
|
-
import "../chunk-M2RZZJQR.mjs";
|
|
11
|
-
import "../chunk-RVH2YBNU.mjs";
|
|
12
|
-
import "../chunk-MLFGBJDV.mjs";
|
|
13
|
-
import "../chunk-GPJSLV3Q.mjs";
|
|
14
|
-
import "../chunk-QFSXFOEN.mjs";
|
|
15
|
-
import "../chunk-JWNBO7XV.mjs";
|
|
16
|
-
import "../chunk-K4IQQ2KF.mjs";
|
|
17
|
-
import "../chunk-UCHBN3DV.mjs";
|
|
18
|
-
import "../chunk-VRL4S7UF.mjs";
|
|
19
|
-
import "../chunk-XW7EPAD7.mjs";
|
|
20
|
-
import "../chunk-QHCQ4AUA.mjs";
|
|
21
|
-
import "../chunk-YRVIAORI.mjs";
|
|
22
|
-
import {
|
|
23
|
-
definePlugin
|
|
24
|
-
} from "../chunk-UZFCGVHP.mjs";
|
|
25
|
-
import {
|
|
26
|
-
Router
|
|
27
|
-
} from "../chunk-XIGE72LC.mjs";
|
|
28
|
-
import {
|
|
29
|
-
RouteMatcher
|
|
30
|
-
} from "../chunk-X3JFRRRQ.mjs";
|
|
31
|
-
import {
|
|
32
|
-
Route
|
|
33
|
-
} from "../chunk-P3IRIFPT.mjs";
|
|
34
|
-
import {
|
|
35
|
-
getControllerMetadata
|
|
36
|
-
} from "../chunk-S3ONGVNZ.mjs";
|
|
37
|
-
import "../chunk-DIWD7ZCJ.mjs";
|
|
38
|
-
import {
|
|
39
|
-
MiddlewarePipeline
|
|
40
|
-
} from "../chunk-52JR26TI.mjs";
|
|
41
|
-
import {
|
|
42
|
-
compose
|
|
43
|
-
} from "../chunk-JATYBWHL.mjs";
|
|
44
|
-
import "../chunk-VQINCGLQ.mjs";
|
|
45
|
-
import "../chunk-4OWCGDUD.mjs";
|
|
46
|
-
import "../chunk-YXU5W2CB.mjs";
|
|
47
|
-
import "../chunk-UAPCBU3J.mjs";
|
|
48
|
-
import "../chunk-O7R3NJQN.mjs";
|
|
49
|
-
import "../chunk-BYYJRCB4.mjs";
|
|
50
|
-
import "../chunk-FFRJ4AUA.mjs";
|
|
51
|
-
import "../chunk-3PWMRP6G.mjs";
|
|
52
|
-
import {
|
|
53
|
-
RaitonDirectories
|
|
54
|
-
} from "../chunk-T6L55AUG.mjs";
|
|
55
|
-
import {
|
|
56
|
-
RaitonConfig
|
|
57
|
-
} from "../chunk-QI7OFSXB.mjs";
|
|
58
|
-
import {
|
|
59
|
-
Hmr
|
|
60
|
-
} from "../chunk-TOJFTPAY.mjs";
|
|
61
|
-
import "../chunk-NB62GSFI.mjs";
|
|
62
|
-
import {
|
|
63
|
-
until
|
|
64
|
-
} from "../chunk-5LNOA4SK.mjs";
|
|
65
|
-
import {
|
|
66
|
-
Raiton
|
|
67
|
-
} from "../chunk-YGIZFKLJ.mjs";
|
|
68
|
-
import {
|
|
69
|
-
formatBytes,
|
|
70
|
-
parseBytes
|
|
71
|
-
} from "../chunk-UWM46HLZ.mjs";
|
|
72
|
-
import {
|
|
73
|
-
RaitonCommands
|
|
74
|
-
} from "../chunk-XFBLELHI.mjs";
|
|
75
|
-
import {
|
|
76
|
-
RaitonCommand
|
|
77
|
-
} from "../chunk-HVFHDVAH.mjs";
|
|
78
|
-
export {
|
|
79
|
-
ControllerBuilder,
|
|
80
|
-
Hmr,
|
|
81
|
-
MiddlewarePipeline,
|
|
82
|
-
PluginScope,
|
|
83
|
-
Raiton,
|
|
84
|
-
RaitonBuilder,
|
|
85
|
-
RaitonCommand,
|
|
86
|
-
RaitonCommands,
|
|
87
|
-
RaitonConfig,
|
|
88
|
-
RaitonDirectories,
|
|
89
|
-
Route,
|
|
90
|
-
RouteMatcher,
|
|
91
|
-
Router,
|
|
92
|
-
compileController,
|
|
93
|
-
compose,
|
|
94
|
-
createHandler,
|
|
95
|
-
definePlugin,
|
|
96
|
-
formatBytes,
|
|
97
|
-
getControllerMetadata,
|
|
98
|
-
parseBytes,
|
|
99
|
-
until
|
|
100
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Middleware } from '../../types/middleware.js';
|
|
2
|
-
import '../context.js';
|
|
3
|
-
import '../../types/runtime.js';
|
|
4
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
5
|
-
|
|
6
|
-
declare function compose(middlewares: Middleware[]): (ctx: any) => Promise<void>;
|
|
7
|
-
|
|
8
|
-
export { compose };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Middleware } from '../../types/middleware.js';
|
|
2
|
-
import '../context.js';
|
|
3
|
-
import '../../types/runtime.js';
|
|
4
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
5
|
-
|
|
6
|
-
declare class MiddlewarePipeline {
|
|
7
|
-
private stack;
|
|
8
|
-
use(mw: Middleware): this;
|
|
9
|
-
clear(): this;
|
|
10
|
-
run(ctx: any): Promise<void> | undefined;
|
|
11
|
-
clone(): MiddlewarePipeline;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export { MiddlewarePipeline };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export { PluginScope } from './scope.js';
|
|
2
|
-
export { definePlugin } from './plugin.js';
|
|
3
|
-
import '../hooks.js';
|
|
4
|
-
import '../../types/core.js';
|
|
5
|
-
import '../../types/runtime.js';
|
|
6
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
7
|
-
import '../middleware/pipeline.js';
|
|
8
|
-
import '../../types/middleware.js';
|
|
9
|
-
import '../context.js';
|
|
10
|
-
import '../router/route.js';
|
|
11
|
-
import '../../types/router.js';
|
|
12
|
-
import '../../sdk/enums/http.enum.js';
|
|
13
|
-
import '../router/router.js';
|
|
14
|
-
import '../../types/plugin.js';
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
PluginScope
|
|
3
|
-
} from "../../chunk-K4KLOLSO.mjs";
|
|
4
|
-
import "../../chunk-RXG7754R.mjs";
|
|
5
|
-
import "../../chunk-IOCHNQMF.mjs";
|
|
6
|
-
import "../../chunk-M2RZZJQR.mjs";
|
|
7
|
-
import "../../chunk-RVH2YBNU.mjs";
|
|
8
|
-
import "../../chunk-MLFGBJDV.mjs";
|
|
9
|
-
import "../../chunk-GPJSLV3Q.mjs";
|
|
10
|
-
import "../../chunk-QFSXFOEN.mjs";
|
|
11
|
-
import "../../chunk-JWNBO7XV.mjs";
|
|
12
|
-
import "../../chunk-K4IQQ2KF.mjs";
|
|
13
|
-
import "../../chunk-UCHBN3DV.mjs";
|
|
14
|
-
import "../../chunk-VRL4S7UF.mjs";
|
|
15
|
-
import "../../chunk-XW7EPAD7.mjs";
|
|
16
|
-
import "../../chunk-QHCQ4AUA.mjs";
|
|
17
|
-
import "../../chunk-YRVIAORI.mjs";
|
|
18
|
-
import {
|
|
19
|
-
definePlugin
|
|
20
|
-
} from "../../chunk-UZFCGVHP.mjs";
|
|
21
|
-
import "../../chunk-XIGE72LC.mjs";
|
|
22
|
-
import "../../chunk-X3JFRRRQ.mjs";
|
|
23
|
-
import "../../chunk-P3IRIFPT.mjs";
|
|
24
|
-
import "../../chunk-S3ONGVNZ.mjs";
|
|
25
|
-
import "../../chunk-DIWD7ZCJ.mjs";
|
|
26
|
-
import "../../chunk-52JR26TI.mjs";
|
|
27
|
-
import "../../chunk-JATYBWHL.mjs";
|
|
28
|
-
import "../../chunk-VQINCGLQ.mjs";
|
|
29
|
-
import "../../chunk-4OWCGDUD.mjs";
|
|
30
|
-
import "../../chunk-YXU5W2CB.mjs";
|
|
31
|
-
import "../../chunk-UAPCBU3J.mjs";
|
|
32
|
-
import "../../chunk-O7R3NJQN.mjs";
|
|
33
|
-
import "../../chunk-BYYJRCB4.mjs";
|
|
34
|
-
import "../../chunk-FFRJ4AUA.mjs";
|
|
35
|
-
import "../../chunk-3PWMRP6G.mjs";
|
|
36
|
-
import "../../chunk-T6L55AUG.mjs";
|
|
37
|
-
import "../../chunk-QI7OFSXB.mjs";
|
|
38
|
-
import "../../chunk-TOJFTPAY.mjs";
|
|
39
|
-
import "../../chunk-NB62GSFI.mjs";
|
|
40
|
-
import "../../chunk-5LNOA4SK.mjs";
|
|
41
|
-
import "../../chunk-YGIZFKLJ.mjs";
|
|
42
|
-
import "../../chunk-UWM46HLZ.mjs";
|
|
43
|
-
import "../../chunk-XFBLELHI.mjs";
|
|
44
|
-
import "../../chunk-HVFHDVAH.mjs";
|
|
45
|
-
export {
|
|
46
|
-
PluginScope,
|
|
47
|
-
definePlugin
|
|
48
|
-
};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import './scope.js';
|
|
2
|
-
import { PluginFn, Plugin } from '../../types/plugin.js';
|
|
3
|
-
import '../hooks.js';
|
|
4
|
-
import '../../types/core.js';
|
|
5
|
-
import '../../types/runtime.js';
|
|
6
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
7
|
-
import '../middleware/pipeline.js';
|
|
8
|
-
import '../../types/middleware.js';
|
|
9
|
-
import '../context.js';
|
|
10
|
-
import '../router/route.js';
|
|
11
|
-
import '../../types/router.js';
|
|
12
|
-
import '../../sdk/enums/http.enum.js';
|
|
13
|
-
import '../router/router.js';
|
|
14
|
-
|
|
15
|
-
declare function definePlugin(setup: PluginFn, name?: string): Plugin;
|
|
16
|
-
|
|
17
|
-
export { definePlugin };
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { HookStore } from '../hooks.js';
|
|
2
|
-
import { MiddlewarePipeline } from '../middleware/pipeline.js';
|
|
3
|
-
import { Route } from '../router/route.js';
|
|
4
|
-
import { Router } from '../router/router.js';
|
|
5
|
-
import '../../types/core.js';
|
|
6
|
-
import '../../types/runtime.js';
|
|
7
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
8
|
-
import '../../types/middleware.js';
|
|
9
|
-
import '../context.js';
|
|
10
|
-
import '../../types/router.js';
|
|
11
|
-
import '../../sdk/enums/http.enum.js';
|
|
12
|
-
|
|
13
|
-
declare class PluginScope {
|
|
14
|
-
hooks: HookStore;
|
|
15
|
-
middleware: MiddlewarePipeline;
|
|
16
|
-
router: Router;
|
|
17
|
-
constructor(parent?: PluginScope);
|
|
18
|
-
addHook(name: any, fn: any): this;
|
|
19
|
-
use(mw: any): this;
|
|
20
|
-
route(method: any, path: string, handler: any, version?: string): Route;
|
|
21
|
-
register(plugin: any): PluginScope;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export { PluginScope };
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
PluginScope
|
|
3
|
-
} from "../../chunk-K4KLOLSO.mjs";
|
|
4
|
-
import "../../chunk-RXG7754R.mjs";
|
|
5
|
-
import "../../chunk-IOCHNQMF.mjs";
|
|
6
|
-
import "../../chunk-M2RZZJQR.mjs";
|
|
7
|
-
import "../../chunk-RVH2YBNU.mjs";
|
|
8
|
-
import "../../chunk-MLFGBJDV.mjs";
|
|
9
|
-
import "../../chunk-GPJSLV3Q.mjs";
|
|
10
|
-
import "../../chunk-QFSXFOEN.mjs";
|
|
11
|
-
import "../../chunk-JWNBO7XV.mjs";
|
|
12
|
-
import "../../chunk-K4IQQ2KF.mjs";
|
|
13
|
-
import "../../chunk-UCHBN3DV.mjs";
|
|
14
|
-
import "../../chunk-VRL4S7UF.mjs";
|
|
15
|
-
import "../../chunk-XW7EPAD7.mjs";
|
|
16
|
-
import "../../chunk-QHCQ4AUA.mjs";
|
|
17
|
-
import "../../chunk-YRVIAORI.mjs";
|
|
18
|
-
import "../../chunk-UZFCGVHP.mjs";
|
|
19
|
-
import "../../chunk-XIGE72LC.mjs";
|
|
20
|
-
import "../../chunk-X3JFRRRQ.mjs";
|
|
21
|
-
import "../../chunk-P3IRIFPT.mjs";
|
|
22
|
-
import "../../chunk-S3ONGVNZ.mjs";
|
|
23
|
-
import "../../chunk-DIWD7ZCJ.mjs";
|
|
24
|
-
import "../../chunk-52JR26TI.mjs";
|
|
25
|
-
import "../../chunk-JATYBWHL.mjs";
|
|
26
|
-
import "../../chunk-VQINCGLQ.mjs";
|
|
27
|
-
import "../../chunk-4OWCGDUD.mjs";
|
|
28
|
-
import "../../chunk-YXU5W2CB.mjs";
|
|
29
|
-
import "../../chunk-UAPCBU3J.mjs";
|
|
30
|
-
import "../../chunk-O7R3NJQN.mjs";
|
|
31
|
-
import "../../chunk-BYYJRCB4.mjs";
|
|
32
|
-
import "../../chunk-FFRJ4AUA.mjs";
|
|
33
|
-
import "../../chunk-3PWMRP6G.mjs";
|
|
34
|
-
import "../../chunk-T6L55AUG.mjs";
|
|
35
|
-
import "../../chunk-QI7OFSXB.mjs";
|
|
36
|
-
import "../../chunk-TOJFTPAY.mjs";
|
|
37
|
-
import "../../chunk-NB62GSFI.mjs";
|
|
38
|
-
import "../../chunk-5LNOA4SK.mjs";
|
|
39
|
-
import "../../chunk-YGIZFKLJ.mjs";
|
|
40
|
-
import "../../chunk-UWM46HLZ.mjs";
|
|
41
|
-
import "../../chunk-XFBLELHI.mjs";
|
|
42
|
-
import "../../chunk-HVFHDVAH.mjs";
|
|
43
|
-
export {
|
|
44
|
-
PluginScope
|
|
45
|
-
};
|
package/build/core/raiton.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ThreadInterface } from '../types/thread.js';
|
|
2
|
-
import { ISignalStack } from '@protorians/core';
|
|
3
|
-
import { RaitonSignalMap } from '../types/raiton.js';
|
|
4
|
-
import '../types/builder.js';
|
|
5
|
-
import 'esbuild';
|
|
6
|
-
import '../types/hmr.js';
|
|
7
|
-
import '../types/application.js';
|
|
8
|
-
import '../sdk/enums/http.enum.js';
|
|
9
|
-
import '../sdk/enums/runtime.enum.js';
|
|
10
|
-
|
|
11
|
-
declare class Raiton {
|
|
12
|
-
protected static _thread: ThreadInterface | undefined;
|
|
13
|
-
static readonly signals: ISignalStack<RaitonSignalMap>;
|
|
14
|
-
static title: string;
|
|
15
|
-
static identifier: string;
|
|
16
|
-
static get thread(): ThreadInterface;
|
|
17
|
-
static set thread(thread: ThreadInterface | undefined);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export { Raiton };
|
package/build/core/raiton.mjs
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { RouteMeta } from '../../types/controller.js';
|
|
2
|
-
import '../../sdk/enums/http.enum.js';
|
|
3
|
-
import '../../sdk/enums/http-parameters.enum.js';
|
|
4
|
-
import '../../types/core.js';
|
|
5
|
-
import '../../types/runtime.js';
|
|
6
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
7
|
-
|
|
8
|
-
declare function createHandler(instance: any, metadata: RouteMeta): (ctx: any) => Promise<any>;
|
|
9
|
-
|
|
10
|
-
export { createHandler };
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
createHandler
|
|
3
|
-
} from "../../chunk-K4KLOLSO.mjs";
|
|
4
|
-
import "../../chunk-RXG7754R.mjs";
|
|
5
|
-
import "../../chunk-IOCHNQMF.mjs";
|
|
6
|
-
import "../../chunk-M2RZZJQR.mjs";
|
|
7
|
-
import "../../chunk-RVH2YBNU.mjs";
|
|
8
|
-
import "../../chunk-MLFGBJDV.mjs";
|
|
9
|
-
import "../../chunk-GPJSLV3Q.mjs";
|
|
10
|
-
import "../../chunk-QFSXFOEN.mjs";
|
|
11
|
-
import "../../chunk-JWNBO7XV.mjs";
|
|
12
|
-
import "../../chunk-K4IQQ2KF.mjs";
|
|
13
|
-
import "../../chunk-UCHBN3DV.mjs";
|
|
14
|
-
import "../../chunk-VRL4S7UF.mjs";
|
|
15
|
-
import "../../chunk-XW7EPAD7.mjs";
|
|
16
|
-
import "../../chunk-QHCQ4AUA.mjs";
|
|
17
|
-
import "../../chunk-YRVIAORI.mjs";
|
|
18
|
-
import "../../chunk-UZFCGVHP.mjs";
|
|
19
|
-
import "../../chunk-XIGE72LC.mjs";
|
|
20
|
-
import "../../chunk-X3JFRRRQ.mjs";
|
|
21
|
-
import "../../chunk-P3IRIFPT.mjs";
|
|
22
|
-
import "../../chunk-S3ONGVNZ.mjs";
|
|
23
|
-
import "../../chunk-DIWD7ZCJ.mjs";
|
|
24
|
-
import "../../chunk-52JR26TI.mjs";
|
|
25
|
-
import "../../chunk-JATYBWHL.mjs";
|
|
26
|
-
import "../../chunk-VQINCGLQ.mjs";
|
|
27
|
-
import "../../chunk-4OWCGDUD.mjs";
|
|
28
|
-
import "../../chunk-YXU5W2CB.mjs";
|
|
29
|
-
import "../../chunk-UAPCBU3J.mjs";
|
|
30
|
-
import "../../chunk-O7R3NJQN.mjs";
|
|
31
|
-
import "../../chunk-BYYJRCB4.mjs";
|
|
32
|
-
import "../../chunk-FFRJ4AUA.mjs";
|
|
33
|
-
import "../../chunk-3PWMRP6G.mjs";
|
|
34
|
-
import "../../chunk-T6L55AUG.mjs";
|
|
35
|
-
import "../../chunk-QI7OFSXB.mjs";
|
|
36
|
-
import "../../chunk-TOJFTPAY.mjs";
|
|
37
|
-
import "../../chunk-NB62GSFI.mjs";
|
|
38
|
-
import "../../chunk-5LNOA4SK.mjs";
|
|
39
|
-
import "../../chunk-YGIZFKLJ.mjs";
|
|
40
|
-
import "../../chunk-UWM46HLZ.mjs";
|
|
41
|
-
import "../../chunk-XFBLELHI.mjs";
|
|
42
|
-
import "../../chunk-HVFHDVAH.mjs";
|
|
43
|
-
export {
|
|
44
|
-
createHandler
|
|
45
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export { Route } from './route.js';
|
|
2
|
-
export { RouteMatcher } from './matcher.js';
|
|
3
|
-
export { Router } from './router.js';
|
|
4
|
-
export { createHandler } from './handler.js';
|
|
5
|
-
import '../../types/router.js';
|
|
6
|
-
import '../context.js';
|
|
7
|
-
import '../../types/runtime.js';
|
|
8
|
-
import '../../sdk/enums/runtime.enum.js';
|
|
9
|
-
import '../../sdk/enums/http.enum.js';
|
|
10
|
-
import '../../types/controller.js';
|
|
11
|
-
import '../../sdk/enums/http-parameters.enum.js';
|
|
12
|
-
import '../../types/core.js';
|