@smartico/public-api 0.0.125 → 0.0.126
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/Jackpots/index.d.ts +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +12 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Jackpots/index.ts +15 -0
- package/src/index.ts +2 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './GetJackpotsPotsRequest';
|
|
2
|
+
export * from './GetJackpotsPotsResponse';
|
|
3
|
+
export * from './GetJackpotsRequest';
|
|
4
|
+
export * from './GetJackpotsResponse';
|
|
5
|
+
export * from './JackPotWinner';
|
|
6
|
+
export * from './JackpotContributionType';
|
|
7
|
+
export * from './JackpotDetails';
|
|
8
|
+
export * from './JackpotPot';
|
|
9
|
+
export * from './JackpotPublicMeta';
|
|
10
|
+
export * from './JackpotType';
|
|
11
|
+
export * from './JackpotWinPush';
|
|
12
|
+
export * from './JackpotsOptinRequest';
|
|
13
|
+
export * from './JackpotsOptinResponse';
|
|
14
|
+
export * from './JackpotsOptoutRequest';
|
|
15
|
+
export * from './JackpotsOptoutResponse';
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2924,6 +2924,17 @@ var marketsInfo = [{
|
|
|
2924
2924
|
var _QuizMarketPerSport;
|
|
2925
2925
|
var QuizMarketPerSport = (_QuizMarketPerSport = {}, _QuizMarketPerSport[exports.QuizSportType.Basketball] = [exports.QuizMarketType.One_Two, exports.QuizMarketType.Overtime, exports.QuizMarketType.OneXTwo, exports.QuizMarketType.OddEven, exports.QuizMarketType.OddEvenHomeAway, exports.QuizMarketType.DoubleChance], _QuizMarketPerSport[exports.QuizSportType.Soccer] = [exports.QuizMarketType.OneXTwo, exports.QuizMarketType.OneXTwoHalftime, exports.QuizMarketType.HalftimeFulltime, exports.QuizMarketType.FirstGoal, exports.QuizMarketType.LastGoal, exports.QuizMarketType.DoubleChance, exports.QuizMarketType.OverUnder2_5, exports.QuizMarketType.OverUnder1_5Halftime, exports.QuizMarketType.OverUnder1_5__2ndHalf, exports.QuizMarketType.RedCard, exports.QuizMarketType.TotalCorners8_5, exports.QuizMarketType.TotalCorners9_5, exports.QuizMarketType.Corners1x2], _QuizMarketPerSport[exports.QuizSportType.Tennis] = [exports.QuizMarketType.One_Two, exports.QuizMarketType.FirstSet, exports.QuizMarketType.SecondSet, exports.QuizMarketType.ThirdSet, exports.QuizMarketType.FourthSet, exports.QuizMarketType.FifthSet, exports.QuizMarketType.PlayerOneWinsOneSet, exports.QuizMarketType.PlayerTwoWinsOneSet, exports.QuizMarketType.OddEven], _QuizMarketPerSport);
|
|
2926
2926
|
|
|
2927
|
+
exports.JackpotContributionType = void 0;
|
|
2928
|
+
(function (JackpotContributionType) {
|
|
2929
|
+
JackpotContributionType[JackpotContributionType["Fixed"] = 1] = "Fixed";
|
|
2930
|
+
JackpotContributionType[JackpotContributionType["Percentage"] = 2] = "Percentage";
|
|
2931
|
+
})(exports.JackpotContributionType || (exports.JackpotContributionType = {}));
|
|
2932
|
+
|
|
2933
|
+
exports.JackpotType = void 0;
|
|
2934
|
+
(function (JackpotType) {
|
|
2935
|
+
JackpotType[JackpotType["Main"] = 1] = "Main";
|
|
2936
|
+
})(exports.JackpotType || (exports.JackpotType = {}));
|
|
2937
|
+
|
|
2927
2938
|
exports.AchCategoryTransform = AchCategoryTransform;
|
|
2928
2939
|
exports.CookieStore = CookieStore;
|
|
2929
2940
|
exports.CoreUtils = CoreUtils;
|