overtime-utils 0.1.97 → 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 +294 -3908
- package/src/enums/marketTypes.ts +151 -0
|
@@ -0,0 +1,778 @@
|
|
|
1
|
+
import { MarketType, ResultType } from '../../enums/marketTypes';
|
|
2
|
+
import { MarketTypeInfo } from '../../types/marketTypes';
|
|
3
|
+
|
|
4
|
+
export const PLAYER_PROPS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>> = {
|
|
5
|
+
// Player props
|
|
6
|
+
[MarketType.PLAYER_PROPS_STRIKEOUTS]: {
|
|
7
|
+
id: MarketType.PLAYER_PROPS_STRIKEOUTS,
|
|
8
|
+
key: 'strikeouts',
|
|
9
|
+
name: 'Strikeouts',
|
|
10
|
+
resultType: ResultType.OVER_UNDER,
|
|
11
|
+
},
|
|
12
|
+
[MarketType.PLAYER_PROPS_HOMERUNS]: {
|
|
13
|
+
id: MarketType.PLAYER_PROPS_HOMERUNS,
|
|
14
|
+
key: 'homeruns',
|
|
15
|
+
name: 'Home runs',
|
|
16
|
+
resultType: ResultType.OVER_UNDER,
|
|
17
|
+
},
|
|
18
|
+
[MarketType.PLAYER_PROPS_BASES]: {
|
|
19
|
+
id: MarketType.PLAYER_PROPS_BASES,
|
|
20
|
+
key: 'bases',
|
|
21
|
+
name: 'Bases',
|
|
22
|
+
resultType: ResultType.OVER_UNDER,
|
|
23
|
+
},
|
|
24
|
+
[MarketType.PLAYER_PROPS_PASSING_YARDS]: {
|
|
25
|
+
id: MarketType.PLAYER_PROPS_PASSING_YARDS,
|
|
26
|
+
key: 'passingYards',
|
|
27
|
+
name: 'Passing yards',
|
|
28
|
+
resultType: ResultType.OVER_UNDER,
|
|
29
|
+
},
|
|
30
|
+
[MarketType.PLAYER_PROPS_PASSING_TOUCHDOWNS]: {
|
|
31
|
+
id: MarketType.PLAYER_PROPS_PASSING_TOUCHDOWNS,
|
|
32
|
+
key: 'passingTouchdowns',
|
|
33
|
+
name: 'Passing touchdowns',
|
|
34
|
+
resultType: ResultType.OVER_UNDER,
|
|
35
|
+
},
|
|
36
|
+
[MarketType.PLAYER_PROPS_RUSHING_YARDS]: {
|
|
37
|
+
id: MarketType.PLAYER_PROPS_RUSHING_YARDS,
|
|
38
|
+
key: 'rushingYards',
|
|
39
|
+
name: 'Rushing yards',
|
|
40
|
+
resultType: ResultType.OVER_UNDER,
|
|
41
|
+
},
|
|
42
|
+
[MarketType.PLAYER_PROPS_RECEIVING_YARDS]: {
|
|
43
|
+
id: MarketType.PLAYER_PROPS_RECEIVING_YARDS,
|
|
44
|
+
key: 'receivingYards',
|
|
45
|
+
name: 'Receiving yards',
|
|
46
|
+
resultType: ResultType.OVER_UNDER,
|
|
47
|
+
},
|
|
48
|
+
[MarketType.PLAYER_PROPS_TOUCHDOWNS_SCORER]: {
|
|
49
|
+
id: MarketType.PLAYER_PROPS_TOUCHDOWNS_SCORER,
|
|
50
|
+
key: 'touchdowns',
|
|
51
|
+
name: 'Scoring touchdown',
|
|
52
|
+
description: 'Who will score a touchdown in the game?',
|
|
53
|
+
tooltipKey: 'touchdowns',
|
|
54
|
+
resultType: ResultType.OVER_UNDER,
|
|
55
|
+
},
|
|
56
|
+
[MarketType.PLAYER_PROPS_FIELD_GOALS]: {
|
|
57
|
+
id: MarketType.PLAYER_PROPS_FIELD_GOALS,
|
|
58
|
+
key: 'fieldGoalsMade',
|
|
59
|
+
name: 'Field goals made',
|
|
60
|
+
resultType: ResultType.OVER_UNDER,
|
|
61
|
+
},
|
|
62
|
+
[MarketType.PLAYER_PROPS_PITCHER_HITS_ALLOWED]: {
|
|
63
|
+
id: MarketType.PLAYER_PROPS_PITCHER_HITS_ALLOWED,
|
|
64
|
+
key: 'pitcherHitsAllowed',
|
|
65
|
+
name: 'Pitcher hits allowed',
|
|
66
|
+
resultType: ResultType.OVER_UNDER,
|
|
67
|
+
},
|
|
68
|
+
[MarketType.PLAYER_PROPS_POINTS]: {
|
|
69
|
+
id: MarketType.PLAYER_PROPS_POINTS,
|
|
70
|
+
key: 'points',
|
|
71
|
+
name: 'Points',
|
|
72
|
+
resultType: ResultType.OVER_UNDER,
|
|
73
|
+
},
|
|
74
|
+
[MarketType.PLAYER_PROPS_SHOTS]: {
|
|
75
|
+
id: MarketType.PLAYER_PROPS_SHOTS,
|
|
76
|
+
key: 'shots',
|
|
77
|
+
name: 'Shots',
|
|
78
|
+
resultType: ResultType.OVER_UNDER,
|
|
79
|
+
},
|
|
80
|
+
[MarketType.PLAYER_PROPS_GOALS]: {
|
|
81
|
+
id: MarketType.PLAYER_PROPS_GOALS,
|
|
82
|
+
key: 'goals',
|
|
83
|
+
name: 'Goals',
|
|
84
|
+
description: 'Who will score a goal in the game?',
|
|
85
|
+
resultType: ResultType.OVER_UNDER,
|
|
86
|
+
},
|
|
87
|
+
[MarketType.PLAYER_PROPS_HITS_RECORDED]: {
|
|
88
|
+
id: MarketType.PLAYER_PROPS_HITS_RECORDED,
|
|
89
|
+
key: 'hitsRecorded',
|
|
90
|
+
name: 'Hits recorded',
|
|
91
|
+
resultType: ResultType.OVER_UNDER,
|
|
92
|
+
},
|
|
93
|
+
[MarketType.PLAYER_PROPS_REBOUNDS]: {
|
|
94
|
+
id: MarketType.PLAYER_PROPS_REBOUNDS,
|
|
95
|
+
key: 'rebounds',
|
|
96
|
+
name: 'Rebounds',
|
|
97
|
+
resultType: ResultType.OVER_UNDER,
|
|
98
|
+
},
|
|
99
|
+
[MarketType.PLAYER_PROPS_ASSISTS]: {
|
|
100
|
+
id: MarketType.PLAYER_PROPS_ASSISTS,
|
|
101
|
+
key: 'assists',
|
|
102
|
+
name: 'Assists',
|
|
103
|
+
resultType: ResultType.OVER_UNDER,
|
|
104
|
+
},
|
|
105
|
+
[MarketType.PLAYER_PROPS_DOUBLE_DOUBLE]: {
|
|
106
|
+
id: MarketType.PLAYER_PROPS_DOUBLE_DOUBLE,
|
|
107
|
+
key: 'doubleDouble',
|
|
108
|
+
name: 'Double double',
|
|
109
|
+
resultType: ResultType.OVER_UNDER,
|
|
110
|
+
},
|
|
111
|
+
[MarketType.PLAYER_PROPS_TRIPLE_DOUBLE]: {
|
|
112
|
+
id: MarketType.PLAYER_PROPS_TRIPLE_DOUBLE,
|
|
113
|
+
key: 'tripleDouble',
|
|
114
|
+
name: 'Triple double',
|
|
115
|
+
resultType: ResultType.OVER_UNDER,
|
|
116
|
+
},
|
|
117
|
+
[MarketType.PLAYER_PROPS_RECEPTIONS]: {
|
|
118
|
+
id: MarketType.PLAYER_PROPS_RECEPTIONS,
|
|
119
|
+
key: 'receptions',
|
|
120
|
+
name: 'Receptions',
|
|
121
|
+
resultType: ResultType.OVER_UNDER,
|
|
122
|
+
},
|
|
123
|
+
[MarketType.PLAYER_PROPS_FIRST_TOUCHDOWN]: {
|
|
124
|
+
id: MarketType.PLAYER_PROPS_FIRST_TOUCHDOWN,
|
|
125
|
+
key: 'firstTouchdown',
|
|
126
|
+
name: 'First touchdown',
|
|
127
|
+
description: 'Who will score the first touchdown in the game? (incl. OT)',
|
|
128
|
+
resultType: ResultType.OVER_UNDER,
|
|
129
|
+
},
|
|
130
|
+
[MarketType.PLAYER_PROPS_LAST_TOUCHDOWN]: {
|
|
131
|
+
id: MarketType.PLAYER_PROPS_LAST_TOUCHDOWN,
|
|
132
|
+
key: 'lastTouchdown',
|
|
133
|
+
name: 'Last touchdown',
|
|
134
|
+
description: 'Who will score the last touchdown in the game?',
|
|
135
|
+
resultType: ResultType.OVER_UNDER,
|
|
136
|
+
},
|
|
137
|
+
[MarketType.PLAYER_PROPS_3PTS_MADE]: {
|
|
138
|
+
id: MarketType.PLAYER_PROPS_3PTS_MADE,
|
|
139
|
+
key: 'threePointsMade',
|
|
140
|
+
name: 'Threes made',
|
|
141
|
+
resultType: ResultType.OVER_UNDER,
|
|
142
|
+
},
|
|
143
|
+
[MarketType.PLAYER_PROPS_BLOCKS]: {
|
|
144
|
+
id: MarketType.PLAYER_PROPS_BLOCKS,
|
|
145
|
+
key: 'blocks',
|
|
146
|
+
name: 'Blocks',
|
|
147
|
+
resultType: ResultType.OVER_UNDER,
|
|
148
|
+
},
|
|
149
|
+
[MarketType.PLAYER_PROPS_OVER_GOALS]: {
|
|
150
|
+
id: MarketType.PLAYER_PROPS_OVER_GOALS,
|
|
151
|
+
key: 'overGoals',
|
|
152
|
+
name: 'Over goals',
|
|
153
|
+
description: 'How many goals will player score?',
|
|
154
|
+
resultType: ResultType.OVER_UNDER,
|
|
155
|
+
},
|
|
156
|
+
|
|
157
|
+
// NFL player props
|
|
158
|
+
[MarketType.PLAYER_PROPS_INTERCEPTIONS]: {
|
|
159
|
+
id: MarketType.PLAYER_PROPS_INTERCEPTIONS,
|
|
160
|
+
key: 'interceptions',
|
|
161
|
+
name: 'Interceptions',
|
|
162
|
+
resultType: ResultType.OVER_UNDER,
|
|
163
|
+
},
|
|
164
|
+
[MarketType.PLAYER_PROPS_KICKING_POINTS]: {
|
|
165
|
+
id: MarketType.PLAYER_PROPS_KICKING_POINTS,
|
|
166
|
+
key: 'KickingPoints',
|
|
167
|
+
name: 'Kicking points',
|
|
168
|
+
resultType: ResultType.OVER_UNDER,
|
|
169
|
+
},
|
|
170
|
+
[MarketType.PLAYER_PROPS_PASSING_ATTEMPTS]: {
|
|
171
|
+
id: MarketType.PLAYER_PROPS_PASSING_ATTEMPTS,
|
|
172
|
+
key: 'passingAttempts',
|
|
173
|
+
name: 'Passing attempts',
|
|
174
|
+
resultType: ResultType.OVER_UNDER,
|
|
175
|
+
},
|
|
176
|
+
[MarketType.PLAYER_PROPS_PASSING_COMPLETIONS]: {
|
|
177
|
+
id: MarketType.PLAYER_PROPS_PASSING_COMPLETIONS,
|
|
178
|
+
key: 'passingCompletions',
|
|
179
|
+
name: 'Passing completions',
|
|
180
|
+
resultType: ResultType.OVER_UNDER,
|
|
181
|
+
},
|
|
182
|
+
[MarketType.PLAYER_PROPS_TOUCHDOWNS]: {
|
|
183
|
+
id: MarketType.PLAYER_PROPS_TOUCHDOWNS,
|
|
184
|
+
key: 'totalTouchdowns', // TODO: new
|
|
185
|
+
name: 'Touchdowns', // TODO: new
|
|
186
|
+
resultType: ResultType.OVER_UNDER,
|
|
187
|
+
},
|
|
188
|
+
|
|
189
|
+
[MarketType.PLAYER_PROPS_SACKS]: {
|
|
190
|
+
id: MarketType.PLAYER_PROPS_SACKS,
|
|
191
|
+
key: 'sacks',
|
|
192
|
+
name: 'Sacks',
|
|
193
|
+
tooltipKey: 'sacks',
|
|
194
|
+
resultType: ResultType.OVER_UNDER,
|
|
195
|
+
},
|
|
196
|
+
[MarketType.PLAYER_PROPS_PASSING_RUSHING]: {
|
|
197
|
+
id: MarketType.PLAYER_PROPS_PASSING_RUSHING,
|
|
198
|
+
key: 'passingAndRushing',
|
|
199
|
+
name: 'Passing + Rushing Yards',
|
|
200
|
+
tooltipKey: 'passing-rushing',
|
|
201
|
+
resultType: ResultType.OVER_UNDER,
|
|
202
|
+
},
|
|
203
|
+
[MarketType.PLAYER_PROPS_RUSHING_RECEIVING]: {
|
|
204
|
+
id: MarketType.PLAYER_PROPS_RUSHING_RECEIVING,
|
|
205
|
+
key: 'rushingAndReceiving',
|
|
206
|
+
name: 'Rushing + Receiving Yards',
|
|
207
|
+
tooltipKey: 'rushing-receiving',
|
|
208
|
+
resultType: ResultType.OVER_UNDER,
|
|
209
|
+
},
|
|
210
|
+
[MarketType.PLAYER_PROPS_LONGEST_RECEPTION]: {
|
|
211
|
+
id: MarketType.PLAYER_PROPS_LONGEST_RECEPTION,
|
|
212
|
+
key: 'longestReception',
|
|
213
|
+
name: 'Longest reception',
|
|
214
|
+
tooltipKey: 'longest-reception',
|
|
215
|
+
resultType: ResultType.OVER_UNDER,
|
|
216
|
+
},
|
|
217
|
+
[MarketType.PLAYER_PROPS_EXTRA_POINTS]: {
|
|
218
|
+
id: MarketType.PLAYER_PROPS_EXTRA_POINTS,
|
|
219
|
+
key: 'extraPoints',
|
|
220
|
+
name: 'Extra points',
|
|
221
|
+
tooltipKey: 'extra-points',
|
|
222
|
+
resultType: ResultType.OVER_UNDER,
|
|
223
|
+
},
|
|
224
|
+
[MarketType.PLAYER_PROPS_TACKLES]: {
|
|
225
|
+
id: MarketType.PLAYER_PROPS_TACKLES,
|
|
226
|
+
key: 'tackles',
|
|
227
|
+
name: 'Tackles (solo)',
|
|
228
|
+
tooltipKey: 'tackles',
|
|
229
|
+
resultType: ResultType.OVER_UNDER,
|
|
230
|
+
},
|
|
231
|
+
|
|
232
|
+
// Baseball player props
|
|
233
|
+
[MarketType.PLAYER_PROPS_OUTS]: {
|
|
234
|
+
id: MarketType.PLAYER_PROPS_OUTS,
|
|
235
|
+
key: 'outs',
|
|
236
|
+
name: 'Outs recorded',
|
|
237
|
+
resultType: ResultType.OVER_UNDER,
|
|
238
|
+
},
|
|
239
|
+
[MarketType.PLAYER_PROPS_RBIS]: {
|
|
240
|
+
id: MarketType.PLAYER_PROPS_RBIS,
|
|
241
|
+
key: 'rbis',
|
|
242
|
+
name: 'RBIs O/U',
|
|
243
|
+
resultType: ResultType.OVER_UNDER,
|
|
244
|
+
},
|
|
245
|
+
[MarketType.PLAYER_PROPS_HITS_RUNS_RBIS]: {
|
|
246
|
+
id: MarketType.PLAYER_PROPS_HITS_RUNS_RBIS,
|
|
247
|
+
key: 'hitsRunsRbis',
|
|
248
|
+
name: 'Hits + Runs + RBIs',
|
|
249
|
+
resultType: ResultType.OVER_UNDER,
|
|
250
|
+
},
|
|
251
|
+
[MarketType.PLAYER_PROPS_EARNED_RUNS]: {
|
|
252
|
+
id: MarketType.PLAYER_PROPS_EARNED_RUNS,
|
|
253
|
+
key: 'earnedRuns',
|
|
254
|
+
name: 'Earned runs allowed',
|
|
255
|
+
resultType: ResultType.OVER_UNDER,
|
|
256
|
+
},
|
|
257
|
+
[MarketType.PLAYER_PROPS_DOUBLES]: {
|
|
258
|
+
id: MarketType.PLAYER_PROPS_DOUBLES,
|
|
259
|
+
key: 'doubles',
|
|
260
|
+
name: 'Doubles',
|
|
261
|
+
resultType: ResultType.OVER_UNDER,
|
|
262
|
+
},
|
|
263
|
+
[MarketType.PLAYER_PROPS_BATTING_WALKS]: {
|
|
264
|
+
id: MarketType.PLAYER_PROPS_BATTING_WALKS,
|
|
265
|
+
key: 'battingWalks',
|
|
266
|
+
name: 'Batting walks',
|
|
267
|
+
resultType: ResultType.OVER_UNDER,
|
|
268
|
+
},
|
|
269
|
+
[MarketType.PLAYER_PROPS_BATTING_STRIKEOUTS]: {
|
|
270
|
+
id: MarketType.PLAYER_PROPS_BATTING_STRIKEOUTS,
|
|
271
|
+
key: 'battingStrikeouts',
|
|
272
|
+
name: 'Batting strikeouts',
|
|
273
|
+
resultType: ResultType.OVER_UNDER,
|
|
274
|
+
},
|
|
275
|
+
[MarketType.PLAYER_PROPS_SINGLES]: {
|
|
276
|
+
id: MarketType.PLAYER_PROPS_SINGLES,
|
|
277
|
+
key: 'singles',
|
|
278
|
+
name: 'Singles',
|
|
279
|
+
resultType: ResultType.OVER_UNDER,
|
|
280
|
+
},
|
|
281
|
+
[MarketType.PLAYER_PROPS_STOLEN_BASES]: {
|
|
282
|
+
id: MarketType.PLAYER_PROPS_STOLEN_BASES,
|
|
283
|
+
key: 'stolenBases',
|
|
284
|
+
name: 'Stolen bases',
|
|
285
|
+
resultType: ResultType.OVER_UNDER,
|
|
286
|
+
},
|
|
287
|
+
[MarketType.PLAYER_PROPS_RUNS]: {
|
|
288
|
+
id: MarketType.PLAYER_PROPS_RUNS,
|
|
289
|
+
key: 'runsScored',
|
|
290
|
+
name: 'Runs scored',
|
|
291
|
+
resultType: ResultType.OVER_UNDER,
|
|
292
|
+
},
|
|
293
|
+
[MarketType.PLAYER_PROPS_WALKS]: {
|
|
294
|
+
id: MarketType.PLAYER_PROPS_WALKS,
|
|
295
|
+
key: 'walksAllowed',
|
|
296
|
+
name: 'Walks allowed',
|
|
297
|
+
resultType: ResultType.OVER_UNDER,
|
|
298
|
+
},
|
|
299
|
+
// Basketball player props
|
|
300
|
+
[MarketType.PLAYER_PROPS_POINTS_ASSISTS]: {
|
|
301
|
+
id: MarketType.PLAYER_PROPS_POINTS_ASSISTS,
|
|
302
|
+
key: 'pointsAssists',
|
|
303
|
+
name: 'Points + Assists',
|
|
304
|
+
shortName: 'PTS + AST',
|
|
305
|
+
resultType: ResultType.OVER_UNDER,
|
|
306
|
+
},
|
|
307
|
+
[MarketType.PLAYER_PROPS_POINTS_REBOUNDS]: {
|
|
308
|
+
id: MarketType.PLAYER_PROPS_POINTS_REBOUNDS,
|
|
309
|
+
key: 'pointsRebound',
|
|
310
|
+
name: 'Points + Rebounds',
|
|
311
|
+
shortName: 'PTS + REB',
|
|
312
|
+
resultType: ResultType.OVER_UNDER,
|
|
313
|
+
},
|
|
314
|
+
[MarketType.PLAYER_PROPS_POINTS_REBOUNDS_ASSISTS]: {
|
|
315
|
+
id: MarketType.PLAYER_PROPS_POINTS_REBOUNDS_ASSISTS,
|
|
316
|
+
key: 'pointsReboundsAssists',
|
|
317
|
+
name: 'Points + Rebounds + Assists',
|
|
318
|
+
shortName: 'PTS + REB + AST',
|
|
319
|
+
resultType: ResultType.OVER_UNDER,
|
|
320
|
+
},
|
|
321
|
+
[MarketType.PLAYER_PROPS_REBOUNDS_ASSISTS]: {
|
|
322
|
+
id: MarketType.PLAYER_PROPS_REBOUNDS_ASSISTS,
|
|
323
|
+
key: 'reboundsAssists',
|
|
324
|
+
name: 'Rebounds + Assists',
|
|
325
|
+
shortName: 'REB + AST',
|
|
326
|
+
resultType: ResultType.OVER_UNDER,
|
|
327
|
+
},
|
|
328
|
+
[MarketType.PLAYER_PROPS_STEALS]: {
|
|
329
|
+
id: MarketType.PLAYER_PROPS_STEALS,
|
|
330
|
+
key: 'steals',
|
|
331
|
+
name: 'Steals',
|
|
332
|
+
resultType: ResultType.OVER_UNDER,
|
|
333
|
+
},
|
|
334
|
+
[MarketType.PLAYER_PROPS_STEALS_BLOCKS]: {
|
|
335
|
+
id: MarketType.PLAYER_PROPS_STEALS_BLOCKS,
|
|
336
|
+
key: 'stealsBlocks',
|
|
337
|
+
name: 'Steals + Blocks',
|
|
338
|
+
resultType: ResultType.OVER_UNDER,
|
|
339
|
+
},
|
|
340
|
+
[MarketType.PLAYER_PROPS_LONGEST_RUSH]: {
|
|
341
|
+
id: MarketType.PLAYER_PROPS_LONGEST_RUSH,
|
|
342
|
+
key: 'longestRush',
|
|
343
|
+
name: 'Longest rush',
|
|
344
|
+
tooltipKey: 'longest-rush',
|
|
345
|
+
resultType: ResultType.OVER_UNDER,
|
|
346
|
+
},
|
|
347
|
+
|
|
348
|
+
// Soccer player props
|
|
349
|
+
[MarketType.PLAYER_PROPS_CARD_RECEIVER]: {
|
|
350
|
+
id: MarketType.PLAYER_PROPS_CARD_RECEIVER,
|
|
351
|
+
key: 'cardReceiver',
|
|
352
|
+
name: 'Card receiver',
|
|
353
|
+
resultType: ResultType.OVER_UNDER,
|
|
354
|
+
},
|
|
355
|
+
[MarketType.PLAYER_PROPS_RED_CARD_RECEIVER]: {
|
|
356
|
+
id: MarketType.PLAYER_PROPS_RED_CARD_RECEIVER,
|
|
357
|
+
key: 'redCardReceiver',
|
|
358
|
+
name: 'Red card receiver',
|
|
359
|
+
resultType: ResultType.OVER_UNDER,
|
|
360
|
+
},
|
|
361
|
+
[MarketType.PLAYER_PROPS_FIRST_SCORER]: {
|
|
362
|
+
id: MarketType.PLAYER_PROPS_FIRST_SCORER,
|
|
363
|
+
key: 'firstScorer',
|
|
364
|
+
name: 'First scorer',
|
|
365
|
+
resultType: ResultType.OVER_UNDER,
|
|
366
|
+
},
|
|
367
|
+
[MarketType.PLAYER_PROPS_LAST_SCORER]: {
|
|
368
|
+
id: MarketType.PLAYER_PROPS_LAST_SCORER,
|
|
369
|
+
key: 'lastScorer',
|
|
370
|
+
name: 'Last scorer',
|
|
371
|
+
resultType: ResultType.OVER_UNDER,
|
|
372
|
+
},
|
|
373
|
+
[MarketType.PLAYER_PROPS_SHOTS_ON_TARGET]: {
|
|
374
|
+
id: MarketType.PLAYER_PROPS_SHOTS_ON_TARGET,
|
|
375
|
+
key: 'shotsOnTarget',
|
|
376
|
+
name: 'Shots on target',
|
|
377
|
+
resultType: ResultType.OVER_UNDER,
|
|
378
|
+
},
|
|
379
|
+
[MarketType.PLAYER_PROPS_TOTAL_SHOTS]: {
|
|
380
|
+
id: MarketType.PLAYER_PROPS_TOTAL_SHOTS,
|
|
381
|
+
key: 'shots',
|
|
382
|
+
name: 'Shots',
|
|
383
|
+
resultType: ResultType.OVER_UNDER,
|
|
384
|
+
},
|
|
385
|
+
[MarketType.PLAYER_PROPS_BLOCKED_SHOTS]: {
|
|
386
|
+
id: MarketType.PLAYER_PROPS_BLOCKED_SHOTS,
|
|
387
|
+
key: 'blockedShots',
|
|
388
|
+
name: 'Blocked shots',
|
|
389
|
+
resultType: ResultType.OVER_UNDER,
|
|
390
|
+
},
|
|
391
|
+
[MarketType.PLAYER_PROPS_TURNOVERS]: {
|
|
392
|
+
id: MarketType.PLAYER_PROPS_TURNOVERS,
|
|
393
|
+
key: 'turnovers',
|
|
394
|
+
name: 'Turnovers',
|
|
395
|
+
resultType: ResultType.OVER_UNDER,
|
|
396
|
+
},
|
|
397
|
+
|
|
398
|
+
// Tennis player props market types
|
|
399
|
+
[MarketType.PLAYER_PROPS_ACES]: {
|
|
400
|
+
id: MarketType.PLAYER_PROPS_ACES,
|
|
401
|
+
key: 'aces',
|
|
402
|
+
name: 'Aces',
|
|
403
|
+
resultType: ResultType.OVER_UNDER,
|
|
404
|
+
},
|
|
405
|
+
[MarketType.PLAYER_PROPS_BREAK_POINTS_WON]: {
|
|
406
|
+
id: MarketType.PLAYER_PROPS_BREAK_POINTS_WON,
|
|
407
|
+
key: 'breakPointsWon',
|
|
408
|
+
name: 'Break points won',
|
|
409
|
+
resultType: ResultType.OVER_UNDER,
|
|
410
|
+
},
|
|
411
|
+
[MarketType.PLAYER_PROPS_DOUBLE_FAULTS]: {
|
|
412
|
+
id: MarketType.PLAYER_PROPS_DOUBLE_FAULTS,
|
|
413
|
+
key: 'doubleFaults',
|
|
414
|
+
name: 'Double faults',
|
|
415
|
+
resultType: ResultType.OVER_UNDER,
|
|
416
|
+
},
|
|
417
|
+
|
|
418
|
+
// Cricket player props market types
|
|
419
|
+
[MarketType.PLAYER_PROPS_MAN_OF_THE_MATCH]: {
|
|
420
|
+
id: MarketType.PLAYER_PROPS_MAN_OF_THE_MATCH,
|
|
421
|
+
key: 'manOfTheMatch',
|
|
422
|
+
name: 'Man of the match',
|
|
423
|
+
resultType: ResultType.OVER_UNDER,
|
|
424
|
+
},
|
|
425
|
+
[MarketType.PLAYER_PROPS_WICKETS_TAKEN]: {
|
|
426
|
+
id: MarketType.PLAYER_PROPS_WICKETS_TAKEN,
|
|
427
|
+
key: 'wicketsTaken',
|
|
428
|
+
name: 'Wickets taken',
|
|
429
|
+
resultType: ResultType.OVER_UNDER,
|
|
430
|
+
},
|
|
431
|
+
[MarketType.PLAYER_PROPS_SIXES]: {
|
|
432
|
+
id: MarketType.PLAYER_PROPS_SIXES,
|
|
433
|
+
key: 'sixes',
|
|
434
|
+
name: 'Sixes',
|
|
435
|
+
resultType: ResultType.OVER_UNDER,
|
|
436
|
+
},
|
|
437
|
+
[MarketType.PLAYER_PROPS_FOURS]: {
|
|
438
|
+
id: MarketType.PLAYER_PROPS_FOURS,
|
|
439
|
+
key: 'fours',
|
|
440
|
+
name: 'Fours',
|
|
441
|
+
resultType: ResultType.OVER_UNDER,
|
|
442
|
+
},
|
|
443
|
+
|
|
444
|
+
// Darts player props market types
|
|
445
|
+
[MarketType.PLAYER_PROPS_THREE_DART_AVERAGE]: {
|
|
446
|
+
id: MarketType.PLAYER_PROPS_THREE_DART_AVERAGE,
|
|
447
|
+
key: 'threeDartAverage',
|
|
448
|
+
name: '3 dart average',
|
|
449
|
+
resultType: ResultType.OVER_UNDER,
|
|
450
|
+
},
|
|
451
|
+
[MarketType.PLAYER_PROPS_180]: {
|
|
452
|
+
id: MarketType.PLAYER_PROPS_180,
|
|
453
|
+
key: 'totalPlayer180s',
|
|
454
|
+
name: 'Total player 180s',
|
|
455
|
+
resultType: ResultType.OVER_UNDER,
|
|
456
|
+
},
|
|
457
|
+
[MarketType.PLAYER_PROPS_100_PLUS_CHECKOUTS]: {
|
|
458
|
+
id: MarketType.PLAYER_PROPS_100_PLUS_CHECKOUTS,
|
|
459
|
+
key: 'player100PlusCheckouts',
|
|
460
|
+
name: 'Player 100+ checkouts',
|
|
461
|
+
resultType: ResultType.OVER_UNDER,
|
|
462
|
+
},
|
|
463
|
+
[MarketType.PLAYER_PROPS_HIGHEST_CHECKOUT]: {
|
|
464
|
+
id: MarketType.PLAYER_PROPS_HIGHEST_CHECKOUT,
|
|
465
|
+
key: 'playerHighestCheckouts',
|
|
466
|
+
name: 'Player highest checkouts',
|
|
467
|
+
resultType: ResultType.OVER_UNDER,
|
|
468
|
+
},
|
|
469
|
+
|
|
470
|
+
// Basketball player props market types
|
|
471
|
+
[MarketType.PLAYER_PROPS_FREE_THROWS_ATTEMPTED]: {
|
|
472
|
+
id: MarketType.PLAYER_PROPS_FREE_THROWS_ATTEMPTED,
|
|
473
|
+
key: 'freeThrowsAttempted',
|
|
474
|
+
name: 'Free throws attempted',
|
|
475
|
+
resultType: ResultType.OVER_UNDER,
|
|
476
|
+
},
|
|
477
|
+
[MarketType.PLAYER_PROPS_FREE_THROWS_MADE]: {
|
|
478
|
+
id: MarketType.PLAYER_PROPS_FREE_THROWS_MADE,
|
|
479
|
+
key: 'freeThrowsMade',
|
|
480
|
+
name: 'Free throws made',
|
|
481
|
+
resultType: ResultType.OVER_UNDER,
|
|
482
|
+
},
|
|
483
|
+
[MarketType.PLAYER_PROPS_FIELD_GOALS_ATTEMPTED]: {
|
|
484
|
+
id: MarketType.PLAYER_PROPS_FIELD_GOALS_ATTEMPTED,
|
|
485
|
+
key: 'fieldGoalsAttempted',
|
|
486
|
+
name: 'Field goals attempted',
|
|
487
|
+
resultType: ResultType.OVER_UNDER,
|
|
488
|
+
},
|
|
489
|
+
[MarketType.PLAYER_PROPS_FIELD_GOALS_MADE]: {
|
|
490
|
+
id: MarketType.PLAYER_PROPS_FIELD_GOALS_MADE,
|
|
491
|
+
key: 'fieldGoalsMade',
|
|
492
|
+
name: 'Field goals made',
|
|
493
|
+
resultType: ResultType.OVER_UNDER,
|
|
494
|
+
},
|
|
495
|
+
[MarketType.PLAYER_PROPS_FOULS]: {
|
|
496
|
+
id: MarketType.PLAYER_PROPS_FOULS,
|
|
497
|
+
key: 'fouls',
|
|
498
|
+
name: 'Fouls',
|
|
499
|
+
resultType: ResultType.OVER_UNDER,
|
|
500
|
+
},
|
|
501
|
+
[MarketType.PLAYER_PROPS_THREES_ATTEMPTED]: {
|
|
502
|
+
id: MarketType.PLAYER_PROPS_THREES_ATTEMPTED,
|
|
503
|
+
key: 'threesAttempted',
|
|
504
|
+
name: 'Threes attempted',
|
|
505
|
+
resultType: ResultType.OVER_UNDER,
|
|
506
|
+
},
|
|
507
|
+
[MarketType.PLAYER_PROPS_TWO_POINTERS_ATTEMPTED]: {
|
|
508
|
+
id: MarketType.PLAYER_PROPS_TWO_POINTERS_ATTEMPTED,
|
|
509
|
+
key: 'twoPointersAttempted',
|
|
510
|
+
name: 'Two pointers attempted',
|
|
511
|
+
resultType: ResultType.OVER_UNDER,
|
|
512
|
+
},
|
|
513
|
+
[MarketType.PLAYER_PROPS_MADE_TWO_POINTERS]: {
|
|
514
|
+
id: MarketType.PLAYER_PROPS_MADE_TWO_POINTERS,
|
|
515
|
+
key: 'twoPointersMade',
|
|
516
|
+
name: 'Two pointers made',
|
|
517
|
+
resultType: ResultType.OVER_UNDER,
|
|
518
|
+
},
|
|
519
|
+
|
|
520
|
+
// UFC player props market types
|
|
521
|
+
[MarketType.PLAYER_PROPS_UFC_TAKEDOWNS_LANDED]: {
|
|
522
|
+
id: MarketType.PLAYER_PROPS_UFC_TAKEDOWNS_LANDED,
|
|
523
|
+
key: 'takedownsLanded',
|
|
524
|
+
name: 'Takedowns landed',
|
|
525
|
+
resultType: ResultType.OVER_UNDER,
|
|
526
|
+
},
|
|
527
|
+
[MarketType.PLAYER_PROPS_UFC_SIGNIFICANT_STRIKES_LANDED]: {
|
|
528
|
+
id: MarketType.PLAYER_PROPS_UFC_SIGNIFICANT_STRIKES_LANDED,
|
|
529
|
+
key: 'significantStrikesLanded',
|
|
530
|
+
name: 'Significant strikes landed',
|
|
531
|
+
resultType: ResultType.OVER_UNDER,
|
|
532
|
+
},
|
|
533
|
+
|
|
534
|
+
// Esports player props market types
|
|
535
|
+
[MarketType.PLAYER_PROPS_KILLS]: {
|
|
536
|
+
id: MarketType.PLAYER_PROPS_KILLS,
|
|
537
|
+
key: 'kills',
|
|
538
|
+
name: 'Player Kills',
|
|
539
|
+
resultType: ResultType.OVER_UNDER,
|
|
540
|
+
},
|
|
541
|
+
[MarketType.PLAYER_PROPS_1ST_MAP_KILLS]: {
|
|
542
|
+
id: MarketType.PLAYER_PROPS_1ST_MAP_KILLS,
|
|
543
|
+
key: 'killsMap1',
|
|
544
|
+
name: '1st Map Player Kills',
|
|
545
|
+
resultType: ResultType.OVER_UNDER,
|
|
546
|
+
},
|
|
547
|
+
[MarketType.PLAYER_PROPS_2ND_MAP_KILLS]: {
|
|
548
|
+
id: MarketType.PLAYER_PROPS_2ND_MAP_KILLS,
|
|
549
|
+
key: 'killsMap2',
|
|
550
|
+
name: '2nd Map Player Kills',
|
|
551
|
+
resultType: ResultType.OVER_UNDER,
|
|
552
|
+
},
|
|
553
|
+
[MarketType.PLAYER_PROPS_3RD_MAP_KILLS]: {
|
|
554
|
+
id: MarketType.PLAYER_PROPS_3RD_MAP_KILLS,
|
|
555
|
+
key: 'killsMap3',
|
|
556
|
+
name: '3rd Map Player Kills',
|
|
557
|
+
resultType: ResultType.OVER_UNDER,
|
|
558
|
+
},
|
|
559
|
+
[MarketType.PLAYER_PROPS_4TH_MAP_KILLS]: {
|
|
560
|
+
id: MarketType.PLAYER_PROPS_4TH_MAP_KILLS,
|
|
561
|
+
key: 'killsMap4',
|
|
562
|
+
name: '4th Map Player Kills',
|
|
563
|
+
resultType: ResultType.OVER_UNDER,
|
|
564
|
+
},
|
|
565
|
+
[MarketType.PLAYER_PROPS_5TH_MAP_KILLS]: {
|
|
566
|
+
id: MarketType.PLAYER_PROPS_5TH_MAP_KILLS,
|
|
567
|
+
key: 'killsMap5',
|
|
568
|
+
name: '5th Map Player Kills',
|
|
569
|
+
resultType: ResultType.OVER_UNDER,
|
|
570
|
+
},
|
|
571
|
+
[MarketType.PLAYER_PROPS_1ST_2_MAPS_KILLS]: {
|
|
572
|
+
id: MarketType.PLAYER_PROPS_1ST_2_MAPS_KILLS,
|
|
573
|
+
key: 'killsMaps1to2',
|
|
574
|
+
name: '1st 2 Maps Player Kills',
|
|
575
|
+
resultType: ResultType.OVER_UNDER,
|
|
576
|
+
},
|
|
577
|
+
[MarketType.PLAYER_PROPS_1ST_3_MAPS_KILLS]: {
|
|
578
|
+
id: MarketType.PLAYER_PROPS_1ST_3_MAPS_KILLS,
|
|
579
|
+
key: 'killsMaps1to3',
|
|
580
|
+
name: '1st 3 Maps Player Kills',
|
|
581
|
+
resultType: ResultType.OVER_UNDER,
|
|
582
|
+
},
|
|
583
|
+
[MarketType.PLAYER_PROPS_1ST_MAP_ASSISTS]: {
|
|
584
|
+
id: MarketType.PLAYER_PROPS_1ST_MAP_ASSISTS,
|
|
585
|
+
key: 'assistsMap1',
|
|
586
|
+
name: '1st Map Player Assists',
|
|
587
|
+
resultType: ResultType.OVER_UNDER,
|
|
588
|
+
},
|
|
589
|
+
[MarketType.PLAYER_PROPS_2ND_MAP_ASSISTS]: {
|
|
590
|
+
id: MarketType.PLAYER_PROPS_2ND_MAP_ASSISTS,
|
|
591
|
+
key: 'assistsMap2',
|
|
592
|
+
name: '2nd Map Player Assists',
|
|
593
|
+
resultType: ResultType.OVER_UNDER,
|
|
594
|
+
},
|
|
595
|
+
[MarketType.PLAYER_PROPS_3RD_MAP_ASSISTS]: {
|
|
596
|
+
id: MarketType.PLAYER_PROPS_3RD_MAP_ASSISTS,
|
|
597
|
+
key: 'assistsMap3',
|
|
598
|
+
name: '3rd Map Player Assists',
|
|
599
|
+
resultType: ResultType.OVER_UNDER,
|
|
600
|
+
},
|
|
601
|
+
[MarketType.PLAYER_PROPS_4TH_MAP_ASSISTS]: {
|
|
602
|
+
id: MarketType.PLAYER_PROPS_4TH_MAP_ASSISTS,
|
|
603
|
+
key: 'assistsMap4',
|
|
604
|
+
name: '4th Map Player Assists',
|
|
605
|
+
resultType: ResultType.OVER_UNDER,
|
|
606
|
+
},
|
|
607
|
+
[MarketType.PLAYER_PROPS_5TH_MAP_ASSISTS]: {
|
|
608
|
+
id: MarketType.PLAYER_PROPS_5TH_MAP_ASSISTS,
|
|
609
|
+
key: 'assistsMap5',
|
|
610
|
+
name: '5th Map Player Assists',
|
|
611
|
+
resultType: ResultType.OVER_UNDER,
|
|
612
|
+
},
|
|
613
|
+
[MarketType.PLAYER_PROPS_1ST_2_MAPS_ASSISTS]: {
|
|
614
|
+
id: MarketType.PLAYER_PROPS_1ST_2_MAPS_ASSISTS,
|
|
615
|
+
key: 'assistsMaps1to2',
|
|
616
|
+
name: '1st 2 Maps Player Assists',
|
|
617
|
+
resultType: ResultType.OVER_UNDER,
|
|
618
|
+
},
|
|
619
|
+
[MarketType.PLAYER_PROPS_1ST_3_MAPS_ASSISTS]: {
|
|
620
|
+
id: MarketType.PLAYER_PROPS_1ST_3_MAPS_ASSISTS,
|
|
621
|
+
key: 'assistsMaps1to3',
|
|
622
|
+
name: '1st 3 Maps Player Assists',
|
|
623
|
+
resultType: ResultType.OVER_UNDER,
|
|
624
|
+
},
|
|
625
|
+
[MarketType.PLAYER_PROPS_DEATHS]: {
|
|
626
|
+
id: MarketType.PLAYER_PROPS_DEATHS,
|
|
627
|
+
key: 'deaths',
|
|
628
|
+
name: 'Player Deaths',
|
|
629
|
+
resultType: ResultType.OVER_UNDER,
|
|
630
|
+
},
|
|
631
|
+
[MarketType.PLAYER_PROPS_1ST_MAP_DEATHS]: {
|
|
632
|
+
id: MarketType.PLAYER_PROPS_1ST_MAP_DEATHS,
|
|
633
|
+
key: 'deathsMap1',
|
|
634
|
+
name: '1st Map Player Deaths',
|
|
635
|
+
resultType: ResultType.OVER_UNDER,
|
|
636
|
+
},
|
|
637
|
+
[MarketType.PLAYER_PROPS_2ND_MAP_DEATHS]: {
|
|
638
|
+
id: MarketType.PLAYER_PROPS_2ND_MAP_DEATHS,
|
|
639
|
+
key: 'deathsMap2',
|
|
640
|
+
name: '2nd Map Player Deaths',
|
|
641
|
+
resultType: ResultType.OVER_UNDER,
|
|
642
|
+
},
|
|
643
|
+
[MarketType.PLAYER_PROPS_3RD_MAP_DEATHS]: {
|
|
644
|
+
id: MarketType.PLAYER_PROPS_3RD_MAP_DEATHS,
|
|
645
|
+
key: 'deathsMap3',
|
|
646
|
+
name: '3rd Map Player Deaths',
|
|
647
|
+
resultType: ResultType.OVER_UNDER,
|
|
648
|
+
},
|
|
649
|
+
[MarketType.PLAYER_PROPS_4TH_MAP_DEATHS]: {
|
|
650
|
+
id: MarketType.PLAYER_PROPS_4TH_MAP_DEATHS,
|
|
651
|
+
key: 'deathsMap4',
|
|
652
|
+
name: '4th Map Player Deaths',
|
|
653
|
+
resultType: ResultType.OVER_UNDER,
|
|
654
|
+
},
|
|
655
|
+
[MarketType.PLAYER_PROPS_5TH_MAP_DEATHS]: {
|
|
656
|
+
id: MarketType.PLAYER_PROPS_5TH_MAP_DEATHS,
|
|
657
|
+
key: 'deathsMap5',
|
|
658
|
+
name: '5th Map Player Deaths',
|
|
659
|
+
resultType: ResultType.OVER_UNDER,
|
|
660
|
+
},
|
|
661
|
+
[MarketType.PLAYER_PROPS_1ST_2_MAPS_DEATHS]: {
|
|
662
|
+
id: MarketType.PLAYER_PROPS_1ST_2_MAPS_DEATHS,
|
|
663
|
+
key: 'deathsMaps1to2',
|
|
664
|
+
name: '1st 2 Maps Player Deaths',
|
|
665
|
+
resultType: ResultType.OVER_UNDER,
|
|
666
|
+
},
|
|
667
|
+
[MarketType.PLAYER_PROPS_1ST_3_MAPS_DEATHS]: {
|
|
668
|
+
id: MarketType.PLAYER_PROPS_1ST_3_MAPS_DEATHS,
|
|
669
|
+
key: 'deathsMaps1to3',
|
|
670
|
+
name: '1st 3 Maps Player Deaths',
|
|
671
|
+
resultType: ResultType.OVER_UNDER,
|
|
672
|
+
},
|
|
673
|
+
[MarketType.PLAYER_PROPS_HEADSHOTS]: {
|
|
674
|
+
id: MarketType.PLAYER_PROPS_HEADSHOTS,
|
|
675
|
+
key: 'headshots',
|
|
676
|
+
name: 'Player Headshots',
|
|
677
|
+
resultType: ResultType.OVER_UNDER,
|
|
678
|
+
},
|
|
679
|
+
[MarketType.PLAYER_PROPS_1ST_MAP_HEADSHOTS]: {
|
|
680
|
+
id: MarketType.PLAYER_PROPS_1ST_MAP_HEADSHOTS,
|
|
681
|
+
key: 'headshotsMap1',
|
|
682
|
+
name: '1st Map Player Headshots',
|
|
683
|
+
resultType: ResultType.OVER_UNDER,
|
|
684
|
+
},
|
|
685
|
+
[MarketType.PLAYER_PROPS_2ND_MAP_HEADSHOTS]: {
|
|
686
|
+
id: MarketType.PLAYER_PROPS_2ND_MAP_HEADSHOTS,
|
|
687
|
+
key: 'headshotsMap2',
|
|
688
|
+
name: '2nd Map Player Headshots',
|
|
689
|
+
resultType: ResultType.OVER_UNDER,
|
|
690
|
+
},
|
|
691
|
+
[MarketType.PLAYER_PROPS_3RD_MAP_HEADSHOTS]: {
|
|
692
|
+
id: MarketType.PLAYER_PROPS_3RD_MAP_HEADSHOTS,
|
|
693
|
+
key: 'headshotsMap3',
|
|
694
|
+
name: '3rd Map Player Headshots',
|
|
695
|
+
resultType: ResultType.OVER_UNDER,
|
|
696
|
+
},
|
|
697
|
+
[MarketType.PLAYER_PROPS_4TH_MAP_HEADSHOTS]: {
|
|
698
|
+
id: MarketType.PLAYER_PROPS_4TH_MAP_HEADSHOTS,
|
|
699
|
+
key: 'headshotsMap4',
|
|
700
|
+
name: '4th Map Player Headshots',
|
|
701
|
+
resultType: ResultType.OVER_UNDER,
|
|
702
|
+
},
|
|
703
|
+
[MarketType.PLAYER_PROPS_5TH_MAP_HEADSHOTS]: {
|
|
704
|
+
id: MarketType.PLAYER_PROPS_5TH_MAP_HEADSHOTS,
|
|
705
|
+
key: 'headshotsMap5',
|
|
706
|
+
name: '5th Map Player Headshots',
|
|
707
|
+
resultType: ResultType.OVER_UNDER,
|
|
708
|
+
},
|
|
709
|
+
[MarketType.PLAYER_PROPS_1ST_2_MAPS_HEADSHOTS]: {
|
|
710
|
+
id: MarketType.PLAYER_PROPS_1ST_2_MAPS_HEADSHOTS,
|
|
711
|
+
key: 'headshotsMaps1to2',
|
|
712
|
+
name: '1st 2 Maps Player Headshots',
|
|
713
|
+
resultType: ResultType.OVER_UNDER,
|
|
714
|
+
},
|
|
715
|
+
[MarketType.PLAYER_PROPS_1ST_3_MAPS_HEADSHOTS]: {
|
|
716
|
+
id: MarketType.PLAYER_PROPS_1ST_3_MAPS_HEADSHOTS,
|
|
717
|
+
key: 'headshotsMaps1to3',
|
|
718
|
+
name: '1st 3 Maps Player Headshots',
|
|
719
|
+
resultType: ResultType.OVER_UNDER,
|
|
720
|
+
},
|
|
721
|
+
|
|
722
|
+
// NFL player props
|
|
723
|
+
[MarketType.PLAYER_PROPS_RUSHING_ATTEMPTS]: {
|
|
724
|
+
id: MarketType.PLAYER_PROPS_RUSHING_ATTEMPTS,
|
|
725
|
+
key: 'rushingAttempts',
|
|
726
|
+
name: 'Rushing Attempts',
|
|
727
|
+
resultType: ResultType.OVER_UNDER,
|
|
728
|
+
},
|
|
729
|
+
[MarketType.PLAYER_PROPS_LONGEST_PASSING_COMPLETION]: {
|
|
730
|
+
id: MarketType.PLAYER_PROPS_LONGEST_PASSING_COMPLETION,
|
|
731
|
+
key: 'longestPassingCompletion',
|
|
732
|
+
name: 'Longest Passing Completion',
|
|
733
|
+
resultType: ResultType.OVER_UNDER,
|
|
734
|
+
},
|
|
735
|
+
// Soccer / hockey player props
|
|
736
|
+
[MarketType.PLAYER_PROPS_FOULS_DRAWN]: {
|
|
737
|
+
id: MarketType.PLAYER_PROPS_FOULS_DRAWN,
|
|
738
|
+
key: 'foulsDrawn',
|
|
739
|
+
name: 'Fouls Drawn',
|
|
740
|
+
resultType: ResultType.OVER_UNDER,
|
|
741
|
+
},
|
|
742
|
+
[MarketType.PLAYER_PROPS_GOALS_ASSISTS]: {
|
|
743
|
+
id: MarketType.PLAYER_PROPS_GOALS_ASSISTS,
|
|
744
|
+
key: 'goalsAssists',
|
|
745
|
+
name: 'Goals + Assists',
|
|
746
|
+
resultType: ResultType.OVER_UNDER,
|
|
747
|
+
},
|
|
748
|
+
[MarketType.PLAYER_PROPS_OFFSIDES]: {
|
|
749
|
+
id: MarketType.PLAYER_PROPS_OFFSIDES,
|
|
750
|
+
key: 'offsides',
|
|
751
|
+
name: 'Offsides',
|
|
752
|
+
resultType: ResultType.OVER_UNDER,
|
|
753
|
+
},
|
|
754
|
+
[MarketType.PLAYER_PROPS_SAVES]: {
|
|
755
|
+
id: MarketType.PLAYER_PROPS_SAVES,
|
|
756
|
+
key: 'saves',
|
|
757
|
+
name: 'Saves',
|
|
758
|
+
resultType: ResultType.OVER_UNDER,
|
|
759
|
+
},
|
|
760
|
+
[MarketType.PLAYER_PROPS_TO_SCORE_AND_ASSIST]: {
|
|
761
|
+
id: MarketType.PLAYER_PROPS_TO_SCORE_AND_ASSIST,
|
|
762
|
+
key: 'toScoreAndAssist',
|
|
763
|
+
name: 'To Score And Give Assist',
|
|
764
|
+
resultType: ResultType.EXACT_POSITION,
|
|
765
|
+
},
|
|
766
|
+
[MarketType.PLAYER_PROPS_TO_SCORE_OR_ASSIST]: {
|
|
767
|
+
id: MarketType.PLAYER_PROPS_TO_SCORE_OR_ASSIST,
|
|
768
|
+
key: 'toScoreOrAssist',
|
|
769
|
+
name: 'To Score Or Give Assist',
|
|
770
|
+
resultType: ResultType.EXACT_POSITION,
|
|
771
|
+
},
|
|
772
|
+
[MarketType.PLAYER_PROPS_FACEOFFS_WON]: {
|
|
773
|
+
id: MarketType.PLAYER_PROPS_FACEOFFS_WON,
|
|
774
|
+
key: 'faceoffsWon',
|
|
775
|
+
name: 'Player Faceoffs Won',
|
|
776
|
+
resultType: ResultType.OVER_UNDER,
|
|
777
|
+
},
|
|
778
|
+
};
|