Socket
Socket
Sign inDemoInstall

d2wd-client

Package Overview
Dependencies
14
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.12 to 1.0.13

8

lib/api/products/reviews.js

@@ -21,3 +21,3 @@ "use strict";

value: function retrieve(id) {
return this.client.get(this.resourceUrl + "/reviews/" + id);
return this.client.get("/reviews/" + id);
}

@@ -27,3 +27,3 @@ }, {

value: function retrieveByProduct(id) {
return this.client.get(this.resourceUrl + "/products/" + id + "/reviews");
return this.client.get("/products/" + id + "/reviews");
}

@@ -33,3 +33,3 @@ }, {

value: function create(data) {
return this.client.post(this.resourceUrl + "/reviews", data);
return this.client.post("/reviews", data);
}

@@ -39,3 +39,3 @@ }, {

value: function update(id, data) {
return this.client.put(this.resourceUrl + "/reviews/" + id, data);
return this.client.put("/reviews/" + id, data);
}

@@ -42,0 +42,0 @@ }, {

{
"name": "d2wd-client",
"version": "1.0.12",
"version": "1.0.13",
"description": "d2wd API client library. Work on browser and server.",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc