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

shopify-node

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shopify-node - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

16

lib/shopify.js

@@ -142,4 +142,8 @@ function ShopifyConnect(params) {

$scope.get = function(path, callback) {
$scope.request($scope.config.access_token, path, 'get', null, callback);
$scope.get = function(path, data, callback) {
if(arguments.length < 3) {
callback = data;
data = null;
}
$scope.request($scope.config.access_token, path, 'get', data, callback);
};

@@ -155,4 +159,8 @@

$scope.delete = function(path, callback) {
$scope.request($scope.config.access_token, path, 'delete', null, callback);
$scope.delete = function(path, data, callback) {
if(arguments.length < 3) {
callback = data;
data = null;
}
$scope.request($scope.config.access_token, path, 'delete', data, callback);
};

@@ -159,0 +167,0 @@

{
"name": "shopify-node",
"description": "A NodeJS connector for Shopify OAuth2",
"version": "0.1.7",
"version": "0.1.8",
"author": {

@@ -30,4 +30,4 @@ "name": "uh-sem-blee, Co. | typefoo",

},
"_id": "shopify-node@0.1.7",
"_id": "shopify-node@0.1.8",
"_from": "shopify-node@"
}
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