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

producteca-sdk

Package Overview
Dependencies
Maintainers
7
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

producteca-sdk - npm Package Compare versions

Comparing version 7.0.2 to 7.1.0

.npmignore

11

build/salesOrdersApi.js

@@ -19,4 +19,5 @@ (function() {

this.deletePayment = bind(this.deletePayment, this);
this.updatePayment = bind(this.updatePayment, this);
this.createPayment = bind(this.createPayment, this);
this.deleteShipment = bind(this.deleteShipment, this);
this.createPayment = bind(this.createPayment, this);
this.updateShipment = bind(this.updateShipment, this);

@@ -120,2 +121,6 @@ this.createShipment = bind(this.createShipment, this);

SalesOrdersApi.prototype.deleteShipment = function(salesOrderId, shipmentId) {
return this.client.delAsync("/salesorders/" + salesOrderId + "/shipments/" + shipmentId);
};
SalesOrdersApi.prototype.createPayment = function(salesOrderId, payment) {

@@ -125,4 +130,4 @@ return this.client.postAsync("/salesorders/" + salesOrderId + "/payments", payment);

SalesOrdersApi.prototype.deleteShipment = function(salesOrderId, shipmentId) {
return this.client.delAsync("/salesorders/" + salesOrderId + "/shipments/" + shipmentId);
SalesOrdersApi.prototype.updatePayment = function(salesOrderId, paymentId, paymentUpdate) {
return this.client.putAsync("/salesorders/" + salesOrderId + "/payments/" + paymentId, paymentUpdate);
};

@@ -129,0 +134,0 @@

@@ -8,3 +8,3 @@ {

},
"version": "7.0.2",
"version": "7.1.0",
"main": "build/sdk.js",

@@ -23,3 +23,3 @@ "dependencies": {

"coffee-script": "^1.12.4",
"grunt": "~0.4.4",
"grunt": "^1.0.4",
"grunt-bump": "^0.3.1",

@@ -26,0 +26,0 @@ "grunt-contrib-clean": "~0.5.0",

Sorry, the diff of this file is not supported yet

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