@smartico/public-api 0.0.156 → 0.0.158
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/MiniGames/SAWAcknowledgeSpinPushRequest.d.ts +2 -2
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +11 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/MiniGames/SAWAcknowledgeSpinPushRequest.ts +2 -2
- package/src/Quiz/MarketsInfo.ts +13 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ProtocolRequest } from '../Base/ProtocolRequest'
|
|
2
2
|
|
|
3
|
-
export interface SAWAcknowledgeSpinPushRequest extends
|
|
3
|
+
export interface SAWAcknowledgeSpinPushRequest extends ProtocolRequest {
|
|
4
4
|
pending_message_id: number
|
|
5
5
|
saw_template_id: number
|
|
6
6
|
}
|
package/src/Quiz/MarketsInfo.ts
CHANGED
|
@@ -114,7 +114,7 @@ export const marketsInfo = [
|
|
|
114
114
|
type: SAWGPMarketType.Corners1x2,
|
|
115
115
|
name: 'Corners 1x2',
|
|
116
116
|
question: { text: 'Which team will have more corners in the match?', trKey: 'quizQuestion_corners1x2' },
|
|
117
|
-
answers:
|
|
117
|
+
answers: homeAwayDrawAnswers,
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
120
|
type: SAWGPMarketType.One_Two,
|
|
@@ -189,5 +189,17 @@ export const marketsInfo = [
|
|
|
189
189
|
name: 'Player Two Wins One Set',
|
|
190
190
|
question: { text: 'Will Player Two win at least one set?', trKey: 'quizQuestion_playerTwoWinsOneSet' },
|
|
191
191
|
answers: yesNoAnswers,
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
type: SAWGPMarketType.CustomNonSport,
|
|
195
|
+
name: 'Custom question (non sport)',
|
|
196
|
+
question: null,
|
|
197
|
+
answers: null,
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
type: SAWGPMarketType.CustomSport,
|
|
201
|
+
name: 'Custom question (sport)',
|
|
202
|
+
question: null,
|
|
203
|
+
answers: null,
|
|
192
204
|
},
|
|
193
205
|
]
|