paystack-node
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -0,1 +1,8 @@ | ||
<a name="0.2.5"></a> | ||
# 0.2.5 (2020-07-18) | ||
### Bug Fixes | ||
- Fixed outdated endpoints issue raised by [@Tetranyble](https://github.com/Tetranyble) | ||
- Fixed errors on **chargeCard()** Endpoint method | ||
<a name="0.2.4"></a> | ||
@@ -5,3 +12,3 @@ # 0.2.4 (2020-02-25) | ||
### Bug Fixes | ||
- Fixed outdated endpoints by [@navicstein](https://github.com/navicstein) | ||
- Fixed outdated endpoints issue raised by [@navicstein](https://github.com/navicstein) | ||
@@ -8,0 +15,0 @@ <a name="0.2.3"></a> |
{ | ||
"name": "paystack-node", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"description": "A NodeJS wrapper for the Paystack API", | ||
@@ -33,3 +33,3 @@ "main": "index.js", | ||
"got": "^9.3.2", | ||
"lodash": "^4.17.0" | ||
"lodash": "^4.17.19" | ||
}, | ||
@@ -36,0 +36,0 @@ "devDependencies": { |
@@ -14,3 +14,3 @@ 'use strict' | ||
send_json: true, | ||
params: { card$: Object, metadata: Object, reference: String, amount: Number, email: String }, | ||
params: { card$: Object, metadata: Object, reference: String, ussd: Object, pin: String, authorization_code: String, mobile_money: Object, device_id: String, amount$: String, email$: String }, | ||
param_defaults: null, | ||
@@ -28,3 +28,3 @@ route_params: null | ||
send_json: true, | ||
params: { bank$: Object, metadata: Object, reference: String, amount: Number, email: String }, | ||
params: { bank$: Object, metadata: Object, reference: String, ussd: Object, pin: String, authorization_code: String, mobile_money: Object, device_id: String, amount$: String, email$: String }, | ||
route_params: null | ||
@@ -31,0 +31,0 @@ }, |
@@ -136,3 +136,3 @@ 'use strict' | ||
offset) { | ||
let _value = values[string] || (isTypeOf(config.alternate_route_params_keymap, 'object') ? config.alternate_route_params_keymap[string] : false) | ||
let _value = values[string] || (isTypeOf(config.alternate_route_params_keymap, 'object') ? values[config.alternate_route_params_keymap[string]] : false) | ||
if (config.route_params_numeric === true) { | ||
@@ -139,0 +139,0 @@ if (!isNumeric(_value)) { |
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
52908
Updatedlodash@^4.17.19