react-memory-optimization 0.0.28 → 0.0.30
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/PlixoRequests.d.ts +2 -0
- package/dist/lib/binary/constants/PlixoRequests.js +73 -0
- package/dist/lib/binary/constants/requests.js +86 -170
- package/dist/lib/store/operations/entities/cashBonuses/index.d.ts +3 -1
- package/dist/lib/store/operations/services/index.d.ts +1 -0
- package/dist/lib/store/operations/types.d.ts +7 -6
- package/dist/lib/store/operations/types.js +7 -6
- package/dist/lib/store/user/types.d.ts +9 -1
- package/dist/lib/store/user/types.js +8 -0
- package/package.json +1 -1
|
@@ -3,8 +3,10 @@ import { ObservableEntity } from 'service/observableEntity';
|
|
|
3
3
|
import { BaseObservableSubscriber, UpdateData } from 'service/observable/type';
|
|
4
4
|
import { CashBonusChannelType, CashOperation } from './types';
|
|
5
5
|
export declare class CashBonuses extends ObservableEntity<undefined> {
|
|
6
|
-
|
|
6
|
+
_cashBonuses: CashOperation[];
|
|
7
7
|
constructor();
|
|
8
|
+
set cashBonuses(v: CashOperation[]);
|
|
9
|
+
get cashBonuses(): CashOperation[];
|
|
8
10
|
isCashBonusType(type: ChannelType): boolean;
|
|
9
11
|
update(channelType?: CashBonusChannelType): {
|
|
10
12
|
data: {
|
|
@@ -11,6 +11,7 @@ export declare class UserOperationServices {
|
|
|
11
11
|
handleNewVipLevel(): MixerTransactionResponse;
|
|
12
12
|
handleEgtOperation(): MixerTransactionResponse;
|
|
13
13
|
handleSupportBonusCash(): MixerTransactionResponse;
|
|
14
|
+
handlePromoAccuralBonusCash(): MixerTransactionResponse;
|
|
14
15
|
handleWeekly(isActive?: boolean): MixerTransactionResponse;
|
|
15
16
|
handleMonthly(isActive?: boolean): MixerTransactionResponse;
|
|
16
17
|
handleTournamentOperation(isActive?: boolean): MixerTransactionResponse;
|
|
@@ -196,12 +196,13 @@ export declare enum TransactionFilterType {
|
|
|
196
196
|
WeeklyHistory = 7,
|
|
197
197
|
TournamentPrizeHistory = 8,
|
|
198
198
|
Bonuses = 9,
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
199
|
+
BonusPromoAccural = 10,
|
|
200
|
+
ActiveTournament = 11,
|
|
201
|
+
ActiveWeekly = 12,
|
|
202
|
+
ActiveMonthly = 13,
|
|
203
|
+
ActiveRakeBack = 14,
|
|
204
|
+
Referral = 15,
|
|
205
|
+
SupportBonus = 16
|
|
205
206
|
}
|
|
206
207
|
export type MixerTransactionResponse = {
|
|
207
208
|
id: number;
|
|
@@ -71,10 +71,11 @@ var TransactionFilterType;
|
|
|
71
71
|
TransactionFilterType[TransactionFilterType["WeeklyHistory"] = 7] = "WeeklyHistory";
|
|
72
72
|
TransactionFilterType[TransactionFilterType["TournamentPrizeHistory"] = 8] = "TournamentPrizeHistory";
|
|
73
73
|
TransactionFilterType[TransactionFilterType["Bonuses"] = 9] = "Bonuses";
|
|
74
|
-
TransactionFilterType[TransactionFilterType["
|
|
75
|
-
TransactionFilterType[TransactionFilterType["
|
|
76
|
-
TransactionFilterType[TransactionFilterType["
|
|
77
|
-
TransactionFilterType[TransactionFilterType["
|
|
78
|
-
TransactionFilterType[TransactionFilterType["
|
|
79
|
-
TransactionFilterType[TransactionFilterType["
|
|
74
|
+
TransactionFilterType[TransactionFilterType["BonusPromoAccural"] = 10] = "BonusPromoAccural";
|
|
75
|
+
TransactionFilterType[TransactionFilterType["ActiveTournament"] = 11] = "ActiveTournament";
|
|
76
|
+
TransactionFilterType[TransactionFilterType["ActiveWeekly"] = 12] = "ActiveWeekly";
|
|
77
|
+
TransactionFilterType[TransactionFilterType["ActiveMonthly"] = 13] = "ActiveMonthly";
|
|
78
|
+
TransactionFilterType[TransactionFilterType["ActiveRakeBack"] = 14] = "ActiveRakeBack";
|
|
79
|
+
TransactionFilterType[TransactionFilterType["Referral"] = 15] = "Referral";
|
|
80
|
+
TransactionFilterType[TransactionFilterType["SupportBonus"] = 16] = "SupportBonus";
|
|
80
81
|
})(TransactionFilterType || (exports.TransactionFilterType = TransactionFilterType = {}));
|
|
@@ -241,7 +241,15 @@ export declare enum PaymentChannelType {
|
|
|
241
241
|
PhonePeP2P = 230,
|
|
242
242
|
NetBanking = 231,
|
|
243
243
|
UPI = 232,
|
|
244
|
-
UPI_QR = 233
|
|
244
|
+
UPI_QR = 233,
|
|
245
|
+
PlixoInrLocalPay = 234,
|
|
246
|
+
PlixoInrP2p = 235,
|
|
247
|
+
PlixoInrBank = 236,
|
|
248
|
+
PlixoAznCard = 237,
|
|
249
|
+
PlixoAznM10 = 238,
|
|
250
|
+
PlixoAznMPay = 239,
|
|
251
|
+
PlixoBdtBkash = 240,
|
|
252
|
+
PlixoBdtBkashSecond = 241
|
|
245
253
|
}
|
|
246
254
|
export type MPayMethods = PaymentChannelType.MPayParazula | PaymentChannelType.MPayPayco | PaymentChannelType.MPayVCC | PaymentChannelType.PaparaMPay | PaymentChannelType.MefeteMpay | PaymentChannelType.MefeteMpayQr | PaymentChannelType.EFTMPay | PaymentChannelType.MiniHavaleMpay | PaymentChannelType.PopyMpay;
|
|
247
255
|
export type WellexPayMethods = PaymentChannelType.BKashFastWellexPay | PaymentChannelType.NagadFastWellexPay | PaymentChannelType.NagadWellexPay | PaymentChannelType.BkashWellexPay | PaymentChannelType.WellxpayUpay | PaymentChannelType.BKashFastWellexPayCopy | PaymentChannelType.NagadFastWellexPayCopy | PaymentChannelType.WellxpayRocket;
|
|
@@ -144,4 +144,12 @@ var PaymentChannelType;
|
|
|
144
144
|
PaymentChannelType[PaymentChannelType["NetBanking"] = 231] = "NetBanking";
|
|
145
145
|
PaymentChannelType[PaymentChannelType["UPI"] = 232] = "UPI";
|
|
146
146
|
PaymentChannelType[PaymentChannelType["UPI_QR"] = 233] = "UPI_QR";
|
|
147
|
+
PaymentChannelType[PaymentChannelType["PlixoInrLocalPay"] = 234] = "PlixoInrLocalPay";
|
|
148
|
+
PaymentChannelType[PaymentChannelType["PlixoInrP2p"] = 235] = "PlixoInrP2p";
|
|
149
|
+
PaymentChannelType[PaymentChannelType["PlixoInrBank"] = 236] = "PlixoInrBank";
|
|
150
|
+
PaymentChannelType[PaymentChannelType["PlixoAznCard"] = 237] = "PlixoAznCard";
|
|
151
|
+
PaymentChannelType[PaymentChannelType["PlixoAznM10"] = 238] = "PlixoAznM10";
|
|
152
|
+
PaymentChannelType[PaymentChannelType["PlixoAznMPay"] = 239] = "PlixoAznMPay";
|
|
153
|
+
PaymentChannelType[PaymentChannelType["PlixoBdtBkash"] = 240] = "PlixoBdtBkash";
|
|
154
|
+
PaymentChannelType[PaymentChannelType["PlixoBdtBkashSecond"] = 241] = "PlixoBdtBkashSecond";
|
|
147
155
|
})(PaymentChannelType || (exports.PaymentChannelType = PaymentChannelType = {}));
|