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.7.0 to 7.8.0

13

build/productsApi.js

@@ -39,3 +39,5 @@ (function() {

this.create = bind(this.create, this);
this.findByVariationIntegrationId = bind(this.findByVariationIntegrationId, this);
this.findByVariationSku = bind(this.findByVariationSku, this);
this.findByIntegrationId = bind(this.findByIntegrationId, this);
this.findByCode = bind(this.findByCode, this);

@@ -70,2 +72,9 @@ this.getMany = bind(this.getMany, this);

ProductsApi.prototype.findByIntegrationId = function(app, integrationId, $select) {
return this._findMany("/products/byintegration", {
integrationId: integrationId,
app: app
}, $select);
};
ProductsApi.prototype.findByVariationSku = function(sku, $select) {

@@ -77,2 +86,6 @@ return this._findMany("/products/bysku", {

ProductsApi.prototype.findByVariationIntegrationId = function(integrationId, $select) {
return this._findMany("/products/byvariationintegration/" + integrationId, {}, $select);
};
ProductsApi.prototype.create = function(product, opts) {

@@ -79,0 +92,0 @@ return this.client.postAsync("/products", product, opts);

2

package.json

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

},
"version": "7.7.0",
"version": "7.8.0",
"main": "build/sdk.js",

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

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