livevegas-ui-kit 1.0.49 → 1.0.51

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.
@@ -33,3 +33,42 @@ export declare const calculateTimeLeft: (tournamentData: TournamentData) => {
33
33
  seconds: number;
34
34
  };
35
35
  export declare const ERROR_MESSAGES: Record<number, string>;
36
+ export interface IActiveBonus {
37
+ activationDate: string | null;
38
+ awardDate: string;
39
+ backgroundImage: string;
40
+ balance: number;
41
+ bonusId: number;
42
+ currencyId: string;
43
+ description: string;
44
+ expireDate: string;
45
+ freeSpinsCount: number | null;
46
+ freeSpinsDenomination: number | null;
47
+ id: number | null;
48
+ image: string;
49
+ maxConversion: number | null;
50
+ maxValuableBet: number | null;
51
+ minValuableBet: number | null;
52
+ playedAmount: number | null;
53
+ playerBonusState: any | null;
54
+ rate: number | null;
55
+ title: string;
56
+ type: any | null;
57
+ wager: number | null;
58
+ }
59
+ export declare enum BonusType {
60
+ Money = 1,
61
+ Cashback = 2,
62
+ Rakeback = 3,
63
+ FreeSpin = 4,
64
+ Tournament = 5
65
+ }
66
+ export declare enum BonusState {
67
+ Awarded = 0,
68
+ Active = 1,
69
+ OnCalculation = 2,
70
+ Completed = 3,
71
+ Canceled = 4,
72
+ PendingTransfer = 5
73
+ }
74
+ export declare function getCurrencySymbol(currencyId: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livevegas-ui-kit",
3
- "version": "1.0.49",
3
+ "version": "1.0.51",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"