@smartico/public-api 0.0.178 → 0.0.179
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.
|
@@ -28,6 +28,7 @@ export declare const quizNoReplacementText = "{no}";
|
|
|
28
28
|
export declare const quizOddReplacementText = "{odd}";
|
|
29
29
|
export declare const quizEvenReplacementText = "{even}";
|
|
30
30
|
export declare const quizOrReplacementText = "{or}";
|
|
31
|
+
export declare const quizNoGoalsReplacementText = "{quiz_no_goals}";
|
|
31
32
|
export declare const quizAnswersTrKeys: {
|
|
32
33
|
"{quiz_draw}": string;
|
|
33
34
|
"{yes}": string;
|
|
@@ -35,4 +36,5 @@ export declare const quizAnswersTrKeys: {
|
|
|
35
36
|
"{odd}": string;
|
|
36
37
|
"{even}": string;
|
|
37
38
|
"{or}": string;
|
|
39
|
+
"{quiz_no_goals}": string;
|
|
38
40
|
};
|
package/dist/index.js
CHANGED
|
@@ -3642,7 +3642,8 @@ var quizNoReplacementText = '{no}';
|
|
|
3642
3642
|
var quizOddReplacementText = '{odd}';
|
|
3643
3643
|
var quizEvenReplacementText = '{even}';
|
|
3644
3644
|
var quizOrReplacementText = '{or}';
|
|
3645
|
-
var
|
|
3645
|
+
var quizNoGoalsReplacementText = '{quiz_no_goals}';
|
|
3646
|
+
var quizAnswersTrKeys = (_quizAnswersTrKeys = {}, _quizAnswersTrKeys[quizDrawReplacementText] = 'quizAnswer_draw', _quizAnswersTrKeys[quizYesReplacementText] = 'quizAnswer_yes', _quizAnswersTrKeys[quizNoReplacementText] = 'quizAnswer_no', _quizAnswersTrKeys[quizOddReplacementText] = 'quizAnswer_odd', _quizAnswersTrKeys[quizEvenReplacementText] = 'quizAnswer_even', _quizAnswersTrKeys[quizOrReplacementText] = 'quizAnswer_or', _quizAnswersTrKeys[quizNoGoalsReplacementText] = 'quizAnswer_no_goals', _quizAnswersTrKeys);
|
|
3646
3647
|
|
|
3647
3648
|
var yesNoAnswers = [{
|
|
3648
3649
|
text: quizYesReplacementText,
|
|
@@ -3662,6 +3663,10 @@ var homeAwayDrawAnswers = [].concat(homeAwayAnswers, [{
|
|
|
3662
3663
|
text: quizDrawReplacementText,
|
|
3663
3664
|
value: exports.QuizAnswersValueType.Draw
|
|
3664
3665
|
}]);
|
|
3666
|
+
var homeAwayNoGoalsAnswers = [].concat(homeAwayAnswers, [{
|
|
3667
|
+
text: quizNoGoalsReplacementText,
|
|
3668
|
+
value: exports.QuizAnswersValueType.Draw
|
|
3669
|
+
}]);
|
|
3665
3670
|
var marketsInfo = [{
|
|
3666
3671
|
type: exports.SAWGPMarketType.OneXTwo,
|
|
3667
3672
|
name: '1x2',
|
|
@@ -3726,7 +3731,7 @@ var marketsInfo = [{
|
|
|
3726
3731
|
text: 'Who will score the first goal ?',
|
|
3727
3732
|
trKey: 'quizQuestion_firstGoal'
|
|
3728
3733
|
},
|
|
3729
|
-
answers:
|
|
3734
|
+
answers: homeAwayNoGoalsAnswers
|
|
3730
3735
|
}, {
|
|
3731
3736
|
type: exports.SAWGPMarketType.LastGoal,
|
|
3732
3737
|
name: 'Last Goal',
|
|
@@ -3734,7 +3739,7 @@ var marketsInfo = [{
|
|
|
3734
3739
|
text: 'Who will score the last goal ?',
|
|
3735
3740
|
trKey: 'quizQuestion_lastGoal'
|
|
3736
3741
|
},
|
|
3737
|
-
answers:
|
|
3742
|
+
answers: homeAwayNoGoalsAnswers
|
|
3738
3743
|
}, {
|
|
3739
3744
|
type: exports.SAWGPMarketType.DoubleChance,
|
|
3740
3745
|
name: 'Double Chance',
|
|
@@ -3987,6 +3992,7 @@ exports.quizAnswerHomeTeamReplacementText = quizAnswerHomeTeamReplacementText;
|
|
|
3987
3992
|
exports.quizAnswersTrKeys = quizAnswersTrKeys;
|
|
3988
3993
|
exports.quizDrawReplacementText = quizDrawReplacementText;
|
|
3989
3994
|
exports.quizEvenReplacementText = quizEvenReplacementText;
|
|
3995
|
+
exports.quizNoGoalsReplacementText = quizNoGoalsReplacementText;
|
|
3990
3996
|
exports.quizNoReplacementText = quizNoReplacementText;
|
|
3991
3997
|
exports.quizOddReplacementText = quizOddReplacementText;
|
|
3992
3998
|
exports.quizOrReplacementText = quizOrReplacementText;
|