Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@davinci/http-server

Package Overview
Dependencies
Maintainers
21
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@davinci/http-server - npm Package Compare versions

Comparing version 1.0.0-next.3 to 1.0.0-next.4

5

build-cjs/HttpServerModule.js

@@ -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 @@

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc