New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-mocks-http

Package Overview
Dependencies
Maintainers
4
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-mocks-http - npm Package Compare versions

Comparing version

to
1.6.5

5

HISTORY.md

@@ -0,1 +1,6 @@

v 1.6.5
-------
- Query type definition now more flexible [PR #146](https://github.com/howardabrams/node-mocks-http/pull/146)
v 1.6.4

@@ -2,0 +7,0 @@ -------

6

lib/index.d.ts

@@ -6,3 +6,3 @@ import { Request, Response } from 'express';

export type RequestMethod =
'GET' | 'HEAD'| 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'CONNECT';
'CONNECT' | 'DELETE' | 'GET' | 'HEAD' | 'OPTIONS' | 'PATCH' | 'POST' | 'PUT' | 'TRACE';

@@ -26,3 +26,3 @@ export interface Params {

export interface Query {
[key: string]: string;
[key: string]: any;
}

@@ -35,3 +35,3 @@

export interface Body {
[key: string]: string;
[key: string]: any;
}

@@ -38,0 +38,0 @@

@@ -5,3 +5,3 @@ {

"description": "Mock 'http' objects for testing Express routing functions",
"version": "1.6.4",
"version": "1.6.5",
"homepage": "https://github.com/howardabrams/node-mocks-http",

@@ -8,0 +8,0 @@ "bugs": {