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

connect-sdk-nodejs

Package Overview
Dependencies
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-sdk-nodejs - npm Package Compare versions

Comparing version 2.1.1 to 2.2.0

0

hostedcheckouts/create.js

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

7

index.js

@@ -69,3 +69,8 @@ /*

}
sdkcontext.setIntergrator(context.intergrator);
// context.intergrator has been deprecated but needs to be supported for backwards compatibility
if (context.integrator) {
sdkcontext.setIntegrator(context.integrator);
} else {
sdkcontext.setIntegrator(context.intergrator);
}
sdkcontext.setShoppingCartExtension(context.shoppingCartExtension);

@@ -72,0 +77,0 @@ },

@@ -0,0 +0,0 @@ Copyright (c) 2014 Global Collect Services B.V.

2

package.json
{
"name": "connect-sdk-nodejs",
"version": "2.1.1",
"version": "2.2.0",
"description": "SDK to communicate with the GlobalCollect platform using the Ingenico Connect Server API",

@@ -5,0 +5,0 @@ "dependencies": {

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ # Ingenico Connect Node.js SDK

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -279,2 +279,5 @@ {

"type" : "string"
},
"tokenize" : {
"type" : "boolean"
}

@@ -281,0 +284,0 @@ },

@@ -364,2 +364,5 @@ {

"type" : "string"
},
"tokenize" : {
"type" : "boolean"
}

@@ -723,2 +726,5 @@ },

"type" : "string"
},
"tokenize" : {
"type" : "boolean"
}

@@ -942,2 +948,5 @@ },

"type" : "string"
},
"tokenize" : {
"type" : "boolean"
}

@@ -944,0 +953,0 @@ },

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ var _ = require('lodash');

@@ -0,0 +0,0 @@ var http = require('http');

@@ -64,7 +64,14 @@ var crypto = require('crypto');

},
setIntergrator: function (intergrator) {
this.intergrator = intergrator;
setIntegrator: function (integrator) {
this.integrator = integrator;
},
getIntegrator: function () {
return this.integrator;
},
// setIntergrator and getIntergrator have been deprecated but need to be supported for backwards compatibility
setIntergrator: function (integrator) {
this.integrator = integrator;
},
getIntergrator: function () {
return this.intergrator;
return this.integrator;
},

@@ -71,0 +78,0 @@ setShoppingCartExtension: function (shoppingCartExtension) {

@@ -12,8 +12,8 @@ var dateformat = require('dateformat');

'sdkCreator': 'Ingenico',
'sdkIdentifier': 'NodejsServerSDK/v2.1.1',
'sdkIdentifier': 'NodejsServerSDK/v2.2.0',
'platformIdentifier': process.env['OS'] + ' Node.js/' + process.versions.node
}
};
if (sdkContext.getIntergrator() !== null) {
info.value['intergrator'] = sdkContext.getIntergrator();
if (sdkContext.getIntegrator() !== null) {
info.value['integrator'] = sdkContext.getIntegrator();
}

@@ -20,0 +20,0 @@ if (sdkContext.getShoppingCartExtension() !== null) {

@@ -0,0 +0,0 @@ var traverse = require('traverse');

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