openapi-to-postmanv2
Advanced tools
Comparing version 4.9.0-beta.12 to 4.9.0-beta.13
@@ -144,2 +144,13 @@ const { filterOptionsByVersion } = require('./common/versionUtils'); | ||
{ | ||
name: 'Disabled Parameter validation', | ||
id: 'disabledParametersValidation', | ||
type: 'boolean', | ||
default: true, | ||
description: 'Whether disabled parameters of collection should be validated', | ||
external: true, | ||
usage: ['VALIDATION'], | ||
supportedIn: [VERSION20, VERSION30, VERSION31], | ||
supportedModuleVersion: [MODULE_VERSION.V2] | ||
}, | ||
{ | ||
name: 'Parameter generation', | ||
@@ -146,0 +157,0 @@ id: 'parametersResolution', |
@@ -30,3 +30,3 @@ let _ = require('lodash'), | ||
_.forEach(openapi.paths, function (methods, path) { | ||
let pathSplit = _.compact(path.split('/')); | ||
let pathSplit = path === '/' ? [path] : _.compact(path.split('/')); | ||
@@ -33,0 +33,0 @@ // if after path split we just have one entry |
{ | ||
"name": "openapi-to-postmanv2", | ||
"version": "4.9.0-beta.12", | ||
"version": "4.9.0-beta.13", | ||
"description": "Convert a given OpenAPI specification to Postman Collection v2.0", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/postmanlabs/openapi-to-postman", |
Sorry, the diff of this file is too big to display
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
1691368
43394