@smartico/public-api 0.0.121 → 0.0.122
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/Base/ClassId.d.ts +13 -0
- package/dist/Jackpots/GetJackpotsPotsRequest.d.ts +4 -0
- package/dist/Jackpots/GetJackpotsPotsResponse.d.ts +5 -0
- package/dist/Jackpots/GetJackpotsRequest.d.ts +4 -0
- package/dist/Jackpots/GetJackpotsResponse.d.ts +5 -0
- package/dist/Jackpots/JackpotContributionType.d.ts +5 -0
- package/dist/Jackpots/JackpotDetails.d.ts +17 -0
- package/dist/Jackpots/JackpotPot.d.ts +7 -0
- package/dist/Jackpots/JackpotPublicMeta.d.ts +6 -0
- package/dist/Jackpots/JackpotType.d.ts +4 -0
- package/dist/Jackpots/JackpotsOptinRequest.d.ts +4 -0
- package/dist/Jackpots/JackpotsOptinResponse.d.ts +3 -0
- package/dist/Jackpots/JackpotsOptoutRequest.d.ts +4 -0
- package/dist/Jackpots/JackpotsOptoutResponse.d.ts +3 -0
- package/dist/MiniGames/SAWGameType.d.ts +3 -1
- package/dist/MiniGames/SAWPrizeDropAknowledgeRequest.d.ts +4 -0
- package/dist/MiniGames/SAWPrizeDropAknowledgeResponse.d.ts +4 -0
- package/dist/MiniGames/SAWPrizeDropWinPush.d.ts +7 -0
- package/dist/Quiz/MarketsAnswersType.d.ts +22 -0
- package/dist/Quiz/MarketsInfo.d.ts +2 -1
- package/dist/Quiz/index.d.ts +1 -0
- package/dist/Store/GetStoreHistoryRequest.d.ts +5 -0
- package/dist/Store/GetStoreHistoryResponse.d.ts +6 -0
- package/dist/Store/StorItemPruchased.d.ts +6 -0
- package/dist/index.js +303 -11
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +305 -12
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Base/ClassId.ts +21 -0
- package/src/Jackpots/GetJackpotsPotsRequest.ts +5 -0
- package/src/Jackpots/GetJackpotsPotsResponse.ts +8 -0
- package/src/Jackpots/GetJackpotsRequest.ts +7 -0
- package/src/Jackpots/GetJackpotsResponse.ts +9 -0
- package/src/Jackpots/JackpotContributionType.ts +7 -0
- package/src/Jackpots/JackpotDetails.ts +20 -0
- package/src/Jackpots/JackpotPot.ts +10 -0
- package/src/Jackpots/JackpotPublicMeta.ts +8 -0
- package/src/Jackpots/JackpotType.ts +8 -0
- package/src/Jackpots/JackpotsOptinRequest.ts +7 -0
- package/src/Jackpots/JackpotsOptinResponse.ts +5 -0
- package/src/Jackpots/JackpotsOptoutRequest.ts +7 -0
- package/src/Jackpots/JackpotsOptoutResponse.ts +5 -0
- package/src/Jackpots/jackpotsWSApi.zip +0 -0
- package/src/MiniGames/SAWGameType.ts +5 -2
- package/src/MiniGames/SAWPrizeDropAknowledgeRequest.ts +5 -0
- package/src/MiniGames/SAWPrizeDropAknowledgeResponse.ts +5 -0
- package/src/MiniGames/SAWPrizeDropWinPush.ts +8 -0
- package/src/Quiz/MarketsAnswersType.ts +22 -0
- package/src/Quiz/MarketsInfo.ts +185 -8
- package/src/Quiz/index.ts +2 -1
- package/src/Store/GetStoreHistoryRequest.ts +6 -0
- package/src/Store/GetStoreHistoryResponse.ts +7 -0
- package/src/Store/StorItemPruchased.ts +8 -0
package/dist/index.modern.mjs
CHANGED
|
@@ -68,6 +68,8 @@ var ClassId;
|
|
|
68
68
|
ClassId[ClassId["GET_ACH_CATEGORIES_RESPONSE"] = 538] = "GET_ACH_CATEGORIES_RESPONSE";
|
|
69
69
|
ClassId[ClassId["ACHIEVEMENT_CLAIM_PRIZE_REQUEST"] = 539] = "ACHIEVEMENT_CLAIM_PRIZE_REQUEST";
|
|
70
70
|
ClassId[ClassId["ACHIEVEMENT_CLAIM_PRIZE_RESPONSE"] = 540] = "ACHIEVEMENT_CLAIM_PRIZE_RESPONSE";
|
|
71
|
+
ClassId[ClassId["ACH_SHOP_ITEM_HISTORY_REQUEST"] = 541] = "ACH_SHOP_ITEM_HISTORY_REQUEST";
|
|
72
|
+
ClassId[ClassId["ACH_SHOP_ITEM_HISTORY_RESPONSE"] = 542] = "ACH_SHOP_ITEM_HISTORY_RESPONSE";
|
|
71
73
|
ClassId[ClassId["GET_BONUSES_REQUEST"] = 600] = "GET_BONUSES_REQUEST";
|
|
72
74
|
ClassId[ClassId["GET_BONUSES_RESPONSE"] = 601] = "GET_BONUSES_RESPONSE";
|
|
73
75
|
ClassId[ClassId["CLAIM_BONUS_REQUEST"] = 602] = "CLAIM_BONUS_REQUEST";
|
|
@@ -80,6 +82,18 @@ var ClassId;
|
|
|
80
82
|
ClassId[ClassId["SAW_AKNOWLEDGE_RESPONSE"] = 705] = "SAW_AKNOWLEDGE_RESPONSE";
|
|
81
83
|
ClassId[ClassId["SAW_SPINS_COUNT_PUSH"] = 706] = "SAW_SPINS_COUNT_PUSH";
|
|
82
84
|
ClassId[ClassId["SAW_SHOW_SPIN_PUSH"] = 707] = "SAW_SHOW_SPIN_PUSH";
|
|
85
|
+
ClassId[ClassId["SAW_PRIZE_DROP_WIN_PUSH"] = 708] = "SAW_PRIZE_DROP_WIN_PUSH";
|
|
86
|
+
ClassId[ClassId["SAW_PRIZE_DROP_WIN_AKNOWLEDGE_REQUEST"] = 709] = "SAW_PRIZE_DROP_WIN_AKNOWLEDGE_REQUEST";
|
|
87
|
+
ClassId[ClassId["SAW_PRIZE_DROP_WIN_AKNOWLEDGE_RESPONSE"] = 710] = "SAW_PRIZE_DROP_WIN_AKNOWLEDGE_RESPONSE";
|
|
88
|
+
ClassId[ClassId["JP_GET_JACKPOTS_REQUEST"] = 800] = "JP_GET_JACKPOTS_REQUEST";
|
|
89
|
+
ClassId[ClassId["JP_GET_JACKPOTS_RESPONSE"] = 801] = "JP_GET_JACKPOTS_RESPONSE";
|
|
90
|
+
ClassId[ClassId["JP_GET_LATEST_POTS_REQUEST"] = 802] = "JP_GET_LATEST_POTS_REQUEST";
|
|
91
|
+
ClassId[ClassId["JP_GET_LATEST_POTS_RESPONSE"] = 803] = "JP_GET_LATEST_POTS_RESPONSE";
|
|
92
|
+
ClassId[ClassId["JP_OPTIN_REQUEST"] = 804] = "JP_OPTIN_REQUEST";
|
|
93
|
+
ClassId[ClassId["JP_OPTIN_RESPONSE"] = 805] = "JP_OPTIN_RESPONSE";
|
|
94
|
+
ClassId[ClassId["JP_OPTOUT_REQUEST"] = 806] = "JP_OPTOUT_REQUEST";
|
|
95
|
+
ClassId[ClassId["JP_OPTOUT_RESPONSE"] = 807] = "JP_OPTOUT_RESPONSE";
|
|
96
|
+
// JP_WIN_PUSH = 808,
|
|
83
97
|
ClassId[ClassId["REGISTER_PUSH_NOTIFICATIONS_TOKEN_REQ"] = 1003] = "REGISTER_PUSH_NOTIFICATIONS_TOKEN_REQ";
|
|
84
98
|
ClassId[ClassId["REGISTER_PUSH_NOTIFICATIONS_TOKEN_RESP"] = 2003] = "REGISTER_PUSH_NOTIFICATIONS_TOKEN_RESP";
|
|
85
99
|
ClassId[ClassId["CLIENT_DEBUG_REQUEST"] = 77777] = "CLIENT_DEBUG_REQUEST";
|
|
@@ -207,6 +221,7 @@ var SAWGameType;
|
|
|
207
221
|
SAWGameType[SAWGameType["ScratchCard"] = 2] = "ScratchCard";
|
|
208
222
|
SAWGameType[SAWGameType["MatchX"] = 3] = "MatchX";
|
|
209
223
|
SAWGameType[SAWGameType["GiftBox"] = 4] = "GiftBox";
|
|
224
|
+
SAWGameType[SAWGameType["PrizeDrop"] = 5] = "PrizeDrop";
|
|
210
225
|
})(SAWGameType || (SAWGameType = {}));
|
|
211
226
|
var SAWGameTypeName;
|
|
212
227
|
(function (SAWGameTypeName) {
|
|
@@ -214,6 +229,7 @@ var SAWGameTypeName;
|
|
|
214
229
|
SAWGameTypeName["ScratchCard"] = "scratch";
|
|
215
230
|
SAWGameTypeName["MatchX"] = "matchx";
|
|
216
231
|
SAWGameTypeName["GiftBox"] = "giftbox";
|
|
232
|
+
SAWGameTypeName["PrizeDrop"] = "prizedrop";
|
|
217
233
|
SAWGameTypeName["Unknown"] = "unknown";
|
|
218
234
|
})(SAWGameTypeName || (SAWGameTypeName = {}));
|
|
219
235
|
/** @hidden */
|
|
@@ -222,7 +238,8 @@ const SAWGameTypeNamed = type => {
|
|
|
222
238
|
[SAWGameType.SpinAWheel]: SAWGameTypeName.SpinAWheel,
|
|
223
239
|
[SAWGameType.ScratchCard]: SAWGameTypeName.ScratchCard,
|
|
224
240
|
[SAWGameType.MatchX]: SAWGameTypeName.MatchX,
|
|
225
|
-
[SAWGameType.GiftBox]: SAWGameTypeName.GiftBox
|
|
241
|
+
[SAWGameType.GiftBox]: SAWGameTypeName.GiftBox,
|
|
242
|
+
[SAWGameType.PrizeDrop]: SAWGameTypeName.PrizeDrop
|
|
226
243
|
}[type] || SAWGameTypeName.Unknown;
|
|
227
244
|
};
|
|
228
245
|
|
|
@@ -1803,25 +1820,301 @@ var QuizMarketType;
|
|
|
1803
1820
|
QuizMarketType[QuizMarketType["LastGoal"] = 25] = "LastGoal";
|
|
1804
1821
|
})(QuizMarketType || (QuizMarketType = {}));
|
|
1805
1822
|
|
|
1806
|
-
|
|
1807
|
-
|
|
1823
|
+
var MarketsValueType;
|
|
1824
|
+
(function (MarketsValueType) {
|
|
1825
|
+
MarketsValueType["HomeTeam"] = "1";
|
|
1826
|
+
MarketsValueType["AwayTeam"] = "2";
|
|
1827
|
+
MarketsValueType["Draw"] = "x";
|
|
1828
|
+
MarketsValueType["HomeTeamHomeTeam"] = "1/1";
|
|
1829
|
+
MarketsValueType["HomeTeamDraw"] = "1/x";
|
|
1830
|
+
MarketsValueType["HomeTeamAwayTeam"] = "1/2";
|
|
1831
|
+
MarketsValueType["DrawHomeTeam"] = "x/1";
|
|
1832
|
+
MarketsValueType["DrawDraw"] = "x/x";
|
|
1833
|
+
MarketsValueType["DrawAwayTeam"] = "x/2";
|
|
1834
|
+
MarketsValueType["AwayTeamHomeTeam"] = "2/1";
|
|
1835
|
+
MarketsValueType["AwayTeamDraw"] = "2/x";
|
|
1836
|
+
MarketsValueType["AwayTeamAwayTeam"] = "2/2";
|
|
1837
|
+
MarketsValueType["Yes"] = "yes";
|
|
1838
|
+
MarketsValueType["No"] = "no";
|
|
1839
|
+
MarketsValueType["Odd"] = "odd";
|
|
1840
|
+
MarketsValueType["Even"] = "even";
|
|
1841
|
+
MarketsValueType["HomeOdd"] = "1/odd";
|
|
1842
|
+
MarketsValueType["HomeEven"] = "1/even";
|
|
1843
|
+
MarketsValueType["AwayOdd"] = "2/odd";
|
|
1844
|
+
MarketsValueType["AwayEven"] = "2/even";
|
|
1845
|
+
})(MarketsValueType || (MarketsValueType = {}));
|
|
1846
|
+
|
|
1847
|
+
const quizAnswerHomeTeamReplacementText = '{quiz_home_team}';
|
|
1848
|
+
const quizAnswerAwayTeamReplacementText = '{quiz_away_team}';
|
|
1849
|
+
const drawReplacementText = '{quiz_draw}';
|
|
1850
|
+
const quizYesReplacementText = '{yes}';
|
|
1851
|
+
const quizNoReplacementText = '{no}';
|
|
1852
|
+
const quizOddReplacementText = '{odd}';
|
|
1853
|
+
const quizEvenReplacementText = '{even}';
|
|
1854
|
+
const yesNoAnswers = [{
|
|
1855
|
+
text: quizYesReplacementText,
|
|
1856
|
+
value: MarketsValueType.Yes
|
|
1857
|
+
}, {
|
|
1858
|
+
text: quizNoReplacementText,
|
|
1859
|
+
value: MarketsValueType.No
|
|
1860
|
+
}];
|
|
1861
|
+
const homeAwayAnswers = [{
|
|
1862
|
+
text: quizAnswerHomeTeamReplacementText,
|
|
1863
|
+
value: MarketsValueType.HomeTeam
|
|
1864
|
+
}, {
|
|
1865
|
+
text: quizAnswerAwayTeamReplacementText,
|
|
1866
|
+
value: MarketsValueType.AwayTeam
|
|
1867
|
+
}];
|
|
1868
|
+
const homeAwayDrawAnswers = [...homeAwayAnswers, {
|
|
1869
|
+
text: drawReplacementText,
|
|
1870
|
+
value: MarketsValueType.Draw
|
|
1871
|
+
}];
|
|
1808
1872
|
const marketsInfo = [{
|
|
1809
1873
|
type: QuizMarketType.OneXTwo,
|
|
1810
|
-
name: '
|
|
1874
|
+
name: '1x2',
|
|
1811
1875
|
question: {
|
|
1812
1876
|
text: 'Who will win the match ?',
|
|
1813
|
-
trKey: '
|
|
1877
|
+
trKey: 'quizQuestion_1x2'
|
|
1878
|
+
},
|
|
1879
|
+
answers: homeAwayDrawAnswers
|
|
1880
|
+
}, {
|
|
1881
|
+
type: QuizMarketType.OneXTwoHalftime,
|
|
1882
|
+
name: '1x2 Halftime',
|
|
1883
|
+
question: {
|
|
1884
|
+
text: 'Who will lead the first half of the match ?',
|
|
1885
|
+
trKey: 'quizQuestion_x2half'
|
|
1886
|
+
},
|
|
1887
|
+
answers: homeAwayDrawAnswers
|
|
1888
|
+
}, {
|
|
1889
|
+
type: QuizMarketType.HalftimeFulltime,
|
|
1890
|
+
name: 'Halftime / Fulltime',
|
|
1891
|
+
question: {
|
|
1892
|
+
text: 'Who will lead the first half and who will win the match ?',
|
|
1893
|
+
trKey: 'quizQuestion__HalftimeFulltime'
|
|
1814
1894
|
},
|
|
1815
1895
|
answers: [{
|
|
1816
|
-
text: quizAnswerHomeTeamReplacementText
|
|
1817
|
-
|
|
1896
|
+
text: `${quizAnswerHomeTeamReplacementText} / ${quizAnswerHomeTeamReplacementText}`,
|
|
1897
|
+
value: MarketsValueType.HomeTeamHomeTeam
|
|
1898
|
+
}, {
|
|
1899
|
+
text: `${quizAnswerHomeTeamReplacementText} / ${drawReplacementText}`,
|
|
1900
|
+
value: MarketsValueType.HomeTeamDraw
|
|
1818
1901
|
}, {
|
|
1819
|
-
text:
|
|
1820
|
-
|
|
1902
|
+
text: `${quizAnswerHomeTeamReplacementText} / ${quizAnswerAwayTeamReplacementText}`,
|
|
1903
|
+
value: MarketsValueType.HomeTeamAwayTeam
|
|
1821
1904
|
}, {
|
|
1822
|
-
text:
|
|
1823
|
-
|
|
1905
|
+
text: `${drawReplacementText} / ${quizAnswerHomeTeamReplacementText}`,
|
|
1906
|
+
value: MarketsValueType.DrawHomeTeam
|
|
1907
|
+
}, {
|
|
1908
|
+
text: `${drawReplacementText} / ${drawReplacementText}`,
|
|
1909
|
+
value: MarketsValueType.DrawDraw
|
|
1910
|
+
}, {
|
|
1911
|
+
text: `${drawReplacementText} / ${quizAnswerAwayTeamReplacementText}`,
|
|
1912
|
+
value: MarketsValueType.DrawAwayTeam
|
|
1913
|
+
}, {
|
|
1914
|
+
text: `${quizAnswerAwayTeamReplacementText} / ${quizAnswerHomeTeamReplacementText}`,
|
|
1915
|
+
value: MarketsValueType.AwayTeamHomeTeam
|
|
1916
|
+
}, {
|
|
1917
|
+
text: `${quizAnswerAwayTeamReplacementText} / ${drawReplacementText}`,
|
|
1918
|
+
value: MarketsValueType.AwayTeamDraw
|
|
1919
|
+
}, {
|
|
1920
|
+
text: `${quizAnswerAwayTeamReplacementText} / ${quizAnswerAwayTeamReplacementText}`,
|
|
1921
|
+
value: MarketsValueType.AwayTeamAwayTeam
|
|
1824
1922
|
}]
|
|
1923
|
+
}, {
|
|
1924
|
+
type: QuizMarketType.FirstGoal,
|
|
1925
|
+
name: 'First Goal',
|
|
1926
|
+
question: {
|
|
1927
|
+
text: 'Who will score the first goal ?',
|
|
1928
|
+
trKey: 'quizQuestion_firstGoal'
|
|
1929
|
+
},
|
|
1930
|
+
answers: homeAwayDrawAnswers
|
|
1931
|
+
}, {
|
|
1932
|
+
type: QuizMarketType.LastGoal,
|
|
1933
|
+
name: 'Last Goal',
|
|
1934
|
+
question: {
|
|
1935
|
+
text: 'Who will score the last goal ?',
|
|
1936
|
+
trKey: 'quizQuestion_lastGoal'
|
|
1937
|
+
},
|
|
1938
|
+
answers: homeAwayAnswers
|
|
1939
|
+
}, {
|
|
1940
|
+
type: QuizMarketType.DoubleChance,
|
|
1941
|
+
name: 'Double Chance',
|
|
1942
|
+
question: {
|
|
1943
|
+
text: 'Who will win the match? Choose a combination: ?',
|
|
1944
|
+
trKey: 'quizQuestion_doubleChance'
|
|
1945
|
+
},
|
|
1946
|
+
answers: [{
|
|
1947
|
+
text: `${drawReplacementText} or ${quizAnswerHomeTeamReplacementText}`,
|
|
1948
|
+
value: MarketsValueType.HomeTeamDraw
|
|
1949
|
+
}, {
|
|
1950
|
+
text: `${quizAnswerHomeTeamReplacementText} or ${quizAnswerAwayTeamReplacementText}`,
|
|
1951
|
+
value: MarketsValueType.HomeTeamAwayTeam
|
|
1952
|
+
}, {
|
|
1953
|
+
text: `${drawReplacementText} or ${quizAnswerAwayTeamReplacementText}`,
|
|
1954
|
+
value: MarketsValueType.AwayTeamDraw
|
|
1955
|
+
}]
|
|
1956
|
+
}, {
|
|
1957
|
+
type: QuizMarketType.OverUnder2_5,
|
|
1958
|
+
name: 'Over/Under 2.5',
|
|
1959
|
+
question: {
|
|
1960
|
+
text: 'Will there be 3 or more goals in the match?',
|
|
1961
|
+
trKey: 'quizQuestion_overUnder2_5'
|
|
1962
|
+
},
|
|
1963
|
+
answers: yesNoAnswers
|
|
1964
|
+
}, {
|
|
1965
|
+
type: QuizMarketType.OverUnder1_5Halftime,
|
|
1966
|
+
name: 'Over/Under 1.5 Halftime',
|
|
1967
|
+
question: {
|
|
1968
|
+
text: 'Will there be 2 or more goals in the first half?',
|
|
1969
|
+
trKey: 'quizQuestion_overUnder1_5Halftime'
|
|
1970
|
+
},
|
|
1971
|
+
answers: yesNoAnswers
|
|
1972
|
+
}, {
|
|
1973
|
+
type: QuizMarketType.OverUnder1_5__2ndHalf,
|
|
1974
|
+
name: 'Over/Under 1.5 2nd Half',
|
|
1975
|
+
question: {
|
|
1976
|
+
text: 'Will there be 2 or more goals in the second half?',
|
|
1977
|
+
trKey: 'quizQuestion_overUnder1_5__2ndHalf'
|
|
1978
|
+
},
|
|
1979
|
+
answers: yesNoAnswers
|
|
1980
|
+
}, {
|
|
1981
|
+
type: QuizMarketType.RedCard,
|
|
1982
|
+
name: 'Red Card',
|
|
1983
|
+
question: {
|
|
1984
|
+
text: 'Will there be a red card in the match?',
|
|
1985
|
+
trKey: 'quizQuestion_redCard'
|
|
1986
|
+
},
|
|
1987
|
+
answers: yesNoAnswers
|
|
1988
|
+
}, {
|
|
1989
|
+
type: QuizMarketType.TotalCorners8_5,
|
|
1990
|
+
name: 'Total Corners 8.5',
|
|
1991
|
+
question: {
|
|
1992
|
+
text: 'Will there be 9 or more corners in the match?',
|
|
1993
|
+
trKey: 'quizQuestion_totalCorners8_5'
|
|
1994
|
+
},
|
|
1995
|
+
answers: yesNoAnswers
|
|
1996
|
+
}, {
|
|
1997
|
+
type: QuizMarketType.TotalCorners9_5,
|
|
1998
|
+
name: 'Total Corners 9.5',
|
|
1999
|
+
question: {
|
|
2000
|
+
text: 'Will there be 10 or more corners in the match?',
|
|
2001
|
+
trKey: 'quizQuestion_totalCorners9_5'
|
|
2002
|
+
},
|
|
2003
|
+
answers: yesNoAnswers
|
|
2004
|
+
}, {
|
|
2005
|
+
type: QuizMarketType.Corners1x2,
|
|
2006
|
+
name: 'Corners 1x2',
|
|
2007
|
+
question: {
|
|
2008
|
+
text: 'Which team will have more corners in the match?',
|
|
2009
|
+
trKey: 'quizQuestion_corners1x2'
|
|
2010
|
+
},
|
|
2011
|
+
answers: homeAwayAnswers
|
|
2012
|
+
}, {
|
|
2013
|
+
type: QuizMarketType.One_Two,
|
|
2014
|
+
name: '1-2',
|
|
2015
|
+
question: {
|
|
2016
|
+
text: 'Who will win the match ?',
|
|
2017
|
+
trKey: 'quizQuestion_1-2'
|
|
2018
|
+
},
|
|
2019
|
+
answers: homeAwayAnswers
|
|
2020
|
+
}, {
|
|
2021
|
+
type: QuizMarketType.Overtime,
|
|
2022
|
+
name: 'Overtime',
|
|
2023
|
+
question: {
|
|
2024
|
+
text: 'Will there be overtime in the match?',
|
|
2025
|
+
trKey: 'quizQuestion_overtime'
|
|
2026
|
+
},
|
|
2027
|
+
answers: yesNoAnswers
|
|
2028
|
+
}, {
|
|
2029
|
+
type: QuizMarketType.OddEven,
|
|
2030
|
+
name: 'Odd/Even',
|
|
2031
|
+
question: {
|
|
2032
|
+
text: 'Is the sum of all points scored in the game going to be an odd number or even?',
|
|
2033
|
+
trKey: 'quizQuestion_oddEven'
|
|
2034
|
+
},
|
|
2035
|
+
answers: [{
|
|
2036
|
+
text: quizOddReplacementText,
|
|
2037
|
+
value: MarketsValueType.Odd
|
|
2038
|
+
}, {
|
|
2039
|
+
text: quizEvenReplacementText,
|
|
2040
|
+
value: MarketsValueType.Even
|
|
2041
|
+
}]
|
|
2042
|
+
}, {
|
|
2043
|
+
type: QuizMarketType.OddEvenHomeAway,
|
|
2044
|
+
name: 'Odd/Even Home/Away',
|
|
2045
|
+
question: {
|
|
2046
|
+
text: 'Which team will win and what will be the sum of the points (Odd or Even)?',
|
|
2047
|
+
trKey: 'quizQuestion_oddEvenHomeAway'
|
|
2048
|
+
},
|
|
2049
|
+
answers: [{
|
|
2050
|
+
text: `${quizAnswerHomeTeamReplacementText} - ${quizOddReplacementText}`,
|
|
2051
|
+
value: MarketsValueType.HomeOdd
|
|
2052
|
+
}, {
|
|
2053
|
+
text: `${quizAnswerHomeTeamReplacementText} - ${quizEvenReplacementText}`,
|
|
2054
|
+
value: MarketsValueType.HomeEven
|
|
2055
|
+
}, {
|
|
2056
|
+
text: `${quizAnswerAwayTeamReplacementText} - ${quizOddReplacementText}`,
|
|
2057
|
+
value: MarketsValueType.AwayOdd
|
|
2058
|
+
}, {
|
|
2059
|
+
text: `${quizAnswerAwayTeamReplacementText} - ${quizEvenReplacementText}`,
|
|
2060
|
+
value: MarketsValueType.AwayEven
|
|
2061
|
+
}]
|
|
2062
|
+
}, {
|
|
2063
|
+
type: QuizMarketType.FirstSet,
|
|
2064
|
+
name: 'First Set',
|
|
2065
|
+
question: {
|
|
2066
|
+
text: 'Who will win the first set ?',
|
|
2067
|
+
trKey: 'quizQuestion_firstSet'
|
|
2068
|
+
},
|
|
2069
|
+
answers: homeAwayAnswers
|
|
2070
|
+
}, {
|
|
2071
|
+
type: QuizMarketType.SecondSet,
|
|
2072
|
+
name: 'Second Set',
|
|
2073
|
+
question: {
|
|
2074
|
+
text: 'Who will win the second set ?',
|
|
2075
|
+
trKey: 'quizQuestion_secondSet'
|
|
2076
|
+
},
|
|
2077
|
+
answers: homeAwayAnswers
|
|
2078
|
+
}, {
|
|
2079
|
+
type: QuizMarketType.ThirdSet,
|
|
2080
|
+
name: 'Third Set',
|
|
2081
|
+
question: {
|
|
2082
|
+
text: 'Who will win the third set ?',
|
|
2083
|
+
trKey: 'quizQuestion_thirdSet'
|
|
2084
|
+
},
|
|
2085
|
+
answers: homeAwayAnswers
|
|
2086
|
+
}, {
|
|
2087
|
+
type: QuizMarketType.FourthSet,
|
|
2088
|
+
name: 'Fourth Set',
|
|
2089
|
+
question: {
|
|
2090
|
+
text: 'Who will win the fourth set ?',
|
|
2091
|
+
trKey: 'quizQuestion_fourthSet'
|
|
2092
|
+
},
|
|
2093
|
+
answers: homeAwayAnswers
|
|
2094
|
+
}, {
|
|
2095
|
+
type: QuizMarketType.FifthSet,
|
|
2096
|
+
name: 'Fifth Set',
|
|
2097
|
+
question: {
|
|
2098
|
+
text: 'Who will win the fifth set ?',
|
|
2099
|
+
trKey: 'quizQuestion_fifthSet'
|
|
2100
|
+
},
|
|
2101
|
+
answers: homeAwayAnswers
|
|
2102
|
+
}, {
|
|
2103
|
+
type: QuizMarketType.PlayerOneWinsOneSet,
|
|
2104
|
+
name: 'Player One Wins One Set',
|
|
2105
|
+
question: {
|
|
2106
|
+
text: 'Will Player One win at least one set?',
|
|
2107
|
+
trKey: 'quizQuestion_playerOneWinsOneSet'
|
|
2108
|
+
},
|
|
2109
|
+
answers: yesNoAnswers
|
|
2110
|
+
}, {
|
|
2111
|
+
type: QuizMarketType.PlayerTwoWinsOneSet,
|
|
2112
|
+
name: 'Player Two Wins One Set',
|
|
2113
|
+
question: {
|
|
2114
|
+
text: 'Will Player Two win at least one set?',
|
|
2115
|
+
trKey: 'quizQuestion_playerTwoWinsOneSet'
|
|
2116
|
+
},
|
|
2117
|
+
answers: yesNoAnswers
|
|
1825
2118
|
}];
|
|
1826
2119
|
|
|
1827
2120
|
const QuizMarketPerSport = {
|
|
@@ -1830,5 +2123,5 @@ const QuizMarketPerSport = {
|
|
|
1830
2123
|
[QuizSportType.Tennis]: [QuizMarketType.One_Two, QuizMarketType.FirstSet, QuizMarketType.SecondSet, QuizMarketType.ThirdSet, QuizMarketType.FourthSet, QuizMarketType.FifthSet, QuizMarketType.PlayerOneWinsOneSet, QuizMarketType.PlayerTwoWinsOneSet, QuizMarketType.OddEven]
|
|
1831
2124
|
};
|
|
1832
2125
|
|
|
1833
|
-
export { AchCategoryTransform, AchievementStatus, AchievementTaskType, AchievementType, ActivityTypeLimited, BuyStoreItemErrorCode, ClassId, CookieStore, CoreUtils, GetLevelMapResponseTransform, InboxMessageBodyTransform, InboxMessageType, InboxMessagesTransform, LeaderBoardPeriodType, MiniGamePrizeTypeName, MiniGamePrizeTypeNamed, PublicLabelSettings, QuizMarketPerSport, QuizMarketType, QuizSportType, SAWAcknowledgeType, SAWAskForUsername, SAWBuyInType, SAWBuyInTypeName, SAWBuyInTypeNamed, SAWGameType, SAWGameTypeName, SAWGameTypeNamed, SAWPrizeType, SAWSpinErrorCode, SAWTemplatesTransform, SAWUtils, SAWWinSoundFiles, SAWWinSoundType, ScheduledMissionType, SmarticoAPI, StoreCategoryTransform, StoreItemTransform, StoreItemType, TournamentInstanceStatus, TournamentInstanceStatusName, TournamentItemsTransform, TournamentRegistrationError, TournamentRegistrationStatus, TournamentRegistrationStatusName, TournamentRegistrationStatusNamed, TournamentRegistrationType, TournamentRegistrationTypeGetName, TournamentType, TournamentUtils, TranslationArea, UserAchievementTransform, marketsInfo, quizSupportedSports, tournamentInfoItemTransform };
|
|
2126
|
+
export { AchCategoryTransform, AchievementStatus, AchievementTaskType, AchievementType, ActivityTypeLimited, BuyStoreItemErrorCode, ClassId, CookieStore, CoreUtils, GetLevelMapResponseTransform, InboxMessageBodyTransform, InboxMessageType, InboxMessagesTransform, LeaderBoardPeriodType, MarketsValueType, MiniGamePrizeTypeName, MiniGamePrizeTypeNamed, PublicLabelSettings, QuizMarketPerSport, QuizMarketType, QuizSportType, SAWAcknowledgeType, SAWAskForUsername, SAWBuyInType, SAWBuyInTypeName, SAWBuyInTypeNamed, SAWGameType, SAWGameTypeName, SAWGameTypeNamed, SAWPrizeType, SAWSpinErrorCode, SAWTemplatesTransform, SAWUtils, SAWWinSoundFiles, SAWWinSoundType, ScheduledMissionType, SmarticoAPI, StoreCategoryTransform, StoreItemTransform, StoreItemType, TournamentInstanceStatus, TournamentInstanceStatusName, TournamentItemsTransform, TournamentRegistrationError, TournamentRegistrationStatus, TournamentRegistrationStatusName, TournamentRegistrationStatusNamed, TournamentRegistrationType, TournamentRegistrationTypeGetName, TournamentType, TournamentUtils, TranslationArea, UserAchievementTransform, marketsInfo, quizSupportedSports, tournamentInfoItemTransform };
|
|
1834
2127
|
//# sourceMappingURL=index.modern.mjs.map
|