build: update dependencies

This commit is contained in:
Michel Jonathan Schmitz
2020-11-02 09:35:49 +01:00
parent 92a21052f1
commit 2822aac652
12 changed files with 2591 additions and 1570 deletions

View File

@@ -19,7 +19,7 @@ import bodyParser from 'body-parser';
import express from 'express';
import * as http from 'http';
import * as http2 from 'http2';
import {Schema} from 'jsonschema';
import {JSONSchema7} from 'json-schema';
import morgan from 'morgan';
import ErrnoException = NodeJS.ErrnoException;
@@ -63,11 +63,11 @@ export abstract class Plugin {
/**
* The schema of the request interfaces defined by the user
*/
public readonly requestSchema: Schema = {};
public readonly requestSchema: JSONSchema7 = {};
/**
* The schema of the response interfaces defined by the user
*/
public readonly responseSchema: Schema = {};
public readonly responseSchema: JSONSchema7 = {};
/**
* Normalize a port into a number, string, or false.