@inversifyjs/http-core 1.0.0 → 3.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/CHANGELOG.md +95 -0
- package/README.md +1 -1
- package/lib/cjs/error/models/InversifyHttpAdapterError.d.ts +7 -1
- package/lib/cjs/error/models/InversifyHttpAdapterError.d.ts.map +1 -1
- package/lib/cjs/error/models/InversifyHttpAdapterError.js +3 -1
- package/lib/cjs/error/models/InversifyHttpAdapterError.js.map +1 -1
- package/lib/cjs/error/models/InversifyHttpAdapterErrorKind.d.ts +3 -2
- package/lib/cjs/error/models/InversifyHttpAdapterErrorKind.d.ts.map +1 -1
- package/lib/cjs/error/models/InversifyHttpAdapterErrorKind.js +3 -2
- package/lib/cjs/error/models/InversifyHttpAdapterErrorKind.js.map +1 -1
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.d.ts +4 -0
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.d.ts.map +1 -0
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.js +14 -0
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.js.map +1 -0
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.spec.d.ts +2 -0
- package/lib/cjs/http/actions/setErrorFilterToErrorFilterMap.spec.d.ts.map +1 -0
- package/lib/cjs/http/adapter/InversifyHttpAdapter.d.ts +30 -15
- package/lib/cjs/http/adapter/InversifyHttpAdapter.d.ts.map +1 -1
- package/lib/cjs/http/adapter/InversifyHttpAdapter.js +273 -84
- package/lib/cjs/http/adapter/InversifyHttpAdapter.js.map +1 -1
- package/lib/cjs/http/calculations/buildInterceptedHandler.d.ts +7 -0
- package/lib/cjs/http/calculations/buildInterceptedHandler.d.ts.map +1 -0
- package/lib/cjs/http/calculations/buildInterceptedHandler.js +57 -0
- package/lib/cjs/http/calculations/buildInterceptedHandler.js.map +1 -0
- package/lib/cjs/http/calculations/buildInterceptedHandler.spec.d.ts +2 -0
- package/lib/cjs/http/calculations/buildInterceptedHandler.spec.d.ts.map +1 -0
- package/lib/cjs/http/calculations/buildNormalizedPath.d.ts +2 -0
- package/lib/cjs/http/calculations/buildNormalizedPath.d.ts.map +1 -0
- package/lib/cjs/http/calculations/buildNormalizedPath.js +10 -0
- package/lib/cjs/http/calculations/buildNormalizedPath.js.map +1 -0
- package/lib/cjs/http/calculations/buildNormalizedPath.spec.d.ts +2 -0
- package/lib/cjs/http/calculations/buildNormalizedPath.spec.d.ts.map +1 -0
- package/lib/cjs/http/calculations/buildRouteParameterDecorator.d.ts +7 -0
- package/lib/cjs/http/calculations/buildRouteParameterDecorator.d.ts.map +1 -0
- package/lib/cjs/http/calculations/buildRouteParameterDecorator.js +29 -0
- package/lib/cjs/http/calculations/buildRouteParameterDecorator.js.map +1 -0
- package/lib/cjs/http/calculations/buildRouteParameterDecorator.spec.d.ts +2 -0
- package/lib/cjs/http/calculations/buildRouteParameterDecorator.spec.d.ts.map +1 -0
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.d.ts +2 -0
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.d.ts.map +1 -0
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.js +17 -0
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.js.map +1 -0
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.spec.d.ts +2 -0
- package/lib/cjs/http/calculations/buildSetHeaderMetadata.spec.d.ts.map +1 -0
- package/lib/cjs/http/calculations/createCustomParameterDecorator.d.ts +5 -0
- package/lib/cjs/http/calculations/createCustomParameterDecorator.d.ts.map +1 -0
- package/lib/cjs/http/calculations/createCustomParameterDecorator.js +9 -0
- package/lib/cjs/http/calculations/createCustomParameterDecorator.js.map +1 -0
- package/lib/cjs/http/calculations/createCustomParameterDecorator.spec.d.ts +2 -0
- package/lib/cjs/http/calculations/createCustomParameterDecorator.spec.d.ts.map +1 -0
- package/lib/cjs/http/{decorators/RequestMethod.d.ts → calculations/requestMethod.d.ts} +1 -1
- package/lib/cjs/http/calculations/requestMethod.d.ts.map +1 -0
- package/lib/cjs/http/calculations/requestMethod.js +17 -0
- package/lib/cjs/http/calculations/requestMethod.js.map +1 -0
- package/lib/cjs/http/calculations/requestMethod.spec.d.ts +2 -0
- package/lib/cjs/http/calculations/requestMethod.spec.d.ts.map +1 -0
- package/lib/cjs/http/calculations/requestParam.d.ts +3 -0
- package/lib/cjs/http/calculations/requestParam.d.ts.map +1 -0
- package/lib/cjs/http/calculations/requestParam.js +24 -0
- package/lib/cjs/http/calculations/requestParam.js.map +1 -0
- package/lib/cjs/http/calculations/requestParam.spec.d.ts +2 -0
- package/lib/cjs/http/calculations/requestParam.spec.d.ts.map +1 -0
- package/lib/cjs/http/decorators/All.d.ts +1 -1
- package/lib/cjs/http/decorators/All.d.ts.map +1 -1
- package/lib/cjs/http/decorators/All.js +5 -4
- package/lib/cjs/http/decorators/All.js.map +1 -1
- package/lib/cjs/http/decorators/Body.d.ts +4 -1
- package/lib/cjs/http/decorators/Body.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Body.js +5 -4
- package/lib/cjs/http/decorators/Body.js.map +1 -1
- package/lib/cjs/http/decorators/Controller.d.ts +1 -1
- package/lib/cjs/http/decorators/Controller.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Controller.js +16 -13
- package/lib/cjs/http/decorators/Controller.js.map +1 -1
- package/lib/cjs/http/decorators/Cookies.d.ts +4 -1
- package/lib/cjs/http/decorators/Cookies.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Cookies.js +5 -4
- package/lib/cjs/http/decorators/Cookies.js.map +1 -1
- package/lib/cjs/http/decorators/Delete.d.ts +1 -1
- package/lib/cjs/http/decorators/Delete.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Delete.js +5 -4
- package/lib/cjs/http/decorators/Delete.js.map +1 -1
- package/lib/cjs/http/decorators/Get.d.ts +1 -1
- package/lib/cjs/http/decorators/Get.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Get.js +5 -4
- package/lib/cjs/http/decorators/Get.js.map +1 -1
- package/lib/cjs/http/decorators/Head.d.ts +1 -1
- package/lib/cjs/http/decorators/Head.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Head.js +5 -4
- package/lib/cjs/http/decorators/Head.js.map +1 -1
- package/lib/cjs/http/decorators/Headers.d.ts +4 -1
- package/lib/cjs/http/decorators/Headers.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Headers.js +5 -4
- package/lib/cjs/http/decorators/Headers.js.map +1 -1
- package/lib/cjs/http/decorators/Next.d.ts +1 -1
- package/lib/cjs/http/decorators/Next.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Next.js +5 -4
- package/lib/cjs/http/decorators/Next.js.map +1 -1
- package/lib/cjs/http/decorators/Options.d.ts +1 -1
- package/lib/cjs/http/decorators/Options.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Options.js +5 -4
- package/lib/cjs/http/decorators/Options.js.map +1 -1
- package/lib/cjs/http/decorators/Params.d.ts +4 -1
- package/lib/cjs/http/decorators/Params.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Params.js +5 -4
- package/lib/cjs/http/decorators/Params.js.map +1 -1
- package/lib/cjs/http/decorators/Patch.d.ts +1 -1
- package/lib/cjs/http/decorators/Patch.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Patch.js +5 -4
- package/lib/cjs/http/decorators/Patch.js.map +1 -1
- package/lib/cjs/http/decorators/Post.d.ts +1 -1
- package/lib/cjs/http/decorators/Post.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Post.js +5 -4
- package/lib/cjs/http/decorators/Post.js.map +1 -1
- package/lib/cjs/http/decorators/Put.d.ts +1 -1
- package/lib/cjs/http/decorators/Put.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Put.js +5 -4
- package/lib/cjs/http/decorators/Put.js.map +1 -1
- package/lib/cjs/http/decorators/Query.d.ts +4 -1
- package/lib/cjs/http/decorators/Query.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Query.js +5 -4
- package/lib/cjs/http/decorators/Query.js.map +1 -1
- package/lib/cjs/http/decorators/Request.d.ts +3 -1
- package/lib/cjs/http/decorators/Request.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Request.js +5 -4
- package/lib/cjs/http/decorators/Request.js.map +1 -1
- package/lib/cjs/http/decorators/Response.d.ts +3 -1
- package/lib/cjs/http/decorators/Response.d.ts.map +1 -1
- package/lib/cjs/http/decorators/Response.js +5 -4
- package/lib/cjs/http/decorators/Response.js.map +1 -1
- package/lib/cjs/http/decorators/SetHeader.d.ts +2 -0
- package/lib/cjs/http/decorators/SetHeader.d.ts.map +1 -0
- package/lib/cjs/http/decorators/SetHeader.js +13 -0
- package/lib/cjs/http/decorators/SetHeader.js.map +1 -0
- package/lib/cjs/http/decorators/SetHeader.spec.d.ts +2 -0
- package/lib/cjs/http/decorators/SetHeader.spec.d.ts.map +1 -0
- package/lib/cjs/http/decorators/StatusCode.d.ts +2 -2
- package/lib/cjs/http/decorators/StatusCode.d.ts.map +1 -1
- package/lib/cjs/http/decorators/StatusCode.js +5 -4
- package/lib/cjs/http/decorators/StatusCode.js.map +1 -1
- package/lib/cjs/http/models/ControllerOptions.d.ts +3 -1
- package/lib/cjs/http/models/ControllerOptions.d.ts.map +1 -1
- package/lib/cjs/http/models/ControllerResponse.d.ts +3 -2
- package/lib/cjs/http/models/ControllerResponse.d.ts.map +1 -1
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.d.ts +2 -0
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.d.ts.map +1 -0
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.js +3 -0
- package/lib/cjs/http/models/CustomParameterDecoratorHandler.js.map +1 -0
- package/lib/cjs/http/models/HttpAdapterOptions.d.ts +5 -0
- package/lib/cjs/http/models/HttpAdapterOptions.d.ts.map +1 -0
- package/lib/cjs/http/models/HttpAdapterOptions.js +3 -0
- package/lib/cjs/http/models/HttpAdapterOptions.js.map +1 -0
- package/lib/cjs/http/models/HttpStatusCode.d.ts.map +1 -0
- package/lib/cjs/http/models/HttpStatusCode.js.map +1 -0
- package/lib/cjs/http/models/MiddlewareHandler.d.ts +2 -0
- package/lib/cjs/http/models/MiddlewareHandler.d.ts.map +1 -0
- package/lib/cjs/http/models/MiddlewareHandler.js +3 -0
- package/lib/cjs/http/models/MiddlewareHandler.js.map +1 -0
- package/lib/cjs/http/models/RequestHandler.d.ts +1 -1
- package/lib/cjs/http/models/RequestHandler.d.ts.map +1 -1
- package/lib/cjs/http/models/RequestMethodParameterType.d.ts +9 -8
- package/lib/cjs/http/models/RequestMethodParameterType.d.ts.map +1 -1
- package/lib/cjs/http/models/RequestMethodParameterType.js +9 -8
- package/lib/cjs/http/models/RequestMethodParameterType.js.map +1 -1
- package/lib/cjs/http/models/RequestMethodType.d.ts +8 -8
- package/lib/cjs/http/models/RequestMethodType.d.ts.map +1 -1
- package/lib/cjs/http/models/RequestMethodType.js +8 -8
- package/lib/cjs/http/models/RequestMethodType.js.map +1 -1
- package/lib/cjs/http/models/RequiredOptions.d.ts +4 -0
- package/lib/cjs/http/models/RequiredOptions.d.ts.map +1 -0
- package/lib/cjs/http/models/RequiredOptions.js +3 -0
- package/lib/cjs/http/models/RequiredOptions.js.map +1 -0
- package/lib/cjs/http/models/RouteParamOptions.d.ts +4 -0
- package/lib/cjs/http/models/RouteParamOptions.d.ts.map +1 -0
- package/lib/cjs/http/models/RouteParamOptions.js +3 -0
- package/lib/cjs/http/models/RouteParamOptions.js.map +1 -0
- package/lib/cjs/http/models/RouteParams.d.ts +12 -0
- package/lib/cjs/http/models/RouteParams.d.ts.map +1 -0
- package/lib/cjs/http/models/{Middleware.js → RouteParams.js} +1 -1
- package/lib/cjs/http/models/RouteParams.js.map +1 -0
- package/lib/cjs/http/models/RouterParams.d.ts +3 -6
- package/lib/cjs/http/models/RouterParams.d.ts.map +1 -1
- package/lib/cjs/httpResponse/calculations/isHttpResponse.d.ts +3 -0
- package/lib/cjs/httpResponse/calculations/isHttpResponse.d.ts.map +1 -0
- package/lib/cjs/httpResponse/calculations/isHttpResponse.js +10 -0
- package/lib/cjs/httpResponse/calculations/isHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/calculations/isHttpResponse.spec.d.ts +2 -0
- package/lib/cjs/httpResponse/calculations/isHttpResponse.spec.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/AcceptedHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/AcceptedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/AcceptedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/AcceptedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/AlreadyReportedHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/AlreadyReportedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/AlreadyReportedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/AlreadyReportedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/BadGatewayHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/BadGatewayHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/BadGatewayHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/BadGatewayHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/BadRequestHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/BadRequestHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/BadRequestHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/BadRequestHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/ConflictHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/ConflictHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/ConflictHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/ConflictHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/ContentDifferentHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/ContentDifferentHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/ContentDifferentHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/ContentDifferentHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/CreatedHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/CreatedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/CreatedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/CreatedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.d.ts +14 -0
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.js +25 -0
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.spec.d.ts +2 -0
- package/lib/cjs/httpResponse/models/ErrorHttpResponse.spec.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/ForbiddenHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/ForbiddenHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/ForbiddenHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/ForbiddenHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/GatewayTimeoutHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/GatewayTimeoutHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/GatewayTimeoutHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/GatewayTimeoutHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/GoneHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/GoneHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/GoneHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/GoneHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/HttpResponse.d.ts +9 -0
- package/lib/cjs/httpResponse/models/HttpResponse.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/HttpResponse.js +5 -0
- package/lib/cjs/httpResponse/models/HttpResponse.js.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/HttpVersionNotSupportedHttpResponse.d.ts +1 -1
- package/lib/cjs/httpResponse/models/HttpVersionNotSupportedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/HttpVersionNotSupportedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/HttpVersionNotSupportedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/InsufficientStorageHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/InsufficientStorageHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/InsufficientStorageHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/InsufficientStorageHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/InternalServerErrorHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/InternalServerErrorHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/InternalServerErrorHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/InternalServerErrorHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/LoopDetectedHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/LoopDetectedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/LoopDetectedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/LoopDetectedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/MethodNotAllowedHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/MethodNotAllowedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/MethodNotAllowedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/MethodNotAllowedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/MultiStatusHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/MultiStatusHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/MultiStatusHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/MultiStatusHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.js +12 -0
- package/lib/cjs/httpResponse/models/NoContentHttpResponse.js.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/NonAuthoritativeInformationHttpResponse.d.ts +2 -2
- package/lib/cjs/httpResponse/models/NonAuthoritativeInformationHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/NonAuthoritativeInformationHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/NonAuthoritativeInformationHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/NotAcceptableHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/NotAcceptableHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/NotAcceptableHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/NotAcceptableHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/NotFoundHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/NotFoundHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/NotFoundHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/NotFoundHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/NotImplementedHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/NotImplementedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/NotImplementedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/NotImplementedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/OkHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/OkHttpResponse.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/OkHttpResponse.js +12 -0
- package/lib/cjs/httpResponse/models/OkHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/PartialContentHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/PartialContentHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/PartialContentHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/PartialContentHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/PaymentRequiredHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/PaymentRequiredHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/PaymentRequiredHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/PaymentRequiredHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/ResetContentHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/ResetContentHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/success → httpResponse/models}/ResetContentHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/ResetContentHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/ServiceUnavailableHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/ServiceUnavailableHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/ServiceUnavailableHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/ServiceUnavailableHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.d.ts +14 -0
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.js +24 -0
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.spec.d.ts +2 -0
- package/lib/cjs/httpResponse/models/SuccessHttpResponse.spec.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/UnauthorizedHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/UnauthorizedHttpResponse.d.ts.map +1 -0
- package/lib/cjs/{http/responses/error → httpResponse/models}/UnauthorizedHttpResponse.js +3 -3
- package/lib/cjs/httpResponse/models/UnauthorizedHttpResponse.js.map +1 -0
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.d.ts +5 -0
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.d.ts.map +1 -0
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.js +12 -0
- package/lib/cjs/httpResponse/models/UnprocessableEntityHttpResponse.js.map +1 -0
- package/lib/cjs/index.d.ts +67 -51
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +86 -62
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.d.ts +2 -0
- package/lib/cjs/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.d.ts.map +1 -0
- package/lib/cjs/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.js +5 -0
- package/lib/cjs/reflectMetadata/data/controllerMethodHeaderMetadataReflectKey.js.map +1 -0
- package/lib/cjs/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.d.ts +2 -0
- package/lib/cjs/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.d.ts.map +1 -0
- package/lib/cjs/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.js +5 -0
- package/lib/cjs/reflectMetadata/data/controllerMethodUseNativeHandlerMetadataReflectKey.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.d.ts +4 -0
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.js +16 -0
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/buildErrorTypeToErrorFilterMap.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.d.ts +4 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.js +15 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadata.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.d.ts +4 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.js +21 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMetadataList.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.d.ts +5 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.js +49 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadata.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.d.ts +5 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.js +8 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/buildRouterExplorerControllerMethodMetadataList.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.d.ts +3 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.js +9 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMetadataList.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadataList.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadataList.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadataList.js +14 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadataList.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadataList.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodHeaderMetadataList.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.d.ts +3 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.js +9 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodMetadataList.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.d.ts +3 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.js +9 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodParameterMetadataList.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.d.ts +3 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.js +9 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodStatusCodeMetadata.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.js +9 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.js.map +1 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.spec.d.ts +2 -0
- package/lib/cjs/routerExplorer/calculations/getControllerMethodUseNativeHandlerMetadata.spec.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/model/ControllerMetadata.d.ts +7 -0
- package/lib/cjs/routerExplorer/model/ControllerMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/model/ControllerMetadata.js.map +1 -0
- package/lib/cjs/{http/models → routerExplorer/model}/ControllerMethodMetadata.d.ts +1 -1
- package/lib/cjs/routerExplorer/model/ControllerMethodMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/model/ControllerMethodMetadata.js.map +1 -0
- package/lib/cjs/routerExplorer/model/ControllerMethodParameterMetadata.d.ts +11 -0
- package/lib/cjs/routerExplorer/model/ControllerMethodParameterMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/model/ControllerMethodParameterMetadata.js.map +1 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.d.ts +9 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.js +4 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMetadata.js.map +1 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.d.ts +20 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.d.ts.map +1 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.js +3 -0
- package/lib/cjs/routerExplorer/model/RouterExplorerControllerMethodMetadata.js.map +1 -0
- package/lib/esm/index.d.ts +191 -103
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/index.js.map +1 -1
- package/package.json +24 -23
- package/lib/cjs/http/decorators/ApplyMiddleware.d.ts +0 -2
- package/lib/cjs/http/decorators/ApplyMiddleware.d.ts.map +0 -1
- package/lib/cjs/http/decorators/ApplyMiddleware.js +0 -30
- package/lib/cjs/http/decorators/ApplyMiddleware.js.map +0 -1
- package/lib/cjs/http/decorators/ApplyMiddleware.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/ApplyMiddleware.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/RequestMethod.d.ts.map +0 -1
- package/lib/cjs/http/decorators/RequestMethod.js +0 -23
- package/lib/cjs/http/decorators/RequestMethod.js.map +0 -1
- package/lib/cjs/http/decorators/RequestMethod.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/RequestMethod.spec.d.ts.map +0 -1
- package/lib/cjs/http/decorators/RequestParam.d.ts +0 -3
- package/lib/cjs/http/decorators/RequestParam.d.ts.map +0 -1
- package/lib/cjs/http/decorators/RequestParam.js +0 -41
- package/lib/cjs/http/decorators/RequestParam.js.map +0 -1
- package/lib/cjs/http/decorators/RequestParam.spec.d.ts +0 -2
- package/lib/cjs/http/decorators/RequestParam.spec.d.ts.map +0 -1
- package/lib/cjs/http/models/ControllerMetadata.d.ts +0 -6
- package/lib/cjs/http/models/ControllerMetadata.d.ts.map +0 -1
- package/lib/cjs/http/models/ControllerMetadata.js.map +0 -1
- package/lib/cjs/http/models/ControllerMethodMetadata.d.ts.map +0 -1
- package/lib/cjs/http/models/ControllerMethodMetadata.js.map +0 -1
- package/lib/cjs/http/models/ControllerMethodParameterMetadata.d.ts +0 -7
- package/lib/cjs/http/models/ControllerMethodParameterMetadata.d.ts.map +0 -1
- package/lib/cjs/http/models/ControllerMethodParameterMetadata.js.map +0 -1
- package/lib/cjs/http/models/Middleware.d.ts +0 -4
- package/lib/cjs/http/models/Middleware.d.ts.map +0 -1
- package/lib/cjs/http/models/Middleware.js.map +0 -1
- package/lib/cjs/http/responses/HttpResponse.d.ts +0 -11
- package/lib/cjs/http/responses/HttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/HttpResponse.js +0 -21
- package/lib/cjs/http/responses/HttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/HttpStatusCode.d.ts.map +0 -1
- package/lib/cjs/http/responses/HttpStatusCode.js.map +0 -1
- package/lib/cjs/http/responses/error/BadGatewayHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/BadGatewayHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/BadGatewayHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/BadRequestHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/BadRequestHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/BadRequestHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/ConflictHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/ConflictHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/ConflictHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/ErrorHttpResponse.d.ts +0 -6
- package/lib/cjs/http/responses/error/ErrorHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/ErrorHttpResponse.js +0 -11
- package/lib/cjs/http/responses/error/ErrorHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/ForbiddenHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/ForbiddenHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/ForbiddenHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/GatewayTimeoutHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/GatewayTimeoutHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/GatewayTimeoutHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/GoneHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/GoneHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/GoneHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/HttpVersionNotSupportedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/HttpVersionNotSupportedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/InsufficientStorageHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/InsufficientStorageHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/InsufficientStorageHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/InternalServerErrorHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/InternalServerErrorHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/InternalServerErrorHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/LoopDetectedHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/LoopDetectedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/LoopDetectedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/MethodNotAllowedHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/MethodNotAllowedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/MethodNotAllowedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/NotAcceptableHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/NotAcceptableHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/NotAcceptableHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/NotFoundHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/NotFoundHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/NotFoundHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/NotImplementedHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/NotImplementedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/NotImplementedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/PaymentRequiredHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/PaymentRequiredHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/PaymentRequiredHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/ServiceUnavailableHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/ServiceUnavailableHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/ServiceUnavailableHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/error/UnauthorizedHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/error/UnauthorizedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/error/UnauthorizedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/AcceptedHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/AcceptedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/AcceptedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/AlreadyReportedHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/AlreadyReportedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/AlreadyReportedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/ContentDifferentHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/ContentDifferentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/ContentDifferentHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/CreatedHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/CreatedHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/CreatedHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/MultiStatusHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/MultiStatusHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/MultiStatusHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/NoContentHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/NoContentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/NoContentHttpResponse.js +0 -12
- package/lib/cjs/http/responses/success/NoContentHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/NonAuthoritativeInformationHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/NonAuthoritativeInformationHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/OkHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/OkHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/OkHttpResponse.js +0 -12
- package/lib/cjs/http/responses/success/OkHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/PartialContentHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/PartialContentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/PartialContentHttpResponse.js.map +0 -1
- package/lib/cjs/http/responses/success/ResetContentHttpResponse.d.ts +0 -5
- package/lib/cjs/http/responses/success/ResetContentHttpResponse.d.ts.map +0 -1
- package/lib/cjs/http/responses/success/ResetContentHttpResponse.js.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodMiddlewareMetadataReflectKey.d.ts +0 -2
- package/lib/cjs/reflectMetadata/data/controllerMethodMiddlewareMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMethodMiddlewareMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMethodMiddlewareMetadataReflectKey.js.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMiddlewareMetadataReflectKey.d.ts +0 -2
- package/lib/cjs/reflectMetadata/data/controllerMiddlewareMetadataReflectKey.d.ts.map +0 -1
- package/lib/cjs/reflectMetadata/data/controllerMiddlewareMetadataReflectKey.js +0 -5
- package/lib/cjs/reflectMetadata/data/controllerMiddlewareMetadataReflectKey.js.map +0 -1
- /package/lib/cjs/http/{responses → models}/HttpStatusCode.d.ts +0 -0
- /package/lib/cjs/http/{responses → models}/HttpStatusCode.js +0 -0
- /package/lib/cjs/{http/models → routerExplorer/model}/ControllerMetadata.js +0 -0
- /package/lib/cjs/{http/models → routerExplorer/model}/ControllerMethodMetadata.js +0 -0
- /package/lib/cjs/{http/models → routerExplorer/model}/ControllerMethodParameterMetadata.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MultiStatusHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/MultiStatusHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,uBAAwB,SAAQ,mBAAmB;gBAClD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;CAGtD"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MultiStatusHttpResponse = void 0;
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
class MultiStatusHttpResponse extends
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
+
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
+
class MultiStatusHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
7
|
constructor(body) {
|
|
8
8
|
super(HttpStatusCode_1.HttpStatusCode.MULTI_STATUS, body);
|
|
9
9
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MultiStatusHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/MultiStatusHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,uBAAwB,SAAQ,yCAAmB;IAC9D,YAAY,IAAyC;QACnD,KAAK,CAAC,+BAAc,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAC3C,CAAC;CACF;AAJD,0DAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NoContentHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/NoContentHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,qBAAsB,SAAQ,mBAAmB;;CAI7D"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NoContentHttpResponse = void 0;
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
+
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
+
class NoContentHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.NO_CONTENT);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.NoContentHttpResponse = NoContentHttpResponse;
|
|
12
|
+
//# sourceMappingURL=NoContentHttpResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NoContentHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/NoContentHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,qBAAsB,SAAQ,yCAAmB;IAC5D;QACE,KAAK,CAAC,+BAAc,CAAC,UAAU,CAAC,CAAC;IACnC,CAAC;CACF;AAJD,sDAIC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class NonAuthoritativeInformationHttpResponse extends
|
|
1
|
+
import { SuccessHttpResponse } from './SuccessHttpResponse';
|
|
2
|
+
export declare class NonAuthoritativeInformationHttpResponse extends SuccessHttpResponse {
|
|
3
3
|
constructor(body?: object | string | number | boolean);
|
|
4
4
|
}
|
|
5
5
|
//# sourceMappingURL=NonAuthoritativeInformationHttpResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NonAuthoritativeInformationHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/NonAuthoritativeInformationHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,uCAAwC,SAAQ,mBAAmB;gBAClE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;CAGtD"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.NonAuthoritativeInformationHttpResponse = void 0;
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
class NonAuthoritativeInformationHttpResponse extends
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
+
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
+
class NonAuthoritativeInformationHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
7
|
constructor(body) {
|
|
8
8
|
super(HttpStatusCode_1.HttpStatusCode.NON_AUTHORITATIVE_INFORMATION, body);
|
|
9
9
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NonAuthoritativeInformationHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/NonAuthoritativeInformationHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,uCAAwC,SAAQ,yCAAmB;IAC9E,YAAY,IAAyC;QACnD,KAAK,CAAC,+BAAc,CAAC,6BAA6B,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;CACF;AAJD,0FAIC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
2
|
+
export declare class NotAcceptableHttpResponse extends ErrorHttpResponse {
|
|
3
|
+
constructor(message?: string, error?: string, errorOptions?: ErrorOptions);
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=NotAcceptableHttpResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotAcceptableHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/NotAcceptableHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,yBAA0B,SAAQ,iBAAiB;gBAE5D,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,GAAE,MAAyB,EAChC,YAAY,CAAC,EAAE,YAAY;CAI9B"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.NotAcceptableHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
5
|
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
6
|
class NotAcceptableHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(message, error = 'Not Acceptable') {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.NOT_ACCEPTABLE, error, message);
|
|
7
|
+
constructor(message, error = 'Not Acceptable', errorOptions) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.NOT_ACCEPTABLE, error, message, errorOptions);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
exports.NotAcceptableHttpResponse = NotAcceptableHttpResponse;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotAcceptableHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/NotAcceptableHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,yBAA0B,SAAQ,qCAAiB;IAC9D,YACE,OAAgB,EAChB,QAAgB,gBAAgB,EAChC,YAA2B;QAE3B,KAAK,CAAC,+BAAc,CAAC,cAAc,EAAE,KAAK,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;IACrE,CAAC;CACF;AARD,8DAQC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotFoundHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/NotFoundHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,oBAAqB,SAAQ,iBAAiB;gBAEvD,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,GAAE,MAAoB,EAC3B,YAAY,CAAC,EAAE,YAAY;CAI9B"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.NotFoundHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
5
|
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
6
|
class NotFoundHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(message, error = 'Not Found') {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.NOT_FOUND, error, message);
|
|
7
|
+
constructor(message, error = 'Not Found', errorOptions) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.NOT_FOUND, error, message, errorOptions);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
exports.NotFoundHttpResponse = NotFoundHttpResponse;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotFoundHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/NotFoundHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,oBAAqB,SAAQ,qCAAiB;IACzD,YACE,OAAgB,EAChB,QAAgB,WAAW,EAC3B,YAA2B;QAE3B,KAAK,CAAC,+BAAc,CAAC,SAAS,EAAE,KAAK,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;IAChE,CAAC;CACF;AARD,oDAQC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
2
|
+
export declare class NotImplementedHttpResponse extends ErrorHttpResponse {
|
|
3
|
+
constructor(message?: string, error?: string, errorOptions?: ErrorOptions);
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=NotImplementedHttpResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotImplementedHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/NotImplementedHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,0BAA2B,SAAQ,iBAAiB;gBAE7D,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,GAAE,MAA0B,EACjC,YAAY,CAAC,EAAE,YAAY;CAI9B"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.NotImplementedHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
5
|
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
6
|
class NotImplementedHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(message, error = 'Not Implemented') {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.NOT_IMPLEMENTED, error, message);
|
|
7
|
+
constructor(message, error = 'Not Implemented', errorOptions) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.NOT_IMPLEMENTED, error, message, errorOptions);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
exports.NotImplementedHttpResponse = NotImplementedHttpResponse;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotImplementedHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/NotImplementedHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,0BAA2B,SAAQ,qCAAiB;IAC/D,YACE,OAAgB,EAChB,QAAgB,iBAAiB,EACjC,YAA2B;QAE3B,KAAK,CAAC,+BAAc,CAAC,eAAe,EAAE,KAAK,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;IACtE,CAAC;CACF;AARD,gEAQC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OkHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/OkHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,cAAe,SAAQ,mBAAmB;gBACzC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;CAGtD"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OkHttpResponse = void 0;
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
+
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
+
class OkHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
|
+
constructor(body) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.OK, body);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.OkHttpResponse = OkHttpResponse;
|
|
12
|
+
//# sourceMappingURL=OkHttpResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OkHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/OkHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,cAAe,SAAQ,yCAAmB;IACrD,YAAY,IAAyC;QACnD,KAAK,CAAC,+BAAc,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;IACjC,CAAC;CACF;AAJD,wCAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PartialContentHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/PartialContentHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,0BAA2B,SAAQ,mBAAmB;gBACrD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;CAGtD"}
|
package/lib/cjs/{http/responses/success → httpResponse/models}/PartialContentHttpResponse.js
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PartialContentHttpResponse = void 0;
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
class PartialContentHttpResponse extends
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
+
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
+
class PartialContentHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
7
|
constructor(body) {
|
|
8
8
|
super(HttpStatusCode_1.HttpStatusCode.PARTIAL_CONTENT, body);
|
|
9
9
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PartialContentHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/PartialContentHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,0BAA2B,SAAQ,yCAAmB;IACjE,YAAY,IAAyC;QACnD,KAAK,CAAC,+BAAc,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;IAC9C,CAAC;CACF;AAJD,gEAIC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
2
|
+
export declare class PaymentRequiredHttpResponse extends ErrorHttpResponse {
|
|
3
|
+
constructor(message?: string, error?: string, errorOptions?: ErrorOptions);
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=PaymentRequiredHttpResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentRequiredHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/PaymentRequiredHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,2BAA4B,SAAQ,iBAAiB;gBAE9D,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,GAAE,MAA2B,EAClC,YAAY,CAAC,EAAE,YAAY;CAI9B"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PaymentRequiredHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
5
|
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
6
|
class PaymentRequiredHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(message, error = 'Payment Required') {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.PAYMENT_REQUIRED, error, message);
|
|
7
|
+
constructor(message, error = 'Payment Required', errorOptions) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.PAYMENT_REQUIRED, error, message, errorOptions);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
exports.PaymentRequiredHttpResponse = PaymentRequiredHttpResponse;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentRequiredHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/PaymentRequiredHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,2BAA4B,SAAQ,qCAAiB;IAChE,YACE,OAAgB,EAChB,QAAgB,kBAAkB,EAClC,YAA2B;QAE3B,KAAK,CAAC,+BAAc,CAAC,gBAAgB,EAAE,KAAK,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;IACvE,CAAC;CACF;AARD,kEAQC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ResetContentHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/ResetContentHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,wBAAyB,SAAQ,mBAAmB;gBACnD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;CAGtD"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ResetContentHttpResponse = void 0;
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
class ResetContentHttpResponse extends
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
+
const SuccessHttpResponse_1 = require("./SuccessHttpResponse");
|
|
6
|
+
class ResetContentHttpResponse extends SuccessHttpResponse_1.SuccessHttpResponse {
|
|
7
7
|
constructor(body) {
|
|
8
8
|
super(HttpStatusCode_1.HttpStatusCode.RESET_CONTENT, body);
|
|
9
9
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ResetContentHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/ResetContentHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,+DAA4D;AAE5D,MAAa,wBAAyB,SAAQ,yCAAmB;IAC/D,YAAY,IAAyC;QACnD,KAAK,CAAC,+BAAc,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;IAC5C,CAAC;CACF;AAJD,4DAIC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
2
|
+
export declare class ServiceUnavailableHttpResponse extends ErrorHttpResponse {
|
|
3
|
+
constructor(message?: string, error?: string, errorOptions?: ErrorOptions);
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=ServiceUnavailableHttpResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServiceUnavailableHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/ServiceUnavailableHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,8BAA+B,SAAQ,iBAAiB;gBAEjE,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,GAAE,MAA8B,EACrC,YAAY,CAAC,EAAE,YAAY;CAI9B"}
|
package/lib/cjs/{http/responses/error → httpResponse/models}/ServiceUnavailableHttpResponse.js
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ServiceUnavailableHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
5
|
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
6
|
class ServiceUnavailableHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(message, error = 'Service Unavailable') {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.SERVICE_UNAVAILABLE, error, message);
|
|
7
|
+
constructor(message, error = 'Service Unavailable', errorOptions) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.SERVICE_UNAVAILABLE, error, message, errorOptions);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
exports.ServiceUnavailableHttpResponse = ServiceUnavailableHttpResponse;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServiceUnavailableHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/ServiceUnavailableHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,8BAA+B,SAAQ,qCAAiB;IACnE,YACE,OAAgB,EAChB,QAAgB,qBAAqB,EACrC,YAA2B;QAE3B,KAAK,CAAC,+BAAc,CAAC,mBAAmB,EAAE,KAAK,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;IAC1E,CAAC;CACF;AARD,wEAQC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Stream } from 'node:stream';
|
|
2
|
+
import { HttpStatusCode } from '../../http/models/HttpStatusCode';
|
|
3
|
+
import { HttpResponse, isHttpResponse as isHttpResponseSymbol } from '../models/HttpResponse';
|
|
4
|
+
declare const isSuccessHttpResponse: unique symbol;
|
|
5
|
+
export declare class SuccessHttpResponse implements HttpResponse {
|
|
6
|
+
readonly statusCode: HttpStatusCode;
|
|
7
|
+
readonly body?: (object | string | number | boolean | Stream) | undefined;
|
|
8
|
+
[isHttpResponseSymbol]: true;
|
|
9
|
+
[isSuccessHttpResponse]: true;
|
|
10
|
+
constructor(statusCode: HttpStatusCode, body?: (object | string | number | boolean | Stream) | undefined);
|
|
11
|
+
static is(value: unknown): value is SuccessHttpResponse;
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=SuccessHttpResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SuccessHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/SuccessHttpResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAElE,OAAO,EACL,YAAY,EACZ,cAAc,IAAI,oBAAoB,EACvC,MAAM,wBAAwB,CAAC;AAEhC,QAAA,MAAM,qBAAqB,EAAE,OAAO,MAEnC,CAAC;AAEF,qBAAa,mBAAoB,YAAW,YAAY;aAKpC,UAAU,EAAE,cAAc;aAC1B,IAAI,CAAC,GAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM;IAL7D,CAAC,oBAAoB,CAAC,EAAE,IAAI,CAAC;IAC7B,CAAC,qBAAqB,CAAC,EAAE,IAAI,CAAC;gBAGnB,UAAU,EAAE,cAAc,EAC1B,IAAI,CAAC,GAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,aAAA;WAMtD,EAAE,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,mBAAmB;CAM/D"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SuccessHttpResponse = void 0;
|
|
4
|
+
const isHttpResponse_1 = require("../calculations/isHttpResponse");
|
|
5
|
+
const HttpResponse_1 = require("../models/HttpResponse");
|
|
6
|
+
const isSuccessHttpResponse = Symbol.for('@inversifyjs/http-core/SuccessHttpResponse');
|
|
7
|
+
class SuccessHttpResponse {
|
|
8
|
+
statusCode;
|
|
9
|
+
body;
|
|
10
|
+
[HttpResponse_1.isHttpResponse];
|
|
11
|
+
[isSuccessHttpResponse];
|
|
12
|
+
constructor(statusCode, body) {
|
|
13
|
+
this.statusCode = statusCode;
|
|
14
|
+
this.body = body;
|
|
15
|
+
this[HttpResponse_1.isHttpResponse] = true;
|
|
16
|
+
this[isSuccessHttpResponse] = true;
|
|
17
|
+
}
|
|
18
|
+
static is(value) {
|
|
19
|
+
return ((0, isHttpResponse_1.isHttpResponse)(value) &&
|
|
20
|
+
value[isSuccessHttpResponse] === true);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.SuccessHttpResponse = SuccessHttpResponse;
|
|
24
|
+
//# sourceMappingURL=SuccessHttpResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SuccessHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/SuccessHttpResponse.ts"],"names":[],"mappings":";;;AAGA,mEAAgE;AAChE,yDAGgC;AAEhC,MAAM,qBAAqB,GAAkB,MAAM,CAAC,GAAG,CACrD,4CAA4C,CAC7C,CAAC;AAEF,MAAa,mBAAmB;IAKZ;IACA;IALX,CAAC,6BAAoB,CAAC,CAAO;IAC7B,CAAC,qBAAqB,CAAC,CAAO;IAErC,YACkB,UAA0B,EAC1B,IAAkD;QADlD,eAAU,GAAV,UAAU,CAAgB;QAC1B,SAAI,GAAJ,IAAI,CAA8C;QAElE,IAAI,CAAC,6BAAoB,CAAC,GAAG,IAAI,CAAC;QAClC,IAAI,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC;IACrC,CAAC;IAEM,MAAM,CAAC,EAAE,CAAC,KAAc;QAC7B,OAAO,CACL,IAAA,+BAAc,EAAC,KAAK,CAAC;YACpB,KAAsC,CAAC,qBAAqB,CAAC,KAAK,IAAI,CACxE,CAAC;IACJ,CAAC;CACF;AAlBD,kDAkBC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SuccessHttpResponse.spec.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/SuccessHttpResponse.spec.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnauthorizedHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/UnauthorizedHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,wBAAyB,SAAQ,iBAAiB;gBAE3D,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,GAAE,MAAuB,EAC9B,YAAY,CAAC,EAAE,YAAY;CAI9B"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.UnauthorizedHttpResponse = void 0;
|
|
4
|
-
const HttpStatusCode_1 = require("
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
5
|
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
6
|
class UnauthorizedHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
-
constructor(message, error = 'Unauthorized') {
|
|
8
|
-
super(HttpStatusCode_1.HttpStatusCode.UNAUTHORIZED, error, message);
|
|
7
|
+
constructor(message, error = 'Unauthorized', errorOptions) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.UNAUTHORIZED, error, message, errorOptions);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
exports.UnauthorizedHttpResponse = UnauthorizedHttpResponse;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnauthorizedHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/UnauthorizedHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,wBAAyB,SAAQ,qCAAiB;IAC7D,YACE,OAAgB,EAChB,QAAgB,cAAc,EAC9B,YAA2B;QAE3B,KAAK,CAAC,+BAAc,CAAC,YAAY,EAAE,KAAK,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;IACnE,CAAC;CACF;AARD,4DAQC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ErrorHttpResponse } from './ErrorHttpResponse';
|
|
2
|
+
export declare class UnprocessableEntityHttpResponse extends ErrorHttpResponse {
|
|
3
|
+
constructor(message?: string, error?: string, errorOptions?: ErrorOptions);
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=UnprocessableEntityHttpResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnprocessableEntityHttpResponse.d.ts","sourceRoot":"","sources":["../../../../src/httpResponse/models/UnprocessableEntityHttpResponse.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,qBAAa,+BAAgC,SAAQ,iBAAiB;gBAElE,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,GAAE,MAA+B,EACtC,YAAY,CAAC,EAAE,YAAY;CAI9B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnprocessableEntityHttpResponse = void 0;
|
|
4
|
+
const HttpStatusCode_1 = require("../../http/models/HttpStatusCode");
|
|
5
|
+
const ErrorHttpResponse_1 = require("./ErrorHttpResponse");
|
|
6
|
+
class UnprocessableEntityHttpResponse extends ErrorHttpResponse_1.ErrorHttpResponse {
|
|
7
|
+
constructor(message, error = 'Unprocessable Entity', errorOptions) {
|
|
8
|
+
super(HttpStatusCode_1.HttpStatusCode.UNPROCESSABLE_ENTITY, error, message, errorOptions);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.UnprocessableEntityHttpResponse = UnprocessableEntityHttpResponse;
|
|
12
|
+
//# sourceMappingURL=UnprocessableEntityHttpResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnprocessableEntityHttpResponse.js","sourceRoot":"","sources":["../../../../src/httpResponse/models/UnprocessableEntityHttpResponse.ts"],"names":[],"mappings":";;;AAAA,qEAAkE;AAClE,2DAAwD;AAExD,MAAa,+BAAgC,SAAQ,qCAAiB;IACpE,YACE,OAAgB,EAChB,QAAgB,sBAAsB,EACtC,YAA2B;QAE3B,KAAK,CAAC,+BAAc,CAAC,oBAAoB,EAAE,KAAK,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;IAC3E,CAAC;CACF;AARD,0EAQC"}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1,55 +1,71 @@
|
|
|
1
|
+
import { ApplyMiddleware, CatchError, CatchErrorOptions, ErrorFilter, Guard, Interceptor, InterceptorTransformObject, Middleware, MiddlewarePhase, Pipe, PipeMetadata, UseErrorFilter, UseGuard, UseInterceptor } from '@inversifyjs/framework-core';
|
|
1
2
|
import { InversifyHttpAdapter } from './http/adapter/InversifyHttpAdapter';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
3
|
+
import { buildNormalizedPath } from './http/calculations/buildNormalizedPath';
|
|
4
|
+
import { createCustomParameterDecorator } from './http/calculations/createCustomParameterDecorator';
|
|
5
|
+
import { All } from './http/decorators/All';
|
|
6
|
+
import { Body } from './http/decorators/Body';
|
|
7
|
+
import { Controller } from './http/decorators/Controller';
|
|
8
|
+
import { Cookies } from './http/decorators/Cookies';
|
|
9
|
+
import { Delete } from './http/decorators/Delete';
|
|
10
|
+
import { Get } from './http/decorators/Get';
|
|
11
|
+
import { Head } from './http/decorators/Head';
|
|
12
|
+
import { Headers } from './http/decorators/Headers';
|
|
13
|
+
import { Next } from './http/decorators/Next';
|
|
14
|
+
import { Options } from './http/decorators/Options';
|
|
15
|
+
import { Params } from './http/decorators/Params';
|
|
16
|
+
import { Patch } from './http/decorators/Patch';
|
|
17
|
+
import { Post } from './http/decorators/Post';
|
|
18
|
+
import { Put } from './http/decorators/Put';
|
|
19
|
+
import { Query } from './http/decorators/Query';
|
|
20
|
+
import { Request } from './http/decorators/Request';
|
|
21
|
+
import { Response } from './http/decorators/Response';
|
|
22
|
+
import { SetHeader } from './http/decorators/SetHeader';
|
|
23
|
+
import { StatusCode } from './http/decorators/StatusCode';
|
|
24
|
+
import { HttpAdapterOptions } from './http/models/HttpAdapterOptions';
|
|
25
|
+
import { HttpStatusCode } from './http/models/HttpStatusCode';
|
|
26
|
+
import { MiddlewareHandler } from './http/models/MiddlewareHandler';
|
|
22
27
|
import { RequestHandler } from './http/models/RequestHandler';
|
|
28
|
+
import { RequestMethodParameterType } from './http/models/RequestMethodParameterType';
|
|
29
|
+
import { RequestMethodType } from './http/models/RequestMethodType';
|
|
30
|
+
import { RequiredOptions } from './http/models/RequiredOptions';
|
|
31
|
+
import { RouteParamOptions } from './http/models/RouteParamOptions';
|
|
32
|
+
import { RouteParams } from './http/models/RouteParams';
|
|
23
33
|
import { RouterParams } from './http/models/RouterParams';
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
|
|
54
|
-
|
|
34
|
+
import { isHttpResponse } from './httpResponse/calculations/isHttpResponse';
|
|
35
|
+
import { AcceptedHttpResponse } from './httpResponse/models/AcceptedHttpResponse';
|
|
36
|
+
import { AlreadyReportedHttpResponse } from './httpResponse/models/AlreadyReportedHttpResponse';
|
|
37
|
+
import { BadGatewayHttpResponse } from './httpResponse/models/BadGatewayHttpResponse';
|
|
38
|
+
import { BadRequestHttpResponse } from './httpResponse/models/BadRequestHttpResponse';
|
|
39
|
+
import { ConflictHttpResponse } from './httpResponse/models/ConflictHttpResponse';
|
|
40
|
+
import { ContentDifferentHttpResponse } from './httpResponse/models/ContentDifferentHttpResponse';
|
|
41
|
+
import { CreatedHttpResponse } from './httpResponse/models/CreatedHttpResponse';
|
|
42
|
+
import { ErrorHttpResponse } from './httpResponse/models/ErrorHttpResponse';
|
|
43
|
+
import { ForbiddenHttpResponse } from './httpResponse/models/ForbiddenHttpResponse';
|
|
44
|
+
import { GatewayTimeoutHttpResponse } from './httpResponse/models/GatewayTimeoutHttpResponse';
|
|
45
|
+
import { GoneHttpResponse } from './httpResponse/models/GoneHttpResponse';
|
|
46
|
+
import { HttpResponse } from './httpResponse/models/HttpResponse';
|
|
47
|
+
import { HttpVersionNotSupportedHttpResponse } from './httpResponse/models/HttpVersionNotSupportedHttpResponse';
|
|
48
|
+
import { InsufficientStorageHttpResponse } from './httpResponse/models/InsufficientStorageHttpResponse';
|
|
49
|
+
import { InternalServerErrorHttpResponse } from './httpResponse/models/InternalServerErrorHttpResponse';
|
|
50
|
+
import { LoopDetectedHttpResponse } from './httpResponse/models/LoopDetectedHttpResponse';
|
|
51
|
+
import { MethodNotAllowedHttpResponse } from './httpResponse/models/MethodNotAllowedHttpResponse';
|
|
52
|
+
import { MultiStatusHttpResponse } from './httpResponse/models/MultiStatusHttpResponse';
|
|
53
|
+
import { NoContentHttpResponse } from './httpResponse/models/NoContentHttpResponse';
|
|
54
|
+
import { NonAuthoritativeInformationHttpResponse } from './httpResponse/models/NonAuthoritativeInformationHttpResponse';
|
|
55
|
+
import { NotAcceptableHttpResponse } from './httpResponse/models/NotAcceptableHttpResponse';
|
|
56
|
+
import { NotFoundHttpResponse } from './httpResponse/models/NotFoundHttpResponse';
|
|
57
|
+
import { NotImplementedHttpResponse } from './httpResponse/models/NotImplementedHttpResponse';
|
|
58
|
+
import { OkHttpResponse } from './httpResponse/models/OkHttpResponse';
|
|
59
|
+
import { PartialContentHttpResponse } from './httpResponse/models/PartialContentHttpResponse';
|
|
60
|
+
import { PaymentRequiredHttpResponse } from './httpResponse/models/PaymentRequiredHttpResponse';
|
|
61
|
+
import { ResetContentHttpResponse } from './httpResponse/models/ResetContentHttpResponse';
|
|
62
|
+
import { ServiceUnavailableHttpResponse } from './httpResponse/models/ServiceUnavailableHttpResponse';
|
|
63
|
+
import { UnauthorizedHttpResponse } from './httpResponse/models/UnauthorizedHttpResponse';
|
|
64
|
+
import { UnprocessableEntityHttpResponse } from './httpResponse/models/UnprocessableEntityHttpResponse';
|
|
65
|
+
import { getControllerMetadataList } from './routerExplorer/calculations/getControllerMetadataList';
|
|
66
|
+
import { getControllerMethodMetadataList } from './routerExplorer/calculations/getControllerMethodMetadataList';
|
|
67
|
+
import { ControllerMetadata } from './routerExplorer/model/ControllerMetadata';
|
|
68
|
+
import { ControllerMethodMetadata } from './routerExplorer/model/ControllerMethodMetadata';
|
|
69
|
+
export type { CatchErrorOptions, ControllerMetadata, ControllerMethodMetadata, ErrorFilter, Guard, HttpAdapterOptions, Interceptor, InterceptorTransformObject, Middleware, MiddlewareHandler, Pipe, PipeMetadata, RequestHandler, RequiredOptions, RouteParamOptions, RouteParams, RouterParams, };
|
|
70
|
+
export { AcceptedHttpResponse, All, AlreadyReportedHttpResponse, ApplyMiddleware, BadGatewayHttpResponse, BadRequestHttpResponse, Body, buildNormalizedPath, CatchError, ConflictHttpResponse, ContentDifferentHttpResponse, Controller, Cookies, createCustomParameterDecorator, CreatedHttpResponse, Delete, ErrorHttpResponse, ForbiddenHttpResponse, GatewayTimeoutHttpResponse, Get, getControllerMetadataList, getControllerMethodMetadataList, GoneHttpResponse, Head, Headers, HttpResponse, HttpStatusCode, HttpVersionNotSupportedHttpResponse, InsufficientStorageHttpResponse, InternalServerErrorHttpResponse, InversifyHttpAdapter, isHttpResponse, LoopDetectedHttpResponse, MethodNotAllowedHttpResponse, MiddlewarePhase, MultiStatusHttpResponse, Next, NoContentHttpResponse, NonAuthoritativeInformationHttpResponse, NotAcceptableHttpResponse, NotFoundHttpResponse, NotImplementedHttpResponse, OkHttpResponse, Options, Params, PartialContentHttpResponse, Patch, PaymentRequiredHttpResponse, Post, Put, Query, Request, RequestMethodParameterType, RequestMethodType, ResetContentHttpResponse, Response, ServiceUnavailableHttpResponse, SetHeader, StatusCode, UnauthorizedHttpResponse, UnprocessableEntityHttpResponse, UseErrorFilter, UseGuard, UseInterceptor, };
|
|
55
71
|
//# sourceMappingURL=index.d.ts.map
|