react-memory-optimization 0.1.1 → 0.1.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.
- package/dist/bundle.js +1 -1
- package/dist/lib/binary/constants/requestModules/APayRequest.js +77 -0
- package/dist/lib/service/api/constants.js +36 -0
- package/dist/lib/service/api/types.d.ts +12 -1
- package/dist/lib/service/api/types.js +20 -0
- package/dist/lib/socket/index.d.ts +3 -1
- package/dist/lib/socket/types/socket.d.ts +9 -0
- package/dist/lib/store/user/index.d.ts +13 -1
- package/dist/lib/store/user/services/index.d.ts +3 -0
- package/dist/lib/store/user/types.d.ts +21 -9
- package/dist/lib/store/user/types.js +9 -9
- package/package.json +1 -1
|
@@ -3,6 +3,42 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.APAY_REQUESTS = void 0;
|
|
4
4
|
const types_1 = require("binary/types");
|
|
5
5
|
exports.APAY_REQUESTS = {
|
|
6
|
+
'\\121x123_deposit': {
|
|
7
|
+
command: 'BetPaykassmaDeposit',
|
|
8
|
+
responseKey: '-',
|
|
9
|
+
writeScheme: [
|
|
10
|
+
{
|
|
11
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
12
|
+
binary: types_1.EWriteDataType.Long,
|
|
13
|
+
key: 'bonusId',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
17
|
+
binary: types_1.EWriteDataType.Short,
|
|
18
|
+
key: 'currencyId',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
22
|
+
binary: types_1.EWriteDataType.Byte,
|
|
23
|
+
key: 'channelId',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
27
|
+
binary: types_1.EWriteDataType.UTF,
|
|
28
|
+
key: 'transaction',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
32
|
+
binary: types_1.EWriteDataType.Int,
|
|
33
|
+
key: 'amount',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
37
|
+
binary: types_1.EWriteDataType.Byte,
|
|
38
|
+
key: 'requestId',
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
},
|
|
6
42
|
'\\242x243x244_deposit': {
|
|
7
43
|
command: 'BetPaykassmaDeposit',
|
|
8
44
|
responseKey: '-',
|
|
@@ -80,4 +116,45 @@ exports.APAY_REQUESTS = {
|
|
|
80
116
|
},
|
|
81
117
|
],
|
|
82
118
|
},
|
|
119
|
+
'\\123_withdraw': {
|
|
120
|
+
command: 'PaykassmaCreateWithdraw',
|
|
121
|
+
responseKey: '-',
|
|
122
|
+
writeScheme: [
|
|
123
|
+
{
|
|
124
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
125
|
+
binary: types_1.EWriteDataType.Short,
|
|
126
|
+
key: 'currencyId',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
130
|
+
binary: types_1.EWriteDataType.Byte,
|
|
131
|
+
key: 'channelId',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
135
|
+
binary: types_1.EWriteDataType.UTF,
|
|
136
|
+
key: 'accountNumber',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
140
|
+
binary: types_1.EWriteDataType.UTF,
|
|
141
|
+
key: 'phoneNumber',
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
145
|
+
binary: types_1.EWriteDataType.UTF,
|
|
146
|
+
key: 'bankCode',
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
150
|
+
binary: types_1.EWriteDataType.Int,
|
|
151
|
+
key: 'amount',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
155
|
+
binary: types_1.EWriteDataType.Byte,
|
|
156
|
+
key: 'requestId',
|
|
157
|
+
},
|
|
158
|
+
],
|
|
159
|
+
},
|
|
83
160
|
};
|
|
@@ -166,4 +166,40 @@ exports.PAYMENT_REQUEST_PATHS = {
|
|
|
166
166
|
path: types_1.EApiPath.CreateProdWithdraw,
|
|
167
167
|
adapterFn: utils_1.restAdapterWithdraw,
|
|
168
168
|
},
|
|
169
|
+
[types_1.EPaymentRequestPath.LimepayGrabMYRDeposit]: {
|
|
170
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
171
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
172
|
+
},
|
|
173
|
+
[types_1.EPaymentRequestPath.LimepayShopeePayMYRDeposit]: {
|
|
174
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
175
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
176
|
+
},
|
|
177
|
+
[types_1.EPaymentRequestPath.LimepayTouchNGoMYRDeposit]: {
|
|
178
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
179
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
180
|
+
},
|
|
181
|
+
[types_1.EPaymentRequestPath.LimepayBoostMYRDeposit]: {
|
|
182
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
183
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
184
|
+
},
|
|
185
|
+
[types_1.EPaymentRequestPath.LimepayDuitNowMYRDeposit]: {
|
|
186
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
187
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
188
|
+
},
|
|
189
|
+
[types_1.EPaymentRequestPath.LimepayFPXMYRDeposit]: {
|
|
190
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
191
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
192
|
+
},
|
|
193
|
+
[types_1.EPaymentRequestPath.LimepayBankTransferMYRDeposit]: {
|
|
194
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
195
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
196
|
+
},
|
|
197
|
+
[types_1.EPaymentRequestPath.LimepayBigpayMYRDeposit]: {
|
|
198
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
199
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
200
|
+
},
|
|
201
|
+
[types_1.EPaymentRequestPath.LimepayMAEByMaybankMYRDeposit]: {
|
|
202
|
+
path: types_1.EApiPath.CreateProdDeposit,
|
|
203
|
+
adapterFn: utils_1.restAdapterDeposit,
|
|
204
|
+
},
|
|
169
205
|
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { TDepositResponseLaunchParameter } from 'service/moneyResponse/types';
|
|
2
2
|
export declare enum EApiPath {
|
|
3
3
|
ProfileInfo = "/ref_service/api/v1/client/profile_info",
|
|
4
|
+
ConfirmEmail = "/ref_service/api/v1/client/confirm_email",
|
|
5
|
+
ConfirmEmailByCode = "/ref_service/api/v1/client/confirm_email_by_code",
|
|
4
6
|
AccrualHistory = "/ref_service/api/v1/client/accural_bonus",
|
|
5
7
|
DynamicPresetsInfo = "/ref_service/api/v1/client/additional_info",
|
|
6
8
|
CreateDevDeposit = "/pay-service-dev/api/v2/deposit/create",
|
|
@@ -57,7 +59,16 @@ export declare enum EPaymentRequestPath {
|
|
|
57
59
|
CreedoGCashPHPDeposit = "creedo_g_cash_php_deposit",
|
|
58
60
|
CreedoGCashPHPWithdraw = "creedo_g_cash_php_withdraw",
|
|
59
61
|
CreedoPayMayaPHPDeposit = "creedo_pay_maya_php_deposit",
|
|
60
|
-
CreedoPayMayaPHPWithdraw = "creedo_pay_maya_php_withdraw"
|
|
62
|
+
CreedoPayMayaPHPWithdraw = "creedo_pay_maya_php_withdraw",
|
|
63
|
+
LimepayGrabMYRDeposit = "limepay_grab_myr_deposit",
|
|
64
|
+
LimepayShopeePayMYRDeposit = "limepay_shopee_pay_myr_deposit",
|
|
65
|
+
LimepayTouchNGoMYRDeposit = "limepay_touch_n_go_myr_deposit",
|
|
66
|
+
LimepayBoostMYRDeposit = "limepay_boost_myr_deposit",
|
|
67
|
+
LimepayDuitNowMYRDeposit = "limepay_duitnow_myr_deposit",
|
|
68
|
+
LimepayFPXMYRDeposit = "limepay_fpx_myr_deposit",
|
|
69
|
+
LimepayBankTransferMYRDeposit = "limepay_bank_transfer_myr_deposit",
|
|
70
|
+
LimepayBigpayMYRDeposit = "limepay_bigpay_myr_deposit",
|
|
71
|
+
LimepayMAEByMaybankMYRDeposit = "limepay_mae_by_maybank_myr_deposit"
|
|
61
72
|
}
|
|
62
73
|
export type ApiList = {
|
|
63
74
|
[key: string]: {
|
|
@@ -4,6 +4,8 @@ exports.EPaymentStatusCode = exports.EPaymentRequestPath = exports.EValidationCo
|
|
|
4
4
|
var EApiPath;
|
|
5
5
|
(function (EApiPath) {
|
|
6
6
|
EApiPath["ProfileInfo"] = "/ref_service/api/v1/client/profile_info";
|
|
7
|
+
EApiPath["ConfirmEmail"] = "/ref_service/api/v1/client/confirm_email";
|
|
8
|
+
EApiPath["ConfirmEmailByCode"] = "/ref_service/api/v1/client/confirm_email_by_code";
|
|
7
9
|
EApiPath["AccrualHistory"] = "/ref_service/api/v1/client/accural_bonus";
|
|
8
10
|
EApiPath["DynamicPresetsInfo"] = "/ref_service/api/v1/client/additional_info";
|
|
9
11
|
EApiPath["CreateDevDeposit"] = "/pay-service-dev/api/v2/deposit/create";
|
|
@@ -65,6 +67,24 @@ var EPaymentRequestPath;
|
|
|
65
67
|
EPaymentRequestPath["CreedoGCashPHPWithdraw"] = "creedo_g_cash_php_withdraw";
|
|
66
68
|
EPaymentRequestPath["CreedoPayMayaPHPDeposit"] = "creedo_pay_maya_php_deposit";
|
|
67
69
|
EPaymentRequestPath["CreedoPayMayaPHPWithdraw"] = "creedo_pay_maya_php_withdraw";
|
|
70
|
+
EPaymentRequestPath["LimepayGrabMYRDeposit"] = "limepay_grab_myr_deposit";
|
|
71
|
+
// LimepayGrabMYRWithdraw = 'limepay_grab_myr_withdraw',
|
|
72
|
+
EPaymentRequestPath["LimepayShopeePayMYRDeposit"] = "limepay_shopee_pay_myr_deposit";
|
|
73
|
+
// LimepayShopeePayMYRWithdraw = 'limepay_shopee_pay_myr_withdraw',
|
|
74
|
+
EPaymentRequestPath["LimepayTouchNGoMYRDeposit"] = "limepay_touch_n_go_myr_deposit";
|
|
75
|
+
// LimepayTouchNGoMYRWithdraw = 'limepay_touch_n_go_myr_withdraw',
|
|
76
|
+
EPaymentRequestPath["LimepayBoostMYRDeposit"] = "limepay_boost_myr_deposit";
|
|
77
|
+
// LimepayBoostMYRWithdraw = 'limepay_boost_myr_withdraw',
|
|
78
|
+
EPaymentRequestPath["LimepayDuitNowMYRDeposit"] = "limepay_duitnow_myr_deposit";
|
|
79
|
+
// LimepayDuitNowMYRWithdraw = 'limepay_duitnow_myr_withdraw',
|
|
80
|
+
EPaymentRequestPath["LimepayFPXMYRDeposit"] = "limepay_fpx_myr_deposit";
|
|
81
|
+
// LimepayFPXMYRWithdraw = 'limepay_fpx_myr_withdraw',
|
|
82
|
+
EPaymentRequestPath["LimepayBankTransferMYRDeposit"] = "limepay_bank_transfer_myr_deposit";
|
|
83
|
+
// LimepayBankTransferMYRWithdraw = 'limepay_bank_transfer_myr_withdraw',
|
|
84
|
+
EPaymentRequestPath["LimepayBigpayMYRDeposit"] = "limepay_bigpay_myr_deposit";
|
|
85
|
+
// LimepayBigpayMYRWithdraw = 'limepay_bigpay_myr_withdraw',
|
|
86
|
+
EPaymentRequestPath["LimepayMAEByMaybankMYRDeposit"] = "limepay_mae_by_maybank_myr_deposit";
|
|
87
|
+
// LimepayMAEByMaybankMYRWithdraw = 'limepay_mae_by_maybank_myr_withdraw',
|
|
68
88
|
})(EPaymentRequestPath || (exports.EPaymentRequestPath = EPaymentRequestPath = {}));
|
|
69
89
|
// FlashPayUpiDeposit
|
|
70
90
|
var EPaymentStatusCode;
|
|
@@ -26,7 +26,7 @@ import { CashBonusChannelType } from 'store/operations/entities/cashBonuses/type
|
|
|
26
26
|
import { JackpotSubscribes } from 'store/casino/entities/jackpots/types';
|
|
27
27
|
import { CasinoHistoryGamesSubscriber } from 'store/operations/entities/casinoHistory/types';
|
|
28
28
|
import { BettingEntitySubscribers } from 'store/betting/types';
|
|
29
|
-
import { SubscribeUserKeys } from 'store/user/types';
|
|
29
|
+
import { ConfirmEmailByCodeProps, ConfirmEmailProps, SubscribeUserKeys } from 'store/user/types';
|
|
30
30
|
import { PromotionSubscribeProps } from 'store/casino/entities/promotions/types';
|
|
31
31
|
import { UIEntitiesSettings } from 'store/ui/types';
|
|
32
32
|
import { TournamentSubscribeProps } from 'store/casino/entities/casinoTournaments/types';
|
|
@@ -131,6 +131,8 @@ export declare class Socket implements SocketInterface {
|
|
|
131
131
|
subscribeAccrualHistory(props: BaseObservableSubscriber): boolean;
|
|
132
132
|
unsubscribeAccrualHistory(uid: string): boolean;
|
|
133
133
|
saveToFavoriteEntities(props: PrepareFavoriteEntitiesForSavingProps): boolean;
|
|
134
|
+
handleConfirmEmail({ email, actionKey }: ConfirmEmailProps): boolean;
|
|
135
|
+
handleConfirmEmailByCode({ email, code, actionKey, }: ConfirmEmailByCodeProps): boolean;
|
|
134
136
|
subscribeIsFavoriteGame(props: SubscribeFavoriteGameProps): boolean;
|
|
135
137
|
subscribeFavoriteGames(props: SubscribeFavoriteGamesProps): boolean;
|
|
136
138
|
unsubscribeFavoriteEntity(uid: string): boolean;
|
|
@@ -139,6 +139,15 @@ export interface SocketInterface {
|
|
|
139
139
|
subscribeUserEntity: (props: BaseObservableSubscriber & SubscribeUserKeys) => boolean;
|
|
140
140
|
unsubscribeUserEntity: (uid: string) => boolean;
|
|
141
141
|
subscribeStories: (props: BaseObservableSubscriber) => boolean;
|
|
142
|
+
handleConfirmEmail: ({ email, actionKey, }: {
|
|
143
|
+
email: string;
|
|
144
|
+
actionKey: string;
|
|
145
|
+
}) => boolean;
|
|
146
|
+
handleConfirmEmailByCode: ({ email, code, actionKey, }: {
|
|
147
|
+
email: string;
|
|
148
|
+
code: string;
|
|
149
|
+
actionKey: string;
|
|
150
|
+
}) => boolean;
|
|
142
151
|
subscribeBalanceInfo: (props: BaseObservableSubscriber) => boolean;
|
|
143
152
|
subscribeBonusBalanceCoins: (props: BaseObservableSubscriber) => boolean;
|
|
144
153
|
unsubscribeBalanceEntity: (uid: string) => boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from '../../service/observable';
|
|
2
|
-
import { CountryInfo, CountryInfoResponse, CurrencyInfo, HandleAuthResponseProps, SubscribeUserKeys, UserInfo, UserInfoSettings } from './types';
|
|
2
|
+
import { ConfirmEmailByCodeProps, ConfirmEmailProps, CountryInfo, CountryInfoResponse, CurrencyInfo, HandleAuthResponseProps, RequestStatus, SubscribeUserKeys, UserInfo, UserInfoSettings } from './types';
|
|
3
3
|
import { UserFavorites } from './entities/favorites';
|
|
4
4
|
import { UserServices } from './services';
|
|
5
5
|
import { Balance } from './entities/balance';
|
|
@@ -33,8 +33,17 @@ export declare class User extends ObservableEntity<undefined> {
|
|
|
33
33
|
_currencyInfo: CurrencyInfo | null;
|
|
34
34
|
_ratio: number;
|
|
35
35
|
userInfo: null | UserInfo;
|
|
36
|
+
_profileInfo: null | UserInfo;
|
|
37
|
+
_statusProfileInfo: RequestStatus;
|
|
38
|
+
_requestUserStatuses: Record<string, RequestStatus>;
|
|
36
39
|
userInfoSettings: UserInfoSettings;
|
|
37
40
|
constructor(sendCommand: SendCommand, callbackStatus: CallbackStatus, parentService: ResponseAdapterService, userInfoSettings: UserInfoSettings);
|
|
41
|
+
set profileInfo(info: UserInfo | null);
|
|
42
|
+
get profileInfo(): UserInfo | null;
|
|
43
|
+
set statusProfileInfo(status: RequestStatus);
|
|
44
|
+
get statusProfileInfo(): RequestStatus;
|
|
45
|
+
set requestUserStatuses(value: Record<string, RequestStatus>);
|
|
46
|
+
get requestUserStatuses(): Record<string, RequestStatus>;
|
|
38
47
|
set minDepositOdd(value: number);
|
|
39
48
|
get minDepositOdd(): number;
|
|
40
49
|
set availableCurrencies(availableCurrencies: CurrencyInfo[]);
|
|
@@ -47,10 +56,13 @@ export declare class User extends ObservableEntity<undefined> {
|
|
|
47
56
|
get ratio(): number;
|
|
48
57
|
reset(): void;
|
|
49
58
|
setInitialState(result: HandleAuthResponseProps): void;
|
|
59
|
+
handleConfirmEmail({ email, actionKey }: ConfirmEmailProps): Promise<void>;
|
|
60
|
+
handleConfirmEmailByCode({ email, code, actionKey, }: ConfirmEmailByCodeProps): Promise<void>;
|
|
50
61
|
setCountryInfo(response: CountryInfoResponse): void;
|
|
51
62
|
private handleCountryInfo;
|
|
52
63
|
private handleCurrencyInfo;
|
|
53
64
|
private handleUserStateInfo;
|
|
65
|
+
private handleUserProfileInfo;
|
|
54
66
|
private handleUserInfo;
|
|
55
67
|
private handleMinDepositInfo;
|
|
56
68
|
private handleAvailableCurrenciesInfo;
|
|
@@ -3,6 +3,7 @@ import { EReferralPath } from '../entities/referral/types';
|
|
|
3
3
|
import { CallbackInfo, SendCommand } from './types';
|
|
4
4
|
import { Operation } from 'store/operations/types';
|
|
5
5
|
import { AvatarType } from '../entities/avatars/types';
|
|
6
|
+
import { ConfirmEmailByCodeProps, ConfirmEmailProps, RequestStatus } from '../types';
|
|
6
7
|
export declare class UserServices {
|
|
7
8
|
parent: User;
|
|
8
9
|
callbackInfo: CallbackInfo;
|
|
@@ -24,4 +25,6 @@ export declare class UserServices {
|
|
|
24
25
|
getUserRatio(): number;
|
|
25
26
|
applyMonthlyBonus(operationId: number): void;
|
|
26
27
|
fetchingAvatars(): Promise<void>;
|
|
28
|
+
setInitialRequestStatus<T>(info: ConfirmEmailProps | ConfirmEmailByCodeProps): T;
|
|
29
|
+
updateRequestStatus(actionKey: string, status: RequestStatus): void;
|
|
27
30
|
}
|
|
@@ -69,6 +69,8 @@ export type SubscribeUserKeys = {
|
|
|
69
69
|
isCurrencyInfo?: boolean;
|
|
70
70
|
isUserState?: boolean;
|
|
71
71
|
isUserInfo?: boolean;
|
|
72
|
+
isProfileInfo?: boolean;
|
|
73
|
+
isRequestStatusInfo?: boolean;
|
|
72
74
|
isAvailableCurrencies?: boolean;
|
|
73
75
|
};
|
|
74
76
|
export type AuthInfo = {
|
|
@@ -241,13 +243,13 @@ export declare enum PaymentChannelType {
|
|
|
241
243
|
Pix = 201,
|
|
242
244
|
BankPix = 202,
|
|
243
245
|
PlixopayPayco = 205,
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
246
|
+
LimepayGrab = 206,
|
|
247
|
+
LimepayShopeePay = 207,
|
|
248
|
+
LimepayTouchNGo = 208,
|
|
249
|
+
LimepayBoost = 210,
|
|
248
250
|
BKashFast = 211,
|
|
249
251
|
PKRJazzcash = 212,
|
|
250
|
-
|
|
252
|
+
LimepayDuitNow = 213,
|
|
251
253
|
KodakUpi = 214,
|
|
252
254
|
KodakImpus = 215,
|
|
253
255
|
PKREasypaisa = 216,
|
|
@@ -258,7 +260,7 @@ export declare enum PaymentChannelType {
|
|
|
258
260
|
Oxxo = 221,
|
|
259
261
|
BankTransferTwo = 222,
|
|
260
262
|
NagadGldn = 223,
|
|
261
|
-
|
|
263
|
+
LimepayFPX = 224,
|
|
262
264
|
CashXAZN = 225,
|
|
263
265
|
PlixoBKash = 226,
|
|
264
266
|
PlixoNagad = 227,
|
|
@@ -268,9 +270,9 @@ export declare enum PaymentChannelType {
|
|
|
268
270
|
NetBanking = 231,
|
|
269
271
|
UPI = 232,
|
|
270
272
|
UPI_QR = 233,
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
273
|
+
LimepayBankTransfer = 234,
|
|
274
|
+
LimepayBigpay = 235,
|
|
275
|
+
LimepayMAEByMaybank = 236,
|
|
274
276
|
PlixoAznCard = 237,
|
|
275
277
|
PlixoAznM10 = 238,
|
|
276
278
|
PlixoAznMPay = 239,
|
|
@@ -293,3 +295,13 @@ export type MPayMethods = PaymentChannelType.MPayParazula | PaymentChannelType.M
|
|
|
293
295
|
export type WellexPayMethods = PaymentChannelType.BKashFastWellexPay | PaymentChannelType.NagadFastWellexPay | PaymentChannelType.NagadWellexPay | PaymentChannelType.BKashFastWellexPayCopy;
|
|
294
296
|
export type CashXMethods = PaymentChannelType.NagadCashX | PaymentChannelType.BkashCashX;
|
|
295
297
|
export type RublesMethods = PaymentChannelType.WithdrawRubSber | PaymentChannelType.WithdrawRubTinkof | PaymentChannelType.CreditCard | PaymentChannelType.CreditCardFast | PaymentChannelType.CreditCardAcquirning;
|
|
298
|
+
export type ConfirmEmailProps = {
|
|
299
|
+
email: string;
|
|
300
|
+
actionKey: string;
|
|
301
|
+
};
|
|
302
|
+
export type ConfirmEmailByCodeProps = {
|
|
303
|
+
email: string;
|
|
304
|
+
code: string;
|
|
305
|
+
actionKey: string;
|
|
306
|
+
};
|
|
307
|
+
export type RequestStatus = 'idle' | 'pending' | 'success' | 'rejected';
|
|
@@ -137,14 +137,14 @@ var PaymentChannelType;
|
|
|
137
137
|
PaymentChannelType[PaymentChannelType["Pix"] = 201] = "Pix";
|
|
138
138
|
PaymentChannelType[PaymentChannelType["BankPix"] = 202] = "BankPix";
|
|
139
139
|
PaymentChannelType[PaymentChannelType["PlixopayPayco"] = 205] = "PlixopayPayco";
|
|
140
|
-
PaymentChannelType[PaymentChannelType["
|
|
141
|
-
PaymentChannelType[PaymentChannelType["
|
|
142
|
-
PaymentChannelType[PaymentChannelType["
|
|
143
|
-
PaymentChannelType[PaymentChannelType["
|
|
140
|
+
PaymentChannelType[PaymentChannelType["LimepayGrab"] = 206] = "LimepayGrab";
|
|
141
|
+
PaymentChannelType[PaymentChannelType["LimepayShopeePay"] = 207] = "LimepayShopeePay";
|
|
142
|
+
PaymentChannelType[PaymentChannelType["LimepayTouchNGo"] = 208] = "LimepayTouchNGo";
|
|
143
|
+
PaymentChannelType[PaymentChannelType["LimepayBoost"] = 210] = "LimepayBoost";
|
|
144
144
|
PaymentChannelType[PaymentChannelType["BKashFast"] = 211] = "BKashFast";
|
|
145
145
|
// PKR
|
|
146
146
|
PaymentChannelType[PaymentChannelType["PKRJazzcash"] = 212] = "PKRJazzcash";
|
|
147
|
-
PaymentChannelType[PaymentChannelType["
|
|
147
|
+
PaymentChannelType[PaymentChannelType["LimepayDuitNow"] = 213] = "LimepayDuitNow";
|
|
148
148
|
PaymentChannelType[PaymentChannelType["KodakUpi"] = 214] = "KodakUpi";
|
|
149
149
|
PaymentChannelType[PaymentChannelType["KodakImpus"] = 215] = "KodakImpus";
|
|
150
150
|
PaymentChannelType[PaymentChannelType["PKREasypaisa"] = 216] = "PKREasypaisa";
|
|
@@ -155,7 +155,7 @@ var PaymentChannelType;
|
|
|
155
155
|
PaymentChannelType[PaymentChannelType["Oxxo"] = 221] = "Oxxo";
|
|
156
156
|
PaymentChannelType[PaymentChannelType["BankTransferTwo"] = 222] = "BankTransferTwo";
|
|
157
157
|
PaymentChannelType[PaymentChannelType["NagadGldn"] = 223] = "NagadGldn";
|
|
158
|
-
PaymentChannelType[PaymentChannelType["
|
|
158
|
+
PaymentChannelType[PaymentChannelType["LimepayFPX"] = 224] = "LimepayFPX";
|
|
159
159
|
PaymentChannelType[PaymentChannelType["CashXAZN"] = 225] = "CashXAZN";
|
|
160
160
|
PaymentChannelType[PaymentChannelType["PlixoBKash"] = 226] = "PlixoBKash";
|
|
161
161
|
PaymentChannelType[PaymentChannelType["PlixoNagad"] = 227] = "PlixoNagad";
|
|
@@ -165,9 +165,9 @@ var PaymentChannelType;
|
|
|
165
165
|
PaymentChannelType[PaymentChannelType["NetBanking"] = 231] = "NetBanking";
|
|
166
166
|
PaymentChannelType[PaymentChannelType["UPI"] = 232] = "UPI";
|
|
167
167
|
PaymentChannelType[PaymentChannelType["UPI_QR"] = 233] = "UPI_QR";
|
|
168
|
-
PaymentChannelType[PaymentChannelType["
|
|
169
|
-
PaymentChannelType[PaymentChannelType["
|
|
170
|
-
PaymentChannelType[PaymentChannelType["
|
|
168
|
+
PaymentChannelType[PaymentChannelType["LimepayBankTransfer"] = 234] = "LimepayBankTransfer";
|
|
169
|
+
PaymentChannelType[PaymentChannelType["LimepayBigpay"] = 235] = "LimepayBigpay";
|
|
170
|
+
PaymentChannelType[PaymentChannelType["LimepayMAEByMaybank"] = 236] = "LimepayMAEByMaybank";
|
|
171
171
|
PaymentChannelType[PaymentChannelType["PlixoAznCard"] = 237] = "PlixoAznCard";
|
|
172
172
|
PaymentChannelType[PaymentChannelType["PlixoAznM10"] = 238] = "PlixoAznM10";
|
|
173
173
|
PaymentChannelType[PaymentChannelType["PlixoAznMPay"] = 239] = "PlixoAznMPay";
|