drip-nodejs
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -18,3 +18,3 @@ 'use strict'; | ||
}, | ||
updateSubscriber: function (accountId, email, payload, callback) { | ||
updateSubscriber: function (accountId, payload, callback) { | ||
request.post( | ||
@@ -21,0 +21,0 @@ { |
{ | ||
"name": "drip-nodejs", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "A complete NodeJS wrapper for connecting to the Drip v2 REST API", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -49,3 +49,3 @@ 'use strict'; | ||
client.updateSubscriber(accountId, email, { "test_field": "value" }, function (error, response, body) { | ||
client.updateSubscriber(accountId, { "test_field": "value" }, function (error, response, body) { | ||
expect(response.statusCode).toBe(204); | ||
@@ -52,0 +52,0 @@ expect(request.post.callCount).toBe(1); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67539