@eaera-com/client-sdk-v1 0.2.108
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.
- package/LICENSE +19 -0
- package/README.md +86 -0
- package/dist/channels/accounts.d.ts +11 -0
- package/dist/channels/metrics.d.ts +8 -0
- package/dist/channels/position.d.ts +13 -0
- package/dist/channels/users.d.ts +38 -0
- package/dist/common/constants/category.constant.d.ts +30 -0
- package/dist/common/constants/category.constant.js +31 -0
- package/dist/common/constants/communication.constant.d.ts +52 -0
- package/dist/common/constants/communication.constant.js +85 -0
- package/dist/common/constants/email.constant.d.ts +4 -0
- package/dist/common/constants/email.constant.js +7 -0
- package/dist/common/constants/filter.constants.d.ts +1 -0
- package/dist/common/constants/filter.constants.js +6 -0
- package/dist/common/constants/index.d.ts +15 -0
- package/dist/common/constants/index.js +79 -0
- package/dist/common/constants/kyc.constant.d.ts +42 -0
- package/dist/common/constants/kyc.constant.js +43 -0
- package/dist/common/constants/listStatus.constants.d.ts +2 -0
- package/dist/common/constants/listStatus.constants.js +19 -0
- package/dist/common/constants/methods.constant.d.ts +43 -0
- package/dist/common/constants/methods.constant.js +84 -0
- package/dist/common/constants/passwordRule.constants.d.ts +4 -0
- package/dist/common/constants/passwordRule.constants.js +7 -0
- package/dist/common/constants/program.constants.d.ts +2 -0
- package/dist/common/constants/program.constants.js +31 -0
- package/dist/common/constants/propAccount.constant.d.ts +8 -0
- package/dist/common/constants/propAccount.constant.js +11 -0
- package/dist/common/constants/site-settings.constants.d.ts +40 -0
- package/dist/common/constants/site-settings.constants.js +10 -0
- package/dist/common/constants/store.constants.d.ts +1 -0
- package/dist/common/constants/store.constants.js +7 -0
- package/dist/common/constants/supportTicket.constant.d.ts +11 -0
- package/dist/common/constants/supportTicket.constant.js +14 -0
- package/dist/common/constants/tradingPlatform.constants.d.ts +4 -0
- package/dist/common/constants/tradingPlatform.constants.js +7 -0
- package/dist/common/constants/transaction.constant.d.ts +16 -0
- package/dist/common/constants/transaction.constant.js +19 -0
- package/dist/common/constants/type.constants.d.ts +5 -0
- package/dist/common/constants/type.constants.js +28 -0
- package/dist/common/constants/withdraw.constant.d.ts +1 -0
- package/dist/common/constants/withdraw.constant.js +7 -0
- package/dist/common/types/addon.type.d.ts +30 -0
- package/dist/common/types/category.type.d.ts +8 -0
- package/dist/common/types/common.type.d.ts +3 -0
- package/dist/common/types/communication.type.d.ts +51 -0
- package/dist/common/types/coupon.type.d.ts +27 -0
- package/dist/common/types/email.type.d.ts +8 -0
- package/dist/common/types/fundingSource.type.d.ts +80 -0
- package/dist/common/types/ibs.type.d.ts +15 -0
- package/dist/common/types/index.d.ts +16 -0
- package/dist/common/types/kyc.type.d.ts +52 -0
- package/dist/common/types/liveNotification.type.d.ts +10 -0
- package/dist/common/types/news.type.d.ts +17 -0
- package/dist/common/types/notification.types.d.ts +30 -0
- package/dist/common/types/passwordRule.type.d.ts +16 -0
- package/dist/common/types/paymentMethod/blockbee.type.d.ts +27 -0
- package/dist/common/types/paymentMethod/index.d.ts +2 -0
- package/dist/common/types/paymentMethod/match2pay.type.d.ts +27 -0
- package/dist/common/types/product.type.d.ts +63 -0
- package/dist/common/types/siteSetting.type.d.ts +77 -0
- package/dist/common/types/wallet.type.d.ts +36 -0
- package/dist/common/use-utils/data/countriesWithCurrencies.d.ts +7 -0
- package/dist/common/use-utils/data/dragonpayBank.d.ts +6 -0
- package/dist/common/use-utils/data/help2pay_banks.d.ts +7 -0
- package/dist/common/use-utils/data/listCryptoCurrencies.d.ts +5 -0
- package/dist/common/use-utils/data/regions.d.ts +16 -0
- package/dist/common/use-utils/data/widgets.d.ts +4 -0
- package/dist/common/use-utils/error-handlers/index.d.ts +1 -0
- package/dist/common/use-utils/helpers/color.helpers.d.ts +2 -0
- package/dist/common/use-utils/helpers/color.helpers.js +19 -0
- package/dist/common/use-utils/helpers/currency.helpers.d.ts +25 -0
- package/dist/common/use-utils/helpers/currency.helpers.js +762 -0
- package/dist/common/use-utils/helpers/date.helpers.d.ts +8 -0
- package/dist/common/use-utils/helpers/date.helpers.js +64 -0
- package/dist/common/use-utils/helpers/kyc.helpers.d.ts +22 -0
- package/dist/common/use-utils/helpers/kyc.helpers.js +165 -0
- package/dist/common/use-utils/helpers/misc.helpers.d.ts +45 -0
- package/dist/common/use-utils/helpers/misc.helpers.js +141 -0
- package/dist/common/use-utils/helpers/number.helpers.d.ts +11 -0
- package/dist/common/use-utils/helpers/number.helpers.js +76 -0
- package/dist/common/use-utils/helpers/passwordRule.helpers.d.ts +5 -0
- package/dist/common/use-utils/helpers/passwordRule.helpers.js +31 -0
- package/dist/common/use-utils/helpers/schema.helpers.d.ts +2 -0
- package/dist/common/use-utils/helpers/schema.helpers.js +2036 -0
- package/dist/common/use-utils/helpers/string.helpers.d.ts +7 -0
- package/dist/common/use-utils/helpers/string.helpers.js +38 -0
- package/dist/common/use-utils/helpers/transaction.helpers.d.ts +8 -0
- package/dist/common/use-utils/helpers/transaction.helpers.js +44 -0
- package/dist/common/use-utils/schemas/fundingMethod.schema.d.ts +1313 -0
- package/dist/common/use-utils/validators/index.d.ts +4 -0
- package/dist/common/use-utils/validators/index.js +8 -0
- package/dist/index-6dV6pxDN.js +334 -0
- package/dist/index-BTVWGSPO.js +2897 -0
- package/dist/index.d.ts +1763 -0
- package/dist/index.js +10326 -0
- package/dist/regions-Dsypl2zG.js +18768 -0
- package/dist/services/ClientSDK/account/index.d.ts +57 -0
- package/dist/services/ClientSDK/activityLog/index.d.ts +6 -0
- package/dist/services/ClientSDK/auth/index.d.ts +21 -0
- package/dist/services/ClientSDK/auth/types.d.ts +11 -0
- package/dist/services/ClientSDK/captcha/index.d.ts +5 -0
- package/dist/services/ClientSDK/category/index.d.ts +9 -0
- package/dist/services/ClientSDK/client/index.d.ts +15 -0
- package/dist/services/ClientSDK/commissionProfile/index.d.ts +10 -0
- package/dist/services/ClientSDK/contact/index.d.ts +9 -0
- package/dist/services/ClientSDK/content/index.d.ts +18 -0
- package/dist/services/ClientSDK/contentType/index.d.ts +6 -0
- package/dist/services/ClientSDK/conversionRate/index.d.ts +7 -0
- package/dist/services/ClientSDK/coupon/index.d.ts +15 -0
- package/dist/services/ClientSDK/coupon/type.d.ts +35 -0
- package/dist/services/ClientSDK/department/index.d.ts +10 -0
- package/dist/services/ClientSDK/devices/index.d.ts +6 -0
- package/dist/services/ClientSDK/emailLayout/index.d.ts +10 -0
- package/dist/services/ClientSDK/emailTemplate/index.d.ts +15 -0
- package/dist/services/ClientSDK/employee/index.d.ts +15 -0
- package/dist/services/ClientSDK/folder/index.d.ts +12 -0
- package/dist/services/ClientSDK/fundingSource/index.d.ts +17 -0
- package/dist/services/ClientSDK/gamificationCampaign/index.d.ts +9 -0
- package/dist/services/ClientSDK/ib/index.d.ts +26 -0
- package/dist/services/ClientSDK/index.d.ts +60 -0
- package/dist/services/ClientSDK/kycs/index.d.ts +18 -0
- package/dist/services/ClientSDK/lead/index.d.ts +13 -0
- package/dist/services/ClientSDK/metric/index.d.ts +11 -0
- package/dist/services/ClientSDK/metric/type.d.ts +171 -0
- package/dist/services/ClientSDK/news/index.d.ts +14 -0
- package/dist/services/ClientSDK/note/index.d.ts +8 -0
- package/dist/services/ClientSDK/notificationCenter/NotificationCenter.types.d.ts +24 -0
- package/dist/services/ClientSDK/notificationCenter/index.d.ts +20 -0
- package/dist/services/ClientSDK/payment/index.d.ts +27 -0
- package/dist/services/ClientSDK/persona/index.d.ts +12 -0
- package/dist/services/ClientSDK/product/index.d.ts +12 -0
- package/dist/services/ClientSDK/productAttribute/index.d.ts +9 -0
- package/dist/services/ClientSDK/propAccount/index.d.ts +59 -0
- package/dist/services/ClientSDK/purchase/index.d.ts +13 -0
- package/dist/services/ClientSDK/purchase/type.d.ts +66 -0
- package/dist/services/ClientSDK/reportFilters/index.d.ts +9 -0
- package/dist/services/ClientSDK/request/index.d.ts +38 -0
- package/dist/services/ClientSDK/roleSet/index.d.ts +8 -0
- package/dist/services/ClientSDK/silt/index.d.ts +5 -0
- package/dist/services/ClientSDK/siteSetting/index.d.ts +16 -0
- package/dist/services/ClientSDK/sumsub/index.d.ts +6 -0
- package/dist/services/ClientSDK/support/index.d.ts +16 -0
- package/dist/services/ClientSDK/tradeBattle/index.d.ts +30 -0
- package/dist/services/ClientSDK/tradeBattle/tradeBattle.type.d.ts +119 -0
- package/dist/services/ClientSDK/tradeServer/index.d.ts +12 -0
- package/dist/services/ClientSDK/transaction/index.d.ts +9 -0
- package/dist/services/ClientSDK/user/index.d.ts +40 -0
- package/dist/services/ClientSDK/veriff/index.d.ts +7 -0
- package/dist/services/ClientSDK/voip/index.d.ts +5 -0
- package/dist/services/ClientSDK/wallet/index.d.ts +18 -0
- package/dist/services/EmailServiceTestSDK/index.d.ts +7 -0
- package/dist/services/EmailServiceTestSDK/message/index.d.ts +6 -0
- package/dist/services/PoolTradingSDK/index.d.ts +11 -0
- package/dist/services/PoolTradingSDK/investWallet/index.d.ts +16 -0
- package/dist/services/PoolTradingSDK/poolProfile/index.d.ts +46 -0
- package/dist/services/ReportSDK/index.d.ts +28 -0
- package/dist/services/base.d.ts +29 -0
- package/dist/stores/account.d.ts +191 -0
- package/dist/stores/activityLog.d.ts +7 -0
- package/dist/stores/addon.d.ts +11 -0
- package/dist/stores/advertising.d.ts +155 -0
- package/dist/stores/auth.d.ts +39 -0
- package/dist/stores/battleNotification.d.ts +6 -0
- package/dist/stores/captcha.d.ts +3 -0
- package/dist/stores/category.d.ts +15 -0
- package/dist/stores/client.d.ts +16 -0
- package/dist/stores/commissionProfile.d.ts +12 -0
- package/dist/stores/contact.d.ts +9 -0
- package/dist/stores/content.d.ts +222 -0
- package/dist/stores/contentType.d.ts +10 -0
- package/dist/stores/contentV2.d.ts +160 -0
- package/dist/stores/conversionRate.d.ts +9 -0
- package/dist/stores/coupon.d.ts +30 -0
- package/dist/stores/department.d.ts +7 -0
- package/dist/stores/devices.d.ts +8 -0
- package/dist/stores/employee.d.ts +12 -0
- package/dist/stores/folder.d.ts +15 -0
- package/dist/stores/fundingSource.d.ts +46 -0
- package/dist/stores/gamificationCampaign.d.ts +10 -0
- package/dist/stores/ib.d.ts +22 -0
- package/dist/stores/index.d.ts +1761 -0
- package/dist/stores/investWallet.d.ts +92 -0
- package/dist/stores/kycs.d.ts +16 -0
- package/dist/stores/lead.d.ts +13 -0
- package/dist/stores/liveNotification.d.ts +6 -0
- package/dist/stores/metric.d.ts +24 -0
- package/dist/stores/metricsV2.d.ts +28 -0
- package/dist/stores/news.d.ts +15 -0
- package/dist/stores/notes.d.ts +16 -0
- package/dist/stores/notification.d.ts +6 -0
- package/dist/stores/notificationCenter.d.ts +20 -0
- package/dist/stores/payment.d.ts +25 -0
- package/dist/stores/poolProfile.d.ts +117 -0
- package/dist/stores/poolTrading.d.ts +7 -0
- package/dist/stores/product.d.ts +31 -0
- package/dist/stores/productAttribute.d.ts +10 -0
- package/dist/stores/propAccount.d.ts +48 -0
- package/dist/stores/purchases.d.ts +23 -0
- package/dist/stores/report.d.ts +19 -0
- package/dist/stores/reportFilter.d.ts +9 -0
- package/dist/stores/request.d.ts +39 -0
- package/dist/stores/roleSet.d.ts +7 -0
- package/dist/stores/siteSetting.d.ts +103 -0
- package/dist/stores/support.d.ts +33 -0
- package/dist/stores/tradeBattle.d.ts +51 -0
- package/dist/stores/tradeServer.d.ts +12 -0
- package/dist/stores/transaction.d.ts +8 -0
- package/dist/stores/user.d.ts +30 -0
- package/dist/stores/wallet.d.ts +53 -0
- package/dist/utils/axiosTiming.d.ts +12 -0
- package/dist/utils/cookies.d.ts +1 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/routeCompression.d.ts +19 -0
- package/dist/utils/store.d.ts +12 -0
- package/package.json +74 -0
|
@@ -0,0 +1,2036 @@
|
|
|
1
|
+
import { formatExpiration as t, parseCardNumber as c, formatCardNumber as u } from "./number.helpers.js";
|
|
2
|
+
import { a as l } from "../../../index-6dV6pxDN.js";
|
|
3
|
+
import { PSP_WITH_DYNAMIC_SUFFIX as i } from "../../constants/methods.constant.js";
|
|
4
|
+
const d = [
|
|
5
|
+
{ name: "Asia United Bank CA/SA", code: "AUB", currency: "PHP" },
|
|
6
|
+
{ name: "Banco de Oro CA/SA", code: "BDO", currency: "PHP" },
|
|
7
|
+
{ name: "BPI CA/SA", code: "BPI", currency: "PHP" },
|
|
8
|
+
{ name: "BPI Family Bank", code: "BFB", currency: "PHP" },
|
|
9
|
+
{ name: "Chinabank CA/SA", code: "CBC", currency: "PHP" },
|
|
10
|
+
{ name: "EastWest CA/SA", code: "EWB", currency: "PHP" },
|
|
11
|
+
{ name: "Landbank CA/SA", code: "LBP", currency: "PHP" },
|
|
12
|
+
{ name: "Metrobank CA/SA", code: "MBTC", currency: "PHP" },
|
|
13
|
+
{ name: "PNB individual CA/SA", code: "PNB", currency: "PHP" },
|
|
14
|
+
{ name: "RCBC CA/SA, RCBC Savings Bank CA/SA, RCBC MyWallet", code: "RCBC", currency: "PHP" },
|
|
15
|
+
{ name: "Robinsons Bank CA/SA", code: "RSB", currency: "PHP" },
|
|
16
|
+
{ name: "Security Bank CA/SA", code: "SBC", currency: "PHP" },
|
|
17
|
+
{ name: "Unionbank CA/SA, EON", code: "UBP", currency: "PHP" },
|
|
18
|
+
{ name: "UCPB CA/SA", code: "UCPB", currency: "PHP" },
|
|
19
|
+
{ name: "Cebuana Lhuillier Cash Pick-up", code: "CEBL", currency: "PHP" },
|
|
20
|
+
{ name: "LBC Cash Pick-up", code: "LBC", currency: "PHP" },
|
|
21
|
+
{ name: "Palawan Pawnshop Cash Pick-up (reserved)", code: "PLWN", currency: "PHP" },
|
|
22
|
+
{ name: "PeraHub Cash Pick-up", code: "PRHB", currency: "PHP" },
|
|
23
|
+
{ name: "RCBC/RCBC Savings Bank Cash Pick-up (reserved)", code: "RCBP", currency: "PHP" },
|
|
24
|
+
{ name: "RD Pawnshop Cash Pickup (reserved)", code: "RDP", currency: "PHP" },
|
|
25
|
+
{ name: "TrueMoney Cash Pick-up (reserved)", code: "TRMY", currency: "PHP" },
|
|
26
|
+
{ name: "Coins.ph Wallet (reserved)", code: "BITC", currency: "PHP" },
|
|
27
|
+
{ name: "Gcash", code: "GCSH", currency: "PHP" },
|
|
28
|
+
{ name: "Smart Money (reserved)", code: "SMRT", currency: "PHP" },
|
|
29
|
+
{ name: "Maybank", code: "MAY", currency: "PHP" },
|
|
30
|
+
{ name: "Sterling Bank of Asia", code: "SBA", currency: "PHP" },
|
|
31
|
+
{ name: "Development Bank of the Philippines (reserved)", code: "DBP", currency: "PHP" },
|
|
32
|
+
{ name: "Philippine Bank of Communications", code: "PBCM", currency: "PHP" },
|
|
33
|
+
{ name: "Philippine Savings Bank", code: "PSB", currency: "PHP" },
|
|
34
|
+
{ name: "Philippine Veterans Bank", code: "PVB", currency: "PHP" },
|
|
35
|
+
{ name: "Bank of Commerce", code: "BOC", currency: "PHP" },
|
|
36
|
+
{ name: "Chinabank Savings Bank", code: "CBCS", currency: "PHP" },
|
|
37
|
+
{ name: "Chinatrust", code: "CTBC", currency: "PHP" },
|
|
38
|
+
{ name: "Smart PayMaya", code: "PYMY", currency: "PHP" }
|
|
39
|
+
], a = [
|
|
40
|
+
{
|
|
41
|
+
currency: "IDR",
|
|
42
|
+
code: "BNI",
|
|
43
|
+
name: "Bank Negara Indonesia",
|
|
44
|
+
country: "Indonesia"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
currency: "IDR",
|
|
48
|
+
code: "BTPN",
|
|
49
|
+
name: "Bank Tabungan Pensiunan Nasional",
|
|
50
|
+
country: "Indonesia"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
currency: "IDR",
|
|
54
|
+
code: "BCASB",
|
|
55
|
+
name: "BCA Syariah Bank",
|
|
56
|
+
country: "Indonesia"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
currency: "IDR",
|
|
60
|
+
code: "BDI",
|
|
61
|
+
name: "Bank Danamon Indonesia",
|
|
62
|
+
country: "Indonesia"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
currency: "IDR",
|
|
66
|
+
code: "BMI",
|
|
67
|
+
name: "Bank Mega Indonesia",
|
|
68
|
+
country: "Indonesia"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
currency: "IDR",
|
|
72
|
+
code: "BTN",
|
|
73
|
+
name: "Bank Tabungan Negara",
|
|
74
|
+
country: "Indonesia"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
currency: "IDR",
|
|
78
|
+
code: "OCBCN",
|
|
79
|
+
name: "Bank OCBC NISP",
|
|
80
|
+
country: "Indonesia"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
currency: "IDR",
|
|
84
|
+
code: "BRI",
|
|
85
|
+
name: "Bank Rakyat Indonesia",
|
|
86
|
+
country: "Indonesia"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
currency: "IDR",
|
|
90
|
+
code: "MBBI",
|
|
91
|
+
name: "Bank Maybank Indonesia",
|
|
92
|
+
country: "Indonesia"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
currency: "IDR",
|
|
96
|
+
code: "MDR",
|
|
97
|
+
name: "Bank Mandiri",
|
|
98
|
+
country: "Indonesia"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
currency: "IDR",
|
|
102
|
+
code: "BSM",
|
|
103
|
+
name: "Bank Sinarmas",
|
|
104
|
+
country: "Indonesia"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
currency: "IDR",
|
|
108
|
+
code: "BCA",
|
|
109
|
+
name: "Bank Central Asia",
|
|
110
|
+
country: "Indonesia"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
currency: "IDR",
|
|
114
|
+
code: "CIMBN",
|
|
115
|
+
name: "Bank CIMB Niaga",
|
|
116
|
+
country: "Indonesia"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
currency: "IDR",
|
|
120
|
+
code: "BRISB",
|
|
121
|
+
name: "BRI Syariah Bank",
|
|
122
|
+
country: "Indonesia"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
currency: "IDR",
|
|
126
|
+
code: "PMTB",
|
|
127
|
+
name: "Permata Bank",
|
|
128
|
+
country: "Indonesia"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
currency: "MYR",
|
|
132
|
+
code: "BKR",
|
|
133
|
+
name: "Bank Rakyat",
|
|
134
|
+
country: "Malaysia"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
currency: "MYR",
|
|
138
|
+
code: "ALB",
|
|
139
|
+
name: "Alliance Bank Malaysia Berhad",
|
|
140
|
+
country: "Malaysia"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
currency: "MYR",
|
|
144
|
+
code: "SCTB",
|
|
145
|
+
name: "Standard Chartered Bank Malaysia Berhad",
|
|
146
|
+
country: "Malaysia"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
currency: "MYR",
|
|
150
|
+
code: "CITI",
|
|
151
|
+
name: "Citibank",
|
|
152
|
+
country: "Malaysia"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
currency: "MYR",
|
|
156
|
+
code: "HSBC",
|
|
157
|
+
name: "HSBC Bank Malaysia Berhad",
|
|
158
|
+
country: "Malaysia"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
currency: "MYR",
|
|
162
|
+
code: "AMB",
|
|
163
|
+
name: "AmBank Group",
|
|
164
|
+
country: "Malaysia"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
currency: "MYR",
|
|
168
|
+
code: "OCBC",
|
|
169
|
+
name: "OCBC Bank Malaysia Berhad",
|
|
170
|
+
country: "Malaysia"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
currency: "MYR",
|
|
174
|
+
code: "MBB",
|
|
175
|
+
name: "Maybank Berhad",
|
|
176
|
+
country: "Malaysia"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
currency: "MYR",
|
|
180
|
+
code: "AGROB",
|
|
181
|
+
name: "Agro Bank",
|
|
182
|
+
country: "Malaysia"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
currency: "MYR",
|
|
186
|
+
code: "AFF",
|
|
187
|
+
name: "Affin Bank Berhad",
|
|
188
|
+
country: "Malaysia"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
currency: "MYR",
|
|
192
|
+
code: "HLB",
|
|
193
|
+
name: "Hong Leong Bank Berhad",
|
|
194
|
+
country: "Malaysia"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
currency: "MYR",
|
|
198
|
+
code: "RHB",
|
|
199
|
+
name: "RHB Bank Berhad",
|
|
200
|
+
country: "Malaysia"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
currency: "MYR",
|
|
204
|
+
code: "BSN",
|
|
205
|
+
name: "Bank Simpanan Nasional",
|
|
206
|
+
country: "Malaysia"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
currency: "MYR",
|
|
210
|
+
code: "UOB",
|
|
211
|
+
name: "United Overseas Bank",
|
|
212
|
+
country: "Malaysia"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
currency: "MYR",
|
|
216
|
+
code: "BIMB",
|
|
217
|
+
name: "Bank Islam Malaysia Berhad",
|
|
218
|
+
country: "Malaysia"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
currency: "MYR",
|
|
222
|
+
code: "PBB",
|
|
223
|
+
name: "Public Bank Berhad",
|
|
224
|
+
country: "Malaysia"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
currency: "MYR",
|
|
228
|
+
code: "CIMB",
|
|
229
|
+
name: "CIMB Bank Berhad",
|
|
230
|
+
country: "Malaysia"
|
|
231
|
+
},
|
|
232
|
+
// {
|
|
233
|
+
// "currency": "PHP",
|
|
234
|
+
// "code": "UBP",
|
|
235
|
+
// "name": "Union Bank of the Philippines",
|
|
236
|
+
// "country": "Philippines"
|
|
237
|
+
// },
|
|
238
|
+
{
|
|
239
|
+
currency: "PHP",
|
|
240
|
+
code: "BDO",
|
|
241
|
+
name: "BANCO DE ORO",
|
|
242
|
+
country: "Philippines"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
currency: "PHP",
|
|
246
|
+
code: "BDOE",
|
|
247
|
+
name: "BANCO DE ORO Corporate",
|
|
248
|
+
country: "Philippines"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
currency: "PHP",
|
|
252
|
+
code: "PNB",
|
|
253
|
+
name: "Philippine National Bank",
|
|
254
|
+
country: "Philippines"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
currency: "PHP",
|
|
258
|
+
code: "LBP",
|
|
259
|
+
name: "Land Bank of the Philippines",
|
|
260
|
+
country: "Philippines"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
currency: "PHP",
|
|
264
|
+
code: "BPI",
|
|
265
|
+
name: "Bank of the Philippine Islands",
|
|
266
|
+
country: "Philippines"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
currency: "PHP",
|
|
270
|
+
code: "MTB",
|
|
271
|
+
name: "Metropolitan Bank & Trust Company",
|
|
272
|
+
country: "Philippines"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
currency: "PHP",
|
|
276
|
+
code: "RCBC",
|
|
277
|
+
name: "Rizal Commercial Banking Corporation",
|
|
278
|
+
country: "Philippines"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
currency: "THB",
|
|
282
|
+
code: "UOBT",
|
|
283
|
+
name: "UOB Thai",
|
|
284
|
+
country: "Thailand"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
currency: "THB",
|
|
288
|
+
code: "HSBCT",
|
|
289
|
+
name: "HSBC Thailand",
|
|
290
|
+
country: "Thailand"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
currency: "THB",
|
|
294
|
+
code: "BBL",
|
|
295
|
+
name: "Bangkok Bank Ltd",
|
|
296
|
+
country: "Thailand"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
currency: "THB",
|
|
300
|
+
code: "KTB",
|
|
301
|
+
name: "Krung Thai Bank",
|
|
302
|
+
country: "Thailand"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
currency: "THB",
|
|
306
|
+
code: "KNK",
|
|
307
|
+
name: "Kiatnakin Bank",
|
|
308
|
+
country: "Thailand"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
currency: "THB",
|
|
312
|
+
code: "TBank",
|
|
313
|
+
name: "Thanachart Bank",
|
|
314
|
+
country: "Thailand"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
currency: "THB",
|
|
318
|
+
code: "CIMBT",
|
|
319
|
+
name: "CIMB Thai",
|
|
320
|
+
country: "Thailand"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
currency: "THB",
|
|
324
|
+
code: "ICBCT",
|
|
325
|
+
name: "Industrial and Commercial Bank of China (Thai)",
|
|
326
|
+
country: "Thailand"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
currency: "THB",
|
|
330
|
+
code: "KKR",
|
|
331
|
+
name: "Kasikorn Bank",
|
|
332
|
+
country: "Thailand"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
currency: "THB",
|
|
336
|
+
code: "SCB",
|
|
337
|
+
name: "Siam Commercial Bank",
|
|
338
|
+
country: "Thailand"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
currency: "THB",
|
|
342
|
+
code: "TMB",
|
|
343
|
+
name: "TMBThanachart Bank",
|
|
344
|
+
country: "Thailand"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
currency: "THB",
|
|
348
|
+
code: "PPTP",
|
|
349
|
+
name: "PromptPay",
|
|
350
|
+
country: "Thailand"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
currency: "THB",
|
|
354
|
+
code: "BOA",
|
|
355
|
+
name: "Bank of Ayudhya",
|
|
356
|
+
country: "Thailand"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
currency: "THB",
|
|
360
|
+
code: "GSB",
|
|
361
|
+
name: "Government Savings Bank",
|
|
362
|
+
country: "Thailand"
|
|
363
|
+
}
|
|
364
|
+
// {
|
|
365
|
+
// "currency": "VND",
|
|
366
|
+
// "code": "SHCB",
|
|
367
|
+
// "name": "Saigon-Hanoi Commercial Joint Stock Bank",
|
|
368
|
+
// "country": "Vietnam"
|
|
369
|
+
// },
|
|
370
|
+
// {
|
|
371
|
+
// "currency": "VND",
|
|
372
|
+
// "code": "NAMA",
|
|
373
|
+
// "name": "Nam A Commercial Joint Stock Bank (NamaBank)",
|
|
374
|
+
// "country": "Vietnam"
|
|
375
|
+
// },
|
|
376
|
+
// {
|
|
377
|
+
// "currency": "VND",
|
|
378
|
+
// "code": "DAB",
|
|
379
|
+
// "name": "DongA Bank",
|
|
380
|
+
// "country": "Vietnam"
|
|
381
|
+
// },
|
|
382
|
+
// {
|
|
383
|
+
// "currency": "VND",
|
|
384
|
+
// "code": "TPB",
|
|
385
|
+
// "name": "Tien Phong Bank",
|
|
386
|
+
// "country": "Vietnam"
|
|
387
|
+
// },
|
|
388
|
+
// {
|
|
389
|
+
// "currency": "VND",
|
|
390
|
+
// "code": "EXIM",
|
|
391
|
+
// "name": "Eximbank",
|
|
392
|
+
// "country": "Vietnam"
|
|
393
|
+
// },
|
|
394
|
+
// {
|
|
395
|
+
// "currency": "VND",
|
|
396
|
+
// "code": "ABCJS",
|
|
397
|
+
// "name": "An Binh Commercial Join Stock Bank",
|
|
398
|
+
// "country": "Vietnam"
|
|
399
|
+
// },
|
|
400
|
+
// {
|
|
401
|
+
// "currency": "VND",
|
|
402
|
+
// "code": "BOCV",
|
|
403
|
+
// "name": "Bank Of China Vietnam",
|
|
404
|
+
// "country": "Vietnam"
|
|
405
|
+
// },
|
|
406
|
+
// {
|
|
407
|
+
// "currency": "VND",
|
|
408
|
+
// "code": "VIB",
|
|
409
|
+
// "name": "Vietnam International Bank",
|
|
410
|
+
// "country": "Vietnam"
|
|
411
|
+
// },
|
|
412
|
+
// {
|
|
413
|
+
// "currency": "VND",
|
|
414
|
+
// "code": "MB",
|
|
415
|
+
// "name": "Military Commercial Joint Stock Bank",
|
|
416
|
+
// "country": "Vietnam"
|
|
417
|
+
// },
|
|
418
|
+
// {
|
|
419
|
+
// "currency": "VND",
|
|
420
|
+
// "code": "HSBCV",
|
|
421
|
+
// "name": "HSBC Vietnam",
|
|
422
|
+
// "country": "Vietnam"
|
|
423
|
+
// },
|
|
424
|
+
// {
|
|
425
|
+
// "currency": "VND",
|
|
426
|
+
// "code": "TCB",
|
|
427
|
+
// "name": "Techcombank",
|
|
428
|
+
// "country": "Vietnam"
|
|
429
|
+
// },
|
|
430
|
+
// {
|
|
431
|
+
// "currency": "VND",
|
|
432
|
+
// "code": "ACB",
|
|
433
|
+
// "name": "Asia Commercial Bank",
|
|
434
|
+
// "country": "Vietnam"
|
|
435
|
+
// },
|
|
436
|
+
// {
|
|
437
|
+
// "currency": "VND",
|
|
438
|
+
// "code": "SGCB",
|
|
439
|
+
// "name": "Saigon Commercial Bank",
|
|
440
|
+
// "country": "Vietnam"
|
|
441
|
+
// },
|
|
442
|
+
// {
|
|
443
|
+
// "currency": "VND",
|
|
444
|
+
// "code": "BIDV",
|
|
445
|
+
// "name": "Bank for Investment and Development of Vietnam",
|
|
446
|
+
// "country": "Vietnam"
|
|
447
|
+
// },
|
|
448
|
+
// {
|
|
449
|
+
// "currency": "VND",
|
|
450
|
+
// "code": "AGB",
|
|
451
|
+
// "name": "Agribank",
|
|
452
|
+
// "country": "Vietnam"
|
|
453
|
+
// },
|
|
454
|
+
// {
|
|
455
|
+
// "currency": "VND",
|
|
456
|
+
// "code": "MTMB",
|
|
457
|
+
// "name": "Maritime Bank",
|
|
458
|
+
// "country": "Vietnam"
|
|
459
|
+
// },
|
|
460
|
+
// {
|
|
461
|
+
// "currency": "VND",
|
|
462
|
+
// "code": "PVCB",
|
|
463
|
+
// "name": "PVcomBank",
|
|
464
|
+
// "country": "Vietnam"
|
|
465
|
+
// },
|
|
466
|
+
// {
|
|
467
|
+
// "currency": "VND",
|
|
468
|
+
// "code": "SCBV",
|
|
469
|
+
// "name": "Standard Chartered Bank Vietnam",
|
|
470
|
+
// "country": "Vietnam"
|
|
471
|
+
// },
|
|
472
|
+
// {
|
|
473
|
+
// "currency": "VND",
|
|
474
|
+
// "code": "VPB",
|
|
475
|
+
// "name": "VP Bank",
|
|
476
|
+
// "country": "Vietnam"
|
|
477
|
+
// },
|
|
478
|
+
// {
|
|
479
|
+
// "currency": "VND",
|
|
480
|
+
// "code": "VTB",
|
|
481
|
+
// "name": "VietinBank",
|
|
482
|
+
// "country": "Vietnam"
|
|
483
|
+
// },
|
|
484
|
+
// {
|
|
485
|
+
// "currency": "VND",
|
|
486
|
+
// "code": "VCB",
|
|
487
|
+
// "name": "Vietcombank",
|
|
488
|
+
// "country": "Vietnam"
|
|
489
|
+
// },
|
|
490
|
+
// {
|
|
491
|
+
// "currency": "VND",
|
|
492
|
+
// "code": "SACOM",
|
|
493
|
+
// "name": "Sacom Bank",
|
|
494
|
+
// "country": "Vietnam"
|
|
495
|
+
// },
|
|
496
|
+
// {
|
|
497
|
+
// "currency": "VND",
|
|
498
|
+
// "code": "HDB",
|
|
499
|
+
// "name": "HD Bank",
|
|
500
|
+
// "country": "Vietnam"
|
|
501
|
+
// },
|
|
502
|
+
// {
|
|
503
|
+
// "currency": "VND",
|
|
504
|
+
// "code": "SCMB",
|
|
505
|
+
// "name": "Saigon Bank",
|
|
506
|
+
// "country": "Vietnam"
|
|
507
|
+
// },
|
|
508
|
+
// {
|
|
509
|
+
// "currency": "VND",
|
|
510
|
+
// "code": "CITIV",
|
|
511
|
+
// "name": "Citibank Vietnam",
|
|
512
|
+
// "country": "Vietnam"
|
|
513
|
+
// },
|
|
514
|
+
// {
|
|
515
|
+
// "currency": "VND",
|
|
516
|
+
// "code": "SHBV",
|
|
517
|
+
// "name": "Shinhan Bank Vietnam",
|
|
518
|
+
// "country": "Vietnam"
|
|
519
|
+
// }
|
|
520
|
+
], s = {
|
|
521
|
+
crypto_wallet: {
|
|
522
|
+
provider_name: {
|
|
523
|
+
label: "clients.details.funding-sources.dialog.provider-name",
|
|
524
|
+
nameComponent: "input",
|
|
525
|
+
rule: {
|
|
526
|
+
provider_name: [
|
|
527
|
+
{
|
|
528
|
+
required: !0,
|
|
529
|
+
message: "common.validate.required-field",
|
|
530
|
+
trigger: "change"
|
|
531
|
+
}
|
|
532
|
+
]
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
currency: {
|
|
536
|
+
label: "clients.details.funding-sources.dialog.coin-type",
|
|
537
|
+
nameComponent: "select",
|
|
538
|
+
rule: {
|
|
539
|
+
currency: [
|
|
540
|
+
{
|
|
541
|
+
required: !0,
|
|
542
|
+
message: "common.validate.required-field",
|
|
543
|
+
trigger: "change"
|
|
544
|
+
}
|
|
545
|
+
]
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
network: {
|
|
549
|
+
label: "clients.details.funding-sources.dialog.network",
|
|
550
|
+
nameComponent: "select",
|
|
551
|
+
rule: {
|
|
552
|
+
network: [
|
|
553
|
+
{
|
|
554
|
+
required: !0,
|
|
555
|
+
message: "common.validate.required-field",
|
|
556
|
+
trigger: "change"
|
|
557
|
+
}
|
|
558
|
+
]
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
wallet_address: {
|
|
562
|
+
label: "clients.details.funding-sources.dialog.wallet-address",
|
|
563
|
+
nameComponent: "input",
|
|
564
|
+
rule: {
|
|
565
|
+
wallet_address: [
|
|
566
|
+
{
|
|
567
|
+
required: !0,
|
|
568
|
+
message: "common.validate.required-field",
|
|
569
|
+
trigger: "change"
|
|
570
|
+
}
|
|
571
|
+
]
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
help2pay: {
|
|
576
|
+
account_holder_name: {
|
|
577
|
+
label: "clients.details.funding-sources.dialog.account-holder-name",
|
|
578
|
+
nameComponent: "input",
|
|
579
|
+
rule: {
|
|
580
|
+
account_holder_name: [
|
|
581
|
+
{
|
|
582
|
+
required: !0,
|
|
583
|
+
message: "common.validate.required-field",
|
|
584
|
+
trigger: "change"
|
|
585
|
+
}
|
|
586
|
+
]
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
account_number: {
|
|
590
|
+
label: "clients.details.funding-sources.dialog.account-number",
|
|
591
|
+
nameComponent: "input",
|
|
592
|
+
rule: {
|
|
593
|
+
account_number: [
|
|
594
|
+
{
|
|
595
|
+
required: !0,
|
|
596
|
+
message: "common.validate.required-field",
|
|
597
|
+
trigger: "change"
|
|
598
|
+
}
|
|
599
|
+
]
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
bank_name: {
|
|
603
|
+
label: "clients.details.funding-sources.dialog.bank-name",
|
|
604
|
+
nameComponent: "select",
|
|
605
|
+
rule: {
|
|
606
|
+
bank_name: [
|
|
607
|
+
{
|
|
608
|
+
required: !0,
|
|
609
|
+
message: "common.validate.required-field",
|
|
610
|
+
trigger: "change"
|
|
611
|
+
}
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
options: a.map((e) => ({
|
|
615
|
+
label: e.name,
|
|
616
|
+
value: e.name
|
|
617
|
+
}))
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
bankwire: {
|
|
621
|
+
account_holder_name: {
|
|
622
|
+
label: "clients.details.funding-sources.dialog.account-holder-name",
|
|
623
|
+
nameComponent: "input",
|
|
624
|
+
rule: {
|
|
625
|
+
account_holder_name: [
|
|
626
|
+
{
|
|
627
|
+
required: !0,
|
|
628
|
+
message: "common.validate.required-field",
|
|
629
|
+
trigger: "change"
|
|
630
|
+
}
|
|
631
|
+
]
|
|
632
|
+
},
|
|
633
|
+
group: "group1"
|
|
634
|
+
},
|
|
635
|
+
bank_address: {
|
|
636
|
+
label: "clients.details.funding-sources.dialog.bank-address",
|
|
637
|
+
nameComponent: "input",
|
|
638
|
+
rule: {
|
|
639
|
+
bank_address: [
|
|
640
|
+
{
|
|
641
|
+
required: !0,
|
|
642
|
+
message: "common.validate.required-field",
|
|
643
|
+
trigger: "change"
|
|
644
|
+
}
|
|
645
|
+
]
|
|
646
|
+
},
|
|
647
|
+
group: "group1"
|
|
648
|
+
},
|
|
649
|
+
country: {
|
|
650
|
+
label: "clients.details.funding-sources.dialog.country",
|
|
651
|
+
nameComponent: "selectCountry",
|
|
652
|
+
filterable: !0,
|
|
653
|
+
remote: !0,
|
|
654
|
+
rule: {
|
|
655
|
+
country: [
|
|
656
|
+
{
|
|
657
|
+
trigger: "change",
|
|
658
|
+
message: "common.validate.required-field",
|
|
659
|
+
required: !0
|
|
660
|
+
}
|
|
661
|
+
]
|
|
662
|
+
},
|
|
663
|
+
options: [],
|
|
664
|
+
group: "group2"
|
|
665
|
+
},
|
|
666
|
+
account_number: {
|
|
667
|
+
label: "clients.details.funding-sources.dialog.account-number",
|
|
668
|
+
nameComponent: "input",
|
|
669
|
+
rule: {
|
|
670
|
+
account_number: [
|
|
671
|
+
{
|
|
672
|
+
required: !0,
|
|
673
|
+
message: "common.validate.required-field",
|
|
674
|
+
trigger: "change"
|
|
675
|
+
}
|
|
676
|
+
]
|
|
677
|
+
},
|
|
678
|
+
group: "group2"
|
|
679
|
+
},
|
|
680
|
+
bank_name: {
|
|
681
|
+
label: "clients.details.funding-sources.dialog.bank-name",
|
|
682
|
+
nameComponent: "input",
|
|
683
|
+
rule: {
|
|
684
|
+
bank_name: [
|
|
685
|
+
{
|
|
686
|
+
required: !0,
|
|
687
|
+
message: "common.validate.required-field",
|
|
688
|
+
trigger: "change"
|
|
689
|
+
}
|
|
690
|
+
]
|
|
691
|
+
},
|
|
692
|
+
group: "group3"
|
|
693
|
+
},
|
|
694
|
+
sort_code: {
|
|
695
|
+
label: "clients.details.funding-sources.dialog.sort-code",
|
|
696
|
+
nameComponent: "input",
|
|
697
|
+
rule: {
|
|
698
|
+
sort_code: [
|
|
699
|
+
{
|
|
700
|
+
required: !0,
|
|
701
|
+
message: "common.validate.required-field",
|
|
702
|
+
trigger: "change"
|
|
703
|
+
}
|
|
704
|
+
]
|
|
705
|
+
},
|
|
706
|
+
group: "group3"
|
|
707
|
+
},
|
|
708
|
+
currency: {
|
|
709
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
710
|
+
nameComponent: "select",
|
|
711
|
+
rule: {
|
|
712
|
+
currency: [
|
|
713
|
+
{
|
|
714
|
+
required: !0,
|
|
715
|
+
message: "common.validate.required-field",
|
|
716
|
+
trigger: "change"
|
|
717
|
+
}
|
|
718
|
+
]
|
|
719
|
+
},
|
|
720
|
+
group: "group4",
|
|
721
|
+
options: []
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
dragonpay: {
|
|
725
|
+
account_holder_name: {
|
|
726
|
+
label: "clients.details.funding-sources.dialog.account-holder-name",
|
|
727
|
+
nameComponent: "input",
|
|
728
|
+
rule: {
|
|
729
|
+
account_holder_name: [
|
|
730
|
+
{
|
|
731
|
+
required: !0,
|
|
732
|
+
message: "common.validate.required-field",
|
|
733
|
+
trigger: "change"
|
|
734
|
+
}
|
|
735
|
+
]
|
|
736
|
+
},
|
|
737
|
+
group: "group1"
|
|
738
|
+
},
|
|
739
|
+
account_number: {
|
|
740
|
+
label: "clients.details.funding-sources.dialog.account-number",
|
|
741
|
+
nameComponent: "input",
|
|
742
|
+
rule: {
|
|
743
|
+
account_number: [
|
|
744
|
+
{
|
|
745
|
+
required: !0,
|
|
746
|
+
message: "common.validate.required-field",
|
|
747
|
+
trigger: "change"
|
|
748
|
+
}
|
|
749
|
+
]
|
|
750
|
+
},
|
|
751
|
+
group: "group1"
|
|
752
|
+
},
|
|
753
|
+
country: {
|
|
754
|
+
label: "clients.details.funding-sources.dialog.country",
|
|
755
|
+
nameComponent: "selectCountry",
|
|
756
|
+
filterable: !0,
|
|
757
|
+
remote: !0,
|
|
758
|
+
rule: {
|
|
759
|
+
country: [
|
|
760
|
+
{
|
|
761
|
+
trigger: "change",
|
|
762
|
+
message: "common.validate.required-field",
|
|
763
|
+
required: !0
|
|
764
|
+
}
|
|
765
|
+
]
|
|
766
|
+
},
|
|
767
|
+
options: [],
|
|
768
|
+
group: "group2"
|
|
769
|
+
},
|
|
770
|
+
bank_name: {
|
|
771
|
+
label: "clients.details.funding-sources.dialog.bank-name",
|
|
772
|
+
nameComponent: "select",
|
|
773
|
+
rule: {
|
|
774
|
+
bank_name: [
|
|
775
|
+
{
|
|
776
|
+
required: !0,
|
|
777
|
+
message: "common.validate.required-field",
|
|
778
|
+
trigger: "change"
|
|
779
|
+
}
|
|
780
|
+
]
|
|
781
|
+
},
|
|
782
|
+
options: d.map((e) => ({
|
|
783
|
+
label: e.name,
|
|
784
|
+
value: e.name
|
|
785
|
+
})),
|
|
786
|
+
group: "group2"
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
b2binpay: {
|
|
790
|
+
wallet_address: {
|
|
791
|
+
label: "clients.details.funding-sources.dialog.wallet-address",
|
|
792
|
+
nameComponent: "input",
|
|
793
|
+
rule: {
|
|
794
|
+
wallet_address: [
|
|
795
|
+
{
|
|
796
|
+
required: !0,
|
|
797
|
+
message: "common.validate.required-field",
|
|
798
|
+
trigger: "change"
|
|
799
|
+
}
|
|
800
|
+
]
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
currency: {
|
|
804
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
805
|
+
nameComponent: "select",
|
|
806
|
+
rule: {
|
|
807
|
+
currency: [
|
|
808
|
+
{
|
|
809
|
+
required: !0,
|
|
810
|
+
message: "common.validate.required-field",
|
|
811
|
+
trigger: "change"
|
|
812
|
+
}
|
|
813
|
+
]
|
|
814
|
+
},
|
|
815
|
+
options: [
|
|
816
|
+
{
|
|
817
|
+
label: "USDT",
|
|
818
|
+
value: "USDT"
|
|
819
|
+
}
|
|
820
|
+
]
|
|
821
|
+
},
|
|
822
|
+
note: {
|
|
823
|
+
label: "Note",
|
|
824
|
+
nameComponent: "input"
|
|
825
|
+
}
|
|
826
|
+
},
|
|
827
|
+
visa_master_card: {
|
|
828
|
+
bank_name: {
|
|
829
|
+
label: "clients.details.funding-sources.dialog.bank-name",
|
|
830
|
+
nameComponent: "input",
|
|
831
|
+
rule: {
|
|
832
|
+
bank_name: [
|
|
833
|
+
{
|
|
834
|
+
required: !0,
|
|
835
|
+
message: "common.validate.required-field",
|
|
836
|
+
trigger: "change"
|
|
837
|
+
}
|
|
838
|
+
]
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
card_last_numbers: {
|
|
842
|
+
label: "clients.details.funding-sources.dialog.card_last_numbers",
|
|
843
|
+
nameComponent: "input",
|
|
844
|
+
formatter: (e) => `${"*".repeat(4).concat(" ").repeat(3)} ${e}`,
|
|
845
|
+
parser: (e) => e.replaceAll(/[\*\s]/g, ""),
|
|
846
|
+
componentProps: {
|
|
847
|
+
maxlength: "20"
|
|
848
|
+
},
|
|
849
|
+
rule: {
|
|
850
|
+
card_last_numbers: [
|
|
851
|
+
{
|
|
852
|
+
required: !0,
|
|
853
|
+
message: "common.validate.required-field",
|
|
854
|
+
trigger: "change"
|
|
855
|
+
}
|
|
856
|
+
]
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
expiry_date: {
|
|
860
|
+
label: "clients.details.funding-sources.dialog.expiry_date",
|
|
861
|
+
nameComponent: "dateTimePicker",
|
|
862
|
+
componentProps: {
|
|
863
|
+
valueFormat: "MM/YY",
|
|
864
|
+
format: "MM/YY",
|
|
865
|
+
type: "month"
|
|
866
|
+
},
|
|
867
|
+
rule: {
|
|
868
|
+
expiry_date: [
|
|
869
|
+
{
|
|
870
|
+
required: !0,
|
|
871
|
+
message: "common.validate.required-field",
|
|
872
|
+
trigger: "change"
|
|
873
|
+
}
|
|
874
|
+
]
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
paypal: {
|
|
879
|
+
paypal_email: {
|
|
880
|
+
label: "clients.details.funding-sources.dialog.paypal-email",
|
|
881
|
+
nameComponent: "input",
|
|
882
|
+
rule: {
|
|
883
|
+
paypal_email: [
|
|
884
|
+
{
|
|
885
|
+
required: !0,
|
|
886
|
+
message: "common.validate.email-format",
|
|
887
|
+
trigger: "change"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
type: "email",
|
|
891
|
+
message: "common.validate.please-input-correct-email-format",
|
|
892
|
+
trigger: "change"
|
|
893
|
+
}
|
|
894
|
+
]
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
currency: {
|
|
898
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
899
|
+
nameComponent: "select",
|
|
900
|
+
rule: {
|
|
901
|
+
currency: [
|
|
902
|
+
{
|
|
903
|
+
required: !0,
|
|
904
|
+
message: "common.validate.required-field",
|
|
905
|
+
trigger: "change"
|
|
906
|
+
}
|
|
907
|
+
]
|
|
908
|
+
},
|
|
909
|
+
options: []
|
|
910
|
+
}
|
|
911
|
+
},
|
|
912
|
+
coinsbuy: {
|
|
913
|
+
wallet_address: {
|
|
914
|
+
label: "clients.details.funding-sources.dialog.wallet-address",
|
|
915
|
+
nameComponent: "input",
|
|
916
|
+
rule: {
|
|
917
|
+
wallet_address: [
|
|
918
|
+
{
|
|
919
|
+
required: !0,
|
|
920
|
+
message: "common.validate.required-field",
|
|
921
|
+
trigger: "change"
|
|
922
|
+
}
|
|
923
|
+
]
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
currency: {
|
|
927
|
+
label: "clients.details.funding-sources.dialog.crypto-currency",
|
|
928
|
+
nameComponent: "select",
|
|
929
|
+
rule: {
|
|
930
|
+
currency: [
|
|
931
|
+
{
|
|
932
|
+
required: !0,
|
|
933
|
+
message: "common.validate.required-field",
|
|
934
|
+
trigger: "change"
|
|
935
|
+
}
|
|
936
|
+
]
|
|
937
|
+
},
|
|
938
|
+
options: []
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
coinpayments: {
|
|
942
|
+
wallet_address: {
|
|
943
|
+
label: "clients.details.funding-sources.dialog.wallet-address",
|
|
944
|
+
nameComponent: "input",
|
|
945
|
+
rule: {
|
|
946
|
+
wallet_address: [
|
|
947
|
+
{
|
|
948
|
+
required: !0,
|
|
949
|
+
message: "common.validate.required-field",
|
|
950
|
+
trigger: "change"
|
|
951
|
+
}
|
|
952
|
+
]
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
currency: {
|
|
956
|
+
label: "clients.details.funding-sources.dialog.crypto-currency",
|
|
957
|
+
nameComponent: "select",
|
|
958
|
+
rule: {
|
|
959
|
+
currency: [
|
|
960
|
+
{
|
|
961
|
+
required: !0,
|
|
962
|
+
message: "common.validate.required-field",
|
|
963
|
+
trigger: "change"
|
|
964
|
+
}
|
|
965
|
+
]
|
|
966
|
+
},
|
|
967
|
+
options: []
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
local_method: {
|
|
971
|
+
account_holder_name: {
|
|
972
|
+
label: "clients.details.funding-sources.dialog.account-holder-name",
|
|
973
|
+
nameComponent: "input",
|
|
974
|
+
rule: {
|
|
975
|
+
account_holder_name: [
|
|
976
|
+
{
|
|
977
|
+
required: !0,
|
|
978
|
+
message: "common.validate.required-field",
|
|
979
|
+
trigger: "change"
|
|
980
|
+
}
|
|
981
|
+
]
|
|
982
|
+
},
|
|
983
|
+
group: "group1"
|
|
984
|
+
},
|
|
985
|
+
account_number: {
|
|
986
|
+
label: "clients.details.funding-sources.dialog.account-number",
|
|
987
|
+
nameComponent: "input",
|
|
988
|
+
rule: {
|
|
989
|
+
account_number: [
|
|
990
|
+
{
|
|
991
|
+
required: !0,
|
|
992
|
+
message: "common.validate.required-field",
|
|
993
|
+
trigger: "change"
|
|
994
|
+
}
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
group: "group1"
|
|
998
|
+
},
|
|
999
|
+
branch_name: {
|
|
1000
|
+
label: "clients.details.funding-sources.dialog.branch-name",
|
|
1001
|
+
nameComponent: "input",
|
|
1002
|
+
rule: {
|
|
1003
|
+
branch_name: [
|
|
1004
|
+
{
|
|
1005
|
+
required: !0,
|
|
1006
|
+
message: "common.validate.required-field",
|
|
1007
|
+
trigger: "change"
|
|
1008
|
+
}
|
|
1009
|
+
]
|
|
1010
|
+
},
|
|
1011
|
+
group: "group1"
|
|
1012
|
+
},
|
|
1013
|
+
country: {
|
|
1014
|
+
label: "clients.details.funding-sources.dialog.country",
|
|
1015
|
+
nameComponent: "selectCountry",
|
|
1016
|
+
filterable: !0,
|
|
1017
|
+
remote: !0,
|
|
1018
|
+
rule: {
|
|
1019
|
+
country: [
|
|
1020
|
+
{
|
|
1021
|
+
trigger: "change",
|
|
1022
|
+
message: "common.validate.required-field",
|
|
1023
|
+
required: !0
|
|
1024
|
+
}
|
|
1025
|
+
]
|
|
1026
|
+
},
|
|
1027
|
+
options: [],
|
|
1028
|
+
group: "group2"
|
|
1029
|
+
},
|
|
1030
|
+
currency: {
|
|
1031
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1032
|
+
nameComponent: "select",
|
|
1033
|
+
rule: {
|
|
1034
|
+
currency: [
|
|
1035
|
+
{
|
|
1036
|
+
required: !0,
|
|
1037
|
+
message: "common.validate.required-field",
|
|
1038
|
+
trigger: "change"
|
|
1039
|
+
}
|
|
1040
|
+
]
|
|
1041
|
+
},
|
|
1042
|
+
group: "group2",
|
|
1043
|
+
options: []
|
|
1044
|
+
},
|
|
1045
|
+
bank_name: {
|
|
1046
|
+
label: "clients.details.funding-sources.dialog.bank-name",
|
|
1047
|
+
nameComponent: "input",
|
|
1048
|
+
rule: {
|
|
1049
|
+
bank_name: [
|
|
1050
|
+
{
|
|
1051
|
+
required: !0,
|
|
1052
|
+
message: "common.validate.required-field",
|
|
1053
|
+
trigger: "change"
|
|
1054
|
+
}
|
|
1055
|
+
]
|
|
1056
|
+
},
|
|
1057
|
+
group: "group2"
|
|
1058
|
+
},
|
|
1059
|
+
sort_code: {
|
|
1060
|
+
label: "clients.details.funding-sources.dialog.sort-code",
|
|
1061
|
+
nameComponent: "input",
|
|
1062
|
+
condition: [{ key: "country", value: "GB" }],
|
|
1063
|
+
rule: {
|
|
1064
|
+
sort_code: [
|
|
1065
|
+
{
|
|
1066
|
+
required: !0,
|
|
1067
|
+
message: "common.validate.required-field",
|
|
1068
|
+
trigger: "change"
|
|
1069
|
+
}
|
|
1070
|
+
]
|
|
1071
|
+
},
|
|
1072
|
+
group: "group2"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
zotapay: {
|
|
1076
|
+
account_holder_name: {
|
|
1077
|
+
label: "clients.details.funding-sources.dialog.account-holder-name",
|
|
1078
|
+
nameComponent: "input",
|
|
1079
|
+
rule: {
|
|
1080
|
+
account_holder_name: [
|
|
1081
|
+
{
|
|
1082
|
+
required: !0,
|
|
1083
|
+
message: "common.validate.required-field",
|
|
1084
|
+
trigger: "change"
|
|
1085
|
+
}
|
|
1086
|
+
]
|
|
1087
|
+
},
|
|
1088
|
+
group: "group1"
|
|
1089
|
+
},
|
|
1090
|
+
account_number: {
|
|
1091
|
+
label: "clients.details.funding-sources.dialog.account-number",
|
|
1092
|
+
nameComponent: "input",
|
|
1093
|
+
rule: {
|
|
1094
|
+
account_number: [
|
|
1095
|
+
{
|
|
1096
|
+
required: !0,
|
|
1097
|
+
message: "common.validate.required-field",
|
|
1098
|
+
trigger: "change"
|
|
1099
|
+
}
|
|
1100
|
+
]
|
|
1101
|
+
},
|
|
1102
|
+
group: "group1"
|
|
1103
|
+
},
|
|
1104
|
+
country: {
|
|
1105
|
+
label: "clients.details.funding-sources.dialog.country",
|
|
1106
|
+
nameComponent: "selectCountry",
|
|
1107
|
+
filterable: !0,
|
|
1108
|
+
remote: !0,
|
|
1109
|
+
rule: {
|
|
1110
|
+
country: [
|
|
1111
|
+
{
|
|
1112
|
+
trigger: "change",
|
|
1113
|
+
message: "common.validate.required-field",
|
|
1114
|
+
required: !0
|
|
1115
|
+
}
|
|
1116
|
+
]
|
|
1117
|
+
},
|
|
1118
|
+
options: [],
|
|
1119
|
+
group: "group2"
|
|
1120
|
+
},
|
|
1121
|
+
sort_code: {
|
|
1122
|
+
label: "clients.details.funding-sources.dialog.sort-code-asia",
|
|
1123
|
+
nameComponent: "input",
|
|
1124
|
+
rule: {
|
|
1125
|
+
sort_code: [
|
|
1126
|
+
{
|
|
1127
|
+
required: !0,
|
|
1128
|
+
message: "common.validate.required-field",
|
|
1129
|
+
trigger: "change"
|
|
1130
|
+
}
|
|
1131
|
+
]
|
|
1132
|
+
},
|
|
1133
|
+
group: "group2"
|
|
1134
|
+
},
|
|
1135
|
+
bank_name: {
|
|
1136
|
+
label: "clients.details.funding-sources.dialog.bank-name",
|
|
1137
|
+
nameComponent: "select",
|
|
1138
|
+
rule: {
|
|
1139
|
+
bank_name: [
|
|
1140
|
+
{
|
|
1141
|
+
required: !0,
|
|
1142
|
+
message: "common.validate.required-field",
|
|
1143
|
+
trigger: "change"
|
|
1144
|
+
}
|
|
1145
|
+
]
|
|
1146
|
+
},
|
|
1147
|
+
options: a.map((e) => ({
|
|
1148
|
+
label: e.name,
|
|
1149
|
+
value: e.name
|
|
1150
|
+
})),
|
|
1151
|
+
group: "group3"
|
|
1152
|
+
},
|
|
1153
|
+
bank_address: {
|
|
1154
|
+
label: "clients.details.funding-sources.dialog.bank-address",
|
|
1155
|
+
nameComponent: "input",
|
|
1156
|
+
rule: {
|
|
1157
|
+
bank_address: [
|
|
1158
|
+
{
|
|
1159
|
+
required: !0,
|
|
1160
|
+
message: "common.validate.required-field",
|
|
1161
|
+
trigger: "change"
|
|
1162
|
+
}
|
|
1163
|
+
]
|
|
1164
|
+
},
|
|
1165
|
+
group: "group3"
|
|
1166
|
+
}
|
|
1167
|
+
},
|
|
1168
|
+
sticpay: {
|
|
1169
|
+
sticpay_email: {
|
|
1170
|
+
label: "clients.details.funding-sources.dialog.sticpay-email",
|
|
1171
|
+
nameComponent: "input",
|
|
1172
|
+
rule: {
|
|
1173
|
+
sticpay_email: [
|
|
1174
|
+
{
|
|
1175
|
+
required: !0,
|
|
1176
|
+
message: "common.validate.email-format",
|
|
1177
|
+
trigger: "change"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
type: "email",
|
|
1181
|
+
message: "common.validate.please-input-correct-email-format",
|
|
1182
|
+
trigger: "change"
|
|
1183
|
+
}
|
|
1184
|
+
]
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
currency: {
|
|
1188
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1189
|
+
nameComponent: "select",
|
|
1190
|
+
rule: {
|
|
1191
|
+
currency: [
|
|
1192
|
+
{
|
|
1193
|
+
required: !0,
|
|
1194
|
+
message: "common.validate.required-field",
|
|
1195
|
+
trigger: "change"
|
|
1196
|
+
}
|
|
1197
|
+
]
|
|
1198
|
+
},
|
|
1199
|
+
options: [
|
|
1200
|
+
{
|
|
1201
|
+
label: "USD",
|
|
1202
|
+
value: "USD"
|
|
1203
|
+
}
|
|
1204
|
+
]
|
|
1205
|
+
}
|
|
1206
|
+
},
|
|
1207
|
+
confirmo: {
|
|
1208
|
+
wallet_address: {
|
|
1209
|
+
label: "clients.details.funding-sources.dialog.wallet-address",
|
|
1210
|
+
nameComponent: "input",
|
|
1211
|
+
rule: {
|
|
1212
|
+
wallet_address: [
|
|
1213
|
+
{
|
|
1214
|
+
required: !0,
|
|
1215
|
+
message: "common.validate.required-field",
|
|
1216
|
+
trigger: "change"
|
|
1217
|
+
}
|
|
1218
|
+
]
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
currency: {
|
|
1222
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1223
|
+
nameComponent: "select",
|
|
1224
|
+
rule: {
|
|
1225
|
+
currency: [
|
|
1226
|
+
{
|
|
1227
|
+
required: !0,
|
|
1228
|
+
message: "common.validate.required-field",
|
|
1229
|
+
trigger: "change"
|
|
1230
|
+
}
|
|
1231
|
+
]
|
|
1232
|
+
},
|
|
1233
|
+
options: []
|
|
1234
|
+
},
|
|
1235
|
+
method: {
|
|
1236
|
+
label: "clients.details.funding-sources.dialog.network",
|
|
1237
|
+
nameComponent: "select",
|
|
1238
|
+
rule: {
|
|
1239
|
+
method: [
|
|
1240
|
+
{
|
|
1241
|
+
required: !0,
|
|
1242
|
+
message: "common.validate.required-field",
|
|
1243
|
+
trigger: "change"
|
|
1244
|
+
}
|
|
1245
|
+
]
|
|
1246
|
+
},
|
|
1247
|
+
options: []
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
peska: {
|
|
1251
|
+
peska_email: {
|
|
1252
|
+
label: "clients.details.funding-sources.dialog.peska-email",
|
|
1253
|
+
nameComponent: "input",
|
|
1254
|
+
rule: {
|
|
1255
|
+
peska_email: [
|
|
1256
|
+
{
|
|
1257
|
+
required: !0,
|
|
1258
|
+
message: "common.validate.email-format",
|
|
1259
|
+
trigger: "change"
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
type: "email",
|
|
1263
|
+
message: "common.validate.please-input-correct-email-format",
|
|
1264
|
+
trigger: "change"
|
|
1265
|
+
}
|
|
1266
|
+
]
|
|
1267
|
+
}
|
|
1268
|
+
},
|
|
1269
|
+
currency: {
|
|
1270
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1271
|
+
nameComponent: "select",
|
|
1272
|
+
rule: {
|
|
1273
|
+
currency: [
|
|
1274
|
+
{
|
|
1275
|
+
required: !0,
|
|
1276
|
+
message: "common.validate.required-field",
|
|
1277
|
+
trigger: "change"
|
|
1278
|
+
}
|
|
1279
|
+
]
|
|
1280
|
+
},
|
|
1281
|
+
options: []
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
unlimit: {
|
|
1285
|
+
currency: {
|
|
1286
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1287
|
+
nameComponent: "select",
|
|
1288
|
+
rule: {
|
|
1289
|
+
currency: [
|
|
1290
|
+
{
|
|
1291
|
+
required: !0,
|
|
1292
|
+
message: "common.validate.required-field",
|
|
1293
|
+
trigger: "change"
|
|
1294
|
+
}
|
|
1295
|
+
]
|
|
1296
|
+
},
|
|
1297
|
+
options: []
|
|
1298
|
+
},
|
|
1299
|
+
network: {
|
|
1300
|
+
label: "clients.details.funding-sources.dialog.network",
|
|
1301
|
+
nameComponent: "select",
|
|
1302
|
+
rule: {
|
|
1303
|
+
network: [
|
|
1304
|
+
{
|
|
1305
|
+
required: !0,
|
|
1306
|
+
message: "common.validate.required-field",
|
|
1307
|
+
trigger: "change"
|
|
1308
|
+
}
|
|
1309
|
+
]
|
|
1310
|
+
},
|
|
1311
|
+
options: []
|
|
1312
|
+
},
|
|
1313
|
+
address: {
|
|
1314
|
+
label: "clients.details.funding-sources.dialog.bank-address",
|
|
1315
|
+
nameComponent: "input",
|
|
1316
|
+
rule: {
|
|
1317
|
+
address: [
|
|
1318
|
+
{
|
|
1319
|
+
required: !0,
|
|
1320
|
+
message: "common.validate.required-field",
|
|
1321
|
+
trigger: "change"
|
|
1322
|
+
}
|
|
1323
|
+
]
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
unlimit_cryptochill: {
|
|
1328
|
+
currency: {
|
|
1329
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1330
|
+
nameComponent: "select",
|
|
1331
|
+
rule: {
|
|
1332
|
+
currency: [
|
|
1333
|
+
{
|
|
1334
|
+
required: !0,
|
|
1335
|
+
message: "common.validate.required-field",
|
|
1336
|
+
trigger: "change"
|
|
1337
|
+
}
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
1340
|
+
options: []
|
|
1341
|
+
},
|
|
1342
|
+
network: {
|
|
1343
|
+
label: "clients.details.funding-sources.dialog.network",
|
|
1344
|
+
nameComponent: "select",
|
|
1345
|
+
rule: {
|
|
1346
|
+
network: [
|
|
1347
|
+
{
|
|
1348
|
+
required: !0,
|
|
1349
|
+
message: "common.validate.required-field",
|
|
1350
|
+
trigger: "change"
|
|
1351
|
+
}
|
|
1352
|
+
]
|
|
1353
|
+
},
|
|
1354
|
+
options: []
|
|
1355
|
+
},
|
|
1356
|
+
address: {
|
|
1357
|
+
label: "clients.details.funding-sources.dialog.bank-address",
|
|
1358
|
+
nameComponent: "input",
|
|
1359
|
+
rule: {
|
|
1360
|
+
address: [
|
|
1361
|
+
{
|
|
1362
|
+
required: !0,
|
|
1363
|
+
message: "common.validate.required-field",
|
|
1364
|
+
trigger: "change"
|
|
1365
|
+
}
|
|
1366
|
+
]
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
},
|
|
1370
|
+
now_payments: {
|
|
1371
|
+
wallet_address: {
|
|
1372
|
+
label: "clients.details.funding-sources.dialog.bank-address",
|
|
1373
|
+
nameComponent: "input",
|
|
1374
|
+
rule: {
|
|
1375
|
+
wallet_address: [
|
|
1376
|
+
{
|
|
1377
|
+
required: !0,
|
|
1378
|
+
message: "common.validate.required-field",
|
|
1379
|
+
trigger: "change"
|
|
1380
|
+
}
|
|
1381
|
+
]
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
currency: {
|
|
1385
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1386
|
+
nameComponent: "select",
|
|
1387
|
+
remote: !0,
|
|
1388
|
+
filterable: !0,
|
|
1389
|
+
rule: {
|
|
1390
|
+
currency: [
|
|
1391
|
+
{
|
|
1392
|
+
required: !0,
|
|
1393
|
+
message: "common.validate.required-field",
|
|
1394
|
+
trigger: "change"
|
|
1395
|
+
}
|
|
1396
|
+
]
|
|
1397
|
+
},
|
|
1398
|
+
options: []
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
tickpay_crypto: {
|
|
1402
|
+
address: {
|
|
1403
|
+
label: "clients.details.funding-sources.dialog.bank-address",
|
|
1404
|
+
nameComponent: "input",
|
|
1405
|
+
rule: {
|
|
1406
|
+
address: [
|
|
1407
|
+
{
|
|
1408
|
+
required: !0,
|
|
1409
|
+
message: "common.validate.required-field",
|
|
1410
|
+
trigger: "change"
|
|
1411
|
+
}
|
|
1412
|
+
]
|
|
1413
|
+
},
|
|
1414
|
+
group: "group1"
|
|
1415
|
+
},
|
|
1416
|
+
network: {
|
|
1417
|
+
label: "clients.details.funding-sources.dialog.network",
|
|
1418
|
+
nameComponent: "input",
|
|
1419
|
+
rule: {
|
|
1420
|
+
network: [
|
|
1421
|
+
{
|
|
1422
|
+
required: !0,
|
|
1423
|
+
message: "common.validate.required-field",
|
|
1424
|
+
trigger: "change"
|
|
1425
|
+
}
|
|
1426
|
+
]
|
|
1427
|
+
},
|
|
1428
|
+
group: "group1"
|
|
1429
|
+
},
|
|
1430
|
+
currency: {
|
|
1431
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1432
|
+
nameComponent: "select",
|
|
1433
|
+
rule: {
|
|
1434
|
+
currency: [
|
|
1435
|
+
{
|
|
1436
|
+
required: !0,
|
|
1437
|
+
message: "common.validate.required-field",
|
|
1438
|
+
trigger: "change"
|
|
1439
|
+
}
|
|
1440
|
+
]
|
|
1441
|
+
},
|
|
1442
|
+
options: [],
|
|
1443
|
+
group: "group2"
|
|
1444
|
+
},
|
|
1445
|
+
pixDestinyType: {
|
|
1446
|
+
label: "clients.details.funding-sources.dialog.pix-destiny-type",
|
|
1447
|
+
nameComponent: "select",
|
|
1448
|
+
rule: {
|
|
1449
|
+
pixDestinyType: [
|
|
1450
|
+
{
|
|
1451
|
+
required: !0,
|
|
1452
|
+
message: "common.validate.required-field",
|
|
1453
|
+
trigger: "change"
|
|
1454
|
+
}
|
|
1455
|
+
]
|
|
1456
|
+
},
|
|
1457
|
+
options: [
|
|
1458
|
+
{ value: "EMAIL", label: "clients.details.funding-sources.options.email" },
|
|
1459
|
+
{ value: "PHONE", label: "clients.details.funding-sources.options.phone-number" },
|
|
1460
|
+
{ value: "DOCUMENT", label: "clients.details.funding-sources.options.document" },
|
|
1461
|
+
{ value: "RANDOM", label: "clients.details.funding-sources.options.random" }
|
|
1462
|
+
],
|
|
1463
|
+
group: "group2"
|
|
1464
|
+
},
|
|
1465
|
+
pixDestinyKey: {
|
|
1466
|
+
label: "clients.details.funding-sources.dialog.pix-destiny-key",
|
|
1467
|
+
nameComponent: "input",
|
|
1468
|
+
rule: {
|
|
1469
|
+
pixDestinyKey: [
|
|
1470
|
+
{
|
|
1471
|
+
required: !0,
|
|
1472
|
+
message: "common.validate.required-field",
|
|
1473
|
+
trigger: "change"
|
|
1474
|
+
}
|
|
1475
|
+
]
|
|
1476
|
+
},
|
|
1477
|
+
group: "group2"
|
|
1478
|
+
}
|
|
1479
|
+
},
|
|
1480
|
+
tickpay_fiat: {
|
|
1481
|
+
pixDestinyType: {
|
|
1482
|
+
label: "clients.details.funding-sources.dialog.pix-destiny-type",
|
|
1483
|
+
nameComponent: "select",
|
|
1484
|
+
rule: {
|
|
1485
|
+
pixDestinyType: [
|
|
1486
|
+
{
|
|
1487
|
+
required: !0,
|
|
1488
|
+
message: "common.validate.required-field",
|
|
1489
|
+
trigger: "change"
|
|
1490
|
+
}
|
|
1491
|
+
]
|
|
1492
|
+
},
|
|
1493
|
+
options: [
|
|
1494
|
+
{ value: "EMAIL", label: "clients.details.funding-sources.options.email" },
|
|
1495
|
+
{ value: "PHONE", label: "clients.details.funding-sources.options.phone-number" },
|
|
1496
|
+
{ value: "DOCUMENT", label: "clients.details.funding-sources.options.document" },
|
|
1497
|
+
{ value: "RANDOM", label: "clients.details.funding-sources.options.random" }
|
|
1498
|
+
]
|
|
1499
|
+
},
|
|
1500
|
+
pixDestinyKey: {
|
|
1501
|
+
label: "clients.details.funding-sources.dialog.pix-destiny-key",
|
|
1502
|
+
nameComponent: "input",
|
|
1503
|
+
rule: {
|
|
1504
|
+
pixDestinyKey: [
|
|
1505
|
+
{
|
|
1506
|
+
required: !0,
|
|
1507
|
+
message: "common.validate.required-field",
|
|
1508
|
+
trigger: "change"
|
|
1509
|
+
}
|
|
1510
|
+
]
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
idNumber: {
|
|
1514
|
+
label: "clients.details.funding-sources.dialog.id-number",
|
|
1515
|
+
nameComponent: "input",
|
|
1516
|
+
rule: {
|
|
1517
|
+
idNumber: [
|
|
1518
|
+
{
|
|
1519
|
+
required: !0,
|
|
1520
|
+
message: "common.validate.required-field",
|
|
1521
|
+
trigger: "change"
|
|
1522
|
+
}
|
|
1523
|
+
]
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1526
|
+
},
|
|
1527
|
+
d24: {
|
|
1528
|
+
country: {
|
|
1529
|
+
label: "clients.details.funding-sources.dialog.country",
|
|
1530
|
+
nameComponent: "selectCountry",
|
|
1531
|
+
filterable: !0,
|
|
1532
|
+
remote: !0,
|
|
1533
|
+
rule: {
|
|
1534
|
+
country: [
|
|
1535
|
+
{
|
|
1536
|
+
trigger: "change",
|
|
1537
|
+
message: "common.validate.required-field",
|
|
1538
|
+
required: !0
|
|
1539
|
+
}
|
|
1540
|
+
]
|
|
1541
|
+
},
|
|
1542
|
+
options: []
|
|
1543
|
+
},
|
|
1544
|
+
currency: {
|
|
1545
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1546
|
+
nameComponent: "select",
|
|
1547
|
+
rule: {
|
|
1548
|
+
currency: [
|
|
1549
|
+
{
|
|
1550
|
+
required: !0,
|
|
1551
|
+
message: "common.validate.required-field",
|
|
1552
|
+
trigger: "change"
|
|
1553
|
+
}
|
|
1554
|
+
]
|
|
1555
|
+
},
|
|
1556
|
+
options: []
|
|
1557
|
+
}
|
|
1558
|
+
},
|
|
1559
|
+
limepay: {
|
|
1560
|
+
country: {
|
|
1561
|
+
label: "clients.details.funding-sources.dialog.country",
|
|
1562
|
+
nameComponent: "selectCountry",
|
|
1563
|
+
filterable: !0,
|
|
1564
|
+
remote: !0,
|
|
1565
|
+
rule: {
|
|
1566
|
+
country: [
|
|
1567
|
+
{
|
|
1568
|
+
trigger: "change",
|
|
1569
|
+
message: "common.validate.required-field",
|
|
1570
|
+
required: !0
|
|
1571
|
+
}
|
|
1572
|
+
]
|
|
1573
|
+
},
|
|
1574
|
+
options: []
|
|
1575
|
+
},
|
|
1576
|
+
currency: {
|
|
1577
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1578
|
+
nameComponent: "select",
|
|
1579
|
+
rule: {
|
|
1580
|
+
currency: [
|
|
1581
|
+
{
|
|
1582
|
+
required: !0,
|
|
1583
|
+
message: "common.validate.required-field",
|
|
1584
|
+
trigger: "change"
|
|
1585
|
+
}
|
|
1586
|
+
]
|
|
1587
|
+
},
|
|
1588
|
+
options: []
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
chainxpay: {
|
|
1592
|
+
address: {
|
|
1593
|
+
label: "clients.details.funding-sources.dialog.address",
|
|
1594
|
+
nameComponent: "input",
|
|
1595
|
+
rule: {
|
|
1596
|
+
address: [
|
|
1597
|
+
{
|
|
1598
|
+
required: !0,
|
|
1599
|
+
message: "common.validate.required-field",
|
|
1600
|
+
trigger: "change"
|
|
1601
|
+
}
|
|
1602
|
+
]
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
currency: {
|
|
1606
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1607
|
+
nameComponent: "select",
|
|
1608
|
+
rule: {
|
|
1609
|
+
currency: [
|
|
1610
|
+
{
|
|
1611
|
+
required: !0,
|
|
1612
|
+
message: "common.validate.required-field",
|
|
1613
|
+
trigger: "change"
|
|
1614
|
+
}
|
|
1615
|
+
]
|
|
1616
|
+
},
|
|
1617
|
+
options: []
|
|
1618
|
+
},
|
|
1619
|
+
network: {
|
|
1620
|
+
label: "clients.details.funding-sources.dialog.network",
|
|
1621
|
+
nameComponent: "select",
|
|
1622
|
+
rule: {
|
|
1623
|
+
network: [
|
|
1624
|
+
{
|
|
1625
|
+
required: !0,
|
|
1626
|
+
message: "common.validate.required-field",
|
|
1627
|
+
trigger: "change"
|
|
1628
|
+
}
|
|
1629
|
+
]
|
|
1630
|
+
},
|
|
1631
|
+
options: []
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1634
|
+
unipay: {
|
|
1635
|
+
transfer_method: {
|
|
1636
|
+
label: "clients.details.funding-sources.dialog.transfer-method",
|
|
1637
|
+
nameComponent: "select",
|
|
1638
|
+
rule: {
|
|
1639
|
+
transfer_method: [
|
|
1640
|
+
{
|
|
1641
|
+
required: !0,
|
|
1642
|
+
message: "common.validate.required-field",
|
|
1643
|
+
trigger: "change"
|
|
1644
|
+
}
|
|
1645
|
+
]
|
|
1646
|
+
},
|
|
1647
|
+
options: [
|
|
1648
|
+
{ label: "clients.details.funding-sources.dialog.crypto", value: "CRYPTO" },
|
|
1649
|
+
{ label: "clients.details.funding-sources.dialog.fiat", value: "BANK" }
|
|
1650
|
+
]
|
|
1651
|
+
},
|
|
1652
|
+
currency: {
|
|
1653
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1654
|
+
nameComponent: "select",
|
|
1655
|
+
rule: {
|
|
1656
|
+
currency: [
|
|
1657
|
+
{
|
|
1658
|
+
required: !0,
|
|
1659
|
+
message: "common.validate.required-field",
|
|
1660
|
+
trigger: "change"
|
|
1661
|
+
}
|
|
1662
|
+
]
|
|
1663
|
+
},
|
|
1664
|
+
options: []
|
|
1665
|
+
},
|
|
1666
|
+
network: {
|
|
1667
|
+
label: "clients.details.funding-sources.dialog.bank-network",
|
|
1668
|
+
nameComponent: "select",
|
|
1669
|
+
rule: {
|
|
1670
|
+
network: [
|
|
1671
|
+
{
|
|
1672
|
+
required: !0,
|
|
1673
|
+
message: "common.validate.required-field",
|
|
1674
|
+
trigger: "change"
|
|
1675
|
+
}
|
|
1676
|
+
]
|
|
1677
|
+
},
|
|
1678
|
+
options: []
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
worthy: {
|
|
1682
|
+
username: {
|
|
1683
|
+
label: "clients.details.funding-sources.dialog.name-on-card",
|
|
1684
|
+
nameComponent: "input",
|
|
1685
|
+
type: "text",
|
|
1686
|
+
rule: {
|
|
1687
|
+
username: [
|
|
1688
|
+
{
|
|
1689
|
+
required: !0,
|
|
1690
|
+
message: "common.validate.required-field",
|
|
1691
|
+
trigger: "change"
|
|
1692
|
+
}
|
|
1693
|
+
]
|
|
1694
|
+
},
|
|
1695
|
+
componentProps: {
|
|
1696
|
+
autocomplete: "off"
|
|
1697
|
+
}
|
|
1698
|
+
},
|
|
1699
|
+
cardNumber: {
|
|
1700
|
+
label: "clients.details.funding-sources.dialog.card-number",
|
|
1701
|
+
nameComponent: "input",
|
|
1702
|
+
type: "text",
|
|
1703
|
+
formatter: u,
|
|
1704
|
+
parser: c,
|
|
1705
|
+
rule: {
|
|
1706
|
+
cardNumber: [
|
|
1707
|
+
{
|
|
1708
|
+
required: !0,
|
|
1709
|
+
message: "common.validate.required-field",
|
|
1710
|
+
trigger: "change"
|
|
1711
|
+
}
|
|
1712
|
+
]
|
|
1713
|
+
},
|
|
1714
|
+
componentProps: {
|
|
1715
|
+
autocomplete: "off"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
expiration: {
|
|
1719
|
+
label: "clients.details.funding-sources.dialog.expiration-date",
|
|
1720
|
+
nameComponent: "input",
|
|
1721
|
+
type: "text",
|
|
1722
|
+
placeholder: "MM/YY",
|
|
1723
|
+
maxlength: 5,
|
|
1724
|
+
group: "group1",
|
|
1725
|
+
formatter: t,
|
|
1726
|
+
rule: {
|
|
1727
|
+
expiration: [
|
|
1728
|
+
{
|
|
1729
|
+
required: !0,
|
|
1730
|
+
message: "common.validate.required-field",
|
|
1731
|
+
trigger: "change"
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
validator: (e, r, n) => {
|
|
1735
|
+
r && /^(0[1-9]|1[0-2])\/\d{2}$/.test(r) ? n() : n(new Error("common.validate.invalid-format"));
|
|
1736
|
+
},
|
|
1737
|
+
trigger: "change"
|
|
1738
|
+
}
|
|
1739
|
+
]
|
|
1740
|
+
},
|
|
1741
|
+
componentProps: {
|
|
1742
|
+
autocomplete: "off"
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
ccv: {
|
|
1746
|
+
label: "clients.details.funding-sources.dialog.ccv",
|
|
1747
|
+
nameComponent: "input",
|
|
1748
|
+
type: "password",
|
|
1749
|
+
showPassword: !1,
|
|
1750
|
+
group: "group1",
|
|
1751
|
+
rule: {
|
|
1752
|
+
ccv: [
|
|
1753
|
+
{
|
|
1754
|
+
required: !0,
|
|
1755
|
+
message: "common.validate.required-field",
|
|
1756
|
+
trigger: "change"
|
|
1757
|
+
}
|
|
1758
|
+
]
|
|
1759
|
+
},
|
|
1760
|
+
componentProps: {
|
|
1761
|
+
autocomplete: "off"
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
noifx: {
|
|
1766
|
+
bank_name: {
|
|
1767
|
+
label: "clients.details.funding-sources.dialog.bank_name",
|
|
1768
|
+
nameComponent: "input",
|
|
1769
|
+
rule: {
|
|
1770
|
+
bank_name: [
|
|
1771
|
+
{
|
|
1772
|
+
required: !0,
|
|
1773
|
+
message: "common.validate.required-field",
|
|
1774
|
+
trigger: "change"
|
|
1775
|
+
}
|
|
1776
|
+
]
|
|
1777
|
+
}
|
|
1778
|
+
},
|
|
1779
|
+
bank_account_number: {
|
|
1780
|
+
label: "clients.details.funding-sources.dialog.bank_account_number",
|
|
1781
|
+
nameComponent: "input",
|
|
1782
|
+
rule: {
|
|
1783
|
+
bank_account_number: [
|
|
1784
|
+
{
|
|
1785
|
+
required: !0,
|
|
1786
|
+
message: "common.validate.required-field",
|
|
1787
|
+
trigger: "change"
|
|
1788
|
+
}
|
|
1789
|
+
]
|
|
1790
|
+
}
|
|
1791
|
+
},
|
|
1792
|
+
bank_account_name: {
|
|
1793
|
+
label: "clients.details.funding-sources.dialog.bank_account_name",
|
|
1794
|
+
nameComponent: "input",
|
|
1795
|
+
rule: {
|
|
1796
|
+
bank_account_name: [
|
|
1797
|
+
{
|
|
1798
|
+
required: !0,
|
|
1799
|
+
message: "common.validate.required-field",
|
|
1800
|
+
trigger: "change"
|
|
1801
|
+
}
|
|
1802
|
+
]
|
|
1803
|
+
}
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
kepg: {
|
|
1807
|
+
bank_name: {
|
|
1808
|
+
label: "clients.details.funding-sources.dialog.bank_name",
|
|
1809
|
+
nameComponent: "input",
|
|
1810
|
+
rule: {
|
|
1811
|
+
bank_name: [
|
|
1812
|
+
{
|
|
1813
|
+
required: !0,
|
|
1814
|
+
message: "common.validate.required-field",
|
|
1815
|
+
trigger: "change"
|
|
1816
|
+
}
|
|
1817
|
+
]
|
|
1818
|
+
}
|
|
1819
|
+
},
|
|
1820
|
+
account_number: {
|
|
1821
|
+
label: "clients.details.funding-sources.dialog.account_number",
|
|
1822
|
+
nameComponent: "input",
|
|
1823
|
+
rule: {
|
|
1824
|
+
account_number: [
|
|
1825
|
+
{
|
|
1826
|
+
required: !0,
|
|
1827
|
+
message: "common.validate.required-field",
|
|
1828
|
+
trigger: "change"
|
|
1829
|
+
}
|
|
1830
|
+
]
|
|
1831
|
+
}
|
|
1832
|
+
},
|
|
1833
|
+
bank_account_name: {
|
|
1834
|
+
label: "clients.details.funding-sources.dialog.bank_account_name",
|
|
1835
|
+
nameComponent: "input",
|
|
1836
|
+
rule: {
|
|
1837
|
+
bank_account_name: [
|
|
1838
|
+
{
|
|
1839
|
+
required: !0,
|
|
1840
|
+
message: "common.validate.required-field",
|
|
1841
|
+
trigger: "change"
|
|
1842
|
+
}
|
|
1843
|
+
]
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
currency: {
|
|
1847
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1848
|
+
nameComponent: "select",
|
|
1849
|
+
rule: {
|
|
1850
|
+
currency: [
|
|
1851
|
+
{
|
|
1852
|
+
required: !0,
|
|
1853
|
+
message: "common.validate.required-field",
|
|
1854
|
+
trigger: "change"
|
|
1855
|
+
}
|
|
1856
|
+
]
|
|
1857
|
+
},
|
|
1858
|
+
options: []
|
|
1859
|
+
}
|
|
1860
|
+
},
|
|
1861
|
+
pay_retailers: {
|
|
1862
|
+
country: {
|
|
1863
|
+
label: "clients.details.funding-sources.dialog.country",
|
|
1864
|
+
nameComponent: "selectCountry",
|
|
1865
|
+
rule: {
|
|
1866
|
+
country: [
|
|
1867
|
+
{
|
|
1868
|
+
required: !0,
|
|
1869
|
+
message: "common.validate.required-field",
|
|
1870
|
+
trigger: "change"
|
|
1871
|
+
}
|
|
1872
|
+
]
|
|
1873
|
+
},
|
|
1874
|
+
options: []
|
|
1875
|
+
},
|
|
1876
|
+
document_number: {
|
|
1877
|
+
label: "clients.details.funding-sources.dialog.document_number",
|
|
1878
|
+
nameComponent: "input",
|
|
1879
|
+
type: "number",
|
|
1880
|
+
rule: {
|
|
1881
|
+
document_number: [
|
|
1882
|
+
{
|
|
1883
|
+
required: !0,
|
|
1884
|
+
message: "common.validate.required-field",
|
|
1885
|
+
trigger: "change"
|
|
1886
|
+
}
|
|
1887
|
+
]
|
|
1888
|
+
}
|
|
1889
|
+
},
|
|
1890
|
+
bank_name: {
|
|
1891
|
+
label: "clients.details.funding-sources.dialog.bank_name",
|
|
1892
|
+
nameComponent: "select",
|
|
1893
|
+
rule: {
|
|
1894
|
+
bank_name: [
|
|
1895
|
+
{
|
|
1896
|
+
required: !0,
|
|
1897
|
+
message: "common.validate.required-field",
|
|
1898
|
+
trigger: "change"
|
|
1899
|
+
}
|
|
1900
|
+
]
|
|
1901
|
+
},
|
|
1902
|
+
options: []
|
|
1903
|
+
},
|
|
1904
|
+
account_number: {
|
|
1905
|
+
label: "clients.details.funding-sources.dialog.account_number",
|
|
1906
|
+
nameComponent: "input",
|
|
1907
|
+
type: "number",
|
|
1908
|
+
rule: {
|
|
1909
|
+
account_number: [
|
|
1910
|
+
{
|
|
1911
|
+
required: !0,
|
|
1912
|
+
message: "common.validate.required-field",
|
|
1913
|
+
trigger: "change"
|
|
1914
|
+
}
|
|
1915
|
+
]
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
1918
|
+
payout_account_type_code: {
|
|
1919
|
+
label: "clients.details.funding-sources.dialog.payout_account_type",
|
|
1920
|
+
nameComponent: "select",
|
|
1921
|
+
rule: {
|
|
1922
|
+
payout_account_type_code: [
|
|
1923
|
+
{
|
|
1924
|
+
required: !0,
|
|
1925
|
+
message: "common.validate.required-field",
|
|
1926
|
+
trigger: "change"
|
|
1927
|
+
}
|
|
1928
|
+
]
|
|
1929
|
+
},
|
|
1930
|
+
options: []
|
|
1931
|
+
},
|
|
1932
|
+
currency: {
|
|
1933
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1934
|
+
nameComponent: "select",
|
|
1935
|
+
rule: {
|
|
1936
|
+
currency: [
|
|
1937
|
+
{
|
|
1938
|
+
required: !0,
|
|
1939
|
+
message: "common.validate.required-field",
|
|
1940
|
+
trigger: "change"
|
|
1941
|
+
}
|
|
1942
|
+
]
|
|
1943
|
+
},
|
|
1944
|
+
options: []
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1947
|
+
rise: {
|
|
1948
|
+
email: {
|
|
1949
|
+
label: "clients.details.funding-sources.dialog.email",
|
|
1950
|
+
nameComponent: "input",
|
|
1951
|
+
rule: {
|
|
1952
|
+
email: [
|
|
1953
|
+
{
|
|
1954
|
+
required: !0,
|
|
1955
|
+
validator: l,
|
|
1956
|
+
message: "common.validate.email-format",
|
|
1957
|
+
trigger: "change"
|
|
1958
|
+
}
|
|
1959
|
+
]
|
|
1960
|
+
}
|
|
1961
|
+
}
|
|
1962
|
+
},
|
|
1963
|
+
blockbee: {
|
|
1964
|
+
crypto_address: {
|
|
1965
|
+
label: "clients.details.funding-sources.dialog.wallet-address",
|
|
1966
|
+
nameComponent: "input",
|
|
1967
|
+
rule: {
|
|
1968
|
+
crypto_address: [
|
|
1969
|
+
{
|
|
1970
|
+
required: !0,
|
|
1971
|
+
message: "common.validate.required-field",
|
|
1972
|
+
trigger: "change"
|
|
1973
|
+
}
|
|
1974
|
+
]
|
|
1975
|
+
},
|
|
1976
|
+
componentProps: {
|
|
1977
|
+
autocomplete: "off"
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
currency: {
|
|
1981
|
+
label: "clients.details.funding-sources.dialog.currency",
|
|
1982
|
+
nameComponent: "select",
|
|
1983
|
+
rule: {
|
|
1984
|
+
currency: [
|
|
1985
|
+
{
|
|
1986
|
+
required: !0,
|
|
1987
|
+
message: "common.validate.required-field",
|
|
1988
|
+
trigger: "change"
|
|
1989
|
+
}
|
|
1990
|
+
]
|
|
1991
|
+
},
|
|
1992
|
+
options: []
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
match2pay: {
|
|
1996
|
+
crypto_address: {
|
|
1997
|
+
label: "modals.wallet-address",
|
|
1998
|
+
nameComponent: "input",
|
|
1999
|
+
rule: {
|
|
2000
|
+
crypto_address: [
|
|
2001
|
+
{
|
|
2002
|
+
required: !0,
|
|
2003
|
+
message: "verify.this-field-is-required",
|
|
2004
|
+
trigger: "change"
|
|
2005
|
+
}
|
|
2006
|
+
]
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
2009
|
+
currency: {
|
|
2010
|
+
label: "bank-account.crypto-currency",
|
|
2011
|
+
nameComponent: "select",
|
|
2012
|
+
rule: {
|
|
2013
|
+
currency: [
|
|
2014
|
+
{
|
|
2015
|
+
required: !0,
|
|
2016
|
+
message: "verify.this-field-is-required",
|
|
2017
|
+
trigger: "change"
|
|
2018
|
+
}
|
|
2019
|
+
]
|
|
2020
|
+
},
|
|
2021
|
+
options: []
|
|
2022
|
+
},
|
|
2023
|
+
memo: {
|
|
2024
|
+
label: "bank-account.memo",
|
|
2025
|
+
nameComponent: "input"
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
}, y = () => (e) => {
|
|
2029
|
+
if (!e) return {};
|
|
2030
|
+
const n = i.find((o) => e.startsWith(o)) ?? e;
|
|
2031
|
+
return s[n] || {};
|
|
2032
|
+
}, f = (e) => e ? i.find((n) => e.startsWith(n)) ?? e : "";
|
|
2033
|
+
export {
|
|
2034
|
+
f as getKeyForFundingMethod,
|
|
2035
|
+
y as getSchemaFundingSource
|
|
2036
|
+
};
|