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

appzone

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appzone - npm Package Compare versions

Comparing version 0.2.5 to 0.2.6

aa

1

lib/sender.js

@@ -28,3 +28,2 @@ /**

var rest = require("restler");
var xml2js = require("xml2js-expat");

@@ -31,0 +30,0 @@ exports.load = function(url, appId, password, retryInterval, retryLimit) {

@@ -28,3 +28,3 @@ /**

var rest = require("restler");
var xml2js = require("xml2js-expat");
var ltx = require("ltx");

@@ -107,3 +107,2 @@ exports.load = function(url, appId, password, retryInterval, retryLimit) {

console.error("Something wrong with the appzone host:" + url);
console.error(err2);
if(callback) callback();

@@ -114,12 +113,11 @@ });

var parseXML = function(data, callback) {
var p = new xml2js.Parser();
p.addListener("end", function(obj) {
var status = {};
status.statusCode = obj.status_code;
status.statusDescription = obj.status_message;
status.correlationId = obj.correlator;
callback(status);
});
p.parseString(data);
var parsed = new ltx.parse(data);
var status = {};
status.statusCode = parsed.getChildText('status_code');
status.statusDescription = parsed.getChildText('status_message');
status.correlationId = parsed.getChildText('correlator');
callback(status);
};

@@ -126,0 +124,0 @@

{
"name": "appzone",
"version": "0.2.5",
"version": "0.2.6",
"directories": {

@@ -20,3 +20,3 @@ "lib": "./lib"

"restler": ">= 0.2.1",
"xml2js-expat": ">= 0.2.0",
"ltx": ">= 0.1.2",
"qbox": ">= 0.1.3"

@@ -23,0 +23,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