From 9eac18976f5ac1770697f5ed7e9308651e15a514 Mon Sep 17 00:00:00 2001 From: Nemo Date: Wed, 8 Apr 2020 15:17:11 +0530 Subject: [PATCH] Adds new banks: SVMC, MLCG --- src/banknames.json | 2 ++ src/node/bank.js | 2 ++ src/php/Bank.php | 2 ++ src/ruby/bank.rb | 2 ++ 4 files changed, 8 insertions(+) diff --git a/src/banknames.json b/src/banknames.json index c06118cc..79349b78 100644 --- a/src/banknames.json +++ b/src/banknames.json @@ -742,6 +742,7 @@ "MKPB": "Malkapur Urban Co-operative Bank", "MKUX": "Malkapur Urban Co-operative Bank", "MKYX": "Marketyard Commercial Co-operativebank", + "MLCG": "Merchants Liberal Co-operative Bank", "MLDX": "Malda District Central Co-operative Bank", "MMCX": "Mattancherry Mahajanik Co-operative Urban Bank", "MMMX": "Mahila Nagrik Sahakari Bank Maryadit Mahasamund", @@ -1175,6 +1176,7 @@ "SVCB": "Shamrao Vithal Co-operative Bank", "SVCX": "Sarvodaya Commerical Co-operative Bank", "SVGX": "Sivagangai District Central Co-operative Bank", + "SVMC": "Shri Vijay Mahantesh Co-operative Bank", "SVNX": "Shivaji Nagari Sahakari Bank", "SVOX": "Sarvodaya Sahakari Bank", "SVRX": "Shree Vardhaman Sahakari Bank", diff --git a/src/node/bank.js b/src/node/bank.js index c3b425fd..c9da4d71 100644 --- a/src/node/bank.js +++ b/src/node/bank.js @@ -741,6 +741,7 @@ module.exports = Object.freeze({ MKPB: 'MKPB', MKUX: 'MKUX', MKYX: 'MKYX', + MLCG: 'MLCG', MLDX: 'MLDX', MMCX: 'MMCX', MMMX: 'MMMX', @@ -1174,6 +1175,7 @@ module.exports = Object.freeze({ SVCB: 'SVCB', SVCX: 'SVCX', SVGX: 'SVGX', + SVMC: 'SVMC', SVNX: 'SVNX', SVOX: 'SVOX', SVRX: 'SVRX', diff --git a/src/php/Bank.php b/src/php/Bank.php index c3311983..cbd2e87b 100644 --- a/src/php/Bank.php +++ b/src/php/Bank.php @@ -746,6 +746,7 @@ class Bank const MKPB = 'MKPB'; const MKUX = 'MKUX'; const MKYX = 'MKYX'; + const MLCG = 'MLCG'; const MLDX = 'MLDX'; const MMCX = 'MMCX'; const MMMX = 'MMMX'; @@ -1179,6 +1180,7 @@ class Bank const SVCB = 'SVCB'; const SVCX = 'SVCX'; const SVGX = 'SVGX'; + const SVMC = 'SVMC'; const SVNX = 'SVNX'; const SVOX = 'SVOX'; const SVRX = 'SVRX'; diff --git a/src/ruby/bank.rb b/src/ruby/bank.rb index 83880960..07ffc0f4 100644 --- a/src/ruby/bank.rb +++ b/src/ruby/bank.rb @@ -745,6 +745,7 @@ module Bank MKPB = :MKPB MKUX = :MKUX MKYX = :MKYX + MLCG = :MLCG MLDX = :MLDX MMCX = :MMCX MMMX = :MMMX @@ -1178,6 +1179,7 @@ module Bank SVCB = :SVCB SVCX = :SVCX SVGX = :SVGX + SVMC = :SVMC SVNX = :SVNX SVOX = :SVOX SVRX = :SVRX