producteca-sdk
Advanced tools
Comparing version 8.3.0 to 8.3.1
@@ -128,6 +128,13 @@ (function() { | ||
ProductsApi.prototype.deleteIntegration = function(productId, integrationId) { | ||
ProductsApi.prototype.deleteIntegration = function(productId, integrationId, ignoreParentIntegrationId) { | ||
var url; | ||
url = "/products/" + productId + "/integrations/" + integrationId; | ||
return this.client.deleteAsync(url); | ||
if (ignoreParentIntegrationId == null) { | ||
ignoreParentIntegrationId = false; | ||
} | ||
return this.client.deleteAsync(url, { | ||
qs: { | ||
ignoreParentIntegrationId: ignoreParentIntegrationId | ||
} | ||
}); | ||
}; | ||
@@ -134,0 +141,0 @@ |
@@ -8,3 +8,3 @@ { | ||
}, | ||
"version": "8.3.0", | ||
"version": "8.3.1", | ||
"main": "build/sdk.js", | ||
@@ -11,0 +11,0 @@ "dependencies": { |
34629
847