New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@postman/wsdl-to-postman

Package Overview
Dependencies
Maintainers
213
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@postman/wsdl-to-postman - npm Package Compare versions

Comparing version 1.0.14 to 1.0.15

collection.json

4

lib/utils/options.js

@@ -45,3 +45,3 @@ // default options

description: 'Select whether to resolve remote references.',
external: true,
external: false,
usage: ['CONVERSION']

@@ -157,3 +157,3 @@ },

return optsArray.filter((option) => {
return option.external === true;
return option.disabled !== true;
});

@@ -160,0 +160,0 @@ }

@@ -20,3 +20,3 @@ /* eslint-disable no-restricted-modules */

} = require('../../lib/utils/textUtils'),
{ fetch } = require('fetch-h2'),
// { fetch } = require('fetch-h2'),
{

@@ -146,12 +146,12 @@ WSDLMerger

remoteReferencesToResolve.forEach((remoteReference) => {
localPromises.push(fetch(remoteReference.schemaLocation).then(function (res) {
const { schemaLocation } = remoteReference;
if (res.status !== 200) {
if (ignoreIOErrors) {
return '{"$ref":}' + remoteReference.schemaLocation;
}
throw new Error(`Received status code ${res.status}: ${schemaLocation}`);
}
return res.text();
}));
// localPromises.push(fetch(remoteReference.schemaLocation).then(function (res) {
// const { schemaLocation } = remoteReference;
// if (res.status !== 200) {
// if (ignoreIOErrors) {
// return '{"$ref":}' + remoteReference.schemaLocation;
// }
// throw new Error(`Received status code ${res.status}: ${schemaLocation}`);
// }
// return res.text();
// }));
});

@@ -158,0 +158,0 @@ promise = Promise.all(localPromises).then((values) => {

{
"name": "@postman/wsdl-to-postman",
"version": "1.0.14",
"version": "1.0.15",
"description": "Convert a given WSDL specification (1.1) to Postman Collection",

@@ -62,3 +62,2 @@ "main": "index.js",

"fast-xml-parser": "3.18.0",
"fetch-h2": "3.0.0",
"libxmljs": "0.19.7",

@@ -65,0 +64,0 @@ "libxmljs2": "0.27.0",

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