overtime-utils 0.1.98 → 0.1.99
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/main.js +1 -1
- package/package.json +1 -1
- package/src/constants/marketTypes/baseball.ts +95 -0
- package/src/constants/marketTypes/basketball.ts +105 -0
- package/src/constants/marketTypes/correctScore.ts +66 -0
- package/src/constants/marketTypes/cricket.ts +93 -0
- package/src/constants/marketTypes/darts.ts +36 -0
- package/src/constants/marketTypes/esports.ts +1965 -0
- package/src/constants/marketTypes/football.ts +198 -0
- package/src/constants/marketTypes/futures.ts +106 -0
- package/src/constants/marketTypes/handicap.ts +149 -0
- package/src/constants/marketTypes/index.ts +63 -0
- package/src/constants/marketTypes/others.ts +21 -0
- package/src/constants/marketTypes/overtime.ts +48 -0
- package/src/constants/marketTypes/playerProps.ts +778 -0
- package/src/constants/marketTypes/sgp.ts +42 -0
- package/src/constants/marketTypes/soccer.ts +494 -0
- package/src/constants/marketTypes/total.ts +398 -0
- package/src/constants/marketTypes/ufc.ts +44 -0
- package/src/constants/marketTypes/usElection.ts +61 -0
- package/src/constants/marketTypes/winner.ts +175 -0
- package/src/constants/marketTypes.ts +288 -3908
- package/src/enums/marketTypes.ts +151 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MarketType, ResultType } from '../../enums/marketTypes';
|
|
2
|
+
import { MarketTypeInfo } from '../../types/marketTypes';
|
|
3
|
+
|
|
4
|
+
export const SGP_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>> = {
|
|
5
|
+
// SGP
|
|
6
|
+
[MarketType.SGP_BUILDER_HOME]: {
|
|
7
|
+
id: MarketType.SGP_BUILDER_HOME,
|
|
8
|
+
key: 'sgpBuilder',
|
|
9
|
+
name: 'SGP (Home)',
|
|
10
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
11
|
+
},
|
|
12
|
+
[MarketType.SGP_BUILDER_AWAY]: {
|
|
13
|
+
id: MarketType.SGP_BUILDER_AWAY,
|
|
14
|
+
key: 'sgpBuilder1',
|
|
15
|
+
name: 'SGP (Away)',
|
|
16
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
17
|
+
},
|
|
18
|
+
[MarketType.SGP_BUILDER_MIXED]: {
|
|
19
|
+
id: MarketType.SGP_BUILDER_MIXED,
|
|
20
|
+
key: 'sgpBuilder2',
|
|
21
|
+
name: 'SGP (Mixed)',
|
|
22
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
23
|
+
},
|
|
24
|
+
[MarketType.SGP_BUILDER_3]: {
|
|
25
|
+
id: MarketType.SGP_BUILDER_3,
|
|
26
|
+
key: 'sgpBuilder3',
|
|
27
|
+
name: 'SGP',
|
|
28
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
29
|
+
},
|
|
30
|
+
[MarketType.SGP_BUILDER_4]: {
|
|
31
|
+
id: MarketType.SGP_BUILDER_4,
|
|
32
|
+
key: 'sgpBuilder4',
|
|
33
|
+
name: 'SGP',
|
|
34
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
35
|
+
},
|
|
36
|
+
[MarketType.SGP_BUILDER_5]: {
|
|
37
|
+
id: MarketType.SGP_BUILDER_5,
|
|
38
|
+
key: 'sgpBuilder5',
|
|
39
|
+
name: 'SGP',
|
|
40
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
41
|
+
},
|
|
42
|
+
};
|
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
import { MarketType, ResultType } from '../../enums/marketTypes';
|
|
2
|
+
import { MarketTypeInfo } from '../../types/marketTypes';
|
|
3
|
+
|
|
4
|
+
export const SOCCER_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>> = {
|
|
5
|
+
// Who will score first
|
|
6
|
+
[MarketType.FIRST_SCORE]: {
|
|
7
|
+
id: MarketType.FIRST_SCORE,
|
|
8
|
+
key: 'firstScore',
|
|
9
|
+
name: 'First',
|
|
10
|
+
resultType: ResultType.EXACT_POSITION,
|
|
11
|
+
},
|
|
12
|
+
// Who will score last
|
|
13
|
+
[MarketType.LAST_SCORE]: {
|
|
14
|
+
id: MarketType.LAST_SCORE,
|
|
15
|
+
key: 'lastScore',
|
|
16
|
+
name: 'Last',
|
|
17
|
+
resultType: ResultType.EXACT_POSITION,
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
// Spread (handicap) corners
|
|
21
|
+
[MarketType.SPREAD_CORNERS]: {
|
|
22
|
+
id: MarketType.SPREAD_CORNERS,
|
|
23
|
+
key: 'spreadCorners',
|
|
24
|
+
name: 'Handicap corners',
|
|
25
|
+
resultType: ResultType.SPREAD,
|
|
26
|
+
},
|
|
27
|
+
// Total corners
|
|
28
|
+
[MarketType.TOTAL_CORNERS]: {
|
|
29
|
+
id: MarketType.TOTAL_CORNERS,
|
|
30
|
+
key: 'totalCorners',
|
|
31
|
+
name: 'Total corners',
|
|
32
|
+
resultType: ResultType.OVER_UNDER,
|
|
33
|
+
},
|
|
34
|
+
// Total corners per team
|
|
35
|
+
[MarketType.TOTAL_CORNERS_HOME_TEAM]: {
|
|
36
|
+
id: MarketType.TOTAL_CORNERS_HOME_TEAM,
|
|
37
|
+
key: 'totalCornersHomeTeam',
|
|
38
|
+
name: 'Total corners',
|
|
39
|
+
resultType: ResultType.OVER_UNDER,
|
|
40
|
+
},
|
|
41
|
+
[MarketType.TOTAL_CORNERS_AWAY_TEAM]: {
|
|
42
|
+
id: MarketType.TOTAL_CORNERS_AWAY_TEAM,
|
|
43
|
+
key: 'totalCornersAwayTeam',
|
|
44
|
+
name: 'Total corners',
|
|
45
|
+
resultType: ResultType.OVER_UNDER,
|
|
46
|
+
},
|
|
47
|
+
// Total corners odd/even
|
|
48
|
+
[MarketType.TOTAL_CORNERS_ODD_EVEN]: {
|
|
49
|
+
id: MarketType.TOTAL_CORNERS_ODD_EVEN,
|
|
50
|
+
key: 'totalCornersOddEven',
|
|
51
|
+
name: 'Total corners odd/even',
|
|
52
|
+
resultType: ResultType.EXACT_POSITION,
|
|
53
|
+
},
|
|
54
|
+
// Total corners period - half for soccer
|
|
55
|
+
[MarketType.FIRST_PERIOD_TOTAL_CORNERS]: {
|
|
56
|
+
id: MarketType.FIRST_PERIOD_TOTAL_CORNERS,
|
|
57
|
+
key: 'firstPeriodTotalCorners',
|
|
58
|
+
name: 'Total corners 1st',
|
|
59
|
+
resultType: ResultType.OVER_UNDER,
|
|
60
|
+
},
|
|
61
|
+
[MarketType.SECOND_PERIOD_TOTAL_CORNERS]: {
|
|
62
|
+
id: MarketType.SECOND_PERIOD_TOTAL_CORNERS,
|
|
63
|
+
key: 'secondPeriodTotalCorners',
|
|
64
|
+
name: 'Total corners 2nd',
|
|
65
|
+
resultType: ResultType.OVER_UNDER,
|
|
66
|
+
},
|
|
67
|
+
// Total corners per team period - half for soccer
|
|
68
|
+
[MarketType.FIRST_PERIOD_TOTAL_CORNERS_HOME_TEAM]: {
|
|
69
|
+
id: MarketType.FIRST_PERIOD_TOTAL_CORNERS_HOME_TEAM,
|
|
70
|
+
key: 'firstPeriodTotalCornersHomeTeam',
|
|
71
|
+
name: 'Total corners 1st',
|
|
72
|
+
resultType: ResultType.OVER_UNDER,
|
|
73
|
+
},
|
|
74
|
+
[MarketType.FIRST_PERIOD_TOTAL_CORNERS_AWAY_TEAM]: {
|
|
75
|
+
id: MarketType.FIRST_PERIOD_TOTAL_CORNERS_AWAY_TEAM,
|
|
76
|
+
key: 'firstPeriodTotalCornersAwayTeam',
|
|
77
|
+
name: 'Total corners 1st',
|
|
78
|
+
resultType: ResultType.OVER_UNDER,
|
|
79
|
+
},
|
|
80
|
+
[MarketType.SECOND_PERIOD_TOTAL_CORNERS_HOME_TEAM]: {
|
|
81
|
+
id: MarketType.SECOND_PERIOD_TOTAL_CORNERS_HOME_TEAM,
|
|
82
|
+
key: 'secondPeriodTotalCornersHomeTeam',
|
|
83
|
+
name: 'Total corners 2nd',
|
|
84
|
+
resultType: ResultType.OVER_UNDER,
|
|
85
|
+
},
|
|
86
|
+
[MarketType.SECOND_PERIOD_TOTAL_CORNERS_AWAY_TEAM]: {
|
|
87
|
+
id: MarketType.SECOND_PERIOD_TOTAL_CORNERS_AWAY_TEAM,
|
|
88
|
+
key: 'secondPeriodTotalCornersAwayTeam',
|
|
89
|
+
name: 'Total corners 2nd',
|
|
90
|
+
resultType: ResultType.OVER_UNDER,
|
|
91
|
+
},
|
|
92
|
+
// Spread corners period - half for soccer
|
|
93
|
+
[MarketType.FIRST_PERIOD_SPREAD_CORNERS]: {
|
|
94
|
+
id: MarketType.FIRST_PERIOD_SPREAD_CORNERS,
|
|
95
|
+
key: 'firstPeriodSpreadCorners',
|
|
96
|
+
name: 'Handicap corners 1st',
|
|
97
|
+
resultType: ResultType.SPREAD,
|
|
98
|
+
},
|
|
99
|
+
[MarketType.SECOND_PERIOD_SPREAD_CORNERS]: {
|
|
100
|
+
id: MarketType.SECOND_PERIOD_SPREAD_CORNERS,
|
|
101
|
+
key: 'secondPeriodSpreadCorners',
|
|
102
|
+
name: 'Handicap corners 2nd',
|
|
103
|
+
resultType: ResultType.SPREAD,
|
|
104
|
+
},
|
|
105
|
+
// Most corners
|
|
106
|
+
[MarketType.MOST_CORNERS]: {
|
|
107
|
+
id: MarketType.MOST_CORNERS,
|
|
108
|
+
key: 'mostCorners',
|
|
109
|
+
name: 'Most corners',
|
|
110
|
+
resultType: ResultType.EXACT_POSITION,
|
|
111
|
+
},
|
|
112
|
+
// Most corners period - half for soccer
|
|
113
|
+
[MarketType.FIRST_PERIOD_MOST_CORNERS]: {
|
|
114
|
+
id: MarketType.FIRST_PERIOD_MOST_CORNERS,
|
|
115
|
+
key: 'firstPeriodMostCorners',
|
|
116
|
+
name: 'Most corners 1st',
|
|
117
|
+
resultType: ResultType.EXACT_POSITION,
|
|
118
|
+
},
|
|
119
|
+
[MarketType.SECOND_PERIOD_MOST_CORNERS]: {
|
|
120
|
+
id: MarketType.SECOND_PERIOD_MOST_CORNERS,
|
|
121
|
+
key: 'secondPeriodMostCorners',
|
|
122
|
+
name: 'Most corners 2nd',
|
|
123
|
+
resultType: ResultType.EXACT_POSITION,
|
|
124
|
+
},
|
|
125
|
+
|
|
126
|
+
// Spread (handicap) cards
|
|
127
|
+
[MarketType.SPREAD_CARDS]: {
|
|
128
|
+
id: MarketType.SPREAD_CARDS,
|
|
129
|
+
key: 'spreadCards',
|
|
130
|
+
name: 'Handicap card points',
|
|
131
|
+
resultType: ResultType.SPREAD,
|
|
132
|
+
},
|
|
133
|
+
// Total cards
|
|
134
|
+
[MarketType.TOTAL_CARDS]: {
|
|
135
|
+
id: MarketType.TOTAL_CARDS,
|
|
136
|
+
key: 'totalCards',
|
|
137
|
+
name: 'Total card points',
|
|
138
|
+
resultType: ResultType.OVER_UNDER,
|
|
139
|
+
},
|
|
140
|
+
// Total cards per team
|
|
141
|
+
[MarketType.TOTAL_CARDS_HOME_TEAM]: {
|
|
142
|
+
id: MarketType.TOTAL_CARDS_HOME_TEAM,
|
|
143
|
+
key: 'totalCardsHomeTeam',
|
|
144
|
+
name: 'Total card points',
|
|
145
|
+
resultType: ResultType.OVER_UNDER,
|
|
146
|
+
},
|
|
147
|
+
[MarketType.TOTAL_CARDS_AWAY_TEAM]: {
|
|
148
|
+
id: MarketType.TOTAL_CARDS_AWAY_TEAM,
|
|
149
|
+
key: 'totalCardsAwayTeam',
|
|
150
|
+
name: 'Total card points',
|
|
151
|
+
resultType: ResultType.OVER_UNDER,
|
|
152
|
+
},
|
|
153
|
+
// Total red cards
|
|
154
|
+
[MarketType.TOTAL_RED_CARDS]: {
|
|
155
|
+
id: MarketType.TOTAL_RED_CARDS,
|
|
156
|
+
key: 'totalRedCards',
|
|
157
|
+
name: 'Total red cards',
|
|
158
|
+
resultType: ResultType.OVER_UNDER,
|
|
159
|
+
},
|
|
160
|
+
// Most cards
|
|
161
|
+
[MarketType.MOST_CARDS]: {
|
|
162
|
+
id: MarketType.MOST_CARDS,
|
|
163
|
+
key: 'mostCards',
|
|
164
|
+
name: 'Most cards',
|
|
165
|
+
resultType: ResultType.EXACT_POSITION,
|
|
166
|
+
},
|
|
167
|
+
// First/last card
|
|
168
|
+
[MarketType.FIRST_CARD]: {
|
|
169
|
+
id: MarketType.FIRST_CARD,
|
|
170
|
+
key: 'firstCards',
|
|
171
|
+
name: 'First card',
|
|
172
|
+
resultType: ResultType.EXACT_POSITION,
|
|
173
|
+
},
|
|
174
|
+
[MarketType.LAST_CARD]: {
|
|
175
|
+
id: MarketType.LAST_CARD,
|
|
176
|
+
key: 'lastCard',
|
|
177
|
+
name: 'Last card',
|
|
178
|
+
resultType: ResultType.EXACT_POSITION,
|
|
179
|
+
},
|
|
180
|
+
|
|
181
|
+
// Clean sheet per team
|
|
182
|
+
[MarketType.CLEAN_SHEET_HOME_TEAM]: {
|
|
183
|
+
id: MarketType.CLEAN_SHEET_HOME_TEAM,
|
|
184
|
+
key: 'cleanSheetHomeTeam',
|
|
185
|
+
name: 'Clean sheet',
|
|
186
|
+
resultType: ResultType.EXACT_POSITION,
|
|
187
|
+
},
|
|
188
|
+
[MarketType.CLEAN_SHEET_AWAY_TEAM]: {
|
|
189
|
+
id: MarketType.CLEAN_SHEET_AWAY_TEAM,
|
|
190
|
+
key: 'cleanSheetAwayTeam',
|
|
191
|
+
name: 'Clean sheet',
|
|
192
|
+
resultType: ResultType.EXACT_POSITION,
|
|
193
|
+
},
|
|
194
|
+
|
|
195
|
+
// To score at least one goal
|
|
196
|
+
[MarketType.HOME_TEAM_TO_SCORE]: {
|
|
197
|
+
id: MarketType.HOME_TEAM_TO_SCORE,
|
|
198
|
+
key: 'homeTeamToScore',
|
|
199
|
+
name: 'To score at least one goal',
|
|
200
|
+
resultType: ResultType.EXACT_POSITION,
|
|
201
|
+
},
|
|
202
|
+
[MarketType.AWAY_TEAM_TO_SCORE]: {
|
|
203
|
+
id: MarketType.AWAY_TEAM_TO_SCORE,
|
|
204
|
+
key: 'awayTeamToScore',
|
|
205
|
+
name: 'To score at least one goal',
|
|
206
|
+
resultType: ResultType.EXACT_POSITION,
|
|
207
|
+
},
|
|
208
|
+
|
|
209
|
+
// To win to nil
|
|
210
|
+
[MarketType.HOME_TEAM_TO_WIN_TO_NIL]: {
|
|
211
|
+
id: MarketType.HOME_TEAM_TO_WIN_TO_NIL,
|
|
212
|
+
key: 'homeTeamToWinToNill',
|
|
213
|
+
name: 'To win to nill',
|
|
214
|
+
resultType: ResultType.EXACT_POSITION,
|
|
215
|
+
},
|
|
216
|
+
[MarketType.AWAY_TEAM_TO_WIN_TO_NIL]: {
|
|
217
|
+
id: MarketType.AWAY_TEAM_TO_WIN_TO_NIL,
|
|
218
|
+
key: 'awayTeamToWinToNill',
|
|
219
|
+
name: 'To win to nill',
|
|
220
|
+
resultType: ResultType.EXACT_POSITION,
|
|
221
|
+
},
|
|
222
|
+
|
|
223
|
+
// Half-time/Full-time
|
|
224
|
+
[MarketType.HALFTIME_FULLTIME]: {
|
|
225
|
+
id: MarketType.HALFTIME_FULLTIME,
|
|
226
|
+
key: 'halftimeFulltime',
|
|
227
|
+
name: 'Half-time/Full-time',
|
|
228
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
229
|
+
},
|
|
230
|
+
[MarketType.GOALS]: {
|
|
231
|
+
id: MarketType.GOALS,
|
|
232
|
+
key: 'goals',
|
|
233
|
+
name: 'Goals',
|
|
234
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
235
|
+
},
|
|
236
|
+
[MarketType.HALFTIME_FULLTIME_GOALS]: {
|
|
237
|
+
id: MarketType.HALFTIME_FULLTIME_GOALS,
|
|
238
|
+
key: 'halftimeFulltimeGoals',
|
|
239
|
+
name: 'Half-time/Full-time + Goals',
|
|
240
|
+
resultType: ResultType.COMBINED_POSITIONS,
|
|
241
|
+
},
|
|
242
|
+
|
|
243
|
+
// Who will advance / qualify
|
|
244
|
+
[MarketType.WHO_WILL_ADVANCE]: {
|
|
245
|
+
id: MarketType.WHO_WILL_ADVANCE,
|
|
246
|
+
key: 'whoWillAdvance',
|
|
247
|
+
name: 'Who will qualify for the next round',
|
|
248
|
+
resultType: ResultType.EXACT_POSITION,
|
|
249
|
+
},
|
|
250
|
+
[MarketType.WHO_WILL_QUALIFY]: {
|
|
251
|
+
id: MarketType.WHO_WILL_QUALIFY,
|
|
252
|
+
key: 'whoWillQualify',
|
|
253
|
+
name: 'Who will qualify for the next round',
|
|
254
|
+
resultType: ResultType.EXACT_POSITION,
|
|
255
|
+
},
|
|
256
|
+
|
|
257
|
+
// Total exact per team
|
|
258
|
+
[MarketType.TOTAL_EXACT_HOME_TEAM]: {
|
|
259
|
+
id: MarketType.TOTAL_EXACT_HOME_TEAM,
|
|
260
|
+
key: 'exactTotalHomeTeam',
|
|
261
|
+
name: 'Exact total',
|
|
262
|
+
resultType: ResultType.EXACT_POSITION,
|
|
263
|
+
},
|
|
264
|
+
[MarketType.TOTAL_EXACT_AWAY_TEAM]: {
|
|
265
|
+
id: MarketType.TOTAL_EXACT_AWAY_TEAM,
|
|
266
|
+
key: 'exactTotalAwayTeam',
|
|
267
|
+
name: 'Exact total',
|
|
268
|
+
resultType: ResultType.EXACT_POSITION,
|
|
269
|
+
},
|
|
270
|
+
|
|
271
|
+
// Total exact per team - half for soccer
|
|
272
|
+
[MarketType.FIRST_PERIOD_TOTAL_EXACT_HOME_TEAM]: {
|
|
273
|
+
id: MarketType.FIRST_PERIOD_TOTAL_EXACT_HOME_TEAM,
|
|
274
|
+
key: 'firstPeriodExactTotalHomeTeam',
|
|
275
|
+
name: 'Exact total 1st',
|
|
276
|
+
resultType: ResultType.EXACT_POSITION,
|
|
277
|
+
},
|
|
278
|
+
[MarketType.FIRST_PERIOD_TOTAL_EXACT_AWAY_TEAM]: {
|
|
279
|
+
id: MarketType.FIRST_PERIOD_TOTAL_EXACT_AWAY_TEAM,
|
|
280
|
+
key: 'firstPeriodExactTotalAwayTeam',
|
|
281
|
+
name: 'Exact total 1st',
|
|
282
|
+
resultType: ResultType.EXACT_POSITION,
|
|
283
|
+
},
|
|
284
|
+
[MarketType.SECOND_PERIOD_TOTAL_EXACT_HOME_TEAM]: {
|
|
285
|
+
id: MarketType.SECOND_PERIOD_TOTAL_EXACT_HOME_TEAM,
|
|
286
|
+
key: 'secondPeriodExactTotalHomeTeam',
|
|
287
|
+
name: 'Exact total 2nd',
|
|
288
|
+
resultType: ResultType.EXACT_POSITION,
|
|
289
|
+
},
|
|
290
|
+
[MarketType.SECOND_PERIOD_TOTAL_EXACT_AWAY_TEAM]: {
|
|
291
|
+
id: MarketType.SECOND_PERIOD_TOTAL_EXACT_AWAY_TEAM,
|
|
292
|
+
key: 'secondPeriodExactTotalAwayTeam',
|
|
293
|
+
name: 'Exact total 2nd',
|
|
294
|
+
resultType: ResultType.EXACT_POSITION,
|
|
295
|
+
},
|
|
296
|
+
|
|
297
|
+
// Total exact - half / full time for soccer
|
|
298
|
+
[MarketType.FIRST_PERIOD_TOTAL_EXACT]: {
|
|
299
|
+
id: MarketType.FIRST_PERIOD_TOTAL_EXACT,
|
|
300
|
+
key: 'firstPeriodExactTotal',
|
|
301
|
+
name: 'Exact total 1st',
|
|
302
|
+
resultType: ResultType.EXACT_POSITION,
|
|
303
|
+
},
|
|
304
|
+
[MarketType.SECOND_PERIOD_TOTAL_EXACT]: {
|
|
305
|
+
id: MarketType.SECOND_PERIOD_TOTAL_EXACT,
|
|
306
|
+
key: 'secondPeriodExactTotal',
|
|
307
|
+
name: 'Exact total 2nd',
|
|
308
|
+
resultType: ResultType.EXACT_POSITION,
|
|
309
|
+
},
|
|
310
|
+
[MarketType.TOTAL_EXACT]: {
|
|
311
|
+
id: MarketType.TOTAL_EXACT,
|
|
312
|
+
key: 'exactTotal',
|
|
313
|
+
name: 'Exact total',
|
|
314
|
+
resultType: ResultType.EXACT_POSITION,
|
|
315
|
+
},
|
|
316
|
+
|
|
317
|
+
// Halves outcomes
|
|
318
|
+
[MarketType.HOME_TEAM_TO_WIN_BOTH_HALVES]: {
|
|
319
|
+
id: MarketType.HOME_TEAM_TO_WIN_BOTH_HALVES,
|
|
320
|
+
key: 'homeTeamToWinBothHalves',
|
|
321
|
+
name: 'To win both halves',
|
|
322
|
+
resultType: ResultType.EXACT_POSITION,
|
|
323
|
+
},
|
|
324
|
+
[MarketType.AWAY_TEAM_TO_WIN_BOTH_HALVES]: {
|
|
325
|
+
id: MarketType.AWAY_TEAM_TO_WIN_BOTH_HALVES,
|
|
326
|
+
key: 'awayTeamToWinBothHalves',
|
|
327
|
+
name: 'To win both halves',
|
|
328
|
+
resultType: ResultType.EXACT_POSITION,
|
|
329
|
+
},
|
|
330
|
+
[MarketType.HOME_TEAM_TO_WIN_EITHER_HALF]: {
|
|
331
|
+
id: MarketType.HOME_TEAM_TO_WIN_EITHER_HALF,
|
|
332
|
+
key: 'homeTeamToWinEitherHalf',
|
|
333
|
+
name: 'To win either half',
|
|
334
|
+
resultType: ResultType.EXACT_POSITION,
|
|
335
|
+
},
|
|
336
|
+
[MarketType.AWAY_TEAM_TO_WIN_EITHER_HALF]: {
|
|
337
|
+
id: MarketType.AWAY_TEAM_TO_WIN_EITHER_HALF,
|
|
338
|
+
key: 'awayTeamToWinEitherHalf',
|
|
339
|
+
name: 'To win either half',
|
|
340
|
+
resultType: ResultType.EXACT_POSITION,
|
|
341
|
+
},
|
|
342
|
+
[MarketType.GOAL_BOTH_HALVES]: {
|
|
343
|
+
id: MarketType.GOAL_BOTH_HALVES,
|
|
344
|
+
key: 'goalBothHalves',
|
|
345
|
+
name: 'Goal in both halves',
|
|
346
|
+
resultType: ResultType.EXACT_POSITION,
|
|
347
|
+
},
|
|
348
|
+
[MarketType.HOME_TEAM_TO_SCORE_BOTH_HALVES]: {
|
|
349
|
+
id: MarketType.HOME_TEAM_TO_SCORE_BOTH_HALVES,
|
|
350
|
+
key: 'homeTeamToScoreBothHalves',
|
|
351
|
+
name: 'To score in both halves',
|
|
352
|
+
resultType: ResultType.EXACT_POSITION,
|
|
353
|
+
},
|
|
354
|
+
[MarketType.AWAY_TEAM_TO_SCORE_BOTH_HALVES]: {
|
|
355
|
+
id: MarketType.AWAY_TEAM_TO_SCORE_BOTH_HALVES,
|
|
356
|
+
key: 'awayTeamToScoreBothHalves',
|
|
357
|
+
name: 'To score in both halves',
|
|
358
|
+
resultType: ResultType.EXACT_POSITION,
|
|
359
|
+
},
|
|
360
|
+
|
|
361
|
+
// Offsides / shots
|
|
362
|
+
[MarketType.TOTAL_OFFSIDES]: {
|
|
363
|
+
id: MarketType.TOTAL_OFFSIDES,
|
|
364
|
+
key: 'totalOffsides',
|
|
365
|
+
name: 'Total offsides',
|
|
366
|
+
resultType: ResultType.OVER_UNDER,
|
|
367
|
+
},
|
|
368
|
+
[MarketType.TOTAL_SHOTS]: {
|
|
369
|
+
id: MarketType.TOTAL_SHOTS,
|
|
370
|
+
key: 'totalShots',
|
|
371
|
+
name: 'Total shots',
|
|
372
|
+
resultType: ResultType.OVER_UNDER,
|
|
373
|
+
},
|
|
374
|
+
[MarketType.TOTAL_SHOTS_ON_TARGET]: {
|
|
375
|
+
id: MarketType.TOTAL_SHOTS_ON_TARGET,
|
|
376
|
+
key: 'totalShotsOnTarget',
|
|
377
|
+
name: 'Total shots on target',
|
|
378
|
+
resultType: ResultType.OVER_UNDER,
|
|
379
|
+
},
|
|
380
|
+
[MarketType.HOME_TEAM_TOTAL_SHOTS]: {
|
|
381
|
+
id: MarketType.HOME_TEAM_TOTAL_SHOTS,
|
|
382
|
+
key: 'homeTeamTotalShots',
|
|
383
|
+
name: 'Total shots',
|
|
384
|
+
resultType: ResultType.OVER_UNDER,
|
|
385
|
+
},
|
|
386
|
+
[MarketType.AWAY_TEAM_TOTAL_SHOTS]: {
|
|
387
|
+
id: MarketType.AWAY_TEAM_TOTAL_SHOTS,
|
|
388
|
+
key: 'awayTeamTotalShots',
|
|
389
|
+
name: 'Total shots',
|
|
390
|
+
resultType: ResultType.OVER_UNDER,
|
|
391
|
+
},
|
|
392
|
+
[MarketType.HOME_TEAM_TOTAL_SHOTS_ON_TARGET]: {
|
|
393
|
+
id: MarketType.HOME_TEAM_TOTAL_SHOTS_ON_TARGET,
|
|
394
|
+
key: 'homeTeamTotalShotsOnTarget',
|
|
395
|
+
name: 'Total shots on target',
|
|
396
|
+
resultType: ResultType.OVER_UNDER,
|
|
397
|
+
},
|
|
398
|
+
[MarketType.AWAY_TEAM_TOTAL_SHOTS_ON_TARGET]: {
|
|
399
|
+
id: MarketType.AWAY_TEAM_TOTAL_SHOTS_ON_TARGET,
|
|
400
|
+
key: 'awayTeamTotalShotsOnTarget',
|
|
401
|
+
name: 'Total shots on target',
|
|
402
|
+
resultType: ResultType.OVER_UNDER,
|
|
403
|
+
},
|
|
404
|
+
|
|
405
|
+
// Double chance
|
|
406
|
+
[MarketType.DOUBLE_CHANCE]: {
|
|
407
|
+
id: MarketType.DOUBLE_CHANCE,
|
|
408
|
+
key: 'doubleChance',
|
|
409
|
+
name: 'Double chance',
|
|
410
|
+
resultType: ResultType.EXACT_POSITION,
|
|
411
|
+
},
|
|
412
|
+
// Double chance period - half for soccer
|
|
413
|
+
[MarketType.FIRST_PERIOD_DOUBLE_CHANCE]: {
|
|
414
|
+
id: MarketType.FIRST_PERIOD_DOUBLE_CHANCE,
|
|
415
|
+
key: 'firstPeriodDoubleChance',
|
|
416
|
+
name: 'Double chance 1st',
|
|
417
|
+
resultType: ResultType.EXACT_POSITION,
|
|
418
|
+
},
|
|
419
|
+
[MarketType.SECOND_PERIOD_DOUBLE_CHANCE]: {
|
|
420
|
+
id: MarketType.SECOND_PERIOD_DOUBLE_CHANCE,
|
|
421
|
+
key: 'secondPeriodDoubleChance',
|
|
422
|
+
name: 'Double chance 2nd',
|
|
423
|
+
resultType: ResultType.EXACT_POSITION,
|
|
424
|
+
},
|
|
425
|
+
[MarketType.THIRD_PERIOD_DOUBLE_CHANCE]: {
|
|
426
|
+
id: MarketType.THIRD_PERIOD_DOUBLE_CHANCE,
|
|
427
|
+
key: 'thirdPeriodDoubleChance',
|
|
428
|
+
name: 'Double chance 3rd',
|
|
429
|
+
resultType: ResultType.EXACT_POSITION,
|
|
430
|
+
},
|
|
431
|
+
|
|
432
|
+
// Both teams to score
|
|
433
|
+
[MarketType.BOTH_TEAMS_TO_SCORE]: {
|
|
434
|
+
id: MarketType.BOTH_TEAMS_TO_SCORE,
|
|
435
|
+
key: 'bothTeamsToScore',
|
|
436
|
+
name: 'Both teams to score',
|
|
437
|
+
resultType: ResultType.EXACT_POSITION,
|
|
438
|
+
},
|
|
439
|
+
// Both teams to score period - half for soccer
|
|
440
|
+
[MarketType.FIRST_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
441
|
+
id: MarketType.FIRST_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
442
|
+
key: 'firstPeriodBothTeamsToScore',
|
|
443
|
+
name: 'Both teams to score 1st',
|
|
444
|
+
resultType: ResultType.EXACT_POSITION,
|
|
445
|
+
},
|
|
446
|
+
[MarketType.SECOND_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
447
|
+
id: MarketType.SECOND_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
448
|
+
key: 'secondPeriodBothTeamsToScore',
|
|
449
|
+
name: 'Both teams to score 2nd',
|
|
450
|
+
resultType: ResultType.EXACT_POSITION,
|
|
451
|
+
},
|
|
452
|
+
[MarketType.THIRD_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
453
|
+
id: MarketType.THIRD_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
454
|
+
key: 'thirdPeriodBothTeamsToScore',
|
|
455
|
+
name: 'Both teams to score 3rd',
|
|
456
|
+
resultType: ResultType.EXACT_POSITION,
|
|
457
|
+
},
|
|
458
|
+
[MarketType.FOURTH_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
459
|
+
id: MarketType.FOURTH_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
460
|
+
key: 'fourthPeriodBothTeamsToScore',
|
|
461
|
+
name: 'Both teams to score 4th',
|
|
462
|
+
resultType: ResultType.EXACT_POSITION,
|
|
463
|
+
},
|
|
464
|
+
[MarketType.FIFTH_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
465
|
+
id: MarketType.FIFTH_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
466
|
+
key: 'fifthPeriodBothTeamsToScore',
|
|
467
|
+
name: 'Both teams to score 5th',
|
|
468
|
+
resultType: ResultType.EXACT_POSITION,
|
|
469
|
+
},
|
|
470
|
+
[MarketType.SIXTH_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
471
|
+
id: MarketType.SIXTH_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
472
|
+
key: 'sixthPeriodBothTeamsToScore',
|
|
473
|
+
name: 'Both teams to score 6th',
|
|
474
|
+
resultType: ResultType.EXACT_POSITION,
|
|
475
|
+
},
|
|
476
|
+
[MarketType.SEVENTH_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
477
|
+
id: MarketType.SEVENTH_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
478
|
+
key: 'seventhPeriodBothTeamsToScore',
|
|
479
|
+
name: 'Both teams to score 7th',
|
|
480
|
+
resultType: ResultType.EXACT_POSITION,
|
|
481
|
+
},
|
|
482
|
+
[MarketType.EIGHTH_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
483
|
+
id: MarketType.EIGHTH_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
484
|
+
key: 'eightPeriodBothTeamsToScore',
|
|
485
|
+
name: 'Both teams to score 8th',
|
|
486
|
+
resultType: ResultType.EXACT_POSITION,
|
|
487
|
+
},
|
|
488
|
+
[MarketType.NINTH_PERIOD_BOTH_TEAMS_TO_SCORE]: {
|
|
489
|
+
id: MarketType.NINTH_PERIOD_BOTH_TEAMS_TO_SCORE,
|
|
490
|
+
key: 'ninthPeriodBothTeamsToScore',
|
|
491
|
+
name: 'Both teams to score 9th',
|
|
492
|
+
resultType: ResultType.EXACT_POSITION,
|
|
493
|
+
},
|
|
494
|
+
};
|