react-memory-optimization 0.0.121 → 0.0.123
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.
|
@@ -243,4 +243,17 @@ export type BonusesResponse = {
|
|
|
243
243
|
bonusOnDeposit: CasinoBonusOnDepositOperation[];
|
|
244
244
|
freeSpins: CasinoBonusFreeSpinOperation[];
|
|
245
245
|
};
|
|
246
|
+
export declare enum EOrderedBonusType {
|
|
247
|
+
ClaimWeekly = "claimWeekly",
|
|
248
|
+
ClaimMonthly = "claimMonthly",
|
|
249
|
+
ClaimRakeback = "claimRakeback",
|
|
250
|
+
ActiveBonusOnDeposit = "activeBonusOnDeposit",
|
|
251
|
+
ActiveFreeSpins = "activeFreeSpins",
|
|
252
|
+
AvailableBonusOnDeposit = "availableBonusOnDeposit",
|
|
253
|
+
AvailableFreeSpins = "availableFreeSpins",
|
|
254
|
+
DisabledWeekly = "disabledWeekly",
|
|
255
|
+
DisabledMonthly = "disabledMonthly",
|
|
256
|
+
DisabledRakeback = "disabledRakeback",
|
|
257
|
+
CashBonus = "cashBonus"
|
|
258
|
+
}
|
|
246
259
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TransactionFilterType = exports.ChannelType = exports.EOperationStatus = exports.EOperationDirect = exports.EOperationType = exports.ITicketStatus = exports.ETypeBet = void 0;
|
|
3
|
+
exports.EOrderedBonusType = exports.TransactionFilterType = exports.ChannelType = exports.EOperationStatus = exports.EOperationDirect = exports.EOperationType = exports.ITicketStatus = exports.ETypeBet = void 0;
|
|
4
4
|
var ETypeBet;
|
|
5
5
|
(function (ETypeBet) {
|
|
6
6
|
ETypeBet[ETypeBet["Ordinar"] = 1] = "Ordinar";
|
|
@@ -79,3 +79,17 @@ var TransactionFilterType;
|
|
|
79
79
|
TransactionFilterType[TransactionFilterType["Referral"] = 15] = "Referral";
|
|
80
80
|
TransactionFilterType[TransactionFilterType["SupportBonus"] = 16] = "SupportBonus";
|
|
81
81
|
})(TransactionFilterType || (exports.TransactionFilterType = TransactionFilterType = {}));
|
|
82
|
+
var EOrderedBonusType;
|
|
83
|
+
(function (EOrderedBonusType) {
|
|
84
|
+
EOrderedBonusType["ClaimWeekly"] = "claimWeekly";
|
|
85
|
+
EOrderedBonusType["ClaimMonthly"] = "claimMonthly";
|
|
86
|
+
EOrderedBonusType["ClaimRakeback"] = "claimRakeback";
|
|
87
|
+
EOrderedBonusType["ActiveBonusOnDeposit"] = "activeBonusOnDeposit";
|
|
88
|
+
EOrderedBonusType["ActiveFreeSpins"] = "activeFreeSpins";
|
|
89
|
+
EOrderedBonusType["AvailableBonusOnDeposit"] = "availableBonusOnDeposit";
|
|
90
|
+
EOrderedBonusType["AvailableFreeSpins"] = "availableFreeSpins";
|
|
91
|
+
EOrderedBonusType["DisabledWeekly"] = "disabledWeekly";
|
|
92
|
+
EOrderedBonusType["DisabledMonthly"] = "disabledMonthly";
|
|
93
|
+
EOrderedBonusType["DisabledRakeback"] = "disabledRakeback";
|
|
94
|
+
EOrderedBonusType["CashBonus"] = "cashBonus";
|
|
95
|
+
})(EOrderedBonusType || (exports.EOrderedBonusType = EOrderedBonusType = {}));
|