@smartico/public-api 0.0.169 → 0.0.170
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/Quiz/MarketsType.d.ts +0 -1
- package/dist/index.js +46 -38
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +46 -38
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Quiz/MarketsInfo.ts +40 -40
- package/src/Quiz/MarketsPerSport.ts +1 -1
- package/src/Quiz/MarketsType.ts +1 -1
package/package.json
CHANGED
package/src/Quiz/MarketsInfo.ts
CHANGED
|
@@ -36,46 +36,46 @@ export const marketsInfo = [
|
|
|
36
36
|
question: { text: 'Who will lead the first half of the match ?', trKey: 'quizQuestion_x2half' },
|
|
37
37
|
answers: homeAwayDrawAnswers,
|
|
38
38
|
},
|
|
39
|
-
{
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
},
|
|
39
|
+
// {
|
|
40
|
+
// type: SAWGPMarketType.HalftimeFulltime,
|
|
41
|
+
// name: 'Halftime / Fulltime',
|
|
42
|
+
// question: { text: 'Who will lead the first half and who will win the match ?', trKey: 'quizQuestion__HalftimeFulltime' },
|
|
43
|
+
// answers: [
|
|
44
|
+
// {
|
|
45
|
+
// text: `${quizAnswerHomeTeamReplacementText} / ${quizAnswerHomeTeamReplacementText}`,
|
|
46
|
+
// value: QuizAnswersValueType.HomeTeamHomeTeam,
|
|
47
|
+
// },
|
|
48
|
+
// {
|
|
49
|
+
// text: `${quizAnswerHomeTeamReplacementText} / ${quizDrawReplacementText}`,
|
|
50
|
+
// value: QuizAnswersValueType.HomeTeamDraw,
|
|
51
|
+
// },
|
|
52
|
+
// {
|
|
53
|
+
// text: `${quizAnswerHomeTeamReplacementText} / ${quizAnswerAwayTeamReplacementText}`,
|
|
54
|
+
// value: QuizAnswersValueType.HomeTeamAwayTeam,
|
|
55
|
+
// },
|
|
56
|
+
// {
|
|
57
|
+
// text: `${quizDrawReplacementText} / ${quizAnswerHomeTeamReplacementText}`,
|
|
58
|
+
// value: QuizAnswersValueType.DrawHomeTeam,
|
|
59
|
+
// },
|
|
60
|
+
// { text: `${quizDrawReplacementText} / ${quizDrawReplacementText}`, value: QuizAnswersValueType.DrawDraw },
|
|
61
|
+
// {
|
|
62
|
+
// text: `${quizDrawReplacementText} / ${quizAnswerAwayTeamReplacementText}`,
|
|
63
|
+
// value: QuizAnswersValueType.DrawAwayTeam,
|
|
64
|
+
// },
|
|
65
|
+
// {
|
|
66
|
+
// text: `${quizAnswerAwayTeamReplacementText} / ${quizAnswerHomeTeamReplacementText}`,
|
|
67
|
+
// value: QuizAnswersValueType.AwayTeamHomeTeam,
|
|
68
|
+
// },
|
|
69
|
+
// {
|
|
70
|
+
// text: `${quizAnswerAwayTeamReplacementText} / ${quizDrawReplacementText}`,
|
|
71
|
+
// value: QuizAnswersValueType.AwayTeamDraw,
|
|
72
|
+
// },
|
|
73
|
+
// {
|
|
74
|
+
// text: `${quizAnswerAwayTeamReplacementText} / ${quizAnswerAwayTeamReplacementText}`,
|
|
75
|
+
// value: QuizAnswersValueType.AwayTeamAwayTeam,
|
|
76
|
+
// },
|
|
77
|
+
// ],
|
|
78
|
+
// },
|
|
79
79
|
{
|
|
80
80
|
type: SAWGPMarketType.FirstGoal,
|
|
81
81
|
name: 'First Goal',
|
|
@@ -13,7 +13,7 @@ export const QuizMarketPerSport = {
|
|
|
13
13
|
[QuizSportType.Soccer]: [
|
|
14
14
|
SAWGPMarketType.OneXTwo,
|
|
15
15
|
SAWGPMarketType.OneXTwoHalftime,
|
|
16
|
-
SAWGPMarketType.HalftimeFulltime,
|
|
16
|
+
// SAWGPMarketType.HalftimeFulltime,
|
|
17
17
|
SAWGPMarketType.FirstGoal,
|
|
18
18
|
SAWGPMarketType.LastGoal,
|
|
19
19
|
SAWGPMarketType.DoubleChance,
|