@everymatrix/casino-challenge-details 0.9.27 → 0.9.29

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.
Files changed (22) hide show
  1. package/dist/casino-challenge-details/casino-challenge-details-8f737e06.js +7 -0
  2. package/dist/casino-challenge-details/casino-challenge-details_4.entry.js +1 -1
  3. package/dist/casino-challenge-details/index.esm.js +1 -1
  4. package/dist/cjs/{casino-challenge-details-df1d40f7.js → casino-challenge-details-8c125023.js} +601 -302
  5. package/dist/cjs/casino-challenge-details_4.cjs.entry.js +5 -10
  6. package/dist/cjs/index.cjs.js +1 -1
  7. package/dist/collection/assets/slot-machine.svg +39 -0
  8. package/dist/collection/assets/sportsbook.svg +46 -0
  9. package/dist/collection/components/casino-challenge-details/casino-challenge-details.css +66 -5
  10. package/dist/collection/components/casino-challenge-details/casino-challenge-details.js +411 -260
  11. package/dist/collection/components/components/casino-challenge-progress-bar.css +17 -11
  12. package/dist/collection/components/components/casino-challenge-progress-bar.js +3 -7
  13. package/dist/collection/utils/locale.utils.js +152 -42
  14. package/dist/collection/utils/types.js +36 -0
  15. package/dist/esm/{casino-challenge-details-252d9b9c.js → casino-challenge-details-8f737e06.js} +601 -302
  16. package/dist/esm/casino-challenge-details_4.entry.js +6 -11
  17. package/dist/esm/index.js +1 -1
  18. package/dist/types/components/casino-challenge-details/casino-challenge-details.d.ts +49 -31
  19. package/dist/types/utils/types.d.ts +77 -2
  20. package/package.json +1 -1
  21. package/dist/casino-challenge-details/casino-challenge-details-252d9b9c.js +0 -7
  22. package/dist/collection/assets/trophy.svg +0 -14
@@ -1,7 +1,7 @@
1
1
  .progress {
2
2
  background-color: var(--emw--progress-background, rgba(188, 252, 177, 0.1019607843));
3
3
  border-radius: 100px;
4
- height: 20px;
4
+ height: 22px;
5
5
  margin: 16px 0;
6
6
  position: relative;
7
7
  align-content: center;
@@ -18,8 +18,7 @@
18
18
  height: 20px;
19
19
  }
20
20
  .progress__icon {
21
- width: 12px;
22
- padding-top: 4px;
21
+ width: 11px;
23
22
  }
24
23
  .progress__point {
25
24
  position: absolute;
@@ -32,6 +31,9 @@
32
31
  height: 19px;
33
32
  width: 19px;
34
33
  border-radius: 50%;
34
+ display: flex;
35
+ justify-content: center;
36
+ align-items: center;
35
37
  }
36
38
  .progress__point.start {
37
39
  left: 0;
@@ -46,6 +48,8 @@
46
48
  }
47
49
  .progress__point.finished {
48
50
  opacity: 1;
51
+ border: 2px solid var(--emw--button-background-primary-color, #18CE51);
52
+ background: linear-gradient(90deg, var(--emw--progress-active-level, #24AA4D) 0%, var(--emw--progress-active-level-secondary, #113F21) 100%);
49
53
  }
50
54
  .progress__point.hidden {
51
55
  opacity: 0;
@@ -53,15 +57,17 @@
53
57
  .progress__bar {
54
58
  border-radius: 73px;
55
59
  height: 16px;
56
- background: linear-gradient(90deg, var(--emw--secondary-green, #1e654f) 0%, var(--emw--dark-green, #1c8d56) 100%);
57
- text-align: end;
58
- color: var(--emw--color-gray-50, #e2e2e2);
59
- font-size: 11px;
60
- font-weight: 700;
61
- line-height: 16px;
60
+ background: linear-gradient(90deg, var(--emw--secondary-green, #1E654F) 0%, var(--emw--dark-green, #1C8D56) 100%);
62
61
  padding-right: 6px;
63
62
  box-sizing: border-box;
64
63
  }
65
- .progress__bar.finished {
66
- text-align: center;
64
+ .progress__text {
65
+ font-size: 11px;
66
+ font-weight: 700;
67
+ line-height: 16px;
68
+ color: var(--emw--color-gray-50, #E2E2E2);
69
+ position: absolute;
70
+ top: 50%;
71
+ left: 50%;
72
+ transform: translate(-50%, -50%);
67
73
  }
@@ -1,7 +1,6 @@
1
1
  import { h, Host } from "@stencil/core";
2
2
  import { EChallengeProgressLevelStatus, EChallengeProgressStatus, EChallengeStatus } from "../../utils/types";
3
3
  import { translate } from "../../utils/locale.utils";
4
- import trophyIcon from "../../assets/trophy.svg";
5
4
  import rewardGiftIcon from "../../assets/reward-gift.svg";
6
5
  export class CasinoChallengeProgressBar {
7
6
  constructor() {
@@ -27,7 +26,7 @@ export class CasinoChallengeProgressBar {
27
26
  ? translate('finished', this.language)
28
27
  : `${Math.floor(currLevel.ProgressPercentage)}%`;
29
28
  const isLastLevel = !LevelProgresses.some((x) => x.OrderNumber > currLevel.OrderNumber);
30
- const secondImgSrc = Status === EChallengeProgressStatus.Completed ? trophyIcon : isLastLevel ? rewardGiftIcon : '';
29
+ const secondImgSrc = ((Status === EChallengeProgressStatus.Completed || isLastLevel) && rewardGiftIcon) || '';
31
30
  return (h("div", { class: {
32
31
  progress: true,
33
32
  paused: Status === EChallengeProgressStatus.Paused,
@@ -36,17 +35,14 @@ export class CasinoChallengeProgressBar {
36
35
  progress__point: true,
37
36
  start: true,
38
37
  hidden: Status === EChallengeProgressStatus.Completed
39
- } }, currLevel.OrderNumber + 1), h("div", { class: {
40
- progress__bar: true,
41
- finished: Status === EChallengeProgressStatus.Completed
42
- }, style: { width: `${currLevel.ProgressPercentage}%` } }, barValue), h("div", { class: {
38
+ } }, currLevel.OrderNumber + 1), h("div", { class: "progress__bar", style: { width: `${currLevel.ProgressPercentage}%` } }), h("span", { class: "progress__text" }, barValue), h("div", { class: {
43
39
  progress__point: true,
44
40
  end: true,
45
41
  finished: Status === EChallengeProgressStatus.Completed
46
42
  } }, secondImgSrc ? h("img", { class: "progress__icon", src: secondImgSrc }) : currLevel.OrderNumber + 2)));
47
43
  }
48
44
  render() {
49
- return h(Host, { key: 'b3db1bf6fb4f48b47581a0b1a57d12f16723a78f' }, this.challengeProgress);
45
+ return h(Host, { key: 'f3aae732676979aa76bdb582ed1e9631c3a3eefe' }, this.challengeProgress);
50
46
  }
51
47
  static get is() { return "casino-challenge-progress-bar"; }
52
48
  static get encapsulation() { return "shadow"; }
@@ -23,8 +23,8 @@ const TRANSLATIONS = {
23
23
  congrats: 'Congratulations!',
24
24
  forfeitNotification: 'Unfortunately, your progress has been forfeited, and you are no longer eligible to continue this challenge. Check out other available challenges!',
25
25
  completedNofitication: "You've successfully completed this challenge! Explore the next one and keep playing to earn more rewards!",
26
- expiredNotification: "Unfortunately, this challenge has expired and is no longer available to complete. Try another one that’s still active!",
27
- terms: "Terms & Conditions",
26
+ expiredNotification: 'Unfortunately, this challenge has expired and is no longer available to complete. Try another one that’s still active!',
27
+ terms: 'Terms & Conditions',
28
28
  contribution: 'contribution',
29
29
  endDate: 'End Date',
30
30
  back: 'Back',
@@ -35,7 +35,29 @@ const TRANSLATIONS = {
35
35
  isNotContributeToOne: 'Bets contribute to all started challenges',
36
36
  bonusMoney: 'Bonus Money',
37
37
  realMoney: 'Real Money',
38
- mixedMoney: 'Real and Bonus Money contribution'
38
+ mixedMoney: 'Real and Bonus Money contribution',
39
+ defaultRule: 'All events - ',
40
+ fundsUsed: 'Funds Used',
41
+ sportsbookRealMoney: 'Only Real Money bets can contribute',
42
+ sportsbookBonusMoney: 'Only Bonus bets can contribute',
43
+ sportsbookMixMoney: 'Both Real Money and Bonus bets can contribute',
44
+ eligibleMatchTypes: 'Eligible Match Types',
45
+ preLiveMatchType: 'Only Pre-Match bets can contribute',
46
+ liveMatchType: 'Only Live bets can contribute',
47
+ mixMatchType: 'Both Pre-Match and Live bets can contribute',
48
+ eligibleBetTypes: 'Eligible Bet Types',
49
+ single: 'Single',
50
+ multi: 'Multi/Combi',
51
+ betBuilder: 'Only Bet Builder Bets',
52
+ nonBetBuilder: 'Only Non-Bet Builder Bets',
53
+ mixBetBuilder: 'Bet Builder & Non-Bet Builder Bets',
54
+ system: 'System',
55
+ banker: 'Only Banker Bets',
56
+ nonBanker: 'Only Non-Banker Bets',
57
+ mixBanker: 'Banker & Non-Banker Bets',
58
+ oddsPerSection: 'Odds per Selection',
59
+ totalOdds: 'Total Odds',
60
+ selections: 'Selections'
39
61
  },
40
62
  ro: {
41
63
  title: 'Provocări',
@@ -55,22 +77,44 @@ const TRANSLATIONS = {
55
77
  resume: 'Reia',
56
78
  pause: 'Pauză',
57
79
  join: 'Alătură-te pentru a începe',
58
- congrats: "Felicitări!",
59
- forfeitNotification: "Din păcate, progresul tău a fost abandonat și nu mai poți continua această provocare. Consultă celelalte provocări disponibile!",
60
- completedNofitication: "Ai finalizat cu succes această provocare! Explorează următoarea și continuă să joci pentru a câștiga mai multe recompense!",
61
- expiredNotification: "Din păcate, această provocare a expirat și nu mai este disponibilă pentru finalizare. Încearcă una care este încă activă!",
62
- terms: "Termeni și condiții",
63
- contribution: "contribuție",
64
- endDate: "Data de încheiere",
65
- back: "Înapoi",
66
- all: "Toate Provocările",
80
+ congrats: 'Felicitări!',
81
+ forfeitNotification: 'Din păcate, progresul tău a fost abandonat și nu mai poți continua această provocare. Consultă celelalte provocări disponibile!',
82
+ completedNofitication: 'Ai finalizat cu succes această provocare! Explorează următoarea și continuă să joci pentru a câștiga mai multe recompense!',
83
+ expiredNotification: 'Din păcate, această provocare a expirat și nu mai este disponibilă pentru finalizare. Încearcă una care este încă activă!',
84
+ terms: 'Termeni și condiții',
85
+ contribution: 'contribuție',
86
+ endDate: 'Data de încheiere',
87
+ back: 'Înapoi',
88
+ all: 'Toate Provocările',
67
89
  contributionType: 'Tip de contribuție',
68
90
  contributionRule: 'Regulă de contribuție',
69
91
  isContributeToOne: 'Pariurile contribuie doar la provocarea începută cel mai devreme (dacă există mai multe provocări începute)',
70
92
  isNotContributeToOne: 'Pariurile contribuie la toate provocările începute',
71
93
  bonusMoney: 'Bani bonus',
72
94
  realMoney: 'Bani reali',
73
- mixedMoney: 'Contribuție în bani reali și bonus'
95
+ mixedMoney: 'Contribuție în bani reali și bonus',
96
+ defaultRule: 'Toate evenimentele - ',
97
+ fundsUsed: 'Funds Used',
98
+ sportsbookRealMoney: 'Only Real Money bets can contribute',
99
+ sportsbookBonusMoney: 'Only Bonus bets can contribute',
100
+ sportsbookMixMoney: 'Both Real Money and Bonus bets can contribute',
101
+ eligibleMatchTypes: 'Eligible Match Types',
102
+ preLiveMatchType: 'Only Pre-Match bets can contribute',
103
+ liveMatchType: 'Only Live bets can contribute',
104
+ mixMatchType: 'Both Pre-Match and Live bets can contribute',
105
+ eligibleBetTypes: 'Eligible Bet Types',
106
+ single: 'Single',
107
+ multi: 'Multi/Combi',
108
+ betBuilder: 'Only Bet Builder Bets',
109
+ nonBetBuilder: 'Only Non-Bet Builder Bets',
110
+ mixBetBuilder: 'Bet Builder & Non-Bet Builder Bets',
111
+ system: 'System',
112
+ banker: 'Only Banker Bets',
113
+ nonBanker: 'Only Non-Banker Bets',
114
+ mixBanker: 'Banker & Non-Banker Bets',
115
+ oddsPerSection: 'Odds per Selection',
116
+ totalOdds: 'Total Odds',
117
+ selections: 'Selections'
74
118
  },
75
119
  fr: {
76
120
  title: 'Défis',
@@ -90,22 +134,44 @@ const TRANSLATIONS = {
90
134
  resume: 'Reprendre',
91
135
  pause: 'Pause',
92
136
  join: 'Rejoindre pour commencer',
93
- congrats: "Félicitations !",
137
+ congrats: 'Félicitations !',
94
138
  forfeitNotification: "Malheureusement, votre progression a été abandonnée et vous n'êtes plus éligible pour continuer ce défi. Découvrez les autres défis disponibles !",
95
- completedNofitication: "Vous avez réussi ce défi ! Découvrez le suivant et continuez à jouer pour gagner plus de récompenses !",
96
- expiredNotification: "Malheureusement, ce défi a expiré et n’est plus disponible à compléter. Essayez-en un autre qui est encore actif !",
97
- terms: "Termes et conditions",
98
- contribution: "contribution",
99
- endDate: "Date de fin",
100
- back: "Retour",
101
- all: "Tous les Défis",
139
+ completedNofitication: 'Vous avez réussi ce défi ! Découvrez le suivant et continuez à jouer pour gagner plus de récompenses !',
140
+ expiredNotification: 'Malheureusement, ce défi a expiré et n’est plus disponible à compléter. Essayez-en un autre qui est encore actif !',
141
+ terms: 'Termes et conditions',
142
+ contribution: 'contribution',
143
+ endDate: 'Date de fin',
144
+ back: 'Retour',
145
+ all: 'Tous les Défis',
102
146
  contributionType: 'Type de contribution',
103
147
  contributionRule: 'Règle de contribution',
104
148
  isContributeToOne: "Les paris contribuent uniquement au premier défi commencé (s'il y a plusieurs défis commencés)",
105
149
  isNotContributeToOne: 'Les paris contribuent à tous les défis commencés',
106
150
  bonusMoney: 'Argent bonus',
107
151
  realMoney: 'Argent réel',
108
- mixedMoney: 'Contribution en argent réel et bonus'
152
+ mixedMoney: 'Contribution en argent réel et bonus',
153
+ defaultRule: 'Tous les événements - ',
154
+ fundsUsed: 'Funds Used',
155
+ sportsbookRealMoney: 'Only Real Money bets can contribute',
156
+ sportsbookBonusMoney: 'Only Bonus bets can contribute',
157
+ sportsbookMixMoney: 'Both Real Money and Bonus bets can contribute',
158
+ eligibleMatchTypes: 'Eligible Match Types',
159
+ preLiveMatchType: 'Only Pre-Match bets can contribute',
160
+ liveMatchType: 'Only Live bets can contribute',
161
+ mixMatchType: 'Both Pre-Match and Live bets can contribute',
162
+ eligibleBetTypes: 'Eligible Bet Types',
163
+ single: 'Single',
164
+ multi: 'Multi/Combi',
165
+ betBuilder: 'Only Bet Builder Bets',
166
+ nonBetBuilder: 'Only Non-Bet Builder Bets',
167
+ mixBetBuilder: 'Bet Builder & Non-Bet Builder Bets',
168
+ system: 'System',
169
+ banker: 'Only Banker Bets',
170
+ nonBanker: 'Only Non-Banker Bets',
171
+ mixBanker: 'Banker & Non-Banker Bets',
172
+ oddsPerSection: 'Odds per Selection',
173
+ totalOdds: 'Total Odds',
174
+ selections: 'Selections'
109
175
  },
110
176
  ar: {
111
177
  title: 'تحديات',
@@ -125,22 +191,44 @@ const TRANSLATIONS = {
125
191
  resume: 'استئناف',
126
192
  pause: 'إيقاف مؤقت',
127
193
  join: 'انضم للبدء',
128
- congrats: "تهانينا!",
129
- forfeitNotification: "للأسف، تم التخلي عن تقدمك ولم تعد مؤهلاً لمتابعة هذا التحدي. تحقق من التحديات الأخرى المتاحة!",
130
- completedNofitication: "لقد أكملت هذا التحدي بنجاح! استكشف التحدي التالي واستمر في اللعب للحصول على مزيد من الجوائز!",
131
- expiredNotification: "للأسف، هذا التحدي انتهت صلاحيته ولم يعد متاحًا لإكماله. جرّب تحديًا آخر لا يزال نشطًا!",
132
- terms: "الشروط والأحكام",
133
- contribution: "مساهمة",
134
- endDate: "تاريخ الانتهاء",
135
- back: "عودة",
136
- all: "جميع التحديات",
194
+ congrats: 'تهانينا!',
195
+ forfeitNotification: 'للأسف، تم التخلي عن تقدمك ولم تعد مؤهلاً لمتابعة هذا التحدي. تحقق من التحديات الأخرى المتاحة!',
196
+ completedNofitication: 'لقد أكملت هذا التحدي بنجاح! استكشف التحدي التالي واستمر في اللعب للحصول على مزيد من الجوائز!',
197
+ expiredNotification: 'للأسف، هذا التحدي انتهت صلاحيته ولم يعد متاحًا لإكماله. جرّب تحديًا آخر لا يزال نشطًا!',
198
+ terms: 'الشروط والأحكام',
199
+ contribution: 'مساهمة',
200
+ endDate: 'تاريخ الانتهاء',
201
+ back: 'عودة',
202
+ all: 'جميع التحديات',
137
203
  contributionType: 'نوع المساهمة',
138
204
  contributionRule: 'قاعدة المساهمة',
139
205
  isContributeToOne: 'تُحتسب الرهانات فقط للتحدي الذي بدأ أولاً (إذا كان هناك عدة تحديات بدأت)',
140
206
  isNotContributeToOne: 'تُحتسب الرهانات لجميع التحديات التي بدأت',
141
207
  bonusMoney: 'أموال المكافأة',
142
208
  realMoney: 'أموال حقيقية',
143
- mixedMoney: 'مساهمة من الأموال الحقيقية وأموال المكافأة'
209
+ mixedMoney: 'مساهمة من الأموال الحقيقية وأموال المكافأة',
210
+ defaultRule: 'كل الأحداث - ',
211
+ fundsUsed: 'Funds Used',
212
+ sportsbookRealMoney: 'Only Real Money bets can contribute',
213
+ sportsbookBonusMoney: 'Only Bonus bets can contribute',
214
+ sportsbookMixMoney: 'Both Real Money and Bonus bets can contribute',
215
+ eligibleMatchTypes: 'Eligible Match Types',
216
+ preLiveMatchType: 'Only Pre-Match bets can contribute',
217
+ liveMatchType: 'Only Live bets can contribute',
218
+ mixMatchType: 'Both Pre-Match and Live bets can contribute',
219
+ eligibleBetTypes: 'Eligible Bet Types',
220
+ single: 'Single',
221
+ multi: 'Multi/Combi',
222
+ betBuilder: 'Only Bet Builder Bets',
223
+ nonBetBuilder: 'Only Non-Bet Builder Bets',
224
+ mixBetBuilder: 'Bet Builder & Non-Bet Builder Bets',
225
+ system: 'System',
226
+ banker: 'Only Banker Bets',
227
+ nonBanker: 'Only Non-Banker Bets',
228
+ mixBanker: 'Banker & Non-Banker Bets',
229
+ oddsPerSection: 'Odds per Selection',
230
+ totalOdds: 'Total Odds',
231
+ selections: 'Selections'
144
232
  },
145
233
  hr: {
146
234
  title: 'Izazovi',
@@ -160,22 +248,44 @@ const TRANSLATIONS = {
160
248
  resume: 'Nastavi',
161
249
  pause: 'Pauza',
162
250
  join: 'Pridruži se za početak',
163
- congrats: "Čestitamo!",
164
- forfeitNotification: "Nažalost, tvoj napredak je izgubljen i više nisi podoban nastaviti ovaj izazov. Pogledaj ostale dostupne izazove!",
165
- completedNofitication: "Uspješno si završio ovaj izazov! Istraži sljedeći i nastavi igrati kako bi zaradio/la više nagrada!",
166
- expiredNotification: "Nažalost, ovaj izazov je istekao i više nije dostupan za dovršavanje. Probaj neki drugi koji je još aktivan!",
167
- terms: "Uvjeti i odredbe",
168
- contribution: "doprinos",
169
- endDate: "Datum završetka",
170
- back: "Nazad",
171
- all: "Svi Izazovi",
251
+ congrats: 'Čestitamo!',
252
+ forfeitNotification: 'Nažalost, tvoj napredak je izgubljen i više nisi podoban nastaviti ovaj izazov. Pogledaj ostale dostupne izazove!',
253
+ completedNofitication: 'Uspješno si završio ovaj izazov! Istraži sljedeći i nastavi igrati kako bi zaradio/la više nagrada!',
254
+ expiredNotification: 'Nažalost, ovaj izazov je istekao i više nije dostupan za dovršavanje. Probaj neki drugi koji je još aktivan!',
255
+ terms: 'Uvjeti i odredbe',
256
+ contribution: 'doprinos',
257
+ endDate: 'Datum završetka',
258
+ back: 'Nazad',
259
+ all: 'Svi Izazovi',
172
260
  contributionType: 'Vrsta doprinosa',
173
261
  contributionRule: 'Pravilo doprinosa',
174
262
  isContributeToOne: 'Oklade se pridonose samo najranije započetom izazovu (ako postoji više započetih izazova)',
175
263
  isNotContributeToOne: 'Oklade se pridonose svim započetim izazovima',
176
264
  bonusMoney: 'Bonus novac',
177
265
  realMoney: 'Stvarni novac',
178
- mixedMoney: 'Doprinos stvarnog i bonus novca'
266
+ mixedMoney: 'Doprinos stvarnog i bonus novca',
267
+ defaultRule: 'Svi događaji - ',
268
+ fundsUsed: 'Funds Used',
269
+ sportsbookRealMoney: 'Only Real Money bets can contribute',
270
+ sportsbookBonusMoney: 'Only Bonus bets can contribute',
271
+ sportsbookMixMoney: 'Both Real Money and Bonus bets can contribute',
272
+ eligibleMatchTypes: 'Eligible Match Types',
273
+ preLiveMatchType: 'Only Pre-Match bets can contribute',
274
+ liveMatchType: 'Only Live bets can contribute',
275
+ mixMatchType: 'Both Pre-Match and Live bets can contribute',
276
+ eligibleBetTypes: 'Eligible Bet Types',
277
+ single: 'Single',
278
+ multi: 'Multi/Combi',
279
+ betBuilder: 'Only Bet Builder Bets',
280
+ nonBetBuilder: 'Only Non-Bet Builder Bets',
281
+ mixBetBuilder: 'Bet Builder & Non-Bet Builder Bets',
282
+ system: 'System',
283
+ banker: 'Only Banker Bets',
284
+ nonBanker: 'Only Non-Banker Bets',
285
+ mixBanker: 'Banker & Non-Banker Bets',
286
+ oddsPerSection: 'Odds per Selection',
287
+ totalOdds: 'Total Odds',
288
+ selections: 'Selections'
179
289
  }
180
290
  };
181
291
  export const translate = (key, customLang) => {
@@ -66,9 +66,45 @@ export var EChallengeValidityType;
66
66
  EChallengeValidityType[EChallengeValidityType["Period"] = 0] = "Period";
67
67
  EChallengeValidityType[EChallengeValidityType["Date"] = 1] = "Date";
68
68
  })(EChallengeValidityType || (EChallengeValidityType = {}));
69
+ export var EContributedFrom;
70
+ (function (EContributedFrom) {
71
+ EContributedFrom[EContributedFrom["Casino"] = 0] = "Casino";
72
+ EContributedFrom[EContributedFrom["Any"] = 1] = "Any";
73
+ EContributedFrom[EContributedFrom["Sportsbook"] = 2] = "Sportsbook";
74
+ })(EContributedFrom || (EContributedFrom = {}));
75
+ export var EMatchType;
76
+ (function (EMatchType) {
77
+ EMatchType[EMatchType["Any"] = 0] = "Any";
78
+ EMatchType[EMatchType["Live"] = 1] = "Live";
79
+ EMatchType[EMatchType["PreLive"] = 2] = "PreLive";
80
+ })(EMatchType || (EMatchType = {}));
81
+ export var EBetType;
82
+ (function (EBetType) {
83
+ EBetType[EBetType["Single"] = 0] = "Single";
84
+ EBetType[EBetType["Multiple"] = 1] = "Multiple";
85
+ EBetType[EBetType["System"] = 2] = "System";
86
+ })(EBetType || (EBetType = {}));
87
+ export var EBanker;
88
+ (function (EBanker) {
89
+ EBanker[EBanker["Any"] = 0] = "Any";
90
+ EBanker[EBanker["BankerOnly"] = 1] = "BankerOnly";
91
+ EBanker[EBanker["NotBankerOnly"] = 2] = "NotBankerOnly";
92
+ })(EBanker || (EBanker = {}));
93
+ export var EBetBuilder;
94
+ (function (EBetBuilder) {
95
+ EBetBuilder[EBetBuilder["Any"] = 0] = "Any";
96
+ EBetBuilder[EBetBuilder["BetBuilderOnly"] = 1] = "BetBuilderOnly";
97
+ EBetBuilder[EBetBuilder["NotBetBuilderOnly"] = 2] = "NotBetBuilderOnly";
98
+ })(EBetBuilder || (EBetBuilder = {}));
69
99
  export var EWalletTypes;
70
100
  (function (EWalletTypes) {
71
101
  EWalletTypes[EWalletTypes["RealCash"] = 0] = "RealCash";
72
102
  EWalletTypes[EWalletTypes["BonusMoney"] = 1] = "BonusMoney";
73
103
  EWalletTypes[EWalletTypes["Mixed"] = 2] = "Mixed";
74
104
  })(EWalletTypes || (EWalletTypes = {}));
105
+ export var EDetailsTabs;
106
+ (function (EDetailsTabs) {
107
+ EDetailsTabs[EDetailsTabs["Levels"] = 0] = "Levels";
108
+ EDetailsTabs[EDetailsTabs["GamesOrEvents"] = 1] = "GamesOrEvents";
109
+ EDetailsTabs[EDetailsTabs["Rules"] = 2] = "Rules";
110
+ })(EDetailsTabs || (EDetailsTabs = {}));