@davinci/http-server
Advanced tools
Comparing version 1.0.0-next.3 to 1.0.0-next.4
@@ -74,3 +74,6 @@ "use strict"; | ||
parametersConfig, | ||
methodDecoratorMetadata | ||
methodDecoratorMetadata, | ||
methodReflection, | ||
controllerDecoratorMetadata, | ||
controllerReflection | ||
}); | ||
@@ -77,0 +80,0 @@ return this[verb](fullPath, await this.createRequestHandler(controller, methodName, parametersConfig, { |
import { ClassReflection, MethodReflection, TypeValue } from '@davinci/reflector'; | ||
import { Interceptor, InterceptorBagDetails, JSONSchema } from '@davinci/core'; | ||
import { MethodDecoratorMetadata, ParameterDecoratorOptions, Verb } from './decorators'; | ||
import { ControllerDecoratorMetadata, MethodDecoratorMetadata, ParameterDecoratorOptions, Verb } from './decorators'; | ||
import { AjvValidator, AjvValidatorOptions } from './AjvValidator'; | ||
@@ -58,2 +58,5 @@ export declare type ErrorHandler<TRequest = any, TResponse = any> = (error: any, req: TRequest, res: TResponse, next?: Function) => any; | ||
methodDecoratorMetadata: MethodDecoratorMetadata; | ||
methodReflection: MethodReflection; | ||
controllerDecoratorMetadata: ControllerDecoratorMetadata; | ||
controllerReflection: ClassReflection; | ||
} | ||
@@ -60,0 +63,0 @@ export interface StaticServeOptions { |
@@ -70,3 +70,6 @@ /* | ||
parametersConfig, | ||
methodDecoratorMetadata | ||
methodDecoratorMetadata, | ||
methodReflection, | ||
controllerDecoratorMetadata, | ||
controllerReflection | ||
}); | ||
@@ -73,0 +76,0 @@ return this[verb](fullPath, await this.createRequestHandler(controller, methodName, parametersConfig, { |
import { ClassReflection, MethodReflection, TypeValue } from '@davinci/reflector'; | ||
import { Interceptor, InterceptorBagDetails, JSONSchema } from '@davinci/core'; | ||
import { MethodDecoratorMetadata, ParameterDecoratorOptions, Verb } from './decorators'; | ||
import { ControllerDecoratorMetadata, MethodDecoratorMetadata, ParameterDecoratorOptions, Verb } from './decorators'; | ||
import { AjvValidator, AjvValidatorOptions } from './AjvValidator'; | ||
@@ -58,2 +58,5 @@ export declare type ErrorHandler<TRequest = any, TResponse = any> = (error: any, req: TRequest, res: TResponse, next?: Function) => any; | ||
methodDecoratorMetadata: MethodDecoratorMetadata; | ||
methodReflection: MethodReflection; | ||
controllerDecoratorMetadata: ControllerDecoratorMetadata; | ||
controllerReflection: ClassReflection; | ||
} | ||
@@ -60,0 +63,0 @@ export interface StaticServeOptions { |
@@ -6,2 +6,13 @@ # Change Log | ||
# [1.0.0-next.4](https://github.com/HPInc/davinci/compare/@davinci/http-server@1.0.0-next.3...@davinci/http-server@1.0.0-next.4) (2022-10-25) | ||
### Features | ||
* **openapi:** added tags to OpenAPI document ([90de933](https://github.com/HPInc/davinci/commit/90de933318498e5e8e62a17acc39f78180a4ca93)) | ||
# [1.0.0-next.3](https://github.com/HPInc/davinci/compare/@davinci/http-server@1.0.0-next.2...@davinci/http-server@1.0.0-next.3) (2022-10-25) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@davinci/http-server", | ||
"version": "1.0.0-next.3", | ||
"version": "1.0.0-next.4", | ||
"description": "Framework for rapid and consistent API development", | ||
@@ -37,3 +37,3 @@ "main": "build-cjs/index.js", | ||
}, | ||
"gitHead": "6b5d17664e93136a77218499cc42d3b503d773de" | ||
"gitHead": "1cb11840266e45d5946ada676948f21da0040a36" | ||
} |
@@ -126,3 +126,6 @@ /* | ||
parametersConfig, | ||
methodDecoratorMetadata | ||
methodDecoratorMetadata, | ||
methodReflection, | ||
controllerDecoratorMetadata, | ||
controllerReflection | ||
}); | ||
@@ -129,0 +132,0 @@ |
@@ -8,3 +8,3 @@ /* | ||
import { Interceptor, InterceptorBagDetails, JSONSchema } from '@davinci/core'; | ||
import { MethodDecoratorMetadata, ParameterDecoratorOptions, Verb } from './decorators'; | ||
import { ControllerDecoratorMetadata, MethodDecoratorMetadata, ParameterDecoratorOptions, Verb } from './decorators'; | ||
import { AjvValidator, AjvValidatorOptions } from './AjvValidator'; | ||
@@ -81,2 +81,5 @@ | ||
methodDecoratorMetadata: MethodDecoratorMetadata; | ||
methodReflection: MethodReflection; | ||
controllerDecoratorMetadata: ControllerDecoratorMetadata; | ||
controllerReflection: ClassReflection; | ||
} | ||
@@ -83,0 +86,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
634663
4938