Skip to content

Commit

Permalink
node v3 library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekunledev committed Jan 25, 2024
1 parent e1e2fa3 commit 7a474af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.1.7 | 2023-10-18
## 1.1.7 | 2024-01-25
This release includes the addition of Fawrypay and Tanzania mobilemoney, updates to NG (mono), UK & EU bank charge, googlepay, applepay, enaira and Hotfix to add and update parameters for the update payment plan method, bulk transfers, and single transfers.
### Version changes.
- [ADDED] Support for Tanzania mobilemoney and tests for TZS mobilemoney.
Expand All @@ -14,6 +14,8 @@ This release includes the addition of Fawrypay and Tanzania mobilemoney, updates
- [ADDED] "status" as a body parameter in the updatePlanSchema.
- [FIXED] updated the transaction tests to stub response.
- [FIXED] "id" in the fetchSchema to accept only integer values.
- [FIXED] "authorization.zipcode" in the cardChargeSchema to accept string values.
- [FIXED] "billing_zip" in the chargeSchema to accept string values.
- [FIXED] updated the length of "account_bank" values in the transferSchema.
- [FIXED] updated the UK & USSD bank charge.
- [FIXED] updated the README.md file and documentation wikis.
Expand Down
4 changes: 2 additions & 2 deletions services/schema/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ const cardChargeSchema = joi.object({
city: joi.string(),
state: joi.string(),
country: joi.string().uppercase().length(2).default('NG'),
zipcode: joi.number().positive(),
zipcode: joi.string(),
}),
payment_plan: joi.string(),
meta: joi.object().pattern(/^[a-zA-Z0-9_]*$/, joi.any()),
Expand Down Expand Up @@ -279,7 +279,7 @@ const chargeSchema = joi.object({
billing_city: joi.string(),
billing_state: joi.string(),
billing_country: joi.string().uppercase().length(2).default('NG'),
billing_zip: joi.number().positive(),
billing_zip: joi.string(),
meta: joi.object().pattern(/^[a-zA-Z0-9_]*$/, joi.any()),
expires: joi.number().positive().max(31536000),
});
Expand Down

0 comments on commit 7a474af

Please sign in to comment.