Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

openapi-to-postmanv2

Package Overview
Dependencies
Maintainers
7
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openapi-to-postmanv2 - npm Package Compare versions

Comparing version 4.9.0-beta.12 to 4.9.0-beta.13

11

lib/options.js

@@ -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',

2

libV2/helpers/collection/generateSkeletionTreeeFromOpenAPI.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc