Socket
Socket
Sign inDemoInstall

flutterwave-node-v3

Package Overview
Dependencies
173
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.8 to 1.1.9

6

CHANGELOG.md
# Changelog
## 1.1.9 | 2024-03-18
Validation hotfix on subaccounts
### Version Changes.
- [FIXED] Update validation (minLength & maxLength) for 'account_bank" parameter in the subaccountSchema.
## 1.1.8 | 2024-02-19

@@ -4,0 +10,0 @@ Updated BVN verification flow and hotfixes on subaccount, bills and transaction fees:

2

package.json
{
"name": "flutterwave-node-v3",
"version": "1.1.8",
"version": "1.1.9",
"description": "The official Node.JS library for Flutterwave v3 payment APIs",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -416,3 +416,3 @@ const joi = require('joi');

const subaccountSchema = joi.object({
account_bank: joi.string().length(3).required(),
account_bank: joi.string().min(3).max(6).required(),
account_number: joi.string().trim().max(20).required(),

@@ -641,3 +641,3 @@ business_name: joi.string().trim().max(100).required(),

const ussdChargeSchema = joi.object({
account_bank: joi.string().length(3).required(),
account_bank: joi.string().min(3).max(6).required(),
amount: joi.number().positive().required(),

@@ -644,0 +644,0 @@ email: joi.string().max(100).email().required(),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc