banks-helper 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/banks.ts +7 -7
  2. package/package.json +1 -1
package/banks.ts CHANGED
@@ -1,6 +1,13 @@
1
1
  import { IBankLogoItem } from './IBankLogoItem';
2
2
 
3
3
  export const banks: IBankLogoItem[] = [
4
+ {
5
+ fileName: 'mbank.svg',
6
+ humanName: 'MBank',
7
+ matchedBankNames: [
8
+ 'Коммерческий банк КЫРГЫЗСТАН'
9
+ ],
10
+ },
4
11
  {
5
12
  fileName: 'absolutbank.svg',
6
13
  humanName: 'АКБ Абсолют Банк',
@@ -2807,13 +2814,6 @@ export const banks: IBankLogoItem[] = [
2807
2814
  humanName: 'Бакай Банк',
2808
2815
  matchedBankNames: [],
2809
2816
  },
2810
- {
2811
- fileName: 'mbank.svg',
2812
- humanName: 'MBank',
2813
- matchedBankNames: [
2814
- 'Коммерческий банк КЫРГЫЗСТАН'
2815
- ],
2816
- },
2817
2817
  {
2818
2818
  fileName: 'dcb.svg',
2819
2819
  humanName: 'Дос-Кредобанк',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "banks-helper",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Helps to work with banks names",
5
5
  "main": "index.ts",
6
6
  "scripts": {