openapi-fuzzer-core
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "openapi-fuzzer-core", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "A library to generate random requests based on open-api specifications.", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
const { klona } = require("klona"); | ||
const HTTP_METHODS = ['get', 'post', 'put', 'patch', 'delete', 'head']; | ||
const HTTP_METHODS = ['get', 'post', 'put', 'patch', 'delete']; | ||
@@ -202,3 +202,3 @@ class Swagger { | ||
} | ||
return [10]; | ||
return []; | ||
} | ||
@@ -205,0 +205,0 @@ |
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
10998