mollie-api-node
Advanced tools
Comparing version 1.3.2 to 1.3.3
@@ -7,2 +7,5 @@ ![Mollie](https://www.mollie.com/files/Mollie-Logo-Style-Small.png) | ||
#### v1.3.3 - 2016-11-14 | ||
- Fix an issue where the API client would crash if no data is passed to the resource.all() method. | ||
#### v1.3.2 - 2016-10-17 | ||
@@ -9,0 +12,0 @@ - Allow parameters 'count' and 'offset' to be passed to methods.all |
@@ -60,3 +60,3 @@ // Generated by CoffeeScript 1.8.0 | ||
module.exports = Client = (function() { | ||
Client.version = "1.3.2"; | ||
Client.version = "1.3.3"; | ||
@@ -63,0 +63,0 @@ function Client() { |
@@ -111,2 +111,5 @@ // Generated by CoffeeScript 1.8.0 | ||
Base.prototype.all = function(callback, data) { | ||
if (data == null) { | ||
data = null; | ||
} | ||
return this.api.callRest("GET", this.getResourceName(), null, data, (function(_this) { | ||
@@ -113,0 +116,0 @@ return function(body) { |
{ | ||
"name": "mollie-api-node", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"license": "BSD-3-Clause", | ||
@@ -5,0 +5,0 @@ "repository": "git://github.com/mollie/mollie-api-node", |
Sorry, the diff of this file is not supported yet
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
306891
1009