producteca-sdk
Advanced tools
Comparing version 7.5.3 to 7.6.0
@@ -55,6 +55,11 @@ (function() { | ||
SalesOrdersApi.prototype.getByIntegration = function(arg) { | ||
var app, integrationId; | ||
SalesOrdersApi.prototype.getByIntegration = function(arg, overrideApp) { | ||
var app, integrationId, qs; | ||
integrationId = arg.integrationId, app = arg.app; | ||
return this.client.getAsync("/integrations/" + app + "/salesorders/" + integrationId); | ||
qs = overrideApp ? { | ||
app: overrideApp | ||
} : void 0; | ||
return this.client.getAsync("/integrations/" + app + "/salesorders/" + integrationId, { | ||
qs: qs | ||
}); | ||
}; | ||
@@ -61,0 +66,0 @@ |
@@ -8,3 +8,3 @@ { | ||
}, | ||
"version": "7.5.3", | ||
"version": "7.6.0", | ||
"main": "build/sdk.js", | ||
@@ -11,0 +11,0 @@ "dependencies": { |
Sorry, the diff of this file is not supported yet
845
34505