-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e9c224
commit 4fb652c
Showing
2 changed files
with
149 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75000,7 +75000,7 @@ | |
{ | ||
"key": "account_type", | ||
"type": "string", | ||
"regexp": "\/^[A-Za-z0-9]{1,10}$\/", | ||
"regexp": "\/^[A-Za-z0-9]{1,50}$\/", | ||
"required": false, | ||
"position": 2, | ||
"label": { | ||
|
@@ -75302,7 +75302,7 @@ | |
"example": "[email protected]", | ||
"regexp": "\/[a-z0-9!#$%&'*+\\/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+\\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])\/", | ||
"required": false, | ||
"position": 12 | ||
"position": 19 | ||
}, | ||
{ | ||
"key": "beneficiary_phone", | ||
|
@@ -75320,14 +75320,14 @@ | |
"example": "6339152330011", | ||
"regexp": "\/^\\d{10,14}$\/", | ||
"required": false, | ||
"position": 13 | ||
"position": 20 | ||
}, | ||
{ | ||
"key": "beneficiary_dob", | ||
"type": "string", | ||
"regexp": "\/^([0-2][0-9]|(3)[0-1])(\\/)(((0)[0-9])|((1)[0-2]))(\\/)\\d{4}||((19|20)\\d{2}(0[1-9]|1[0-2])(0[1-9]|[12]\\d|3[01]))$\/", | ||
"required": false, | ||
"position": 14, | ||
"position": 21, | ||
"label": { | ||
"en": "Date of birth", | ||
"ru": "Дата рождения", | ||
|
@@ -75354,8 +75354,26 @@ | |
"ru": "Введите номер банковского счета", | ||
"uk": "Введіть номер банківського рахунку" | ||
}, | ||
"position": 15, | ||
"position": 22, | ||
"required": false | ||
}, | ||
{ | ||
"key": "bank_branch_code", | ||
"type": "string", | ||
"regexp": "\/^[A-Za-z0-9]{2,100}$\/", | ||
"required": false, | ||
"position": 23, | ||
"label": { | ||
"en": "Bank Branch Code", | ||
"ru": "Bank Branch Code", | ||
"uk": "Bank Branch Code" | ||
}, | ||
"hint": { | ||
"en": "Enter Bank Branch Code", | ||
"ru": "Введите Bank Branch Code", | ||
"uk": "Введіть Bank Branch Code" | ||
}, | ||
"example": "A6A2B6" | ||
} | ||
], | ||
"amount_min": "0.01", | ||
|
@@ -76552,7 +76570,7 @@ | |
{ | ||
"key": "account_type", | ||
"type": "string", | ||
"regexp": "\/^[A-Za-z0-9]{1,10}$\/", | ||
"regexp": "\/^[A-Za-z0-9]{1,50}$\/", | ||
"required": false, | ||
"position": 2, | ||
"label": { | ||
|
@@ -152386,7 +152404,7 @@ | |
{ | ||
"key": "account_type", | ||
"type": "string", | ||
"regexp": "\/^[A-Z]{1,3}$\/", | ||
"regexp": "\/^[A-Za-z]{1,50}$\/", | ||
"label": { | ||
"en": "Account type", | ||
"ru": "Тип аккаунта", | ||
|
@@ -152643,6 +152661,127 @@ | |
"uk": "Enter postcode" | ||
}, | ||
"example": "postcode" | ||
}, | ||
{ | ||
"key": "account_number", | ||
"type": "string", | ||
"label": { | ||
"en": "Account number", | ||
"ru": "Номер счета", | ||
"uk": "Номер рахунку" | ||
}, | ||
"regexp": "\/^[A-Z]{2}[A-Z0-9]{13,32}$|^[0-9]{3,20}$\/", | ||
"required": false, | ||
"position": 16, | ||
"hint": { | ||
"en": "Enter account number or IBAN", | ||
"ru": "Введите номер счета или IBAN", | ||
"uk": "Введіть номер рахунку або IBAN" | ||
}, | ||
"example": "GB97BARC20031877565489" | ||
}, | ||
{ | ||
"key": "bank_name", | ||
"type": "string", | ||
"regexp": "\/^[A-Z\\-\\sa-z0-9_]{2,100}$\/", | ||
"required": false, | ||
"position": 17, | ||
"label": { | ||
"en": "Bank Name", | ||
"ru": "Имя банка", | ||
"uk": "Ім'я банку" | ||
}, | ||
"hint": { | ||
"en": "Enter bank name", | ||
"ru": "Введите имя банка", | ||
"uk": "Введіть ім'я банку" | ||
} | ||
}, | ||
{ | ||
"key": "bank_address", | ||
"type": "string", | ||
"regexp": "\/^[a-zA-Z0-9 \\\/_.,'-]{1,200}$\/", | ||
"required": false, | ||
"position": 18, | ||
"label": { | ||
"en": "Bank Address", | ||
"ru": "Адрес банка", | ||
"uk": "Адреса банку" | ||
}, | ||
"hint": { | ||
"en": "Enter bank address", | ||
"ru": "Введите адрес банка", | ||
"uk": "Введіть адресу банку" | ||
} | ||
}, | ||
{ | ||
"key": "beneficiary_document_type", | ||
"type": "string", | ||
"regexp": "\/^[A-Za-z]{2,20}$\/", | ||
"required": false, | ||
"position": 19, | ||
"label": { | ||
"en": "Beneficiary Document Type", | ||
"ru": "Тип документа получателя", | ||
"uk": "Тип документу отримувача" | ||
}, | ||
"hint": { | ||
"en": "Enter Beneficiary Document Type", | ||
"ru": "Введите тип документа получателя", | ||
"uk": "Введіть тип документу отримувача" | ||
} | ||
}, | ||
{ | ||
"key": "beneficiary_state", | ||
"type": "string", | ||
"regexp": "\/^[A-Za-zА-Яа-я,\\s\\-\\d]{2,64}$\/", | ||
"required": false, | ||
"position": 20, | ||
"label": { | ||
"en": "Beneficiary state", | ||
"ru": "Beneficiary state", | ||
"uk": "Beneficiary state" | ||
}, | ||
"hint": { | ||
"en": "Enter beneficiary state", | ||
"ru": "Введите beneficiary state", | ||
"uk": "Введіть beneficiary state" | ||
} | ||
}, | ||
{ | ||
"key": "beneficiary_full_name", | ||
"type": "string", | ||
"regexp": "\/^[A-Za-zА-Яа-я\\-\\d\\s]{2,100}$\/", | ||
"required": false, | ||
"position": 21, | ||
"label": { | ||
"en": "Beneficiary full name", | ||
"ru": "Полное имя получателя", | ||
"uk": "Повне імʼя отримувача" | ||
}, | ||
"hint": { | ||
"en": "Enter beneficiary full name", | ||
"ru": "Введите полное имя получателя", | ||
"uk": "Введіть повне імʼя отримувача" | ||
} | ||
}, | ||
{ | ||
"key": "bank_branch_code", | ||
"type": "string", | ||
"regexp": "\/^[A-Za-z0-9]{2,100}$\/", | ||
"required": false, | ||
"position": 22, | ||
"label": { | ||
"en": "Bank Branch Code", | ||
"ru": "Bank Branch Code", | ||
"uk": "Bank Branch Code" | ||
}, | ||
"hint": { | ||
"en": "Enter Bank Branch Code", | ||
"ru": "Введите Bank Branch Code", | ||
"uk": "Введіть Bank Branch Code" | ||
}, | ||
"example": "A6A2B6" | ||
} | ||
] | ||
}, | ||
|