@inversifyjs/http-core 4.10.2 → 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 +18 -25
- package/CHANGELOG.md +0 -259
- 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
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { requestMethod } from '../calculations/requestMethod.js';
|
|
2
|
+
import { RequestMethodType } from '../models/RequestMethodType.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export const Delete = (path) => requestMethod(RequestMethodType.Delete, path);
|
|
5
|
+
//# sourceMappingURL=Delete.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Delete.js","sourceRoot":"","sources":["../../../src/http/decorators/Delete.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAEnE,gEAAgE;AAChE,MAAM,CAAC,MAAM,MAAM,GAAuC,CACxD,IAAa,EACI,EAAE,CAAC,aAAa,CAAC,iBAAiB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Get.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Get.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,eAE2B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { requestMethod } from '../calculations/requestMethod.js';
|
|
2
|
+
import { RequestMethodType } from '../models/RequestMethodType.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export const Get = (path) => requestMethod(RequestMethodType.Get, path);
|
|
5
|
+
//# sourceMappingURL=Get.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Get.js","sourceRoot":"","sources":["../../../src/http/decorators/Get.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAEnE,gEAAgE;AAChE,MAAM,CAAC,MAAM,GAAG,GAAuC,CACrD,IAAa,EACI,EAAE,CAAC,aAAa,CAAC,iBAAiB,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Head.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Head.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,eAE2B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { requestMethod } from '../calculations/requestMethod.js';
|
|
2
|
+
import { RequestMethodType } from '../models/RequestMethodType.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export const Head = (path) => requestMethod(RequestMethodType.Head, path);
|
|
5
|
+
//# sourceMappingURL=Head.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Head.js","sourceRoot":"","sources":["../../../src/http/decorators/Head.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAEnE,gEAAgE;AAChE,MAAM,CAAC,MAAM,IAAI,GAAuC,CACtD,IAAa,EACI,EAAE,CAAC,aAAa,CAAC,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type Pipe } from '@inversifyjs/framework-core';
|
|
2
|
+
import { type ServiceIdentifier } from 'inversify';
|
|
3
|
+
import { type RouteParamOptions } from '../models/RouteParamOptions.js';
|
|
4
|
+
export declare function Headers(optionsOrPipe?: RouteParamOptions | (ServiceIdentifier<Pipe> | Pipe), ...parameterPipeList: (ServiceIdentifier<Pipe> | Pipe)[]): ParameterDecorator;
|
|
5
|
+
//# sourceMappingURL=Headers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Headers.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Headers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAMnD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAGxE,wBAAgB,OAAO,CACrB,aAAa,CAAC,EAAE,iBAAiB,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EACpE,GAAG,iBAAiB,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GACvD,kBAAkB,CAapB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { buildNonCustomControllerMethodParameterMetadata } from '../calculations/buildNonCustomControllerMethodParameterMetadata.js';
|
|
2
|
+
import { getOptionsAndPipes } from '../calculations/getOptionsAndPipes.js';
|
|
3
|
+
import { requestParam } from '../calculations/requestParam.js';
|
|
4
|
+
import { RequestMethodParameterType } from '../models/RequestMethodParameterType.js';
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
6
|
+
export function Headers(optionsOrPipe, ...parameterPipeList) {
|
|
7
|
+
const [options, pipeList] = getOptionsAndPipes(optionsOrPipe, parameterPipeList);
|
|
8
|
+
return requestParam(buildNonCustomControllerMethodParameterMetadata(RequestMethodParameterType.Headers, pipeList, options));
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Headers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Headers.js","sourceRoot":"","sources":["../../../src/http/decorators/Headers.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,+CAA+C,EAAE,MAAM,oEAAoE,CAAC;AACrI,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAGrF,gEAAgE;AAChE,MAAM,UAAU,OAAO,CACrB,aAAoE,EACpE,GAAG,iBAAqD;IAExD,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,GAGrB,kBAAkB,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;IAEzD,OAAO,YAAY,CACjB,+CAA+C,CAC7C,0BAA0B,CAAC,OAAO,EAClC,QAAQ,EACR,OAAO,CACR,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Next.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Next.ts"],"names":[],"mappings":"AAKA,wBAAgB,IAAI,IAAI,kBAAkB,CAQzC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { buildNonCustomControllerMethodParameterMetadata } from '../calculations/buildNonCustomControllerMethodParameterMetadata.js';
|
|
2
|
+
import { nativeRequestParam } from '../calculations/nativeRequestParam.js';
|
|
3
|
+
import { RequestMethodParameterType } from '../models/RequestMethodParameterType.js';
|
|
4
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
5
|
+
export function Next() {
|
|
6
|
+
return nativeRequestParam(buildNonCustomControllerMethodParameterMetadata(RequestMethodParameterType.Next, [], undefined));
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=Next.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Next.js","sourceRoot":"","sources":["../../../src/http/decorators/Next.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+CAA+C,EAAE,MAAM,oEAAoE,CAAC;AACrI,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAErF,gEAAgE;AAChE,MAAM,UAAU,IAAI;IAClB,OAAO,kBAAkB,CACvB,+CAA+C,CAC7C,0BAA0B,CAAC,IAAI,EAC/B,EAAE,EACF,SAAS,CACV,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Options.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Options.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,OAAO,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,eAE2B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { requestMethod } from '../calculations/requestMethod.js';
|
|
2
|
+
import { RequestMethodType } from '../models/RequestMethodType.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export const Options = (path) => requestMethod(RequestMethodType.Options, path);
|
|
5
|
+
//# sourceMappingURL=Options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Options.js","sourceRoot":"","sources":["../../../src/http/decorators/Options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAEnE,gEAAgE;AAChE,MAAM,CAAC,MAAM,OAAO,GAAuC,CACzD,IAAa,EACI,EAAE,CAAC,aAAa,CAAC,iBAAiB,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type Pipe } from '@inversifyjs/framework-core';
|
|
2
|
+
import { type ServiceIdentifier } from 'inversify';
|
|
3
|
+
import { type RouteParamOptions } from '../models/RouteParamOptions.js';
|
|
4
|
+
export declare function Params(optionsOrPipe?: RouteParamOptions | (ServiceIdentifier<Pipe> | Pipe), ...parameterPipeList: (ServiceIdentifier<Pipe> | Pipe)[]): ParameterDecorator;
|
|
5
|
+
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Params.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAMnD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAGxE,wBAAgB,MAAM,CACpB,aAAa,CAAC,EAAE,iBAAiB,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EACpE,GAAG,iBAAiB,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GACvD,kBAAkB,CAapB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { buildNonCustomControllerMethodParameterMetadata } from '../calculations/buildNonCustomControllerMethodParameterMetadata.js';
|
|
2
|
+
import { getOptionsAndPipes } from '../calculations/getOptionsAndPipes.js';
|
|
3
|
+
import { requestParam } from '../calculations/requestParam.js';
|
|
4
|
+
import { RequestMethodParameterType } from '../models/RequestMethodParameterType.js';
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
6
|
+
export function Params(optionsOrPipe, ...parameterPipeList) {
|
|
7
|
+
const [options, pipeList] = getOptionsAndPipes(optionsOrPipe, parameterPipeList);
|
|
8
|
+
return requestParam(buildNonCustomControllerMethodParameterMetadata(RequestMethodParameterType.Params, pipeList, options));
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Params.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Params.js","sourceRoot":"","sources":["../../../src/http/decorators/Params.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,+CAA+C,EAAE,MAAM,oEAAoE,CAAC;AACrI,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAGrF,gEAAgE;AAChE,MAAM,UAAU,MAAM,CACpB,aAAoE,EACpE,GAAG,iBAAqD;IAExD,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,GAGrB,kBAAkB,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;IAEzD,OAAO,YAAY,CACjB,+CAA+C,CAC7C,0BAA0B,CAAC,MAAM,EACjC,QAAQ,EACR,OAAO,CACR,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Patch.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Patch.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,KAAK,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,eAE2B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { requestMethod } from '../calculations/requestMethod.js';
|
|
2
|
+
import { RequestMethodType } from '../models/RequestMethodType.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export const Patch = (path) => requestMethod(RequestMethodType.Patch, path);
|
|
5
|
+
//# sourceMappingURL=Patch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Patch.js","sourceRoot":"","sources":["../../../src/http/decorators/Patch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAEnE,gEAAgE;AAChE,MAAM,CAAC,MAAM,KAAK,GAAuC,CACvD,IAAa,EACI,EAAE,CAAC,aAAa,CAAC,iBAAiB,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Post.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Post.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,eAE2B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { requestMethod } from '../calculations/requestMethod.js';
|
|
2
|
+
import { RequestMethodType } from '../models/RequestMethodType.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export const Post = (path) => requestMethod(RequestMethodType.Post, path);
|
|
5
|
+
//# sourceMappingURL=Post.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Post.js","sourceRoot":"","sources":["../../../src/http/decorators/Post.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAEnE,gEAAgE;AAChE,MAAM,CAAC,MAAM,IAAI,GAAuC,CACtD,IAAa,EACI,EAAE,CAAC,aAAa,CAAC,iBAAiB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Put.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Put.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,eAE2B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { requestMethod } from '../calculations/requestMethod.js';
|
|
2
|
+
import { RequestMethodType } from '../models/RequestMethodType.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export const Put = (path) => requestMethod(RequestMethodType.Put, path);
|
|
5
|
+
//# sourceMappingURL=Put.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Put.js","sourceRoot":"","sources":["../../../src/http/decorators/Put.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAEnE,gEAAgE;AAChE,MAAM,CAAC,MAAM,GAAG,GAAuC,CACrD,IAAa,EACI,EAAE,CAAC,aAAa,CAAC,iBAAiB,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type Pipe } from '@inversifyjs/framework-core';
|
|
2
|
+
import { type ServiceIdentifier } from 'inversify';
|
|
3
|
+
import { type RouteParamOptions } from '../models/RouteParamOptions.js';
|
|
4
|
+
export declare function Query(optionsOrPipe?: RouteParamOptions | (ServiceIdentifier<Pipe> | Pipe), ...parameterPipeList: (ServiceIdentifier<Pipe> | Pipe)[]): ParameterDecorator;
|
|
5
|
+
//# sourceMappingURL=Query.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Query.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAMnD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAGxE,wBAAgB,KAAK,CACnB,aAAa,CAAC,EAAE,iBAAiB,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EACpE,GAAG,iBAAiB,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GACvD,kBAAkB,CAapB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { buildNonCustomControllerMethodParameterMetadata } from '../calculations/buildNonCustomControllerMethodParameterMetadata.js';
|
|
2
|
+
import { getOptionsAndPipes } from '../calculations/getOptionsAndPipes.js';
|
|
3
|
+
import { requestParam } from '../calculations/requestParam.js';
|
|
4
|
+
import { RequestMethodParameterType } from '../models/RequestMethodParameterType.js';
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
6
|
+
export function Query(optionsOrPipe, ...parameterPipeList) {
|
|
7
|
+
const [options, pipeList] = getOptionsAndPipes(optionsOrPipe, parameterPipeList);
|
|
8
|
+
return requestParam(buildNonCustomControllerMethodParameterMetadata(RequestMethodParameterType.Query, pipeList, options));
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=Query.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Query.js","sourceRoot":"","sources":["../../../src/http/decorators/Query.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,+CAA+C,EAAE,MAAM,oEAAoE,CAAC;AACrI,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAGrF,gEAAgE;AAChE,MAAM,UAAU,KAAK,CACnB,aAAoE,EACpE,GAAG,iBAAqD;IAExD,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,GAGrB,kBAAkB,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;IAEzD,OAAO,YAAY,CACjB,+CAA+C,CAC7C,0BAA0B,CAAC,KAAK,EAChC,QAAQ,EACR,OAAO,CACR,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Request.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAOnD,wBAAgB,OAAO,CACrB,GAAG,iBAAiB,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GACvD,kBAAkB,CAQpB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { buildNonCustomControllerMethodParameterMetadata } from '../calculations/buildNonCustomControllerMethodParameterMetadata.js';
|
|
2
|
+
import { requestParam } from '../calculations/requestParam.js';
|
|
3
|
+
import { RequestMethodParameterType } from '../models/RequestMethodParameterType.js';
|
|
4
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
5
|
+
export function Request(...parameterPipeList) {
|
|
6
|
+
return requestParam(buildNonCustomControllerMethodParameterMetadata(RequestMethodParameterType.Request, parameterPipeList, undefined));
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=Request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../src/http/decorators/Request.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,+CAA+C,EAAE,MAAM,oEAAoE,CAAC;AACrI,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAErF,gEAAgE;AAChE,MAAM,UAAU,OAAO,CACrB,GAAG,iBAAqD;IAExD,OAAO,YAAY,CACjB,+CAA+C,CAC7C,0BAA0B,CAAC,OAAO,EAClC,iBAAiB,EACjB,SAAS,CACV,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/Response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAOnD,wBAAgB,QAAQ,CACtB,GAAG,iBAAiB,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GACvD,kBAAkB,CAQpB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { buildNonCustomControllerMethodParameterMetadata } from '../calculations/buildNonCustomControllerMethodParameterMetadata.js';
|
|
2
|
+
import { nativeRequestParam } from '../calculations/nativeRequestParam.js';
|
|
3
|
+
import { RequestMethodParameterType } from '../models/RequestMethodParameterType.js';
|
|
4
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
5
|
+
export function Response(...parameterPipeList) {
|
|
6
|
+
return nativeRequestParam(buildNonCustomControllerMethodParameterMetadata(RequestMethodParameterType.Response, parameterPipeList, undefined));
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=Response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../src/http/decorators/Response.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,+CAA+C,EAAE,MAAM,oEAAoE,CAAC;AACrI,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAErF,gEAAgE;AAChE,MAAM,UAAU,QAAQ,CACtB,GAAG,iBAAqD;IAExD,OAAO,kBAAkB,CACvB,+CAA+C,CAC7C,0BAA0B,CAAC,QAAQ,EACnC,iBAAiB,EACjB,SAAS,CACV,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SetHeader.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/SetHeader.ts"],"names":[],"mappings":"AAUA,wBAAgB,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,eAAe,CAU3E"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { updateOwnReflectMetadata } from '@inversifyjs/reflect-metadata-utils';
|
|
2
|
+
import { controllerMethodHeaderMetadataReflectKey } from '../../reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.js';
|
|
3
|
+
import { buildSetHeaderMetadata } from '../calculations/buildSetHeaderMetadata.js';
|
|
4
|
+
function buildEmptyObjectMetadata() {
|
|
5
|
+
return {};
|
|
6
|
+
}
|
|
7
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
8
|
+
export function SetHeader(headerKey, value) {
|
|
9
|
+
return (target, key) => {
|
|
10
|
+
updateOwnReflectMetadata(target.constructor, controllerMethodHeaderMetadataReflectKey, buildEmptyObjectMetadata, buildSetHeaderMetadata(headerKey, value), key);
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=SetHeader.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SetHeader.js","sourceRoot":"","sources":["../../../src/http/decorators/SetHeader.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,qCAAqC,CAAC;AAE/E,OAAO,EAAE,wCAAwC,EAAE,MAAM,wEAAwE,CAAC;AAClI,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAC;AAEnF,SAAS,wBAAwB;IAC/B,OAAO,EAAE,CAAC;AACZ,CAAC;AAED,gEAAgE;AAChE,MAAM,UAAU,SAAS,CAAC,SAAiB,EAAE,KAAa;IACxD,OAAO,CAAC,MAAc,EAAE,GAAoB,EAAQ,EAAE;QACpD,wBAAwB,CACtB,MAAM,CAAC,WAAW,EAClB,wCAAwC,EACxC,wBAAwB,EACxB,sBAAsB,CAAC,SAAS,EAAE,KAAK,CAAC,EACxC,GAAG,CACJ,CAAC;IACJ,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StatusCode.d.ts","sourceRoot":"","sources":["../../../src/http/decorators/StatusCode.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAGlE,wBAAgB,UAAU,CAAC,UAAU,EAAE,cAAc,GAAG,eAAe,CAStE"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { setReflectMetadata } from '@inversifyjs/reflect-metadata-utils';
|
|
2
|
+
import { controllerMethodStatusCodeMetadataReflectKey } from '../../reflectMetadata/data/controllerMethodStatusCodeMetadataReflectKey.js';
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
4
|
+
export function StatusCode(statusCode) {
|
|
5
|
+
return (target, key) => {
|
|
6
|
+
setReflectMetadata(target.constructor, controllerMethodStatusCodeMetadataReflectKey, statusCode, key);
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=StatusCode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StatusCode.js","sourceRoot":"","sources":["../../../src/http/decorators/StatusCode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAEzE,OAAO,EAAE,4CAA4C,EAAE,MAAM,4EAA4E,CAAC;AAG1I,gEAAgE;AAChE,MAAM,UAAU,UAAU,CAAC,UAA0B;IACnD,OAAO,CAAC,MAAc,EAAE,GAAoB,EAAQ,EAAE;QACpD,kBAAkB,CAChB,MAAM,CAAC,WAAW,EAClB,4CAA4C,EAC5C,UAAU,EACV,GAAG,CACJ,CAAC;IACJ,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Controller.d.ts","sourceRoot":"","sources":["../../../src/http/models/Controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAElE,MAAM,WAAW,UAAU;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,kBAAkB,CAAC;CAC5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Controller.js","sourceRoot":"","sources":["../../../src/http/models/Controller.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControllerFunction.d.ts","sourceRoot":"","sources":["../../../src/http/models/ControllerFunction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAElE,MAAM,MAAM,kBAAkB,GAAG,CAC/B,GAAG,IAAI,EAAE,OAAO,EAAE,KACf,OAAO,CAAC,kBAAkB,CAAC,GAAG,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControllerFunction.js","sourceRoot":"","sources":["../../../src/http/models/ControllerFunction.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type BindingScope, type ServiceIdentifier } from 'inversify';
|
|
2
|
+
export interface ControllerOptions {
|
|
3
|
+
path?: string;
|
|
4
|
+
priority?: number;
|
|
5
|
+
scope?: BindingScope;
|
|
6
|
+
serviceIdentifier?: ServiceIdentifier;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=ControllerOptions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControllerOptions.d.ts","sourceRoot":"","sources":["../../../src/http/models/ControllerOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAEtE,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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControllerOptions.js","sourceRoot":"","sources":["../../../src/http/models/ControllerOptions.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type Readable } from 'node:stream';
|
|
2
|
+
import { type HttpResponse } from '../../httpResponse/models/HttpResponse.js';
|
|
3
|
+
export type ControllerResponse = HttpResponse | object | string | number | boolean | Readable | undefined;
|
|
4
|
+
//# sourceMappingURL=ControllerResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControllerResponse.d.ts","sourceRoot":"","sources":["../../../src/http/models/ControllerResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,2CAA2C,CAAC;AAE9E,MAAM,MAAM,kBAAkB,GAC1B,YAAY,GACZ,MAAM,GACN,MAAM,GACN,MAAM,GACN,OAAO,GACP,QAAQ,GACR,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControllerResponse.js","sourceRoot":"","sources":["../../../src/http/models/ControllerResponse.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type CustomNativeParameterDecoratorHandlerOptions } from './CustomNativeParameterDecoratorHandlerOptions.js';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomNativeParameterDecoratorHandler.d.ts","sourceRoot":"","sources":["../../../src/http/models/CustomNativeParameterDecoratorHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,4CAA4C,EAAE,MAAM,mDAAmD,CAAC;AAGtH,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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomNativeParameterDecoratorHandler.js","sourceRoot":"","sources":["../../../src/http/models/CustomNativeParameterDecoratorHandler.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type ControllerResponse } from './ControllerResponse.js';
|
|
2
|
+
import { type CustomParameterDecoratorHandlerOptions } from './CustomParameterDecoratorHandlerOptions.js';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomNativeParameterDecoratorHandlerOptions.d.ts","sourceRoot":"","sources":["../../../src/http/models/CustomNativeParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,EAAE,KAAK,sCAAsC,EAAE,MAAM,6CAA6C,CAAC;AAG1G,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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomNativeParameterDecoratorHandlerOptions.js","sourceRoot":"","sources":["../../../src/http/models/CustomNativeParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type CustomParameterDecoratorHandlerOptions } from './CustomParameterDecoratorHandlerOptions.js';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomParameterDecoratorHandler.d.ts","sourceRoot":"","sources":["../../../src/http/models/CustomParameterDecoratorHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,sCAAsC,EAAE,MAAM,6CAA6C,CAAC;AAG1G,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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomParameterDecoratorHandler.js","sourceRoot":"","sources":["../../../src/http/models/CustomParameterDecoratorHandler.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type HttpStatusCode } from './HttpStatusCode.js';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomParameterDecoratorHandlerOptions.d.ts","sourceRoot":"","sources":["../../../src/http/models/CustomParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAE1D,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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomParameterDecoratorHandlerOptions.js","sourceRoot":"","sources":["../../../src/http/models/CustomParameterDecoratorHandlerOptions.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HttpAdapterOptions.d.ts","sourceRoot":"","sources":["../../../src/http/models/HttpAdapterOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAElD,MAAM,WAAW,kBAAkB;IACjC,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CAC3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HttpAdapterOptions.js","sourceRoot":"","sources":["../../../src/http/models/HttpAdapterOptions.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export var HttpStatusCode;
|
|
2
|
+
(function (HttpStatusCode) {
|
|
3
|
+
HttpStatusCode[HttpStatusCode["CONTINUE"] = 100] = "CONTINUE";
|
|
4
|
+
HttpStatusCode[HttpStatusCode["SWITCHING_PROTOCOLS"] = 101] = "SWITCHING_PROTOCOLS";
|
|
5
|
+
HttpStatusCode[HttpStatusCode["PROCESSING"] = 102] = "PROCESSING";
|
|
6
|
+
HttpStatusCode[HttpStatusCode["EARLYHINTS"] = 103] = "EARLYHINTS";
|
|
7
|
+
HttpStatusCode[HttpStatusCode["OK"] = 200] = "OK";
|
|
8
|
+
HttpStatusCode[HttpStatusCode["CREATED"] = 201] = "CREATED";
|
|
9
|
+
HttpStatusCode[HttpStatusCode["ACCEPTED"] = 202] = "ACCEPTED";
|
|
10
|
+
HttpStatusCode[HttpStatusCode["NON_AUTHORITATIVE_INFORMATION"] = 203] = "NON_AUTHORITATIVE_INFORMATION";
|
|
11
|
+
HttpStatusCode[HttpStatusCode["NO_CONTENT"] = 204] = "NO_CONTENT";
|
|
12
|
+
HttpStatusCode[HttpStatusCode["RESET_CONTENT"] = 205] = "RESET_CONTENT";
|
|
13
|
+
HttpStatusCode[HttpStatusCode["PARTIAL_CONTENT"] = 206] = "PARTIAL_CONTENT";
|
|
14
|
+
HttpStatusCode[HttpStatusCode["MULTI_STATUS"] = 207] = "MULTI_STATUS";
|
|
15
|
+
HttpStatusCode[HttpStatusCode["ALREADY_REPORTED"] = 208] = "ALREADY_REPORTED";
|
|
16
|
+
HttpStatusCode[HttpStatusCode["CONTENT_DIFFERENT"] = 210] = "CONTENT_DIFFERENT";
|
|
17
|
+
HttpStatusCode[HttpStatusCode["AMBIGUOUS"] = 300] = "AMBIGUOUS";
|
|
18
|
+
HttpStatusCode[HttpStatusCode["MOVED_PERMANENTLY"] = 301] = "MOVED_PERMANENTLY";
|
|
19
|
+
HttpStatusCode[HttpStatusCode["FOUND"] = 302] = "FOUND";
|
|
20
|
+
HttpStatusCode[HttpStatusCode["SEE_OTHER"] = 303] = "SEE_OTHER";
|
|
21
|
+
HttpStatusCode[HttpStatusCode["NOT_MODIFIED"] = 304] = "NOT_MODIFIED";
|
|
22
|
+
HttpStatusCode[HttpStatusCode["TEMPORARY_REDIRECT"] = 307] = "TEMPORARY_REDIRECT";
|
|
23
|
+
HttpStatusCode[HttpStatusCode["PERMANENT_REDIRECT"] = 308] = "PERMANENT_REDIRECT";
|
|
24
|
+
HttpStatusCode[HttpStatusCode["BAD_REQUEST"] = 400] = "BAD_REQUEST";
|
|
25
|
+
HttpStatusCode[HttpStatusCode["UNAUTHORIZED"] = 401] = "UNAUTHORIZED";
|
|
26
|
+
HttpStatusCode[HttpStatusCode["PAYMENT_REQUIRED"] = 402] = "PAYMENT_REQUIRED";
|
|
27
|
+
HttpStatusCode[HttpStatusCode["FORBIDDEN"] = 403] = "FORBIDDEN";
|
|
28
|
+
HttpStatusCode[HttpStatusCode["NOT_FOUND"] = 404] = "NOT_FOUND";
|
|
29
|
+
HttpStatusCode[HttpStatusCode["METHOD_NOT_ALLOWED"] = 405] = "METHOD_NOT_ALLOWED";
|
|
30
|
+
HttpStatusCode[HttpStatusCode["NOT_ACCEPTABLE"] = 406] = "NOT_ACCEPTABLE";
|
|
31
|
+
HttpStatusCode[HttpStatusCode["PROXY_AUTHENTICATION_REQUIRED"] = 407] = "PROXY_AUTHENTICATION_REQUIRED";
|
|
32
|
+
HttpStatusCode[HttpStatusCode["REQUEST_TIMEOUT"] = 408] = "REQUEST_TIMEOUT";
|
|
33
|
+
HttpStatusCode[HttpStatusCode["CONFLICT"] = 409] = "CONFLICT";
|
|
34
|
+
HttpStatusCode[HttpStatusCode["GONE"] = 410] = "GONE";
|
|
35
|
+
HttpStatusCode[HttpStatusCode["LENGTH_REQUIRED"] = 411] = "LENGTH_REQUIRED";
|
|
36
|
+
HttpStatusCode[HttpStatusCode["PRECONDITION_FAILED"] = 412] = "PRECONDITION_FAILED";
|
|
37
|
+
HttpStatusCode[HttpStatusCode["PAYLOAD_TOO_LARGE"] = 413] = "PAYLOAD_TOO_LARGE";
|
|
38
|
+
HttpStatusCode[HttpStatusCode["URI_TOO_LONG"] = 414] = "URI_TOO_LONG";
|
|
39
|
+
HttpStatusCode[HttpStatusCode["UNSUPPORTED_MEDIA_TYPE"] = 415] = "UNSUPPORTED_MEDIA_TYPE";
|
|
40
|
+
HttpStatusCode[HttpStatusCode["REQUESTED_RANGE_NOT_SATISFIABLE"] = 416] = "REQUESTED_RANGE_NOT_SATISFIABLE";
|
|
41
|
+
HttpStatusCode[HttpStatusCode["EXPECTATION_FAILED"] = 417] = "EXPECTATION_FAILED";
|
|
42
|
+
HttpStatusCode[HttpStatusCode["I_AM_A_TEAPOT"] = 418] = "I_AM_A_TEAPOT";
|
|
43
|
+
HttpStatusCode[HttpStatusCode["MISDIRECTED"] = 421] = "MISDIRECTED";
|
|
44
|
+
HttpStatusCode[HttpStatusCode["UNPROCESSABLE_ENTITY"] = 422] = "UNPROCESSABLE_ENTITY";
|
|
45
|
+
HttpStatusCode[HttpStatusCode["LOCKED"] = 423] = "LOCKED";
|
|
46
|
+
HttpStatusCode[HttpStatusCode["FAILED_DEPENDENCY"] = 424] = "FAILED_DEPENDENCY";
|
|
47
|
+
HttpStatusCode[HttpStatusCode["PRECONDITION_REQUIRED"] = 428] = "PRECONDITION_REQUIRED";
|
|
48
|
+
HttpStatusCode[HttpStatusCode["TOO_MANY_REQUESTS"] = 429] = "TOO_MANY_REQUESTS";
|
|
49
|
+
HttpStatusCode[HttpStatusCode["UNRECOVERABLE_ERROR"] = 456] = "UNRECOVERABLE_ERROR";
|
|
50
|
+
HttpStatusCode[HttpStatusCode["INTERNAL_SERVER_ERROR"] = 500] = "INTERNAL_SERVER_ERROR";
|
|
51
|
+
HttpStatusCode[HttpStatusCode["NOT_IMPLEMENTED"] = 501] = "NOT_IMPLEMENTED";
|
|
52
|
+
HttpStatusCode[HttpStatusCode["BAD_GATEWAY"] = 502] = "BAD_GATEWAY";
|
|
53
|
+
HttpStatusCode[HttpStatusCode["SERVICE_UNAVAILABLE"] = 503] = "SERVICE_UNAVAILABLE";
|
|
54
|
+
HttpStatusCode[HttpStatusCode["GATEWAY_TIMEOUT"] = 504] = "GATEWAY_TIMEOUT";
|
|
55
|
+
HttpStatusCode[HttpStatusCode["HTTP_VERSION_NOT_SUPPORTED"] = 505] = "HTTP_VERSION_NOT_SUPPORTED";
|
|
56
|
+
HttpStatusCode[HttpStatusCode["INSUFFICIENT_STORAGE"] = 507] = "INSUFFICIENT_STORAGE";
|
|
57
|
+
HttpStatusCode[HttpStatusCode["LOOP_DETECTED"] = 508] = "LOOP_DETECTED";
|
|
58
|
+
})(HttpStatusCode || (HttpStatusCode = {}));
|
|
59
|
+
//# sourceMappingURL=HttpStatusCode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HttpStatusCode.js","sourceRoot":"","sources":["../../../src/http/models/HttpStatusCode.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,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,KAAd,cAAc,QAwDzB"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MiddlewareHandler.js","sourceRoot":"","sources":["../../../src/http/models/MiddlewareHandler.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RequestHandler.js","sourceRoot":"","sources":["../../../src/http/models/RequestHandler.ts"],"names":[],"mappings":""}
|