open-api-mocker
Advanced tools
Comparing version 1.11.0 to 1.11.1
@@ -9,2 +9,6 @@ # Changelog | ||
## [1.11.1] - 2022-02-20 | ||
### Fixed | ||
- Responses that are just a number are now properly generated (#56) | ||
## [1.11.0] - 2021-12-23 | ||
@@ -11,0 +15,0 @@ ### Added |
@@ -184,3 +184,3 @@ 'use strict'; | ||
return res.send(body); | ||
return res.send(typeof body === 'number' ? body.toString() : body); | ||
} | ||
@@ -187,0 +187,0 @@ |
{ | ||
"name": "open-api-mocker", | ||
"version": "1.11.0", | ||
"version": "1.11.1", | ||
"description": "A mock server based in Open API Specification", | ||
@@ -5,0 +5,0 @@ "main": "lib/open-api-mocker.js", |
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
61250