node-mocks-http
Advanced tools
Comparing version
@@ -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,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": { |
61683
0.24%