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

@postman/wsdl-to-postman

Package Overview
Dependencies
Maintainers
323
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.5.0 to 1.6.0

3

Changelog.md
# WSDL to Postman Changelog
### v1.6.0
* Fixed issue [#11267](https://github.com/postmanlabs/postman-app-support/issues/11267) - WSDL Definition without a portType defined fails to import correctly in Postman
#### v1.5.0 (December 23, 2022)

@@ -4,0 +7,0 @@ * Fixed issue [#11329](https://github.com/postmanlabs/postman-app-support/issues/11329) - Imported WSDL collection contains incorrect separator & URL is not decoded completely.

4

lib/utils/XMLParsedUtils.js

@@ -11,3 +11,5 @@ const XML_NAMESPACE_SEPARATOR = ':';

function getXMLNodeByName(parentNode, prefix, nodeName) {
return parentNode[prefix + nodeName];
if (parentNode) {
return parentNode[prefix + nodeName];
}
}

@@ -14,0 +16,0 @@

@@ -370,3 +370,3 @@ const

arrayPortTypes = getArrayFrom(getNodeByName(definitions, principalPrefix, PORT_TYPE_TAG));
portTypeFound = arrayPortTypes.find((portType) => {
portTypeFound = arrayPortTypes && arrayPortTypes.find((portType) => {
return getAttributeByName(portType, NAME_TAG) === localPortname;

@@ -376,3 +376,3 @@ });

operationReturn = operations.find((operation) => {
operationReturn = operations && operations.find((operation) => {
return getAttributeByName(operation, NAME_TAG) === operationName;

@@ -379,0 +379,0 @@ }) || {};

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

@@ -5,0 +5,0 @@ "main": "index.js",

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