@inversifyjs/http-core 4.10.1 → 5.0.0
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/lib/error/models/InversifyHttpAdapterError.d.ts +17 -0
- package/lib/error/models/InversifyHttpAdapterError.d.ts.map +1 -0
- package/lib/error/models/InversifyHttpAdapterError.js +22 -0
- package/lib/error/models/InversifyHttpAdapterError.js.map +1 -0
- package/lib/error/models/InversifyHttpAdapterErrorKind.d.ts.map +1 -0
- package/lib/error/models/InversifyHttpAdapterErrorKind.js +7 -0
- package/lib/error/models/InversifyHttpAdapterErrorKind.js.map +1 -0
- package/lib/http/actions/setErrorFilterToErrorFilterMap.d.ts +5 -0
- package/lib/http/actions/setErrorFilterToErrorFilterMap.d.ts.map +1 -0
- package/lib/http/actions/setErrorFilterToErrorFilterMap.js +15 -0
- package/lib/http/actions/setErrorFilterToErrorFilterMap.js.map +1 -0
- package/lib/http/adapter/InversifyHttpAdapter.d.ts +43 -0
- package/lib/http/adapter/InversifyHttpAdapter.d.ts.map +1 -0
- package/lib/http/adapter/InversifyHttpAdapter.js +392 -0
- package/lib/http/adapter/InversifyHttpAdapter.js.map +1 -0
- package/lib/http/calculations/areAllParamsSync.d.ts +6 -0
- package/lib/http/calculations/areAllParamsSync.d.ts.map +1 -0
- package/lib/http/calculations/areAllParamsSync.js +7 -0
- package/lib/http/calculations/areAllParamsSync.js.map +1 -0
- package/lib/http/calculations/buildCustomControllerMethodParameterMetadata.d.ts +6 -0
- package/lib/http/calculations/buildCustomControllerMethodParameterMetadata.d.ts.map +1 -0
- package/lib/http/calculations/buildCustomControllerMethodParameterMetadata.js +10 -0
- package/lib/http/calculations/buildCustomControllerMethodParameterMetadata.js.map +1 -0
- package/lib/http/calculations/buildCustomNativeControllerMethodParameterMetadata.d.ts +6 -0
- package/lib/http/calculations/buildCustomNativeControllerMethodParameterMetadata.d.ts.map +1 -0
- package/lib/http/calculations/buildCustomNativeControllerMethodParameterMetadata.js +10 -0
- package/lib/http/calculations/buildCustomNativeControllerMethodParameterMetadata.js.map +1 -0
- package/lib/http/calculations/buildHttpResponseErrorFilter.d.ts +6 -0
- package/lib/http/calculations/buildHttpResponseErrorFilter.d.ts.map +1 -0
- package/lib/http/calculations/buildHttpResponseErrorFilter.js +9 -0
- package/lib/http/calculations/buildHttpResponseErrorFilter.js.map +1 -0
- package/lib/http/calculations/buildInterceptedHandler.d.ts +6 -0
- package/lib/http/calculations/buildInterceptedHandler.d.ts.map +1 -0
- package/lib/http/calculations/buildInterceptedHandler.js +48 -0
- package/lib/http/calculations/buildInterceptedHandler.js.map +1 -0
- package/lib/http/calculations/buildNonCustomControllerMethodParameterMetadata.d.ts +7 -0
- package/lib/http/calculations/buildNonCustomControllerMethodParameterMetadata.d.ts.map +1 -0
- package/lib/http/calculations/buildNonCustomControllerMethodParameterMetadata.js +8 -0
- package/lib/http/calculations/buildNonCustomControllerMethodParameterMetadata.js.map +1 -0
- package/lib/http/calculations/buildNormalizedPath.d.ts.map +1 -0
- package/lib/http/calculations/buildNormalizedPath.js +7 -0
- package/lib/http/calculations/buildNormalizedPath.js.map +1 -0
- package/lib/http/calculations/buildSetHeaderMetadata.d.ts.map +1 -0
- package/lib/http/calculations/buildSetHeaderMetadata.js +15 -0
- package/lib/http/calculations/buildSetHeaderMetadata.js.map +1 -0
- package/lib/http/calculations/buildSyncCallRouteHandler.d.ts +4 -0
- package/lib/http/calculations/buildSyncCallRouteHandler.d.ts.map +1 -0
- package/lib/http/calculations/buildSyncCallRouteHandler.js +14 -0
- package/lib/http/calculations/buildSyncCallRouteHandler.js.map +1 -0
- package/lib/http/calculations/concatenateHeaders.d.ts.map +1 -0
- package/lib/http/calculations/concatenateHeaders.js +13 -0
- package/lib/http/calculations/concatenateHeaders.js.map +1 -0
- package/lib/http/calculations/createCustomNativeParameterDecorator.d.ts +5 -0
- package/lib/http/calculations/createCustomNativeParameterDecorator.d.ts.map +1 -0
- package/lib/http/calculations/createCustomNativeParameterDecorator.js +6 -0
- package/lib/http/calculations/createCustomNativeParameterDecorator.js.map +1 -0
- package/lib/http/calculations/createCustomParameterDecorator.d.ts +5 -0
- package/lib/http/calculations/createCustomParameterDecorator.d.ts.map +1 -0
- package/lib/http/calculations/createCustomParameterDecorator.js +6 -0
- package/lib/http/calculations/createCustomParameterDecorator.js.map +1 -0
- package/lib/http/calculations/getErrorFilterForError.d.ts +4 -0
- package/lib/http/calculations/getErrorFilterForError.d.ts.map +1 -0
- package/lib/http/calculations/getErrorFilterForError.js +27 -0
- package/lib/http/calculations/getErrorFilterForError.js.map +1 -0
- package/lib/http/calculations/getOptionsAndPipes.d.ts +5 -0
- package/lib/http/calculations/getOptionsAndPipes.d.ts.map +1 -0
- package/lib/http/calculations/getOptionsAndPipes.js +16 -0
- package/lib/http/calculations/getOptionsAndPipes.js.map +1 -0
- package/lib/http/calculations/nativeRequestParam.d.ts +3 -0
- package/lib/http/calculations/nativeRequestParam.d.ts.map +1 -0
- package/lib/http/calculations/nativeRequestParam.js +14 -0
- package/lib/http/calculations/nativeRequestParam.js.map +1 -0
- package/lib/http/calculations/requestMethod.d.ts +3 -0
- package/lib/http/calculations/requestMethod.d.ts.map +1 -0
- package/lib/http/calculations/requestMethod.js +14 -0
- package/lib/http/calculations/requestMethod.js.map +1 -0
- package/lib/http/calculations/requestParam.d.ts +3 -0
- package/lib/http/calculations/requestParam.d.ts.map +1 -0
- package/lib/http/calculations/requestParam.js +12 -0
- package/lib/http/calculations/requestParam.js.map +1 -0
- package/lib/http/decorators/All.d.ts.map +1 -0
- package/lib/http/decorators/All.js +5 -0
- package/lib/http/decorators/All.js.map +1 -0
- package/lib/http/decorators/Body.d.ts +5 -0
- package/lib/http/decorators/Body.d.ts.map +1 -0
- package/lib/http/decorators/Body.js +10 -0
- package/lib/http/decorators/Body.js.map +1 -0
- package/lib/http/decorators/Controller.d.ts +3 -0
- package/lib/http/decorators/Controller.d.ts.map +1 -0
- package/lib/http/decorators/Controller.js +35 -0
- package/lib/http/decorators/Controller.js.map +1 -0
- package/lib/http/decorators/Cookies.d.ts +5 -0
- package/lib/http/decorators/Cookies.d.ts.map +1 -0
- package/lib/http/decorators/Cookies.js +10 -0
- package/lib/http/decorators/Cookies.js.map +1 -0
- package/lib/http/decorators/Delete.d.ts.map +1 -0
- package/lib/http/decorators/Delete.js +5 -0
- package/lib/http/decorators/Delete.js.map +1 -0
- package/lib/http/decorators/Get.d.ts.map +1 -0
- package/lib/http/decorators/Get.js +5 -0
- package/lib/http/decorators/Get.js.map +1 -0
- package/lib/http/decorators/Head.d.ts.map +1 -0
- package/lib/http/decorators/Head.js +5 -0
- package/lib/http/decorators/Head.js.map +1 -0
- package/lib/http/decorators/Headers.d.ts +5 -0
- package/lib/http/decorators/Headers.d.ts.map +1 -0
- package/lib/http/decorators/Headers.js +10 -0
- package/lib/http/decorators/Headers.js.map +1 -0
- package/lib/http/decorators/Next.d.ts.map +1 -0
- package/lib/http/decorators/Next.js +8 -0
- package/lib/http/decorators/Next.js.map +1 -0
- package/lib/http/decorators/Options.d.ts.map +1 -0
- package/lib/http/decorators/Options.js +5 -0
- package/lib/http/decorators/Options.js.map +1 -0
- package/lib/http/decorators/Params.d.ts +5 -0
- package/lib/http/decorators/Params.d.ts.map +1 -0
- package/lib/http/decorators/Params.js +10 -0
- package/lib/http/decorators/Params.js.map +1 -0
- package/lib/http/decorators/Patch.d.ts.map +1 -0
- package/lib/http/decorators/Patch.js +5 -0
- package/lib/http/decorators/Patch.js.map +1 -0
- package/lib/http/decorators/Post.d.ts.map +1 -0
- package/lib/http/decorators/Post.js +5 -0
- package/lib/http/decorators/Post.js.map +1 -0
- package/lib/http/decorators/Put.d.ts.map +1 -0
- package/lib/http/decorators/Put.js +5 -0
- package/lib/http/decorators/Put.js.map +1 -0
- package/lib/http/decorators/Query.d.ts +5 -0
- package/lib/http/decorators/Query.d.ts.map +1 -0
- package/lib/http/decorators/Query.js +10 -0
- package/lib/http/decorators/Query.js.map +1 -0
- package/lib/http/decorators/Request.d.ts +4 -0
- package/lib/http/decorators/Request.d.ts.map +1 -0
- package/lib/http/decorators/Request.js +8 -0
- package/lib/http/decorators/Request.js.map +1 -0
- package/lib/http/decorators/Response.d.ts +4 -0
- package/lib/http/decorators/Response.d.ts.map +1 -0
- package/lib/http/decorators/Response.js +8 -0
- package/lib/http/decorators/Response.js.map +1 -0
- package/lib/http/decorators/SetHeader.d.ts.map +1 -0
- package/lib/http/decorators/SetHeader.js +13 -0
- package/lib/http/decorators/SetHeader.js.map +1 -0
- package/lib/http/decorators/StatusCode.d.ts +3 -0
- package/lib/http/decorators/StatusCode.d.ts.map +1 -0
- package/lib/http/decorators/StatusCode.js +9 -0
- package/lib/http/decorators/StatusCode.js.map +1 -0
- package/lib/http/models/Controller.d.ts +5 -0
- package/lib/http/models/Controller.d.ts.map +1 -0
- package/lib/http/models/Controller.js +2 -0
- package/lib/http/models/Controller.js.map +1 -0
- package/lib/http/models/ControllerFunction.d.ts +3 -0
- package/lib/http/models/ControllerFunction.d.ts.map +1 -0
- package/lib/http/models/ControllerFunction.js +2 -0
- package/lib/http/models/ControllerFunction.js.map +1 -0
- package/lib/http/models/ControllerOptions.d.ts +8 -0
- package/lib/http/models/ControllerOptions.d.ts.map +1 -0
- package/lib/http/models/ControllerOptions.js +2 -0
- package/lib/http/models/ControllerOptions.js.map +1 -0
- package/lib/http/models/ControllerResponse.d.ts +4 -0
- package/lib/http/models/ControllerResponse.d.ts.map +1 -0
- package/lib/http/models/ControllerResponse.js +2 -0
- package/lib/http/models/ControllerResponse.js.map +1 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandler.d.ts +3 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandler.d.ts.map +1 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandler.js +2 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandler.js.map +1 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandlerOptions.d.ts +7 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandlerOptions.d.ts.map +1 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandlerOptions.js +2 -0
- package/lib/http/models/CustomNativeParameterDecoratorHandlerOptions.js.map +1 -0
- package/lib/http/models/CustomParameterDecoratorHandler.d.ts +3 -0
- package/lib/http/models/CustomParameterDecoratorHandler.d.ts.map +1 -0
- package/lib/http/models/CustomParameterDecoratorHandler.js +2 -0
- package/lib/http/models/CustomParameterDecoratorHandler.js.map +1 -0
- package/lib/http/models/CustomParameterDecoratorHandlerOptions.d.ts +11 -0
- package/lib/http/models/CustomParameterDecoratorHandlerOptions.d.ts.map +1 -0
- package/lib/http/models/CustomParameterDecoratorHandlerOptions.js +2 -0
- package/lib/http/models/CustomParameterDecoratorHandlerOptions.js.map +1 -0
- package/lib/http/models/HttpAdapterOptions.d.ts +5 -0
- package/lib/http/models/HttpAdapterOptions.d.ts.map +1 -0
- package/lib/http/models/HttpAdapterOptions.js +2 -0
- package/lib/http/models/HttpAdapterOptions.js.map +1 -0
- package/lib/http/models/HttpStatusCode.d.ts.map +1 -0
- package/lib/http/models/HttpStatusCode.js +59 -0
- package/lib/http/models/HttpStatusCode.js.map +1 -0
- package/lib/http/models/MiddlewareHandler.d.ts.map +1 -0
- package/lib/http/models/MiddlewareHandler.js +2 -0
- package/lib/http/models/MiddlewareHandler.js.map +1 -0
- package/lib/http/models/RequestHandler.d.ts.map +1 -0
- package/lib/http/models/RequestHandler.js +2 -0
- package/lib/http/models/RequestHandler.js.map +1 -0
- package/lib/http/models/RequestMethodParameterType.d.ts.map +1 -0
- package/lib/http/models/RequestMethodParameterType.js +14 -0
- package/lib/http/models/RequestMethodParameterType.js.map +1 -0
- package/lib/http/models/RequestMethodType.d.ts.map +1 -0
- package/lib/http/models/RequestMethodType.js +12 -0
- package/lib/http/models/RequestMethodType.js.map +1 -0
- package/lib/http/models/RequiredOptions.d.ts.map +1 -0
- package/lib/http/models/RequiredOptions.js +2 -0
- package/lib/http/models/RequiredOptions.js.map +1 -0
- package/lib/http/models/RouteParamOptions.d.ts.map +1 -0
- package/lib/http/models/RouteParamOptions.js +2 -0
- package/lib/http/models/RouteParamOptions.js.map +1 -0
- package/lib/http/models/RouteParams.d.ts +12 -0
- package/lib/http/models/RouteParams.d.ts.map +1 -0
- package/lib/http/models/RouteParams.js +2 -0
- package/lib/http/models/RouteParams.js.map +1 -0
- package/lib/http/models/RouterParams.d.ts +6 -0
- package/lib/http/models/RouterParams.d.ts.map +1 -0
- package/lib/http/models/RouterParams.js +2 -0
- package/lib/http/models/RouterParams.js.map +1 -0
- package/lib/http/models/httpApplicationServiceIdentifier.d.ts.map +1 -0
- package/lib/http/models/httpApplicationServiceIdentifier.js +2 -0
- package/lib/http/models/httpApplicationServiceIdentifier.js.map +1 -0
- package/lib/httpResponse/calculations/isHttpResponse.d.ts +3 -0
- package/lib/httpResponse/calculations/isHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/calculations/isHttpResponse.js +7 -0
- package/lib/httpResponse/calculations/isHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/AcceptedHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/AcceptedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/AcceptedHttpResponse.js +8 -0
- package/lib/httpResponse/models/AcceptedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/AlreadyReportedHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/AlreadyReportedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/AlreadyReportedHttpResponse.js +8 -0
- package/lib/httpResponse/models/AlreadyReportedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/BadGatewayHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/BadGatewayHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/BadGatewayHttpResponse.js +8 -0
- package/lib/httpResponse/models/BadGatewayHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/BadRequestHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/BadRequestHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/BadRequestHttpResponse.js +8 -0
- package/lib/httpResponse/models/BadRequestHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/ConflictHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/ConflictHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/ConflictHttpResponse.js +8 -0
- package/lib/httpResponse/models/ConflictHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/ContentDifferentHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/ContentDifferentHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/ContentDifferentHttpResponse.js +8 -0
- package/lib/httpResponse/models/ContentDifferentHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/CreatedHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/CreatedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/CreatedHttpResponse.js +8 -0
- package/lib/httpResponse/models/CreatedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/ErrorHttpResponse.d.ts +11 -0
- package/lib/httpResponse/models/ErrorHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/ErrorHttpResponse.js +15 -0
- package/lib/httpResponse/models/ErrorHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/ForbiddenHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/ForbiddenHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/ForbiddenHttpResponse.js +8 -0
- package/lib/httpResponse/models/ForbiddenHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/GatewayTimeoutHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/GatewayTimeoutHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/GatewayTimeoutHttpResponse.js +8 -0
- package/lib/httpResponse/models/GatewayTimeoutHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/GoneHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/GoneHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/GoneHttpResponse.js +8 -0
- package/lib/httpResponse/models/GoneHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/HttpResponse.d.ts +10 -0
- package/lib/httpResponse/models/HttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/HttpResponse.js +2 -0
- package/lib/httpResponse/models/HttpResponse.js.map +1 -0
- package/lib/httpResponse/models/HttpVersionNotSupportedHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/HttpVersionNotSupportedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/HttpVersionNotSupportedHttpResponse.js +8 -0
- package/lib/httpResponse/models/HttpVersionNotSupportedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/InsufficientStorageHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/InsufficientStorageHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/InsufficientStorageHttpResponse.js +8 -0
- package/lib/httpResponse/models/InsufficientStorageHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/InternalServerErrorHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/InternalServerErrorHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/InternalServerErrorHttpResponse.js +8 -0
- package/lib/httpResponse/models/InternalServerErrorHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/LoopDetectedHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/LoopDetectedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/LoopDetectedHttpResponse.js +8 -0
- package/lib/httpResponse/models/LoopDetectedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/MethodNotAllowedHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/MethodNotAllowedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/MethodNotAllowedHttpResponse.js +8 -0
- package/lib/httpResponse/models/MethodNotAllowedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/MultiStatusHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/MultiStatusHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/MultiStatusHttpResponse.js +8 -0
- package/lib/httpResponse/models/MultiStatusHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/NoContentHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/NoContentHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/NoContentHttpResponse.js +8 -0
- package/lib/httpResponse/models/NoContentHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/NonAuthoritativeInformationHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/NonAuthoritativeInformationHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/NonAuthoritativeInformationHttpResponse.js +8 -0
- package/lib/httpResponse/models/NonAuthoritativeInformationHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/NotAcceptableHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/NotAcceptableHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/NotAcceptableHttpResponse.js +8 -0
- package/lib/httpResponse/models/NotAcceptableHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/NotFoundHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/NotFoundHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/NotFoundHttpResponse.js +8 -0
- package/lib/httpResponse/models/NotFoundHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/NotImplementedHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/NotImplementedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/NotImplementedHttpResponse.js +8 -0
- package/lib/httpResponse/models/NotImplementedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/OkHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/OkHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/OkHttpResponse.js +8 -0
- package/lib/httpResponse/models/OkHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/PartialContentHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/PartialContentHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/PartialContentHttpResponse.js +8 -0
- package/lib/httpResponse/models/PartialContentHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/PaymentRequiredHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/PaymentRequiredHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/PaymentRequiredHttpResponse.js +8 -0
- package/lib/httpResponse/models/PaymentRequiredHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/ResetContentHttpResponse.d.ts +5 -0
- package/lib/httpResponse/models/ResetContentHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/ResetContentHttpResponse.js +8 -0
- package/lib/httpResponse/models/ResetContentHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/ServiceUnavailableHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/ServiceUnavailableHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/ServiceUnavailableHttpResponse.js +8 -0
- package/lib/httpResponse/models/ServiceUnavailableHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/SuccessHttpResponse.d.ts +11 -0
- package/lib/httpResponse/models/SuccessHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/SuccessHttpResponse.js +14 -0
- package/lib/httpResponse/models/SuccessHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/UnauthorizedHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/UnauthorizedHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/UnauthorizedHttpResponse.js +8 -0
- package/lib/httpResponse/models/UnauthorizedHttpResponse.js.map +1 -0
- package/lib/httpResponse/models/UnprocessableEntityHttpResponse.d.ts +6 -0
- package/lib/httpResponse/models/UnprocessableEntityHttpResponse.d.ts.map +1 -0
- package/lib/httpResponse/models/UnprocessableEntityHttpResponse.js +8 -0
- package/lib/httpResponse/models/UnprocessableEntityHttpResponse.js.map +1 -0
- package/lib/index.d.ts +81 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +65 -0
- package/lib/index.js.map +1 -0
- package/lib/middleware/actions/handleMiddlewareList.d.ts +3 -0
- package/lib/middleware/actions/handleMiddlewareList.d.ts.map +1 -0
- package/lib/middleware/actions/handleMiddlewareList.js +32 -0
- package/lib/middleware/actions/handleMiddlewareList.js.map +1 -0
- package/lib/reflectMetadata/data/controllerMetadataReflectKey.d.ts.map +1 -0
- package/lib/reflectMetadata/data/controllerMetadataReflectKey.js +2 -0
- package/lib/reflectMetadata/data/controllerMetadataReflectKey.js.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.d.ts.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.js +2 -0
- package/lib/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.js.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodMetadataReflectKey.d.ts.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodMetadataReflectKey.js +2 -0
- package/lib/reflectMetadata/data/controllerMethodMetadataReflectKey.js.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodParameterMetadataReflectKey.d.ts.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodParameterMetadataReflectKey.js +2 -0
- package/lib/reflectMetadata/data/controllerMethodParameterMetadataReflectKey.js.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodStatusCodeMetadataReflectKey.d.ts.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodStatusCodeMetadataReflectKey.js +2 -0
- package/lib/reflectMetadata/data/controllerMethodStatusCodeMetadataReflectKey.js.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.d.ts.map +1 -0
- package/lib/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.js +2 -0
- package/lib/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.js.map +1 -0
- package/lib/routerExplorer/actions/setControllerMethodParameterMetadata.d.ts +3 -0
- package/lib/routerExplorer/actions/setControllerMethodParameterMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/actions/setControllerMethodParameterMetadata.js +8 -0
- package/lib/routerExplorer/actions/setControllerMethodParameterMetadata.js.map +1 -0
- package/lib/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.js +8 -0
- package/lib/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.js.map +1 -0
- package/lib/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.d.ts +5 -0
- package/lib/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.js +13 -0
- package/lib/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.js.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadata.d.ts +5 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadata.js +12 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadata.js.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.d.ts +5 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.js +18 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.js.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.d.ts +6 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.js +46 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.js.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.d.ts +6 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.js +5 -0
- package/lib/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.js.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMetadataList.d.ts +3 -0
- package/lib/routerExplorer/calculations/getControllerMetadataList.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMetadataList.js +10 -0
- package/lib/routerExplorer/calculations/getControllerMetadataList.js.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodHeaderMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodHeaderMetadata.js +20 -0
- package/lib/routerExplorer/calculations/getControllerMethodHeaderMetadata.js.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodMetadataList.d.ts +3 -0
- package/lib/routerExplorer/calculations/getControllerMethodMetadataList.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodMetadataList.js +21 -0
- package/lib/routerExplorer/calculations/getControllerMethodMetadataList.js.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodParameterMetadataList.d.ts +3 -0
- package/lib/routerExplorer/calculations/getControllerMethodParameterMetadataList.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodParameterMetadataList.js +7 -0
- package/lib/routerExplorer/calculations/getControllerMethodParameterMetadataList.js.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.d.ts +3 -0
- package/lib/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.js +7 -0
- package/lib/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.js.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.js +7 -0
- package/lib/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.js.map +1 -0
- package/lib/routerExplorer/model/ControllerMetadata.d.ts +8 -0
- package/lib/routerExplorer/model/ControllerMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/model/ControllerMetadata.js +2 -0
- package/lib/routerExplorer/model/ControllerMetadata.js.map +1 -0
- package/lib/routerExplorer/model/ControllerMethodMetadata.d.ts +7 -0
- package/lib/routerExplorer/model/ControllerMethodMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/model/ControllerMethodMetadata.js +2 -0
- package/lib/routerExplorer/model/ControllerMethodMetadata.js.map +1 -0
- package/lib/routerExplorer/model/ControllerMethodParameterMetadata.d.ts +19 -0
- package/lib/routerExplorer/model/ControllerMethodParameterMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/model/ControllerMethodParameterMetadata.js +2 -0
- package/lib/routerExplorer/model/ControllerMethodParameterMetadata.js.map +1 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMetadata.d.ts +9 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMetadata.js +3 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMetadata.js.map +1 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMethodMetadata.d.ts +20 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMethodMetadata.d.ts.map +1 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMethodMetadata.js +2 -0
- package/lib/routerExplorer/model/RouterExplorerControllerMethodMetadata.js.map +1 -0
- package/package.json +19 -26
- package/CHANGELOG.md +0 -257
- package/lib/cjs/error/models/InversifyHttpAdapterError.d.ts +0 -17
- package/lib/cjs/error/models/InversifyHttpAdapterError.d.ts.map +0 -1
- package/lib/cjs/error/models/InversifyHttpAdapterError.js +0 -26
- package/lib/cjs/error/models/InversifyHttpAdapterError.js.map +0 -1
- package/lib/cjs/error/models/InversifyHttpAdapterErrorKind.d.ts.map +0 -1
- package/lib/cjs/error/models/InversifyHttpAdapterErrorKind.js +0 -10
- package/lib/cjs/error/models/InversifyHttpAdapterErrorKind.js.map +0 -1
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.d.ts +0 -5
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.d.ts.map +0 -1
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.js +0 -18
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.js.map +0 -1
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.spec.d.ts +0 -2
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.spec.d.ts.map +0 -1
- package/lib/cjs/http/adapter/InversifyHttpAdapter.d.ts +0 -43
- package/lib/cjs/http/adapter/InversifyHttpAdapter.d.ts.map +0 -1
- package/lib/cjs/http/adapter/InversifyHttpAdapter.js +0 -397
- package/lib/cjs/http/adapter/InversifyHttpAdapter.js.map +0 -1
- package/lib/cjs/http/calculations/areAllParamsSync.d.ts +0 -6
- package/lib/cjs/http/calculations/areAllParamsSync.d.ts.map +0 -1
- package/lib/cjs/http/calculations/areAllParamsSync.js +0 -10
- package/lib/cjs/http/calculations/areAllParamsSync.js.map +0 -1
- package/lib/cjs/http/calculations/areAllParamsSync.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/areAllParamsSync.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildCustomControllerMethodParameterMetadata.d.ts +0 -6
- package/lib/cjs/http/calculations/buildCustomControllerMethodParameterMetadata.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildCustomControllerMethodParameterMetadata.js +0 -13
- package/lib/cjs/http/calculations/buildCustomControllerMethodParameterMetadata.js.map +0 -1
- package/lib/cjs/http/calculations/buildCustomControllerMethodParameterMetadata.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildCustomControllerMethodParameterMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildCustomNativeControllerMethodParameterMetadata.d.ts +0 -6
- package/lib/cjs/http/calculations/buildCustomNativeControllerMethodParameterMetadata.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildCustomNativeControllerMethodParameterMetadata.js +0 -13
- package/lib/cjs/http/calculations/buildCustomNativeControllerMethodParameterMetadata.js.map +0 -1
- package/lib/cjs/http/calculations/buildCustomNativeControllerMethodParameterMetadata.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildCustomNativeControllerMethodParameterMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildHttpResponseErrorFilter.d.ts +0 -6
- package/lib/cjs/http/calculations/buildHttpResponseErrorFilter.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildHttpResponseErrorFilter.js +0 -12
- package/lib/cjs/http/calculations/buildHttpResponseErrorFilter.js.map +0 -1
- package/lib/cjs/http/calculations/buildHttpResponseErrorFilter.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildHttpResponseErrorFilter.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildInterceptedHandler.d.ts +0 -6
- package/lib/cjs/http/calculations/buildInterceptedHandler.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildInterceptedHandler.js +0 -51
- package/lib/cjs/http/calculations/buildInterceptedHandler.js.map +0 -1
- package/lib/cjs/http/calculations/buildInterceptedHandler.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildInterceptedHandler.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildNonCustomControllerMethodParameterMetadata.d.ts +0 -7
- package/lib/cjs/http/calculations/buildNonCustomControllerMethodParameterMetadata.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildNonCustomControllerMethodParameterMetadata.js +0 -11
- package/lib/cjs/http/calculations/buildNonCustomControllerMethodParameterMetadata.js.map +0 -1
- package/lib/cjs/http/calculations/buildNonCustomControllerMethodParameterMetadata.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildNonCustomControllerMethodParameterMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildNormalizedPath.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildNormalizedPath.js +0 -10
- package/lib/cjs/http/calculations/buildNormalizedPath.js.map +0 -1
- package/lib/cjs/http/calculations/buildNormalizedPath.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildNormalizedPath.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.js +0 -18
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.js.map +0 -1
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildSyncCallRouteHandler.d.ts +0 -5
- package/lib/cjs/http/calculations/buildSyncCallRouteHandler.d.ts.map +0 -1
- package/lib/cjs/http/calculations/buildSyncCallRouteHandler.js +0 -17
- package/lib/cjs/http/calculations/buildSyncCallRouteHandler.js.map +0 -1
- package/lib/cjs/http/calculations/buildSyncCallRouteHandler.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/buildSyncCallRouteHandler.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/concatenateHeaders.d.ts.map +0 -1
- package/lib/cjs/http/calculations/concatenateHeaders.js +0 -16
- package/lib/cjs/http/calculations/concatenateHeaders.js.map +0 -1
- package/lib/cjs/http/calculations/concatenateHeaders.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/concatenateHeaders.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/createCustomNativeParameterDecorator.d.ts +0 -5
- package/lib/cjs/http/calculations/createCustomNativeParameterDecorator.d.ts.map +0 -1
- package/lib/cjs/http/calculations/createCustomNativeParameterDecorator.js +0 -9
- package/lib/cjs/http/calculations/createCustomNativeParameterDecorator.js.map +0 -1
- package/lib/cjs/http/calculations/createCustomNativeParameterDecorator.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/createCustomNativeParameterDecorator.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/createCustomParameterDecorator.d.ts +0 -5
- package/lib/cjs/http/calculations/createCustomParameterDecorator.d.ts.map +0 -1
- package/lib/cjs/http/calculations/createCustomParameterDecorator.js +0 -9
- package/lib/cjs/http/calculations/createCustomParameterDecorator.js.map +0 -1
- package/lib/cjs/http/calculations/createCustomParameterDecorator.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/createCustomParameterDecorator.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/getErrorFilterForError.d.ts +0 -4
- package/lib/cjs/http/calculations/getErrorFilterForError.d.ts.map +0 -1
- package/lib/cjs/http/calculations/getErrorFilterForError.js +0 -30
- package/lib/cjs/http/calculations/getErrorFilterForError.js.map +0 -1
- package/lib/cjs/http/calculations/getErrorFilterForError.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/getErrorFilterForError.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/getOptionsAndPipes.d.ts +0 -5
- package/lib/cjs/http/calculations/getOptionsAndPipes.d.ts.map +0 -1
- package/lib/cjs/http/calculations/getOptionsAndPipes.js +0 -19
- package/lib/cjs/http/calculations/getOptionsAndPipes.js.map +0 -1
- package/lib/cjs/http/calculations/nativeRequestParam.d.ts +0 -3
- package/lib/cjs/http/calculations/nativeRequestParam.d.ts.map +0 -1
- package/lib/cjs/http/calculations/nativeRequestParam.js +0 -17
- package/lib/cjs/http/calculations/nativeRequestParam.js.map +0 -1
- package/lib/cjs/http/calculations/requestMethod.d.ts +0 -3
- package/lib/cjs/http/calculations/requestMethod.d.ts.map +0 -1
- package/lib/cjs/http/calculations/requestMethod.js +0 -17
- package/lib/cjs/http/calculations/requestMethod.js.map +0 -1
- package/lib/cjs/http/calculations/requestMethod.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/requestMethod.spec.d.ts.map +0 -1
- package/lib/cjs/http/calculations/requestParam.d.ts +0 -3
- package/lib/cjs/http/calculations/requestParam.d.ts.map +0 -1
- package/lib/cjs/http/calculations/requestParam.js +0 -15
- package/lib/cjs/http/calculations/requestParam.js.map +0 -1
- package/lib/cjs/http/calculations/requestParam.spec.d.ts +0 -2
- package/lib/cjs/http/calculations/requestParam.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/All.d.ts.map +0 -1
- package/lib/cjs/http/decorators/All.js +0 -9
- package/lib/cjs/http/decorators/All.js.map +0 -1
- package/lib/cjs/http/decorators/All.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/All.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Body.d.ts +0 -5
- package/lib/cjs/http/decorators/Body.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Body.js +0 -13
- package/lib/cjs/http/decorators/Body.js.map +0 -1
- package/lib/cjs/http/decorators/Body.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Body.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Controller.d.ts +0 -3
- package/lib/cjs/http/decorators/Controller.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Controller.js +0 -38
- package/lib/cjs/http/decorators/Controller.js.map +0 -1
- package/lib/cjs/http/decorators/Controller.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Controller.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Cookies.d.ts +0 -5
- package/lib/cjs/http/decorators/Cookies.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Cookies.js +0 -13
- package/lib/cjs/http/decorators/Cookies.js.map +0 -1
- package/lib/cjs/http/decorators/Cookies.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Cookies.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Delete.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Delete.js +0 -9
- package/lib/cjs/http/decorators/Delete.js.map +0 -1
- package/lib/cjs/http/decorators/Delete.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Delete.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Get.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Get.js +0 -9
- package/lib/cjs/http/decorators/Get.js.map +0 -1
- package/lib/cjs/http/decorators/Get.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Get.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Head.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Head.js +0 -9
- package/lib/cjs/http/decorators/Head.js.map +0 -1
- package/lib/cjs/http/decorators/Head.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Head.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Headers.d.ts +0 -5
- package/lib/cjs/http/decorators/Headers.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Headers.js +0 -13
- package/lib/cjs/http/decorators/Headers.js.map +0 -1
- package/lib/cjs/http/decorators/Headers.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Headers.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Next.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Next.js +0 -11
- package/lib/cjs/http/decorators/Next.js.map +0 -1
- package/lib/cjs/http/decorators/Next.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Next.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Options.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Options.js +0 -9
- package/lib/cjs/http/decorators/Options.js.map +0 -1
- package/lib/cjs/http/decorators/Options.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Options.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Params.d.ts +0 -5
- package/lib/cjs/http/decorators/Params.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Params.js +0 -13
- package/lib/cjs/http/decorators/Params.js.map +0 -1
- package/lib/cjs/http/decorators/Params.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Params.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Patch.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Patch.js +0 -9
- package/lib/cjs/http/decorators/Patch.js.map +0 -1
- package/lib/cjs/http/decorators/Patch.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Patch.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Post.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Post.js +0 -9
- package/lib/cjs/http/decorators/Post.js.map +0 -1
- package/lib/cjs/http/decorators/Post.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Post.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Put.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Put.js +0 -9
- package/lib/cjs/http/decorators/Put.js.map +0 -1
- package/lib/cjs/http/decorators/Put.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Put.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Query.d.ts +0 -5
- package/lib/cjs/http/decorators/Query.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Query.js +0 -13
- package/lib/cjs/http/decorators/Query.js.map +0 -1
- package/lib/cjs/http/decorators/Query.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Query.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Request.d.ts +0 -4
- package/lib/cjs/http/decorators/Request.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Request.js +0 -11
- package/lib/cjs/http/decorators/Request.js.map +0 -1
- package/lib/cjs/http/decorators/Request.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Request.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Response.d.ts +0 -4
- package/lib/cjs/http/decorators/Response.d.ts.map +0 -1
- package/lib/cjs/http/decorators/Response.js +0 -11
- package/lib/cjs/http/decorators/Response.js.map +0 -1
- package/lib/cjs/http/decorators/Response.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/Response.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/SetHeader.d.ts.map +0 -1
- package/lib/cjs/http/decorators/SetHeader.js +0 -16
- package/lib/cjs/http/decorators/SetHeader.js.map +0 -1
- package/lib/cjs/http/decorators/SetHeader.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/SetHeader.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/StatusCode.d.ts +0 -3
- package/lib/cjs/http/decorators/StatusCode.d.ts.map +0 -1
- package/lib/cjs/http/decorators/StatusCode.js +0 -12
- package/lib/cjs/http/decorators/StatusCode.js.map +0 -1
- package/lib/cjs/http/decorators/StatusCode.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/StatusCode.spec.d.ts.map +0 -1
- package/lib/cjs/http/models/Controller.d.ts +0 -5
- package/lib/cjs/http/models/Controller.d.ts.map +0 -1
- package/lib/cjs/http/models/Controller.js +0 -3
- package/lib/cjs/http/models/Controller.js.map +0 -1
- package/lib/cjs/http/models/ControllerFunction.d.ts +0 -3
- package/lib/cjs/http/models/ControllerFunction.d.ts.map +0 -1
- package/lib/cjs/http/models/ControllerFunction.js +0 -3
- package/lib/cjs/http/models/ControllerFunction.js.map +0 -1
- package/lib/cjs/http/models/ControllerOptions.d.ts +0 -8
- package/lib/cjs/http/models/ControllerOptions.d.ts.map +0 -1
- package/lib/cjs/http/models/ControllerOptions.js +0 -3
- package/lib/cjs/http/models/ControllerOptions.js.map +0 -1
- package/lib/cjs/http/models/ControllerResponse.d.ts +0 -4
- package/lib/cjs/http/models/ControllerResponse.d.ts.map +0 -1
- package/lib/cjs/http/models/ControllerResponse.js +0 -3
- package/lib/cjs/http/models/ControllerResponse.js.map +0 -1
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandler.d.ts +0 -3
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandler.d.ts.map +0 -1
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandler.js +0 -3
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandler.js.map +0 -1
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandlerOptions.d.ts +0 -7
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandlerOptions.d.ts.map +0 -1
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandlerOptions.js +0 -3
- package/lib/cjs/http/models/CustomNativeParameterDecoratorHandlerOptions.js.map +0 -1
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.d.ts +0 -3
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.d.ts.map +0 -1
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.js +0 -3
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.js.map +0 -1
- package/lib/cjs/http/models/CustomParameterDecoratorHandlerOptions.d.ts +0 -11
- package/lib/cjs/http/models/CustomParameterDecoratorHandlerOptions.d.ts.map +0 -1
- package/lib/cjs/http/models/CustomParameterDecoratorHandlerOptions.js +0 -3
- package/lib/cjs/http/models/CustomParameterDecoratorHandlerOptions.js.map +0 -1
- package/lib/cjs/http/models/HttpAdapterOptions.d.ts +0 -5
- package/lib/cjs/http/models/HttpAdapterOptions.d.ts.map +0 -1
- package/lib/cjs/http/models/HttpAdapterOptions.js +0 -3
- package/lib/cjs/http/models/HttpAdapterOptions.js.map +0 -1
- package/lib/cjs/http/models/HttpStatusCode.d.ts.map +0 -1
- package/lib/cjs/http/models/HttpStatusCode.js +0 -62
- package/lib/cjs/http/models/HttpStatusCode.js.map +0 -1
- package/lib/cjs/http/models/MiddlewareHandler.d.ts.map +0 -1
- package/lib/cjs/http/models/MiddlewareHandler.js +0 -3
- package/lib/cjs/http/models/MiddlewareHandler.js.map +0 -1
- package/lib/cjs/http/models/RequestHandler.d.ts.map +0 -1
- package/lib/cjs/http/models/RequestHandler.js +0 -3
- package/lib/cjs/http/models/RequestHandler.js.map +0 -1
- package/lib/cjs/http/models/RequestMethodParameterType.d.ts.map +0 -1
- package/lib/cjs/http/models/RequestMethodParameterType.js +0 -17
- package/lib/cjs/http/models/RequestMethodParameterType.js.map +0 -1
- package/lib/cjs/http/models/RequestMethodType.d.ts.map +0 -1
- package/lib/cjs/http/models/RequestMethodType.js +0 -15
- package/lib/cjs/http/models/RequestMethodType.js.map +0 -1
- package/lib/cjs/http/models/RequiredOptions.d.ts.map +0 -1
- package/lib/cjs/http/models/RequiredOptions.js +0 -3
- package/lib/cjs/http/models/RequiredOptions.js.map +0 -1
- package/lib/cjs/http/models/RouteParamOptions.d.ts.map +0 -1
- package/lib/cjs/http/models/RouteParamOptions.js +0 -3
- package/lib/cjs/http/models/RouteParamOptions.js.map +0 -1
- package/lib/cjs/http/models/RouteParams.d.ts +0 -12
- package/lib/cjs/http/models/RouteParams.d.ts.map +0 -1
- package/lib/cjs/http/models/RouteParams.js +0 -3
- package/lib/cjs/http/models/RouteParams.js.map +0 -1
- package/lib/cjs/http/models/RouterParams.d.ts +0 -6
- package/lib/cjs/http/models/RouterParams.d.ts.map +0 -1
- package/lib/cjs/http/models/RouterParams.js +0 -3
- package/lib/cjs/http/models/RouterParams.js.map +0 -1
- package/lib/cjs/http/models/httpApplicationServiceIdentifier.d.ts.map +0 -1
- package/lib/cjs/http/models/httpApplicationServiceIdentifier.js +0 -5
- package/lib/cjs/http/models/httpApplicationServiceIdentifier.js.map +0 -1
- package/lib/cjs/httpResponse/calculations/isHttpResponse.d.ts +0 -3
- package/lib/cjs/httpResponse/calculations/isHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/calculations/isHttpResponse.js +0 -10
- package/lib/cjs/httpResponse/calculations/isHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/calculations/isHttpResponse.spec.d.ts +0 -2
- package/lib/cjs/httpResponse/calculations/isHttpResponse.spec.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/AcceptedHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/AcceptedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/AcceptedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/AcceptedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/AlreadyReportedHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/AlreadyReportedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/AlreadyReportedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/AlreadyReportedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/BadGatewayHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/BadGatewayHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/BadGatewayHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/BadGatewayHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/BadRequestHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/BadRequestHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/BadRequestHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/BadRequestHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/ConflictHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/ConflictHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/ConflictHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/ConflictHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/ContentDifferentHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/ContentDifferentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/ContentDifferentHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/ContentDifferentHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/CreatedHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/CreatedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/CreatedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/CreatedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.d.ts +0 -11
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.js +0 -19
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.spec.d.ts +0 -2
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.spec.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/ForbiddenHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/ForbiddenHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/ForbiddenHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/ForbiddenHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/GatewayTimeoutHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/GatewayTimeoutHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/GatewayTimeoutHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/GatewayTimeoutHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/GoneHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/GoneHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/GoneHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/GoneHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/HttpResponse.d.ts +0 -10
- package/lib/cjs/httpResponse/models/HttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/HttpResponse.js +0 -5
- package/lib/cjs/httpResponse/models/HttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/HttpVersionNotSupportedHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/HttpVersionNotSupportedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/HttpVersionNotSupportedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/HttpVersionNotSupportedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/InsufficientStorageHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/InsufficientStorageHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/InsufficientStorageHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/InsufficientStorageHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/InternalServerErrorHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/InternalServerErrorHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/InternalServerErrorHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/InternalServerErrorHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/LoopDetectedHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/LoopDetectedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/LoopDetectedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/LoopDetectedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/MethodNotAllowedHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/MethodNotAllowedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/MethodNotAllowedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/MethodNotAllowedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/MultiStatusHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/MultiStatusHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/MultiStatusHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/MultiStatusHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/NonAuthoritativeInformationHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/NonAuthoritativeInformationHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/NonAuthoritativeInformationHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/NonAuthoritativeInformationHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/NotAcceptableHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/NotAcceptableHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/NotAcceptableHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/NotAcceptableHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/NotFoundHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/NotFoundHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/NotFoundHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/NotFoundHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/NotImplementedHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/NotImplementedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/NotImplementedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/NotImplementedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/OkHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/OkHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/OkHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/OkHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/PartialContentHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/PartialContentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/PartialContentHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/PartialContentHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/PaymentRequiredHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/PaymentRequiredHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/PaymentRequiredHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/PaymentRequiredHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/ResetContentHttpResponse.d.ts +0 -5
- package/lib/cjs/httpResponse/models/ResetContentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/ResetContentHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/ResetContentHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/ServiceUnavailableHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/ServiceUnavailableHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/ServiceUnavailableHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/ServiceUnavailableHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.d.ts +0 -11
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.js +0 -18
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.spec.d.ts +0 -2
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.spec.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/UnauthorizedHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/UnauthorizedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/UnauthorizedHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/UnauthorizedHttpResponse.js.map +0 -1
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.d.ts +0 -6
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.d.ts.map +0 -1
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.js +0 -12
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.js.map +0 -1
- package/lib/cjs/index.d.ts +0 -81
- package/lib/cjs/index.d.ts.map +0 -1
- package/lib/cjs/index.js +0 -136
- package/lib/cjs/index.js.map +0 -1
- package/lib/cjs/middleware/actions/handleMiddlewareList.d.ts +0 -3
- package/lib/cjs/middleware/actions/handleMiddlewareList.d.ts.map +0 -1
- package/lib/cjs/middleware/actions/handleMiddlewareList.js +0 -35
- package/lib/cjs/middleware/actions/handleMiddlewareList.js.map +0 -1
- package/lib/cjs/middleware/actions/handleMiddlewareList.spec.d.ts +0 -2
- package/lib/cjs/middleware/actions/handleMiddlewareList.spec.d.ts.map +0 -1
- package/lib/cjs/package.json +0 -3
- package/lib/cjs/reflectMetadata/data/controllerMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMetadataReflectKey.js.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.js.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMethodMetadataReflectKey.js.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodParameterMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodParameterMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMethodParameterMetadataReflectKey.js.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodStatusCodeMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodStatusCodeMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMethodStatusCodeMetadataReflectKey.js.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.js.map +0 -1
- package/lib/cjs/routerExplorer/actions/setControllerMethodParameterMetadata.d.ts +0 -3
- package/lib/cjs/routerExplorer/actions/setControllerMethodParameterMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/actions/setControllerMethodParameterMetadata.js +0 -11
- package/lib/cjs/routerExplorer/actions/setControllerMethodParameterMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/actions/setControllerMethodParameterMetadata.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/actions/setControllerMethodParameterMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.js +0 -11
- package/lib/cjs/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/actions/setControllerMethodUseNativeHandlerMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.d.ts +0 -5
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.js +0 -16
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.d.ts +0 -5
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.js +0 -15
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.d.ts +0 -5
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.js +0 -21
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.d.ts +0 -6
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.js +0 -49
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.d.ts +0 -6
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.js +0 -8
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.d.ts +0 -3
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.js +0 -13
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadata.js +0 -23
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadata.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.d.ts +0 -3
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.js +0 -24
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.d.ts +0 -3
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.js +0 -10
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.d.ts +0 -3
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.js +0 -10
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.js +0 -10
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.spec.d.ts +0 -2
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.spec.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/model/ControllerMetadata.d.ts +0 -8
- package/lib/cjs/routerExplorer/model/ControllerMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/model/ControllerMetadata.js +0 -3
- package/lib/cjs/routerExplorer/model/ControllerMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/model/ControllerMethodMetadata.d.ts +0 -7
- package/lib/cjs/routerExplorer/model/ControllerMethodMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/model/ControllerMethodMetadata.js +0 -3
- package/lib/cjs/routerExplorer/model/ControllerMethodMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/model/ControllerMethodParameterMetadata.d.ts +0 -19
- package/lib/cjs/routerExplorer/model/ControllerMethodParameterMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/model/ControllerMethodParameterMetadata.js +0 -3
- package/lib/cjs/routerExplorer/model/ControllerMethodParameterMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.d.ts +0 -9
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.js +0 -4
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.js.map +0 -1
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.d.ts +0 -20
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.d.ts.map +0 -1
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.js +0 -3
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.js.map +0 -1
- package/lib/esm/index.d.ts +0 -385
- package/lib/esm/index.d.ts.map +0 -1
- package/lib/esm/index.js +0 -2
- package/lib/esm/index.js.map +0 -1
- package/lib/esm/package.json +0 -3
- /package/lib/{cjs/error → error}/models/InversifyHttpAdapterErrorKind.d.ts +0 -0
- /package/lib/{cjs/http → http}/calculations/buildNormalizedPath.d.ts +0 -0
- /package/lib/{cjs/http → http}/calculations/buildSetHeaderMetadata.d.ts +0 -0
- /package/lib/{cjs/http → http}/calculations/concatenateHeaders.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/All.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Delete.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Get.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Head.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Next.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Options.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Patch.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Post.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/Put.d.ts +0 -0
- /package/lib/{cjs/http → http}/decorators/SetHeader.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/HttpStatusCode.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/MiddlewareHandler.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/RequestHandler.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/RequestMethodParameterType.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/RequestMethodType.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/RequiredOptions.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/RouteParamOptions.d.ts +0 -0
- /package/lib/{cjs/http → http}/models/httpApplicationServiceIdentifier.d.ts +0 -0
- /package/lib/{cjs/reflectMetadata → reflectMetadata}/data/controllerMetadataReflectKey.d.ts +0 -0
- /package/lib/{cjs/reflectMetadata → reflectMetadata}/data/controllerMethodHeaderMetadataReflectKey.d.ts +0 -0
- /package/lib/{cjs/reflectMetadata → reflectMetadata}/data/controllerMethodMetadataReflectKey.d.ts +0 -0
- /package/lib/{cjs/reflectMetadata → reflectMetadata}/data/controllerMethodParameterMetadataReflectKey.d.ts +0 -0
- /package/lib/{cjs/reflectMetadata → reflectMetadata}/data/controllerMethodStatusCodeMetadataReflectKey.d.ts +0 -0
- /package/lib/{cjs/reflectMetadata → reflectMetadata}/data/controllerMethodUseNativeHandlerMetadataReflectKey.d.ts +0 -0
- /package/lib/{cjs/routerExplorer → routerExplorer}/actions/setControllerMethodUseNativeHandlerMetadata.d.ts +0 -0
- /package/lib/{cjs/routerExplorer → routerExplorer}/calculations/getControllerMethodHeaderMetadata.d.ts +0 -0
- /package/lib/{cjs/routerExplorer → routerExplorer}/calculations/getControllerMethodUseNativeHandlerMetadata.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Controller.js","sourceRoot":"","sources":["../../../../src/http/models/Controller.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ControllerFunction.d.ts","sourceRoot":"","sources":["../../../../src/http/models/ControllerFunction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,MAAM,MAAM,kBAAkB,GAAG,CAC/B,GAAG,IAAI,EAAE,OAAO,EAAE,KACf,OAAO,CAAC,kBAAkB,CAAC,GAAG,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ControllerFunction.js","sourceRoot":"","sources":["../../../../src/http/models/ControllerFunction.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ControllerOptions.d.ts","sourceRoot":"","sources":["../../../../src/http/models/ControllerOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE5D,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;CACvC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ControllerOptions.js","sourceRoot":"","sources":["../../../../src/http/models/ControllerOptions.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ControllerResponse.d.ts","sourceRoot":"","sources":["../../../../src/http/models/ControllerResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AAEtE,MAAM,MAAM,kBAAkB,GAC1B,YAAY,GACZ,MAAM,GACN,MAAM,GACN,MAAM,GACN,OAAO,GACP,QAAQ,GACR,SAAS,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ControllerResponse.js","sourceRoot":"","sources":["../../../../src/http/models/ControllerResponse.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { CustomNativeParameterDecoratorHandlerOptions } from './CustomNativeParameterDecoratorHandlerOptions';
|
|
2
|
-
export type CustomNativeParameterDecoratorHandler<TRequest = any, TResponse = any, TDecoratorResult = any, TResult = any> = (request: TRequest, response: TResponse, options: CustomNativeParameterDecoratorHandlerOptions<TRequest, TResponse, TResult>) => Promise<TDecoratorResult> | TDecoratorResult;
|
|
3
|
-
//# sourceMappingURL=CustomNativeParameterDecoratorHandler.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomNativeParameterDecoratorHandler.d.ts","sourceRoot":"","sources":["../../../../src/http/models/CustomNativeParameterDecoratorHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4CAA4C,EAAE,MAAM,gDAAgD,CAAC;AAG9G,MAAM,MAAM,qCAAqC,CAC/C,QAAQ,GAAG,GAAG,EACd,SAAS,GAAG,GAAG,EACf,gBAAgB,GAAG,GAAG,EACtB,OAAO,GAAG,GAAG,IACX,CACF,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,EACnB,OAAO,EAAE,4CAA4C,CACnD,QAAQ,EACR,SAAS,EACT,OAAO,CACR,KACE,OAAO,CAAC,gBAAgB,CAAC,GAAG,gBAAgB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomNativeParameterDecoratorHandler.js","sourceRoot":"","sources":["../../../../src/http/models/CustomNativeParameterDecoratorHandler.ts"],"names":[],"mappings":""}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ControllerResponse } from './ControllerResponse';
|
|
2
|
-
import { CustomParameterDecoratorHandlerOptions } from './CustomParameterDecoratorHandlerOptions';
|
|
3
|
-
export interface CustomNativeParameterDecoratorHandlerOptions<TRequest = any, TResponse = any, TResult = any> extends CustomParameterDecoratorHandlerOptions<TRequest, TResponse> {
|
|
4
|
-
send(request: TRequest, response: TResponse, value: ControllerResponse): TResult | Promise<TResult>;
|
|
5
|
-
sendBodySeparator(request: TRequest, response: TResponse): void | Promise<void>;
|
|
6
|
-
}
|
|
7
|
-
//# sourceMappingURL=CustomNativeParameterDecoratorHandlerOptions.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomNativeParameterDecoratorHandlerOptions.d.ts","sourceRoot":"","sources":["../../../../src/http/models/CustomNativeParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,sCAAsC,EAAE,MAAM,0CAA0C,CAAC;AAGlG,MAAM,WAAW,4CAA4C,CAC3D,QAAQ,GAAG,GAAG,EACd,SAAS,GAAG,GAAG,EACf,OAAO,GAAG,GAAG,CACb,SAAQ,sCAAsC,CAAC,QAAQ,EAAE,SAAS,CAAC;IACnE,IAAI,CACF,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,EACnB,KAAK,EAAE,kBAAkB,GACxB,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAC9B,iBAAiB,CACf,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,GAClB,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomNativeParameterDecoratorHandlerOptions.js","sourceRoot":"","sources":["../../../../src/http/models/CustomNativeParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { CustomParameterDecoratorHandlerOptions } from './CustomParameterDecoratorHandlerOptions';
|
|
2
|
-
export type CustomParameterDecoratorHandler<TRequest = any, TResponse = any, TResult = any> = (request: TRequest, response: TResponse, options: CustomParameterDecoratorHandlerOptions<TRequest, TResponse>) => Promise<TResult> | TResult;
|
|
3
|
-
//# sourceMappingURL=CustomParameterDecoratorHandler.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomParameterDecoratorHandler.d.ts","sourceRoot":"","sources":["../../../../src/http/models/CustomParameterDecoratorHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sCAAsC,EAAE,MAAM,0CAA0C,CAAC;AAGlG,MAAM,MAAM,+BAA+B,CACzC,QAAQ,GAAG,GAAG,EACd,SAAS,GAAG,GAAG,EACf,OAAO,GAAG,GAAG,IACX,CACF,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,EACnB,OAAO,EAAE,sCAAsC,CAAC,QAAQ,EAAE,SAAS,CAAC,KACjE,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomParameterDecoratorHandler.js","sourceRoot":"","sources":["../../../../src/http/models/CustomParameterDecoratorHandler.ts"],"names":[],"mappings":""}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { HttpStatusCode } from './HttpStatusCode';
|
|
2
|
-
export interface CustomParameterDecoratorHandlerOptions<TRequest, TResponse> {
|
|
3
|
-
getBody: (request: TRequest, response: TResponse, parameterName?: string) => unknown;
|
|
4
|
-
getCookies: (request: TRequest, response: TResponse, parameterName?: string) => unknown;
|
|
5
|
-
getHeaders: (request: TRequest, parameterName?: string) => unknown;
|
|
6
|
-
getParams: (request: TRequest, parameterName?: string) => unknown;
|
|
7
|
-
getQuery: (request: TRequest, parameterName?: string) => unknown;
|
|
8
|
-
setHeader(request: TRequest, response: TResponse, key: string, value: string): void;
|
|
9
|
-
setStatus(request: TRequest, response: TResponse, statusCode: HttpStatusCode): void;
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=CustomParameterDecoratorHandlerOptions.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomParameterDecoratorHandlerOptions.d.ts","sourceRoot":"","sources":["../../../../src/http/models/CustomParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,WAAW,sCAAsC,CAAC,QAAQ,EAAE,SAAS;IACzE,OAAO,EAAE,CACP,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,EACnB,aAAa,CAAC,EAAE,MAAM,KACnB,OAAO,CAAC;IACb,UAAU,EAAE,CACV,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,EACnB,aAAa,CAAC,EAAE,MAAM,KACnB,OAAO,CAAC;IACb,UAAU,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,aAAa,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC;IACnE,SAAS,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,aAAa,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC;IAClE,QAAQ,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,aAAa,CAAC,EAAE,MAAM,KAAK,OAAO,CAAC;IACjE,SAAS,CACP,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,EACnB,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,GACZ,IAAI,CAAC;IACR,SAAS,CACP,OAAO,EAAE,QAAQ,EACjB,QAAQ,EAAE,SAAS,EACnB,UAAU,EAAE,cAAc,GACzB,IAAI,CAAC;CACT"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomParameterDecoratorHandlerOptions.js","sourceRoot":"","sources":["../../../../src/http/models/CustomParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"HttpAdapterOptions.d.ts","sourceRoot":"","sources":["../../../../src/http/models/HttpAdapterOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAE7C,MAAM,WAAW,kBAAkB;IACjC,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CAC3B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"HttpAdapterOptions.js","sourceRoot":"","sources":["../../../../src/http/models/HttpAdapterOptions.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"HttpStatusCode.d.ts","sourceRoot":"","sources":["../../../../src/http/models/HttpStatusCode.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,QAAQ,MAAM;IACd,mBAAmB,MAAM;IACzB,UAAU,MAAM;IAChB,UAAU,MAAM;IAChB,EAAE,MAAM;IACR,OAAO,MAAM;IACb,QAAQ,MAAM;IACd,6BAA6B,MAAM;IACnC,UAAU,MAAM;IAChB,aAAa,MAAM;IACnB,eAAe,MAAM;IACrB,YAAY,MAAM;IAClB,gBAAgB,MAAM;IACtB,iBAAiB,MAAM;IACvB,SAAS,MAAM;IACf,iBAAiB,MAAM;IACvB,KAAK,MAAM;IACX,SAAS,MAAM;IACf,YAAY,MAAM;IAClB,kBAAkB,MAAM;IACxB,kBAAkB,MAAM;IACxB,WAAW,MAAM;IACjB,YAAY,MAAM;IAClB,gBAAgB,MAAM;IACtB,SAAS,MAAM;IACf,SAAS,MAAM;IACf,kBAAkB,MAAM;IACxB,cAAc,MAAM;IACpB,6BAA6B,MAAM;IACnC,eAAe,MAAM;IACrB,QAAQ,MAAM;IACd,IAAI,MAAM;IACV,eAAe,MAAM;IACrB,mBAAmB,MAAM;IACzB,iBAAiB,MAAM;IACvB,YAAY,MAAM;IAClB,sBAAsB,MAAM;IAC5B,+BAA+B,MAAM;IACrC,kBAAkB,MAAM;IACxB,aAAa,MAAM;IACnB,WAAW,MAAM;IACjB,oBAAoB,MAAM;IAC1B,MAAM,MAAM;IACZ,iBAAiB,MAAM;IACvB,qBAAqB,MAAM;IAC3B,iBAAiB,MAAM;IACvB,mBAAmB,MAAM;IACzB,qBAAqB,MAAM;IAC3B,eAAe,MAAM;IACrB,WAAW,MAAM;IACjB,mBAAmB,MAAM;IACzB,eAAe,MAAM;IACrB,0BAA0B,MAAM;IAChC,oBAAoB,MAAM;IAC1B,aAAa,MAAM;CACpB"}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.HttpStatusCode = void 0;
|
|
4
|
-
var HttpStatusCode;
|
|
5
|
-
(function (HttpStatusCode) {
|
|
6
|
-
HttpStatusCode[HttpStatusCode["CONTINUE"] = 100] = "CONTINUE";
|
|
7
|
-
HttpStatusCode[HttpStatusCode["SWITCHING_PROTOCOLS"] = 101] = "SWITCHING_PROTOCOLS";
|
|
8
|
-
HttpStatusCode[HttpStatusCode["PROCESSING"] = 102] = "PROCESSING";
|
|
9
|
-
HttpStatusCode[HttpStatusCode["EARLYHINTS"] = 103] = "EARLYHINTS";
|
|
10
|
-
HttpStatusCode[HttpStatusCode["OK"] = 200] = "OK";
|
|
11
|
-
HttpStatusCode[HttpStatusCode["CREATED"] = 201] = "CREATED";
|
|
12
|
-
HttpStatusCode[HttpStatusCode["ACCEPTED"] = 202] = "ACCEPTED";
|
|
13
|
-
HttpStatusCode[HttpStatusCode["NON_AUTHORITATIVE_INFORMATION"] = 203] = "NON_AUTHORITATIVE_INFORMATION";
|
|
14
|
-
HttpStatusCode[HttpStatusCode["NO_CONTENT"] = 204] = "NO_CONTENT";
|
|
15
|
-
HttpStatusCode[HttpStatusCode["RESET_CONTENT"] = 205] = "RESET_CONTENT";
|
|
16
|
-
HttpStatusCode[HttpStatusCode["PARTIAL_CONTENT"] = 206] = "PARTIAL_CONTENT";
|
|
17
|
-
HttpStatusCode[HttpStatusCode["MULTI_STATUS"] = 207] = "MULTI_STATUS";
|
|
18
|
-
HttpStatusCode[HttpStatusCode["ALREADY_REPORTED"] = 208] = "ALREADY_REPORTED";
|
|
19
|
-
HttpStatusCode[HttpStatusCode["CONTENT_DIFFERENT"] = 210] = "CONTENT_DIFFERENT";
|
|
20
|
-
HttpStatusCode[HttpStatusCode["AMBIGUOUS"] = 300] = "AMBIGUOUS";
|
|
21
|
-
HttpStatusCode[HttpStatusCode["MOVED_PERMANENTLY"] = 301] = "MOVED_PERMANENTLY";
|
|
22
|
-
HttpStatusCode[HttpStatusCode["FOUND"] = 302] = "FOUND";
|
|
23
|
-
HttpStatusCode[HttpStatusCode["SEE_OTHER"] = 303] = "SEE_OTHER";
|
|
24
|
-
HttpStatusCode[HttpStatusCode["NOT_MODIFIED"] = 304] = "NOT_MODIFIED";
|
|
25
|
-
HttpStatusCode[HttpStatusCode["TEMPORARY_REDIRECT"] = 307] = "TEMPORARY_REDIRECT";
|
|
26
|
-
HttpStatusCode[HttpStatusCode["PERMANENT_REDIRECT"] = 308] = "PERMANENT_REDIRECT";
|
|
27
|
-
HttpStatusCode[HttpStatusCode["BAD_REQUEST"] = 400] = "BAD_REQUEST";
|
|
28
|
-
HttpStatusCode[HttpStatusCode["UNAUTHORIZED"] = 401] = "UNAUTHORIZED";
|
|
29
|
-
HttpStatusCode[HttpStatusCode["PAYMENT_REQUIRED"] = 402] = "PAYMENT_REQUIRED";
|
|
30
|
-
HttpStatusCode[HttpStatusCode["FORBIDDEN"] = 403] = "FORBIDDEN";
|
|
31
|
-
HttpStatusCode[HttpStatusCode["NOT_FOUND"] = 404] = "NOT_FOUND";
|
|
32
|
-
HttpStatusCode[HttpStatusCode["METHOD_NOT_ALLOWED"] = 405] = "METHOD_NOT_ALLOWED";
|
|
33
|
-
HttpStatusCode[HttpStatusCode["NOT_ACCEPTABLE"] = 406] = "NOT_ACCEPTABLE";
|
|
34
|
-
HttpStatusCode[HttpStatusCode["PROXY_AUTHENTICATION_REQUIRED"] = 407] = "PROXY_AUTHENTICATION_REQUIRED";
|
|
35
|
-
HttpStatusCode[HttpStatusCode["REQUEST_TIMEOUT"] = 408] = "REQUEST_TIMEOUT";
|
|
36
|
-
HttpStatusCode[HttpStatusCode["CONFLICT"] = 409] = "CONFLICT";
|
|
37
|
-
HttpStatusCode[HttpStatusCode["GONE"] = 410] = "GONE";
|
|
38
|
-
HttpStatusCode[HttpStatusCode["LENGTH_REQUIRED"] = 411] = "LENGTH_REQUIRED";
|
|
39
|
-
HttpStatusCode[HttpStatusCode["PRECONDITION_FAILED"] = 412] = "PRECONDITION_FAILED";
|
|
40
|
-
HttpStatusCode[HttpStatusCode["PAYLOAD_TOO_LARGE"] = 413] = "PAYLOAD_TOO_LARGE";
|
|
41
|
-
HttpStatusCode[HttpStatusCode["URI_TOO_LONG"] = 414] = "URI_TOO_LONG";
|
|
42
|
-
HttpStatusCode[HttpStatusCode["UNSUPPORTED_MEDIA_TYPE"] = 415] = "UNSUPPORTED_MEDIA_TYPE";
|
|
43
|
-
HttpStatusCode[HttpStatusCode["REQUESTED_RANGE_NOT_SATISFIABLE"] = 416] = "REQUESTED_RANGE_NOT_SATISFIABLE";
|
|
44
|
-
HttpStatusCode[HttpStatusCode["EXPECTATION_FAILED"] = 417] = "EXPECTATION_FAILED";
|
|
45
|
-
HttpStatusCode[HttpStatusCode["I_AM_A_TEAPOT"] = 418] = "I_AM_A_TEAPOT";
|
|
46
|
-
HttpStatusCode[HttpStatusCode["MISDIRECTED"] = 421] = "MISDIRECTED";
|
|
47
|
-
HttpStatusCode[HttpStatusCode["UNPROCESSABLE_ENTITY"] = 422] = "UNPROCESSABLE_ENTITY";
|
|
48
|
-
HttpStatusCode[HttpStatusCode["LOCKED"] = 423] = "LOCKED";
|
|
49
|
-
HttpStatusCode[HttpStatusCode["FAILED_DEPENDENCY"] = 424] = "FAILED_DEPENDENCY";
|
|
50
|
-
HttpStatusCode[HttpStatusCode["PRECONDITION_REQUIRED"] = 428] = "PRECONDITION_REQUIRED";
|
|
51
|
-
HttpStatusCode[HttpStatusCode["TOO_MANY_REQUESTS"] = 429] = "TOO_MANY_REQUESTS";
|
|
52
|
-
HttpStatusCode[HttpStatusCode["UNRECOVERABLE_ERROR"] = 456] = "UNRECOVERABLE_ERROR";
|
|
53
|
-
HttpStatusCode[HttpStatusCode["INTERNAL_SERVER_ERROR"] = 500] = "INTERNAL_SERVER_ERROR";
|
|
54
|
-
HttpStatusCode[HttpStatusCode["NOT_IMPLEMENTED"] = 501] = "NOT_IMPLEMENTED";
|
|
55
|
-
HttpStatusCode[HttpStatusCode["BAD_GATEWAY"] = 502] = "BAD_GATEWAY";
|
|
56
|
-
HttpStatusCode[HttpStatusCode["SERVICE_UNAVAILABLE"] = 503] = "SERVICE_UNAVAILABLE";
|
|
57
|
-
HttpStatusCode[HttpStatusCode["GATEWAY_TIMEOUT"] = 504] = "GATEWAY_TIMEOUT";
|
|
58
|
-
HttpStatusCode[HttpStatusCode["HTTP_VERSION_NOT_SUPPORTED"] = 505] = "HTTP_VERSION_NOT_SUPPORTED";
|
|
59
|
-
HttpStatusCode[HttpStatusCode["INSUFFICIENT_STORAGE"] = 507] = "INSUFFICIENT_STORAGE";
|
|
60
|
-
HttpStatusCode[HttpStatusCode["LOOP_DETECTED"] = 508] = "LOOP_DETECTED";
|
|
61
|
-
})(HttpStatusCode || (exports.HttpStatusCode = HttpStatusCode = {}));
|
|
62
|
-
//# sourceMappingURL=HttpStatusCode.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"HttpStatusCode.js","sourceRoot":"","sources":["../../../../src/http/models/HttpStatusCode.ts"],"names":[],"mappings":";;;AAAA,IAAY,cAwDX;AAxDD,WAAY,cAAc;IACxB,6DAAc,CAAA;IACd,mFAAyB,CAAA;IACzB,iEAAgB,CAAA;IAChB,iEAAgB,CAAA;IAChB,iDAAQ,CAAA;IACR,2DAAa,CAAA;IACb,6DAAc,CAAA;IACd,uGAAmC,CAAA;IACnC,iEAAgB,CAAA;IAChB,uEAAmB,CAAA;IACnB,2EAAqB,CAAA;IACrB,qEAAkB,CAAA;IAClB,6EAAsB,CAAA;IACtB,+EAAuB,CAAA;IACvB,+DAAe,CAAA;IACf,+EAAuB,CAAA;IACvB,uDAAW,CAAA;IACX,+DAAe,CAAA;IACf,qEAAkB,CAAA;IAClB,iFAAwB,CAAA;IACxB,iFAAwB,CAAA;IACxB,mEAAiB,CAAA;IACjB,qEAAkB,CAAA;IAClB,6EAAsB,CAAA;IACtB,+DAAe,CAAA;IACf,+DAAe,CAAA;IACf,iFAAwB,CAAA;IACxB,yEAAoB,CAAA;IACpB,uGAAmC,CAAA;IACnC,2EAAqB,CAAA;IACrB,6DAAc,CAAA;IACd,qDAAU,CAAA;IACV,2EAAqB,CAAA;IACrB,mFAAyB,CAAA;IACzB,+EAAuB,CAAA;IACvB,qEAAkB,CAAA;IAClB,yFAA4B,CAAA;IAC5B,2GAAqC,CAAA;IACrC,iFAAwB,CAAA;IACxB,uEAAmB,CAAA;IACnB,mEAAiB,CAAA;IACjB,qFAA0B,CAAA;IAC1B,yDAAY,CAAA;IACZ,+EAAuB,CAAA;IACvB,uFAA2B,CAAA;IAC3B,+EAAuB,CAAA;IACvB,mFAAyB,CAAA;IACzB,uFAA2B,CAAA;IAC3B,2EAAqB,CAAA;IACrB,mEAAiB,CAAA;IACjB,mFAAyB,CAAA;IACzB,2EAAqB,CAAA;IACrB,iGAAgC,CAAA;IAChC,qFAA0B,CAAA;IAC1B,uEAAmB,CAAA;AACrB,CAAC,EAxDW,cAAc,8BAAd,cAAc,QAwDzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MiddlewareHandler.d.ts","sourceRoot":"","sources":["../../../../src/http/models/MiddlewareHandler.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,CAC3B,QAAQ,EACR,SAAS,EACT,aAAa,EACb,OAAO,GAAG,OAAO,IACf,CACF,GAAG,EAAE,QAAQ,EACb,GAAG,EAAE,SAAS,EACd,IAAI,EAAE,aAAa,KAChB,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MiddlewareHandler.js","sourceRoot":"","sources":["../../../../src/http/models/MiddlewareHandler.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestHandler.d.ts","sourceRoot":"","sources":["../../../../src/http/models/RequestHandler.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,CACxB,QAAQ,EACR,SAAS,EACT,aAAa,EACb,OAAO,GAAG,OAAO,IACf,CACF,GAAG,EAAE,QAAQ,EACb,GAAG,EAAE,SAAS,EACd,IAAI,EAAE,aAAa,KAChB,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestHandler.js","sourceRoot":"","sources":["../../../../src/http/models/RequestHandler.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestMethodParameterType.d.ts","sourceRoot":"","sources":["../../../../src/http/models/RequestMethodParameterType.ts"],"names":[],"mappings":"AAAA,oBAAY,0BAA0B;IACpC,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,KAAK,UAAU;CAChB;AAED,MAAM,MAAM,mCAAmC,GAAG,OAAO,CACvD,0BAA0B,EAC1B,0BAA0B,CAAC,MAAM,GAAG,0BAA0B,CAAC,YAAY,CAC5E,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RequestMethodParameterType = void 0;
|
|
4
|
-
var RequestMethodParameterType;
|
|
5
|
-
(function (RequestMethodParameterType) {
|
|
6
|
-
RequestMethodParameterType["Body"] = "body";
|
|
7
|
-
RequestMethodParameterType["Cookies"] = "cookies";
|
|
8
|
-
RequestMethodParameterType["Custom"] = "custom";
|
|
9
|
-
RequestMethodParameterType["CustomNative"] = "customNative";
|
|
10
|
-
RequestMethodParameterType["Headers"] = "headers";
|
|
11
|
-
RequestMethodParameterType["Next"] = "next";
|
|
12
|
-
RequestMethodParameterType["Params"] = "params";
|
|
13
|
-
RequestMethodParameterType["Request"] = "request";
|
|
14
|
-
RequestMethodParameterType["Response"] = "response";
|
|
15
|
-
RequestMethodParameterType["Query"] = "query";
|
|
16
|
-
})(RequestMethodParameterType || (exports.RequestMethodParameterType = RequestMethodParameterType = {}));
|
|
17
|
-
//# sourceMappingURL=RequestMethodParameterType.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestMethodParameterType.js","sourceRoot":"","sources":["../../../../src/http/models/RequestMethodParameterType.ts"],"names":[],"mappings":";;;AAAA,IAAY,0BAWX;AAXD,WAAY,0BAA0B;IACpC,2CAAa,CAAA;IACb,iDAAmB,CAAA;IACnB,+CAAiB,CAAA;IACjB,2DAA6B,CAAA;IAC7B,iDAAmB,CAAA;IACnB,2CAAa,CAAA;IACb,+CAAiB,CAAA;IACjB,iDAAmB,CAAA;IACnB,mDAAqB,CAAA;IACrB,6CAAe,CAAA;AACjB,CAAC,EAXW,0BAA0B,0CAA1B,0BAA0B,QAWrC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestMethodType.d.ts","sourceRoot":"","sources":["../../../../src/http/models/RequestMethodType.ts"],"names":[],"mappings":"AAAA,oBAAY,iBAAiB;IAC3B,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,IAAI,SAAS;IACb,GAAG,QAAQ;CACZ"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RequestMethodType = void 0;
|
|
4
|
-
var RequestMethodType;
|
|
5
|
-
(function (RequestMethodType) {
|
|
6
|
-
RequestMethodType["All"] = "all";
|
|
7
|
-
RequestMethodType["Delete"] = "delete";
|
|
8
|
-
RequestMethodType["Get"] = "get";
|
|
9
|
-
RequestMethodType["Head"] = "head";
|
|
10
|
-
RequestMethodType["Options"] = "options";
|
|
11
|
-
RequestMethodType["Patch"] = "patch";
|
|
12
|
-
RequestMethodType["Post"] = "post";
|
|
13
|
-
RequestMethodType["Put"] = "put";
|
|
14
|
-
})(RequestMethodType || (exports.RequestMethodType = RequestMethodType = {}));
|
|
15
|
-
//# sourceMappingURL=RequestMethodType.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestMethodType.js","sourceRoot":"","sources":["../../../../src/http/models/RequestMethodType.ts"],"names":[],"mappings":";;;AAAA,IAAY,iBASX;AATD,WAAY,iBAAiB;IAC3B,gCAAW,CAAA;IACX,sCAAiB,CAAA;IACjB,gCAAW,CAAA;IACX,kCAAa,CAAA;IACb,wCAAmB,CAAA;IACnB,oCAAe,CAAA;IACf,kCAAa,CAAA;IACb,gCAAW,CAAA;AACb,CAAC,EATW,iBAAiB,iCAAjB,iBAAiB,QAS5B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequiredOptions.d.ts","sourceRoot":"","sources":["../../../../src/http/models/RequiredOptions.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI;KAC9B,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CACpC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequiredOptions.js","sourceRoot":"","sources":["../../../../src/http/models/RequiredOptions.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RouteParamOptions.d.ts","sourceRoot":"","sources":["../../../../src/http/models/RouteParamOptions.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RouteParamOptions.js","sourceRoot":"","sources":["../../../../src/http/models/RouteParamOptions.ts"],"names":[],"mappings":""}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { MiddlewareHandler } from './MiddlewareHandler';
|
|
2
|
-
import { RequestHandler } from './RequestHandler';
|
|
3
|
-
import { RequestMethodType } from './RequestMethodType';
|
|
4
|
-
export interface RouteParams<TRequest, TResponse, TNextFunction, TResult> {
|
|
5
|
-
guardList: MiddlewareHandler<TRequest, TResponse, TNextFunction, TResult | undefined>[];
|
|
6
|
-
handler: RequestHandler<TRequest, TResponse, TNextFunction, TResult>;
|
|
7
|
-
path: string;
|
|
8
|
-
postHandlerMiddlewareList: MiddlewareHandler<TRequest, TResponse, TNextFunction, TResult>[];
|
|
9
|
-
preHandlerMiddlewareList: MiddlewareHandler<TRequest, TResponse, TNextFunction, TResult>[];
|
|
10
|
-
requestMethodType: RequestMethodType;
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=RouteParams.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RouteParams.d.ts","sourceRoot":"","sources":["../../../../src/http/models/RouteParams.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,MAAM,WAAW,WAAW,CAAC,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAE,OAAO;IACtE,SAAS,EAAE,iBAAiB,CAC1B,QAAQ,EACR,SAAS,EACT,aAAa,EACb,OAAO,GAAG,SAAS,CACpB,EAAE,CAAC;IACJ,OAAO,EAAE,cAAc,CAAC,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAE,OAAO,CAAC,CAAC;IACrE,IAAI,EAAE,MAAM,CAAC;IACb,yBAAyB,EAAE,iBAAiB,CAC1C,QAAQ,EACR,SAAS,EACT,aAAa,EACb,OAAO,CACR,EAAE,CAAC;IACJ,wBAAwB,EAAE,iBAAiB,CACzC,QAAQ,EACR,SAAS,EACT,aAAa,EACb,OAAO,CACR,EAAE,CAAC;IACJ,iBAAiB,EAAE,iBAAiB,CAAC;CACtC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RouteParams.js","sourceRoot":"","sources":["../../../../src/http/models/RouteParams.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RouterParams.d.ts","sourceRoot":"","sources":["../../../../src/http/models/RouterParams.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,MAAM,WAAW,YAAY,CAAC,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAE,OAAO;IACvE,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,WAAW,CAAC,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAE,OAAO,CAAC,EAAE,CAAC;CAC7E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RouterParams.js","sourceRoot":"","sources":["../../../../src/http/models/RouterParams.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"httpApplicationServiceIdentifier.d.ts","sourceRoot":"","sources":["../../../../src/http/models/httpApplicationServiceIdentifier.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gCAAgC,EAAE,OAAO,MAErD,CAAC"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.httpApplicationServiceIdentifier = void 0;
|
|
4
|
-
exports.httpApplicationServiceIdentifier = Symbol.for('@inversifyjs/http-core/application');
|
|
5
|
-
//# sourceMappingURL=httpApplicationServiceIdentifier.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"httpApplicationServiceIdentifier.js","sourceRoot":"","sources":["../../../../src/http/models/httpApplicationServiceIdentifier.ts"],"names":[],"mappings":";;;AAAa,QAAA,gCAAgC,GAAkB,MAAM,CAAC,GAAG,CACvE,oCAAoC,CACrC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/calculations/isHttpResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EAEb,MAAM,wBAAwB,CAAC;AAEhC,wBAAgB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,YAAY,CAMpE"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isHttpResponse = isHttpResponse;
|
|
4
|
-
const HttpResponse_1 = require("../models/HttpResponse");
|
|
5
|
-
function isHttpResponse(value) {
|
|
6
|
-
return (typeof value === 'object' &&
|
|
7
|
-
value !== null &&
|
|
8
|
-
value[HttpResponse_1.isHttpResponse] === true);
|
|
9
|
-
}
|
|
10
|
-
//# sourceMappingURL=isHttpResponse.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/calculations/isHttpResponse.ts"],"names":[],"mappings":";;AAKA,wCAMC;AAXD,yDAGgC;AAEhC,SAAgB,cAAc,CAAC,KAAc;IAC3C,OAAO,CACL,OAAO,KAAK,KAAK,QAAQ;QACzB,KAAK,KAAK,IAAI;QACb,KAA+B,CAAC,6BAAoB,CAAC,KAAK,IAAI,CAChE,CAAC;AACJ,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isHttpResponse.spec.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/calculations/isHttpResponse.spec.ts"],"names":[],"mappings":""}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { SuccessHttpResponse } from './SuccessHttpResponse';
|
|
2
|
-
export declare class AcceptedHttpResponse extends SuccessHttpResponse {
|
|
3
|
-
constructor(body?: object | string | number | boolean, headers?: Record<string, string>);
|
|
4
|
-
}
|
|
5
|
-
//# sourceMappingURL=AcceptedHttpResponse.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AcceptedHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/AcceptedHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,oBAAqB,SAAQ,mBAAmB;gBAEzD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,EACzC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;CAInC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AcceptedHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
-
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
-
class AcceptedHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
|
-
constructor(body, headers) {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.ACCEPTED, body, headers);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
exports.AcceptedHttpResponse = AcceptedHttpResponse;
|
|
12
|
-
//# sourceMappingURL=AcceptedHttpResponse.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AcceptedHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/AcceptedHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,oBAAqB,SAAQ,yCAAmB;IAC3D,YACE,IAAyC,EACzC,OAAgC;QAEhC,KAAK,CAAC,+BAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IAChD,CAAC;CACF;AAPD,oDAOC"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { SuccessHttpResponse } from './SuccessHttpResponse';
|
|
2
|
-
export declare class AlreadyReportedHttpResponse extends SuccessHttpResponse {
|
|
3
|
-
constructor(body?: object | string | number | boolean, headers?: Record<string, string>);
|
|
4
|
-
}
|
|
5
|
-
//# sourceMappingURL=AlreadyReportedHttpResponse.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AlreadyReportedHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/AlreadyReportedHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,2BAA4B,SAAQ,mBAAmB;gBAEhE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,EACzC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;CAInC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AlreadyReportedHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
-
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
-
class AlreadyReportedHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
|
-
constructor(body, headers) {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.ALREADY_REPORTED, body, headers);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
exports.AlreadyReportedHttpResponse = AlreadyReportedHttpResponse;
|
|
12
|
-
//# sourceMappingURL=AlreadyReportedHttpResponse.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AlreadyReportedHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/AlreadyReportedHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,2BAA4B,SAAQ,yCAAmB;IAClE,YACE,IAAyC,EACzC,OAAgC;QAEhC,KAAK,CAAC,+BAAc,CAAC,gBAAgB,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IACxD,CAAC;CACF;AAPD,kEAOC"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { Stream } from 'node:stream';
|
|
2
|
-
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
3
|
-
export declare class BadGatewayHttpResponse extends ErrorHttpResponse {
|
|
4
|
-
constructor(body?: object | string | number | boolean | Stream | undefined, errorMessage?: string, errorOptions?: ErrorOptions, headers?: Record<string, string>);
|
|
5
|
-
}
|
|
6
|
-
//# sourceMappingURL=BadGatewayHttpResponse.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BadGatewayHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/BadGatewayHttpResponse.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAG1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,sBAAuB,SAAQ,iBAAiB;gBAEzD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,EAC9D,YAAY,GAAE,MAAsB,EACpC,YAAY,CAAC,EAAE,YAAY,EAC3B,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;CAUnC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BadGatewayHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
-
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
|
-
class BadGatewayHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(body, errorMessage = 'Bad Gateway', errorOptions, headers) {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.BAD_GATEWAY, body, errorMessage, errorOptions, headers);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
exports.BadGatewayHttpResponse = BadGatewayHttpResponse;
|
|
12
|
-
//# sourceMappingURL=BadGatewayHttpResponse.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BadGatewayHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/BadGatewayHttpResponse.ts"],"names":[],"mappings":";;;AAEA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,sBAAuB,SAAQ,qCAAiB;IAC3D,YACE,IAA8D,EAC9D,eAAuB,aAAa,EACpC,YAA2B,EAC3B,OAAgC;QAEhC,KAAK,CACH,+BAAc,CAAC,WAAW,EAC1B,IAAI,EACJ,YAAY,EACZ,YAAY,EACZ,OAAO,CACR,CAAC;IACJ,CAAC;CACF;AAfD,wDAeC"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { Stream } from 'node:stream';
|
|
2
|
-
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
3
|
-
export declare class BadRequestHttpResponse extends ErrorHttpResponse {
|
|
4
|
-
constructor(body?: object | string | number | boolean | Stream | undefined, errorMessage?: string, errorOptions?: ErrorOptions, headers?: Record<string, string>);
|
|
5
|
-
}
|
|
6
|
-
//# sourceMappingURL=BadRequestHttpResponse.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BadRequestHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/BadRequestHttpResponse.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAG1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,sBAAuB,SAAQ,iBAAiB;gBAEzD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,EAC9D,YAAY,GAAE,MAAsB,EACpC,YAAY,CAAC,EAAE,YAAY,EAC3B,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;CAUnC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BadRequestHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
-
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
|
-
class BadRequestHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(body, errorMessage = 'Bad Request', errorOptions, headers) {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.BAD_REQUEST, body, errorMessage, errorOptions, headers);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
exports.BadRequestHttpResponse = BadRequestHttpResponse;
|
|
12
|
-
//# sourceMappingURL=BadRequestHttpResponse.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BadRequestHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/BadRequestHttpResponse.ts"],"names":[],"mappings":";;;AAEA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,sBAAuB,SAAQ,qCAAiB;IAC3D,YACE,IAA8D,EAC9D,eAAuB,aAAa,EACpC,YAA2B,EAC3B,OAAgC;QAEhC,KAAK,CACH,+BAAc,CAAC,WAAW,EAC1B,IAAI,EACJ,YAAY,EACZ,YAAY,EACZ,OAAO,CACR,CAAC;IACJ,CAAC;CACF;AAfD,wDAeC"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { Stream } from 'node:stream';
|
|
2
|
-
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
3
|
-
export declare class ConflictHttpResponse extends ErrorHttpResponse {
|
|
4
|
-
constructor(body?: object | string | number | boolean | Stream | undefined, errorMessage?: string, errorOptions?: ErrorOptions, headers?: Record<string, string>);
|
|
5
|
-
}
|
|
6
|
-
//# sourceMappingURL=ConflictHttpResponse.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ConflictHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/ConflictHttpResponse.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAG1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,oBAAqB,SAAQ,iBAAiB;gBAEvD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,EAC9D,YAAY,GAAE,MAAmB,EACjC,YAAY,CAAC,EAAE,YAAY,EAC3B,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;CAInC"}
|