overtime-utils 0.2.44 → 0.2.46

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.
@@ -0,0 +1,518 @@
1
+ import { MarketType, ResultType } from '../../enums/marketTypes';
2
+ import { MarketTypeInfo } from '../../types/marketTypes';
3
+
4
+ export const RACE_TO_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>> = {
5
+ // Race to points
6
+ [MarketType.RACE_TO_5_POINTS]: {
7
+ id: MarketType.RACE_TO_5_POINTS,
8
+ key: 'raceTo5Points',
9
+ name: 'Race to 5 points',
10
+ resultType: ResultType.EXACT_POSITION,
11
+ },
12
+ [MarketType.RACE_TO_6_POINTS]: {
13
+ id: MarketType.RACE_TO_6_POINTS,
14
+ key: 'raceTo6Points',
15
+ name: 'Race to 6 points',
16
+ resultType: ResultType.EXACT_POSITION,
17
+ },
18
+ [MarketType.RACE_TO_7_POINTS]: {
19
+ id: MarketType.RACE_TO_7_POINTS,
20
+ key: 'raceTo7Points',
21
+ name: 'Race to 7 points',
22
+ resultType: ResultType.EXACT_POSITION,
23
+ },
24
+ [MarketType.RACE_TO_9_POINTS]: {
25
+ id: MarketType.RACE_TO_9_POINTS,
26
+ key: 'raceTo9Points',
27
+ name: 'Race to 9 points',
28
+ resultType: ResultType.EXACT_POSITION,
29
+ },
30
+ [MarketType.RACE_TO_10_POINTS]: {
31
+ id: MarketType.RACE_TO_10_POINTS,
32
+ key: 'raceTo10Points',
33
+ name: 'Race to 10 points',
34
+ resultType: ResultType.EXACT_POSITION,
35
+ },
36
+ [MarketType.RACE_TO_12_POINTS]: {
37
+ id: MarketType.RACE_TO_12_POINTS,
38
+ key: 'raceTo12Points',
39
+ name: 'Race to 12 points',
40
+ resultType: ResultType.EXACT_POSITION,
41
+ },
42
+ [MarketType.RACE_TO_15_POINTS]: {
43
+ id: MarketType.RACE_TO_15_POINTS,
44
+ key: 'raceTo15Points',
45
+ name: 'Race to 15 points',
46
+ resultType: ResultType.EXACT_POSITION,
47
+ },
48
+ [MarketType.RACE_TO_20_POINTS]: {
49
+ id: MarketType.RACE_TO_20_POINTS,
50
+ key: 'raceTo20Points',
51
+ name: 'Race to 20 points',
52
+ resultType: ResultType.EXACT_POSITION,
53
+ },
54
+ [MarketType.RACE_TO_25_POINTS]: {
55
+ id: MarketType.RACE_TO_25_POINTS,
56
+ key: 'raceTo25Points',
57
+ name: 'Race to 25 points',
58
+ resultType: ResultType.EXACT_POSITION,
59
+ },
60
+ [MarketType.RACE_TO_28_POINTS]: {
61
+ id: MarketType.RACE_TO_28_POINTS,
62
+ key: 'raceTo28Points',
63
+ name: 'Race to 28 points',
64
+ resultType: ResultType.EXACT_POSITION,
65
+ },
66
+ [MarketType.RACE_TO_30_POINTS]: {
67
+ id: MarketType.RACE_TO_30_POINTS,
68
+ key: 'raceTo30Points',
69
+ name: 'Race to 30 points',
70
+ resultType: ResultType.EXACT_POSITION,
71
+ },
72
+ [MarketType.RACE_TO_35_POINTS]: {
73
+ id: MarketType.RACE_TO_35_POINTS,
74
+ key: 'raceTo35Points',
75
+ name: 'Race to 35 points',
76
+ resultType: ResultType.EXACT_POSITION,
77
+ },
78
+
79
+ // Race to points period - half for football/basketball
80
+ [MarketType.FIRST_PERIOD_RACE_TO_5_POINTS2]: {
81
+ id: MarketType.FIRST_PERIOD_RACE_TO_5_POINTS2,
82
+ key: 'firstPeriodRaceTo5Points2',
83
+ name: 'Race to 5 points 1st',
84
+ resultType: ResultType.EXACT_POSITION,
85
+ },
86
+ [MarketType.FIRST_PERIOD_RACE_TO_6_POINTS2]: {
87
+ id: MarketType.FIRST_PERIOD_RACE_TO_6_POINTS2,
88
+ key: 'firstPeriodRaceTo6Points2',
89
+ name: 'Race to 6 points 1st',
90
+ resultType: ResultType.EXACT_POSITION,
91
+ },
92
+ [MarketType.FIRST_PERIOD_RACE_TO_7_POINTS2]: {
93
+ id: MarketType.FIRST_PERIOD_RACE_TO_7_POINTS2,
94
+ key: 'firstPeriodRaceTo7Points2',
95
+ name: 'Race to 7 points 1st',
96
+ resultType: ResultType.EXACT_POSITION,
97
+ },
98
+ [MarketType.FIRST_PERIOD_RACE_TO_9_POINTS2]: {
99
+ id: MarketType.FIRST_PERIOD_RACE_TO_9_POINTS2,
100
+ key: 'firstPeriodRaceTo9Points2',
101
+ name: 'Race to 9 points 1st',
102
+ resultType: ResultType.EXACT_POSITION,
103
+ },
104
+ [MarketType.FIRST_PERIOD_RACE_TO_10_POINTS2]: {
105
+ id: MarketType.FIRST_PERIOD_RACE_TO_10_POINTS2,
106
+ key: 'firstPeriodRaceTo10Points2',
107
+ name: 'Race to 10 points 1st',
108
+ resultType: ResultType.EXACT_POSITION,
109
+ },
110
+ [MarketType.FIRST_PERIOD_RACE_TO_12_POINTS2]: {
111
+ id: MarketType.FIRST_PERIOD_RACE_TO_12_POINTS2,
112
+ key: 'firstPeriodRaceTo12Points2',
113
+ name: 'Race to 12 points 1st',
114
+ resultType: ResultType.EXACT_POSITION,
115
+ },
116
+ [MarketType.FIRST_PERIOD_RACE_TO_15_POINTS2]: {
117
+ id: MarketType.FIRST_PERIOD_RACE_TO_15_POINTS2,
118
+ key: 'firstPeriodRaceTo15Points2',
119
+ name: 'Race to 15 points 1st',
120
+ resultType: ResultType.EXACT_POSITION,
121
+ },
122
+ [MarketType.FIRST_PERIOD_RACE_TO_20_POINTS2]: {
123
+ id: MarketType.FIRST_PERIOD_RACE_TO_20_POINTS2,
124
+ key: 'firstPeriodRaceTo20Points2',
125
+ name: 'Race to 20 points 1st',
126
+ resultType: ResultType.EXACT_POSITION,
127
+ },
128
+ [MarketType.FIRST_PERIOD_RACE_TO_25_POINTS2]: {
129
+ id: MarketType.FIRST_PERIOD_RACE_TO_25_POINTS2,
130
+ key: 'firstPeriodRaceTo25Points2',
131
+ name: 'Race to 25 points 1st',
132
+ resultType: ResultType.EXACT_POSITION,
133
+ },
134
+ [MarketType.FIRST_PERIOD_RACE_TO_28_POINTS2]: {
135
+ id: MarketType.FIRST_PERIOD_RACE_TO_28_POINTS2,
136
+ key: 'firstPeriodRaceTo28Points2',
137
+ name: 'Race to 28 points 1st',
138
+ resultType: ResultType.EXACT_POSITION,
139
+ },
140
+ [MarketType.FIRST_PERIOD_RACE_TO_30_POINTS2]: {
141
+ id: MarketType.FIRST_PERIOD_RACE_TO_30_POINTS2,
142
+ key: 'firstPeriodRaceTo30Points2',
143
+ name: 'Race to 30 points 1st',
144
+ resultType: ResultType.EXACT_POSITION,
145
+ },
146
+ [MarketType.FIRST_PERIOD_RACE_TO_35_POINTS2]: {
147
+ id: MarketType.FIRST_PERIOD_RACE_TO_35_POINTS2,
148
+ key: 'firstPeriodRaceTo35Points2',
149
+ name: 'Race to 35 points 1st',
150
+ resultType: ResultType.EXACT_POSITION,
151
+ },
152
+
153
+ [MarketType.SECOND_PERIOD_RACE_TO_5_POINTS2]: {
154
+ id: MarketType.SECOND_PERIOD_RACE_TO_5_POINTS2,
155
+ key: 'secondPeriodRaceTo5Points2',
156
+ name: 'Race to 5 points 2nd',
157
+ resultType: ResultType.EXACT_POSITION,
158
+ },
159
+ [MarketType.SECOND_PERIOD_RACE_TO_6_POINTS2]: {
160
+ id: MarketType.SECOND_PERIOD_RACE_TO_6_POINTS2,
161
+ key: 'secondPeriodRaceTo6Points2',
162
+ name: 'Race to 6 points 2nd',
163
+ resultType: ResultType.EXACT_POSITION,
164
+ },
165
+ [MarketType.SECOND_PERIOD_RACE_TO_7_POINTS2]: {
166
+ id: MarketType.SECOND_PERIOD_RACE_TO_7_POINTS2,
167
+ key: 'secondPeriodRaceTo7Points2',
168
+ name: 'Race to 7 points 2nd',
169
+ resultType: ResultType.EXACT_POSITION,
170
+ },
171
+ [MarketType.SECOND_PERIOD_RACE_TO_9_POINTS2]: {
172
+ id: MarketType.SECOND_PERIOD_RACE_TO_9_POINTS2,
173
+ key: 'secondPeriodRaceTo9Points2',
174
+ name: 'Race to 9 points 2nd',
175
+ resultType: ResultType.EXACT_POSITION,
176
+ },
177
+ [MarketType.SECOND_PERIOD_RACE_TO_10_POINTS2]: {
178
+ id: MarketType.SECOND_PERIOD_RACE_TO_10_POINTS2,
179
+ key: 'secondPeriodRaceTo10Points2',
180
+ name: 'Race to 10 points 2nd',
181
+ resultType: ResultType.EXACT_POSITION,
182
+ },
183
+ [MarketType.SECOND_PERIOD_RACE_TO_12_POINTS2]: {
184
+ id: MarketType.SECOND_PERIOD_RACE_TO_12_POINTS2,
185
+ key: 'secondPeriodRaceTo12Points2',
186
+ name: 'Race to 12 points 2nd',
187
+ resultType: ResultType.EXACT_POSITION,
188
+ },
189
+ [MarketType.SECOND_PERIOD_RACE_TO_15_POINTS2]: {
190
+ id: MarketType.SECOND_PERIOD_RACE_TO_15_POINTS2,
191
+ key: 'secondPeriodRaceTo15Points2',
192
+ name: 'Race to 15 points 2nd',
193
+ resultType: ResultType.EXACT_POSITION,
194
+ },
195
+ [MarketType.SECOND_PERIOD_RACE_TO_20_POINTS2]: {
196
+ id: MarketType.SECOND_PERIOD_RACE_TO_20_POINTS2,
197
+ key: 'secondPeriodRaceTo20Points2',
198
+ name: 'Race to 20 points 2nd',
199
+ resultType: ResultType.EXACT_POSITION,
200
+ },
201
+ [MarketType.SECOND_PERIOD_RACE_TO_25_POINTS2]: {
202
+ id: MarketType.SECOND_PERIOD_RACE_TO_25_POINTS2,
203
+ key: 'secondPeriodRaceTo25Points2',
204
+ name: 'Race to 25 points 2nd',
205
+ resultType: ResultType.EXACT_POSITION,
206
+ },
207
+ [MarketType.SECOND_PERIOD_RACE_TO_28_POINTS2]: {
208
+ id: MarketType.SECOND_PERIOD_RACE_TO_28_POINTS2,
209
+ key: 'secondPeriodRaceTo28Points2',
210
+ name: 'Race to 28 points 2nd',
211
+ resultType: ResultType.EXACT_POSITION,
212
+ },
213
+ [MarketType.SECOND_PERIOD_RACE_TO_30_POINTS2]: {
214
+ id: MarketType.SECOND_PERIOD_RACE_TO_30_POINTS2,
215
+ key: 'secondPeriodRaceTo30Points2',
216
+ name: 'Race to 30 points 2nd',
217
+ resultType: ResultType.EXACT_POSITION,
218
+ },
219
+ [MarketType.SECOND_PERIOD_RACE_TO_35_POINTS2]: {
220
+ id: MarketType.SECOND_PERIOD_RACE_TO_35_POINTS2,
221
+ key: 'secondPeriodRaceTo35Points2',
222
+ name: 'Race to 35 points 2nd',
223
+ resultType: ResultType.EXACT_POSITION,
224
+ },
225
+
226
+ // Race to points period - quarter for football/basketball
227
+ [MarketType.FIRST_PERIOD_RACE_TO_5_POINTS]: {
228
+ id: MarketType.FIRST_PERIOD_RACE_TO_5_POINTS,
229
+ key: 'firstPeriodRaceTo5Points',
230
+ name: 'Race to 5 points 1st',
231
+ resultType: ResultType.EXACT_POSITION,
232
+ },
233
+ [MarketType.FIRST_PERIOD_RACE_TO_6_POINTS]: {
234
+ id: MarketType.FIRST_PERIOD_RACE_TO_6_POINTS,
235
+ key: 'firstPeriodRaceTo6Points',
236
+ name: 'Race to 6 points 1st',
237
+ resultType: ResultType.EXACT_POSITION,
238
+ },
239
+ [MarketType.FIRST_PERIOD_RACE_TO_7_POINTS]: {
240
+ id: MarketType.FIRST_PERIOD_RACE_TO_7_POINTS,
241
+ key: 'firstPeriodRaceTo7Points',
242
+ name: 'Race to 7 points 1st',
243
+ resultType: ResultType.EXACT_POSITION,
244
+ },
245
+ [MarketType.FIRST_PERIOD_RACE_TO_9_POINTS]: {
246
+ id: MarketType.FIRST_PERIOD_RACE_TO_9_POINTS,
247
+ key: 'firstPeriodRaceTo9Points',
248
+ name: 'Race to 9 points 1st',
249
+ resultType: ResultType.EXACT_POSITION,
250
+ },
251
+ [MarketType.FIRST_PERIOD_RACE_TO_10_POINTS]: {
252
+ id: MarketType.FIRST_PERIOD_RACE_TO_10_POINTS,
253
+ key: 'firstPeriodRaceTo10Points',
254
+ name: 'Race to 10 points 1st',
255
+ resultType: ResultType.EXACT_POSITION,
256
+ },
257
+ [MarketType.FIRST_PERIOD_RACE_TO_12_POINTS]: {
258
+ id: MarketType.FIRST_PERIOD_RACE_TO_12_POINTS,
259
+ key: 'firstPeriodRaceTo12Points',
260
+ name: 'Race to 12 points 1st',
261
+ resultType: ResultType.EXACT_POSITION,
262
+ },
263
+ [MarketType.FIRST_PERIOD_RACE_TO_15_POINTS]: {
264
+ id: MarketType.FIRST_PERIOD_RACE_TO_15_POINTS,
265
+ key: 'firstPeriodRaceTo15Points',
266
+ name: 'Race to 15 points 1st',
267
+ resultType: ResultType.EXACT_POSITION,
268
+ },
269
+ [MarketType.FIRST_PERIOD_RACE_TO_20_POINTS]: {
270
+ id: MarketType.FIRST_PERIOD_RACE_TO_20_POINTS,
271
+ key: 'firstPeriodRaceTo20Points',
272
+ name: 'Race to 20 points 1st',
273
+ resultType: ResultType.EXACT_POSITION,
274
+ },
275
+ [MarketType.FIRST_PERIOD_RACE_TO_25_POINTS]: {
276
+ id: MarketType.FIRST_PERIOD_RACE_TO_25_POINTS,
277
+ key: 'firstPeriodRaceTo25Points',
278
+ name: 'Race to 25 points 1st',
279
+ resultType: ResultType.EXACT_POSITION,
280
+ },
281
+ [MarketType.FIRST_PERIOD_RACE_TO_28_POINTS]: {
282
+ id: MarketType.FIRST_PERIOD_RACE_TO_28_POINTS,
283
+ key: 'firstPeriodRaceTo28Points',
284
+ name: 'Race to 28 points 1st',
285
+ resultType: ResultType.EXACT_POSITION,
286
+ },
287
+ [MarketType.FIRST_PERIOD_RACE_TO_30_POINTS]: {
288
+ id: MarketType.FIRST_PERIOD_RACE_TO_30_POINTS,
289
+ key: 'firstPeriodRaceTo30Points',
290
+ name: 'Race to 30 points 1st',
291
+ resultType: ResultType.EXACT_POSITION,
292
+ },
293
+ [MarketType.FIRST_PERIOD_RACE_TO_35_POINTS]: {
294
+ id: MarketType.FIRST_PERIOD_RACE_TO_35_POINTS,
295
+ key: 'firstPeriodRaceTo35Points',
296
+ name: 'Race to 35 points 1st',
297
+ resultType: ResultType.EXACT_POSITION,
298
+ },
299
+
300
+ [MarketType.SECOND_PERIOD_RACE_TO_5_POINTS]: {
301
+ id: MarketType.SECOND_PERIOD_RACE_TO_5_POINTS,
302
+ key: 'secondPeriodRaceTo5Points',
303
+ name: 'Race to 5 points 2nd',
304
+ resultType: ResultType.EXACT_POSITION,
305
+ },
306
+ [MarketType.SECOND_PERIOD_RACE_TO_6_POINTS]: {
307
+ id: MarketType.SECOND_PERIOD_RACE_TO_6_POINTS,
308
+ key: 'secondPeriodRaceTo6Points',
309
+ name: 'Race to 6 points 2nd',
310
+ resultType: ResultType.EXACT_POSITION,
311
+ },
312
+ [MarketType.SECOND_PERIOD_RACE_TO_7_POINTS]: {
313
+ id: MarketType.SECOND_PERIOD_RACE_TO_7_POINTS,
314
+ key: 'secondPeriodRaceTo7Points',
315
+ name: 'Race to 7 points 2nd',
316
+ resultType: ResultType.EXACT_POSITION,
317
+ },
318
+ [MarketType.SECOND_PERIOD_RACE_TO_9_POINTS]: {
319
+ id: MarketType.SECOND_PERIOD_RACE_TO_9_POINTS,
320
+ key: 'secondPeriodRaceTo9Points',
321
+ name: 'Race to 9 points 2nd',
322
+ resultType: ResultType.EXACT_POSITION,
323
+ },
324
+ [MarketType.SECOND_PERIOD_RACE_TO_10_POINTS]: {
325
+ id: MarketType.SECOND_PERIOD_RACE_TO_10_POINTS,
326
+ key: 'secondPeriodRaceTo10Points',
327
+ name: 'Race to 10 points 2nd',
328
+ resultType: ResultType.EXACT_POSITION,
329
+ },
330
+ [MarketType.SECOND_PERIOD_RACE_TO_12_POINTS]: {
331
+ id: MarketType.SECOND_PERIOD_RACE_TO_12_POINTS,
332
+ key: 'secondPeriodRaceTo12Points',
333
+ name: 'Race to 12 points 2nd',
334
+ resultType: ResultType.EXACT_POSITION,
335
+ },
336
+ [MarketType.SECOND_PERIOD_RACE_TO_15_POINTS]: {
337
+ id: MarketType.SECOND_PERIOD_RACE_TO_15_POINTS,
338
+ key: 'secondPeriodRaceTo15Points',
339
+ name: 'Race to 15 points 2nd',
340
+ resultType: ResultType.EXACT_POSITION,
341
+ },
342
+ [MarketType.SECOND_PERIOD_RACE_TO_20_POINTS]: {
343
+ id: MarketType.SECOND_PERIOD_RACE_TO_20_POINTS,
344
+ key: 'secondPeriodRaceTo20Points',
345
+ name: 'Race to 20 points 2nd',
346
+ resultType: ResultType.EXACT_POSITION,
347
+ },
348
+ [MarketType.SECOND_PERIOD_RACE_TO_25_POINTS]: {
349
+ id: MarketType.SECOND_PERIOD_RACE_TO_25_POINTS,
350
+ key: 'secondPeriodRaceTo25Points',
351
+ name: 'Race to 25 points 2nd',
352
+ resultType: ResultType.EXACT_POSITION,
353
+ },
354
+ [MarketType.SECOND_PERIOD_RACE_TO_28_POINTS]: {
355
+ id: MarketType.SECOND_PERIOD_RACE_TO_28_POINTS,
356
+ key: 'secondPeriodRaceTo28Points',
357
+ name: 'Race to 28 points 2nd',
358
+ resultType: ResultType.EXACT_POSITION,
359
+ },
360
+ [MarketType.SECOND_PERIOD_RACE_TO_30_POINTS]: {
361
+ id: MarketType.SECOND_PERIOD_RACE_TO_30_POINTS,
362
+ key: 'secondPeriodRaceTo30Points',
363
+ name: 'Race to 30 points 2nd',
364
+ resultType: ResultType.EXACT_POSITION,
365
+ },
366
+ [MarketType.SECOND_PERIOD_RACE_TO_35_POINTS]: {
367
+ id: MarketType.SECOND_PERIOD_RACE_TO_35_POINTS,
368
+ key: 'secondPeriodRaceTo35Points',
369
+ name: 'Race to 35 points 2nd',
370
+ resultType: ResultType.EXACT_POSITION,
371
+ },
372
+
373
+ [MarketType.THIRD_PERIOD_RACE_TO_5_POINTS]: {
374
+ id: MarketType.THIRD_PERIOD_RACE_TO_5_POINTS,
375
+ key: 'thirdPeriodRaceTo5Points',
376
+ name: 'Race to 5 points 3rd',
377
+ resultType: ResultType.EXACT_POSITION,
378
+ },
379
+ [MarketType.THIRD_PERIOD_RACE_TO_6_POINTS]: {
380
+ id: MarketType.THIRD_PERIOD_RACE_TO_6_POINTS,
381
+ key: 'thirdPeriodRaceTo6Points',
382
+ name: 'Race to 6 points 3rd',
383
+ resultType: ResultType.EXACT_POSITION,
384
+ },
385
+ [MarketType.THIRD_PERIOD_RACE_TO_7_POINTS]: {
386
+ id: MarketType.THIRD_PERIOD_RACE_TO_7_POINTS,
387
+ key: 'thirdPeriodRaceTo7Points',
388
+ name: 'Race to 7 points 3rd',
389
+ resultType: ResultType.EXACT_POSITION,
390
+ },
391
+ [MarketType.THIRD_PERIOD_RACE_TO_9_POINTS]: {
392
+ id: MarketType.THIRD_PERIOD_RACE_TO_9_POINTS,
393
+ key: 'thirdPeriodRaceTo9Points',
394
+ name: 'Race to 9 points 3rd',
395
+ resultType: ResultType.EXACT_POSITION,
396
+ },
397
+ [MarketType.THIRD_PERIOD_RACE_TO_10_POINTS]: {
398
+ id: MarketType.THIRD_PERIOD_RACE_TO_10_POINTS,
399
+ key: 'thirdPeriodRaceTo10Points',
400
+ name: 'Race to 10 points 3rd',
401
+ resultType: ResultType.EXACT_POSITION,
402
+ },
403
+ [MarketType.THIRD_PERIOD_RACE_TO_12_POINTS]: {
404
+ id: MarketType.THIRD_PERIOD_RACE_TO_12_POINTS,
405
+ key: 'thirdPeriodRaceTo12Points',
406
+ name: 'Race to 12 points 3rd',
407
+ resultType: ResultType.EXACT_POSITION,
408
+ },
409
+ [MarketType.THIRD_PERIOD_RACE_TO_15_POINTS]: {
410
+ id: MarketType.THIRD_PERIOD_RACE_TO_15_POINTS,
411
+ key: 'thirdPeriodRaceTo15Points',
412
+ name: 'Race to 15 points 3rd',
413
+ resultType: ResultType.EXACT_POSITION,
414
+ },
415
+ [MarketType.THIRD_PERIOD_RACE_TO_20_POINTS]: {
416
+ id: MarketType.THIRD_PERIOD_RACE_TO_20_POINTS,
417
+ key: 'thirdPeriodRaceTo20Points',
418
+ name: 'Race to 20 points 3rd',
419
+ resultType: ResultType.EXACT_POSITION,
420
+ },
421
+ [MarketType.THIRD_PERIOD_RACE_TO_25_POINTS]: {
422
+ id: MarketType.THIRD_PERIOD_RACE_TO_25_POINTS,
423
+ key: 'thirdPeriodRaceTo25Points',
424
+ name: 'Race to 25 points 3rd',
425
+ resultType: ResultType.EXACT_POSITION,
426
+ },
427
+ [MarketType.THIRD_PERIOD_RACE_TO_28_POINTS]: {
428
+ id: MarketType.THIRD_PERIOD_RACE_TO_28_POINTS,
429
+ key: 'thirdPeriodRaceTo28Points',
430
+ name: 'Race to 28 points 3rd',
431
+ resultType: ResultType.EXACT_POSITION,
432
+ },
433
+ [MarketType.THIRD_PERIOD_RACE_TO_30_POINTS]: {
434
+ id: MarketType.THIRD_PERIOD_RACE_TO_30_POINTS,
435
+ key: 'thirdPeriodRaceTo30Points',
436
+ name: 'Race to 30 points 3rd',
437
+ resultType: ResultType.EXACT_POSITION,
438
+ },
439
+ [MarketType.THIRD_PERIOD_RACE_TO_35_POINTS]: {
440
+ id: MarketType.THIRD_PERIOD_RACE_TO_35_POINTS,
441
+ key: 'thirdPeriodRaceTo35Points',
442
+ name: 'Race to 35 points 3rd',
443
+ resultType: ResultType.EXACT_POSITION,
444
+ },
445
+
446
+ [MarketType.FOURTH_PERIOD_RACE_TO_5_POINTS]: {
447
+ id: MarketType.FOURTH_PERIOD_RACE_TO_5_POINTS,
448
+ key: 'fourthPeriodRaceTo5Points',
449
+ name: 'Race to 5 points 4th',
450
+ resultType: ResultType.EXACT_POSITION,
451
+ },
452
+ [MarketType.FOURTH_PERIOD_RACE_TO_6_POINTS]: {
453
+ id: MarketType.FOURTH_PERIOD_RACE_TO_6_POINTS,
454
+ key: 'fourthPeriodRaceTo6Points',
455
+ name: 'Race to 6 points 4th',
456
+ resultType: ResultType.EXACT_POSITION,
457
+ },
458
+ [MarketType.FOURTH_PERIOD_RACE_TO_7_POINTS]: {
459
+ id: MarketType.FOURTH_PERIOD_RACE_TO_7_POINTS,
460
+ key: 'fourthPeriodRaceTo7Points',
461
+ name: 'Race to 7 points 4th',
462
+ resultType: ResultType.EXACT_POSITION,
463
+ },
464
+ [MarketType.FOURTH_PERIOD_RACE_TO_9_POINTS]: {
465
+ id: MarketType.FOURTH_PERIOD_RACE_TO_9_POINTS,
466
+ key: 'fourthPeriodRaceTo9Points',
467
+ name: 'Race to 9 points 4th',
468
+ resultType: ResultType.EXACT_POSITION,
469
+ },
470
+ [MarketType.FOURTH_PERIOD_RACE_TO_10_POINTS]: {
471
+ id: MarketType.FOURTH_PERIOD_RACE_TO_10_POINTS,
472
+ key: 'fourthPeriodRaceTo10Points',
473
+ name: 'Race to 10 points 4th',
474
+ resultType: ResultType.EXACT_POSITION,
475
+ },
476
+ [MarketType.FOURTH_PERIOD_RACE_TO_12_POINTS]: {
477
+ id: MarketType.FOURTH_PERIOD_RACE_TO_12_POINTS,
478
+ key: 'fourthPeriodRaceTo12Points',
479
+ name: 'Race to 12 points 4th',
480
+ resultType: ResultType.EXACT_POSITION,
481
+ },
482
+ [MarketType.FOURTH_PERIOD_RACE_TO_15_POINTS]: {
483
+ id: MarketType.FOURTH_PERIOD_RACE_TO_15_POINTS,
484
+ key: 'fourthPeriodRaceTo15Points',
485
+ name: 'Race to 15 points 4th',
486
+ resultType: ResultType.EXACT_POSITION,
487
+ },
488
+ [MarketType.FOURTH_PERIOD_RACE_TO_20_POINTS]: {
489
+ id: MarketType.FOURTH_PERIOD_RACE_TO_20_POINTS,
490
+ key: 'fourthPeriodRaceTo20Points',
491
+ name: 'Race to 20 points 4th',
492
+ resultType: ResultType.EXACT_POSITION,
493
+ },
494
+ [MarketType.FOURTH_PERIOD_RACE_TO_25_POINTS]: {
495
+ id: MarketType.FOURTH_PERIOD_RACE_TO_25_POINTS,
496
+ key: 'fourthPeriodRaceTo25Points',
497
+ name: 'Race to 25 points 4th',
498
+ resultType: ResultType.EXACT_POSITION,
499
+ },
500
+ [MarketType.FOURTH_PERIOD_RACE_TO_28_POINTS]: {
501
+ id: MarketType.FOURTH_PERIOD_RACE_TO_28_POINTS,
502
+ key: 'fourthPeriodRaceTo28Points',
503
+ name: 'Race to 28 points 4th',
504
+ resultType: ResultType.EXACT_POSITION,
505
+ },
506
+ [MarketType.FOURTH_PERIOD_RACE_TO_30_POINTS]: {
507
+ id: MarketType.FOURTH_PERIOD_RACE_TO_30_POINTS,
508
+ key: 'fourthPeriodRaceTo30Points',
509
+ name: 'Race to 30 points 4th',
510
+ resultType: ResultType.EXACT_POSITION,
511
+ },
512
+ [MarketType.FOURTH_PERIOD_RACE_TO_35_POINTS]: {
513
+ id: MarketType.FOURTH_PERIOD_RACE_TO_35_POINTS,
514
+ key: 'fourthPeriodRaceTo35Points',
515
+ name: 'Race to 35 points 4th',
516
+ resultType: ResultType.EXACT_POSITION,
517
+ },
518
+ };
@@ -395,4 +395,80 @@ export const TOTAL_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>>
395
395
  name: 'Total odd/even',
396
396
  resultType: ResultType.EXACT_POSITION,
397
397
  },
398
+
399
+ // Total odd/even per team period - quarter for football/basketball
400
+ [MarketType.FIRST_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN]: {
401
+ id: MarketType.FIRST_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN,
402
+ key: 'firstPeriodTotalHomeTeamOddEven',
403
+ name: 'Total odd/even 1st',
404
+ resultType: ResultType.EXACT_POSITION,
405
+ },
406
+ [MarketType.FIRST_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN]: {
407
+ id: MarketType.FIRST_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN,
408
+ key: 'firstPeriodTotalAwayTeamOddEven',
409
+ name: 'Total odd/even 1st',
410
+ resultType: ResultType.EXACT_POSITION,
411
+ },
412
+ [MarketType.SECOND_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN]: {
413
+ id: MarketType.SECOND_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN,
414
+ key: 'secondPeriodTotalHomeTeamOddEven',
415
+ name: 'Total odd/even 2nd',
416
+ resultType: ResultType.EXACT_POSITION,
417
+ },
418
+ [MarketType.SECOND_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN]: {
419
+ id: MarketType.SECOND_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN,
420
+ key: 'secondPeriodTotalAwayTeamOddEven',
421
+ name: 'Total odd/even 2nd',
422
+ resultType: ResultType.EXACT_POSITION,
423
+ },
424
+ [MarketType.THIRD_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN]: {
425
+ id: MarketType.THIRD_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN,
426
+ key: 'thirdPeriodTotalHomeTeamOddEven',
427
+ name: 'Total odd/even 3rd',
428
+ resultType: ResultType.EXACT_POSITION,
429
+ },
430
+ [MarketType.THIRD_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN]: {
431
+ id: MarketType.THIRD_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN,
432
+ key: 'thirdPeriodTotalAwayTeamOddEven',
433
+ name: 'Total odd/even 3rd',
434
+ resultType: ResultType.EXACT_POSITION,
435
+ },
436
+ [MarketType.FOURTH_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN]: {
437
+ id: MarketType.FOURTH_PERIOD_TOTAL_HOME_TEAM_ODD_EVEN,
438
+ key: 'fourthPeriodTotalHomeTeamOddEven',
439
+ name: 'Total odd/even 4th',
440
+ resultType: ResultType.EXACT_POSITION,
441
+ },
442
+ [MarketType.FOURTH_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN]: {
443
+ id: MarketType.FOURTH_PERIOD_TOTAL_AWAY_TEAM_ODD_EVEN,
444
+ key: 'fourthPeriodTotalAwayTeamOddEven',
445
+ name: 'Total odd/even 4th',
446
+ resultType: ResultType.EXACT_POSITION,
447
+ },
448
+
449
+ // Total odd/even per team period - half for football/basketball
450
+ [MarketType.FIRST_PERIOD_TOTAL2_HOME_TEAM_ODD_EVEN]: {
451
+ id: MarketType.FIRST_PERIOD_TOTAL2_HOME_TEAM_ODD_EVEN,
452
+ key: 'firstPeriodTotal2HomeTeamOddEven',
453
+ name: 'Total odd/even 1st',
454
+ resultType: ResultType.EXACT_POSITION,
455
+ },
456
+ [MarketType.FIRST_PERIOD_TOTAL2_AWAY_TEAM_ODD_EVEN]: {
457
+ id: MarketType.FIRST_PERIOD_TOTAL2_AWAY_TEAM_ODD_EVEN,
458
+ key: 'firstPeriodTotal2AwayTeamOddEven',
459
+ name: 'Total odd/even 1st',
460
+ resultType: ResultType.EXACT_POSITION,
461
+ },
462
+ [MarketType.SECOND_PERIOD_TOTAL2_HOME_TEAM_ODD_EVEN]: {
463
+ id: MarketType.SECOND_PERIOD_TOTAL2_HOME_TEAM_ODD_EVEN,
464
+ key: 'secondPeriodTotal2HomeTeamOddEven',
465
+ name: 'Total odd/even 2nd',
466
+ resultType: ResultType.EXACT_POSITION,
467
+ },
468
+ [MarketType.SECOND_PERIOD_TOTAL2_AWAY_TEAM_ODD_EVEN]: {
469
+ id: MarketType.SECOND_PERIOD_TOTAL2_AWAY_TEAM_ODD_EVEN,
470
+ key: 'secondPeriodTotal2AwayTeamOddEven',
471
+ name: 'Total odd/even 2nd',
472
+ resultType: ResultType.EXACT_POSITION,
473
+ },
398
474
  };