overtime-live-trading-utils 1.1.38 → 2.0.0

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.
@@ -1,1931 +1,5 @@
1
- import { League, MatchResolveType, PeriodType, Provider, ScoringType, Sport } from '../enums/sports';
2
-
3
- export const LeagueMap = {
4
- [League.NCAAF]: {
5
- sport: Sport.FOOTBALL,
6
- id: League.NCAAF,
7
- label: 'NCAA Football',
8
- opticOddsName: 'NCAAF',
9
- provider: Provider.OPTICODDS,
10
- scoringType: ScoringType.POINTS,
11
- matchResolveType: MatchResolveType.OVERTIME,
12
- periodType: PeriodType.QUARTER,
13
- isDrawAvailable: false,
14
- },
15
- [League.NFL]: {
16
- sport: Sport.FOOTBALL,
17
- id: League.NFL,
18
- label: 'NFL',
19
- opticOddsName: 'NFL',
20
- provider: Provider.OPTICODDS,
21
- scoringType: ScoringType.POINTS,
22
- matchResolveType: MatchResolveType.OVERTIME,
23
- periodType: PeriodType.QUARTER,
24
- isDrawAvailable: false,
25
- },
26
- [League.MLB]: {
27
- sport: Sport.BASEBALL,
28
- id: League.MLB,
29
- label: 'MLB',
30
- opticOddsName: 'MLB',
31
- provider: Provider.OPTICODDS,
32
- scoringType: ScoringType.POINTS,
33
- matchResolveType: MatchResolveType.OVERTIME,
34
- periodType: PeriodType.INNING,
35
- isDrawAvailable: false,
36
- },
37
- [League.NBA]: {
38
- sport: Sport.BASKETBALL,
39
- id: League.NBA,
40
- label: 'NBA',
41
- opticOddsName: 'NBA',
42
- provider: Provider.OPTICODDS,
43
- scoringType: ScoringType.POINTS,
44
- matchResolveType: MatchResolveType.OVERTIME,
45
- periodType: PeriodType.QUARTER,
46
- isDrawAvailable: false,
47
- },
48
- [League.NCAAB]: {
49
- sport: Sport.BASKETBALL,
50
- id: League.NCAAB,
51
- label: 'NCAA Basketball',
52
- opticOddsName: 'NCAAB',
53
- provider: Provider.OPTICODDS,
54
- scoringType: ScoringType.POINTS,
55
- matchResolveType: MatchResolveType.OVERTIME,
56
- periodType: PeriodType.QUARTER,
57
- isDrawAvailable: false,
58
- },
59
- [League.NHL]: {
60
- sport: Sport.HOCKEY,
61
- id: League.NHL,
62
- label: 'NHL',
63
- opticOddsName: 'NHL',
64
- provider: Provider.OPTICODDS,
65
- scoringType: ScoringType.GOALS,
66
- matchResolveType: MatchResolveType.OVERTIME,
67
- periodType: PeriodType.PERIOD,
68
- isDrawAvailable: false,
69
- },
70
- [League.UFC]: {
71
- sport: Sport.FIGHTING,
72
- id: League.UFC,
73
- label: 'UFC',
74
- provider: Provider.OPTICODDS,
75
- scoringType: ScoringType.ROUNDS,
76
- matchResolveType: MatchResolveType.EMPTY,
77
- periodType: PeriodType.ROUND,
78
- isDrawAvailable: false,
79
- },
80
- [League.WNBA]: {
81
- sport: Sport.BASKETBALL,
82
- id: League.WNBA,
83
- label: 'WNBA',
84
- opticOddsName: 'WNBA',
85
- provider: Provider.OPTICODDS,
86
- scoringType: ScoringType.POINTS,
87
- matchResolveType: MatchResolveType.OVERTIME,
88
- periodType: PeriodType.QUARTER,
89
- isDrawAvailable: false,
90
- },
91
- [League.MLS]: {
92
- sport: Sport.SOCCER,
93
- id: League.MLS,
94
- label: 'MLS',
95
- opticOddsName: 'USA - Major League Soccer',
96
- provider: Provider.OPTICODDS,
97
- scoringType: ScoringType.GOALS,
98
- matchResolveType: MatchResolveType.REGULAR,
99
- periodType: PeriodType.HALF,
100
- isDrawAvailable: true,
101
- },
102
- [League.EPL]: {
103
- sport: Sport.SOCCER,
104
- id: League.EPL,
105
- label: 'EPL',
106
- opticOddsName: 'England - Premier League',
107
- provider: Provider.OPTICODDS,
108
- scoringType: ScoringType.GOALS,
109
- matchResolveType: MatchResolveType.REGULAR,
110
- periodType: PeriodType.HALF,
111
- isDrawAvailable: true,
112
- },
113
- [League.LIGUE_ONE]: {
114
- sport: Sport.SOCCER,
115
- id: League.LIGUE_ONE,
116
- label: 'Ligue 1',
117
- opticOddsName: 'France - Ligue 1',
118
- provider: Provider.OPTICODDS,
119
- scoringType: ScoringType.GOALS,
120
- matchResolveType: MatchResolveType.REGULAR,
121
- periodType: PeriodType.HALF,
122
- isDrawAvailable: true,
123
- },
124
- [League.BUNDESLIGA]: {
125
- sport: Sport.SOCCER,
126
- id: League.BUNDESLIGA,
127
- label: 'Bundesliga',
128
- opticOddsName: 'Germany - Bundesliga',
129
- provider: Provider.OPTICODDS,
130
- scoringType: ScoringType.GOALS,
131
- matchResolveType: MatchResolveType.REGULAR,
132
- periodType: PeriodType.HALF,
133
- isDrawAvailable: true,
134
- },
135
- [League.LA_LIGA]: {
136
- sport: Sport.SOCCER,
137
- id: League.LA_LIGA,
138
- label: 'La Liga',
139
- opticOddsName: 'Spain - La Liga',
140
- provider: Provider.OPTICODDS,
141
- scoringType: ScoringType.GOALS,
142
- matchResolveType: MatchResolveType.REGULAR,
143
- periodType: PeriodType.HALF,
144
- isDrawAvailable: true,
145
- },
146
- [League.SERIE_A]: {
147
- sport: Sport.SOCCER,
148
- id: League.SERIE_A,
149
- label: 'Serie A',
150
- opticOddsName: 'Italy - Serie A',
151
- provider: Provider.OPTICODDS,
152
- scoringType: ScoringType.GOALS,
153
- matchResolveType: MatchResolveType.REGULAR,
154
- periodType: PeriodType.HALF,
155
- isDrawAvailable: true,
156
- },
157
-
158
- [League.UEFA_CL]: {
159
- sport: Sport.SOCCER,
160
- id: League.UEFA_CL,
161
- label: 'UEFA Champions League',
162
- opticOddsName: 'UEFA - Champions League',
163
- provider: Provider.OPTICODDS,
164
- scoringType: ScoringType.GOALS,
165
- matchResolveType: MatchResolveType.REGULAR,
166
- periodType: PeriodType.HALF,
167
- isDrawAvailable: true,
168
- },
169
- [League.UEFA_EL]: {
170
- sport: Sport.SOCCER,
171
- id: League.UEFA_EL,
172
- label: 'UEFA Europa League',
173
- opticOddsName: 'UEFA - Europa League',
174
- provider: Provider.OPTICODDS,
175
- scoringType: ScoringType.GOALS,
176
- matchResolveType: MatchResolveType.REGULAR,
177
- periodType: PeriodType.HALF,
178
- isDrawAvailable: true,
179
- },
180
- [League.FIFA_WC]: {
181
- sport: Sport.SOCCER,
182
- id: League.FIFA_WC,
183
- label: 'FIFA World Cup Qualifiers',
184
- provider: Provider.OPTICODDS,
185
- opticOddsName: 'FIFA - World Cup Qualifiers',
186
- scoringType: ScoringType.GOALS,
187
- matchResolveType: MatchResolveType.REGULAR,
188
- periodType: PeriodType.HALF,
189
- isDrawAvailable: true,
190
- },
191
- [League.J1_LEAGUE]: {
192
- sport: Sport.SOCCER,
193
- id: League.J1_LEAGUE,
194
- label: 'J1 League',
195
- opticOddsName: 'Japan - J1 League',
196
- provider: Provider.OPTICODDS,
197
- scoringType: ScoringType.GOALS,
198
- matchResolveType: MatchResolveType.REGULAR,
199
- periodType: PeriodType.HALF,
200
- isDrawAvailable: true,
201
- },
202
- [League.IPL]: {
203
- sport: Sport.CRICKET,
204
- id: League.IPL,
205
- label: 'Indian Premier League',
206
- provider: Provider.EMPTY,
207
- scoringType: ScoringType.POINTS,
208
- matchResolveType: MatchResolveType.EMPTY,
209
- periodType: PeriodType.INNING,
210
- isDrawAvailable: false,
211
- },
212
- [League.T20_BLAST]: {
213
- sport: Sport.CRICKET,
214
- id: League.T20_BLAST,
215
- label: 'T20 Blast',
216
- provider: Provider.EMPTY,
217
- scoringType: ScoringType.POINTS,
218
- matchResolveType: MatchResolveType.EMPTY,
219
- periodType: PeriodType.INNING,
220
- isDrawAvailable: false,
221
- },
222
- [League.IIHF_WORLD_CHAMPIONSHIP]: {
223
- sport: Sport.HOCKEY,
224
- id: League.IIHF_WORLD_CHAMPIONSHIP,
225
- label: 'IIHF World Championship',
226
- provider: Provider.EMPTY,
227
- scoringType: ScoringType.GOALS,
228
- matchResolveType: MatchResolveType.REGULAR,
229
- periodType: PeriodType.PERIOD,
230
- isDrawAvailable: true,
231
- },
232
- [League.COPA_AMERICA]: {
233
- sport: Sport.SOCCER,
234
- id: League.COPA_AMERICA,
235
- label: 'Copa America',
236
- opticOddsName: 'CONMEBOL - Copa America',
237
- provider: Provider.EMPTY,
238
- scoringType: ScoringType.GOALS,
239
- matchResolveType: MatchResolveType.REGULAR,
240
- periodType: PeriodType.HALF,
241
- isDrawAvailable: true,
242
- },
243
- [League.COPA_LIBERTADORES]: {
244
- sport: Sport.SOCCER,
245
- id: League.COPA_LIBERTADORES,
246
- label: 'Copa Libertadores',
247
- opticOddsName: 'CONMEBOL - Copa Libertadores',
248
- provider: Provider.OPTICODDS,
249
- scoringType: ScoringType.GOALS,
250
- matchResolveType: MatchResolveType.REGULAR,
251
- periodType: PeriodType.HALF,
252
- isDrawAvailable: true,
253
- },
254
- [League.UEFA_EURO]: {
255
- sport: Sport.SOCCER,
256
- id: League.UEFA_EURO,
257
- label: 'UEFA EURO 2024',
258
- opticOddsName: 'UEFA - European Championship',
259
- provider: Provider.EMPTY,
260
- scoringType: ScoringType.GOALS,
261
- matchResolveType: MatchResolveType.REGULAR,
262
- periodType: PeriodType.HALF,
263
- isDrawAvailable: true,
264
- },
265
- [League.EREDIVISIE]: {
266
- sport: Sport.SOCCER,
267
- id: League.EREDIVISIE,
268
- label: 'Eredivisie',
269
- opticOddsName: 'Netherlands - Eredivisie',
270
- provider: Provider.OPTICODDS,
271
- scoringType: ScoringType.GOALS,
272
- matchResolveType: MatchResolveType.REGULAR,
273
- periodType: PeriodType.HALF,
274
- isDrawAvailable: true,
275
- },
276
- [League.PRIMEIRA_LIGA]: {
277
- sport: Sport.SOCCER,
278
- id: League.PRIMEIRA_LIGA,
279
- label: 'Primeira Liga',
280
- opticOddsName: 'Portugal - Primeira Liga',
281
- provider: Provider.OPTICODDS,
282
- scoringType: ScoringType.GOALS,
283
- matchResolveType: MatchResolveType.REGULAR,
284
- periodType: PeriodType.HALF,
285
- isDrawAvailable: true,
286
- },
287
- [League.SUMMER_OLYMPICS_SOCCER_WOMEN]: {
288
- sport: Sport.SOCCER,
289
- id: League.SUMMER_OLYMPICS_SOCCER_WOMEN,
290
- label: 'Olympic Games Soccer Women',
291
- opticOddsName: 'Olympics Soccer Women',
292
- provider: Provider.EMPTY,
293
- scoringType: ScoringType.GOALS,
294
- matchResolveType: MatchResolveType.REGULAR,
295
- periodType: PeriodType.HALF,
296
- isDrawAvailable: true,
297
- },
298
- [League.SUMMER_OLYMPICS_SOCCER]: {
299
- sport: Sport.SOCCER,
300
- id: League.SUMMER_OLYMPICS_SOCCER,
301
- label: 'Olympic Games Soccer',
302
- opticOddsName: 'Olympics Soccer Men',
303
- provider: Provider.EMPTY,
304
- scoringType: ScoringType.GOALS,
305
- matchResolveType: MatchResolveType.REGULAR,
306
- periodType: PeriodType.HALF,
307
- isDrawAvailable: true,
308
- },
309
- [League.FIFA_WC_WOMEN]: {
310
- sport: Sport.SOCCER,
311
- id: League.FIFA_WC_WOMEN,
312
- label: 'FIFA World Cup Women',
313
- provider: Provider.EMPTY,
314
- scoringType: ScoringType.GOALS,
315
- matchResolveType: MatchResolveType.REGULAR,
316
- periodType: PeriodType.HALF,
317
- isDrawAvailable: true,
318
- },
319
- [League.ENGLAND_FA_CUP]: {
320
- sport: Sport.SOCCER,
321
- id: League.ENGLAND_FA_CUP,
322
- label: 'FA Cup',
323
- opticOddsName: 'England - FA Cup',
324
- provider: Provider.OPTICODDS,
325
- scoringType: ScoringType.GOALS,
326
- matchResolveType: MatchResolveType.REGULAR,
327
- periodType: PeriodType.HALF,
328
- isDrawAvailable: true,
329
- },
330
- [League.FRANCE_CUP]: {
331
- sport: Sport.SOCCER,
332
- id: League.FRANCE_CUP,
333
- label: 'Coupe de France',
334
- opticOddsName: 'France - Coupe de France',
335
- provider: Provider.OPTICODDS,
336
- scoringType: ScoringType.GOALS,
337
- matchResolveType: MatchResolveType.REGULAR,
338
- periodType: PeriodType.HALF,
339
- isDrawAvailable: true,
340
- },
341
- [League.SPAIN_CUP]: {
342
- sport: Sport.SOCCER,
343
- id: League.SPAIN_CUP,
344
- label: 'Copa del Rey',
345
- opticOddsName: 'Spain - Copa del Rey',
346
- provider: Provider.OPTICODDS,
347
- scoringType: ScoringType.GOALS,
348
- matchResolveType: MatchResolveType.REGULAR,
349
- periodType: PeriodType.HALF,
350
- isDrawAvailable: true,
351
- },
352
- [League.ITALY_CUP]: {
353
- sport: Sport.SOCCER,
354
- id: League.ITALY_CUP,
355
- label: 'Coppa Italia',
356
- opticOddsName: 'Italy - Coppa Italia',
357
- provider: Provider.OPTICODDS,
358
- scoringType: ScoringType.GOALS,
359
- matchResolveType: MatchResolveType.REGULAR,
360
- periodType: PeriodType.HALF,
361
- isDrawAvailable: true,
362
- },
363
- [League.TENNIS_WTA]: {
364
- sport: Sport.TENNIS,
365
- id: League.TENNIS_WTA,
366
- label: 'WTA Events',
367
- opticOddsName: 'WTA',
368
- provider: Provider.OPTICODDS,
369
- scoringType: ScoringType.SETS,
370
- matchResolveType: MatchResolveType.REGULAR,
371
- periodType: PeriodType.SET,
372
- isDrawAvailable: false,
373
- },
374
- [League.TENNIS_GS]: {
375
- sport: Sport.TENNIS,
376
- id: League.TENNIS_GS,
377
- label: 'Grand Slam',
378
- opticOddsName: 'ATP,WTA',
379
- provider: Provider.EMPTY,
380
- scoringType: ScoringType.SETS,
381
- matchResolveType: MatchResolveType.REGULAR,
382
- periodType: PeriodType.SET,
383
- isDrawAvailable: false,
384
- },
385
- [League.TENNIS_MASTERS]: {
386
- sport: Sport.TENNIS,
387
- id: League.TENNIS_MASTERS,
388
- label: 'ATP Events',
389
- opticOddsName: 'ATP',
390
- provider: Provider.OPTICODDS,
391
- scoringType: ScoringType.SETS,
392
- matchResolveType: MatchResolveType.REGULAR,
393
- periodType: PeriodType.SET,
394
- isDrawAvailable: false,
395
- },
396
- [League.SUMMER_OLYMPICS_TENNIS]: {
397
- sport: Sport.TENNIS,
398
- id: League.SUMMER_OLYMPICS_TENNIS,
399
- label: 'Olympic Games Tennis',
400
- provider: Provider.EMPTY,
401
- scoringType: ScoringType.SETS,
402
- matchResolveType: MatchResolveType.REGULAR,
403
- periodType: PeriodType.SET,
404
- isDrawAvailable: false,
405
- },
406
- [League.GERMANY_CUP]: {
407
- sport: Sport.SOCCER,
408
- id: League.GERMANY_CUP,
409
- label: 'DFB Pokal',
410
- opticOddsName: 'Germany - DFB Pokal',
411
- provider: Provider.OPTICODDS,
412
- scoringType: ScoringType.GOALS,
413
- matchResolveType: MatchResolveType.REGULAR,
414
- periodType: PeriodType.HALF,
415
- isDrawAvailable: true,
416
- },
417
- [League.LIGA_MX]: {
418
- sport: Sport.SOCCER,
419
- id: League.LIGA_MX,
420
- label: 'Liga MX',
421
- opticOddsName: 'Mexico - Liga MX',
422
- provider: Provider.OPTICODDS,
423
- scoringType: ScoringType.GOALS,
424
- matchResolveType: MatchResolveType.REGULAR,
425
- periodType: PeriodType.HALF,
426
- isDrawAvailable: true,
427
- },
428
- [League.BRAZIL_1]: {
429
- sport: Sport.SOCCER,
430
- id: League.BRAZIL_1,
431
- label: 'Serie A',
432
- opticOddsName: 'Brazil - Serie A',
433
- provider: Provider.OPTICODDS,
434
- scoringType: ScoringType.GOALS,
435
- matchResolveType: MatchResolveType.REGULAR,
436
- periodType: PeriodType.HALF,
437
- isDrawAvailable: true,
438
- },
439
- [League.UEFA_EURO_U21]: {
440
- sport: Sport.SOCCER,
441
- id: League.UEFA_EURO_U21,
442
- label: 'UEFA EURO U21',
443
- provider: Provider.EMPTY,
444
- scoringType: ScoringType.GOALS,
445
- matchResolveType: MatchResolveType.REGULAR,
446
- periodType: PeriodType.HALF,
447
- isDrawAvailable: true,
448
- },
449
- [League.FIFA_WORLD_CUP_U20]: {
450
- sport: Sport.SOCCER,
451
- id: League.FIFA_WORLD_CUP_U20,
452
- label: 'FIFA World Cup U20',
453
- provider: Provider.EMPTY,
454
- scoringType: ScoringType.GOALS,
455
- matchResolveType: MatchResolveType.REGULAR,
456
- periodType: PeriodType.HALF,
457
- isDrawAvailable: true,
458
- },
459
- [League.NPB]: {
460
- sport: Sport.BASEBALL,
461
- id: League.NPB,
462
- label: 'NPB',
463
- opticOddsName: 'NPB',
464
- provider: Provider.OPTICODDS,
465
- scoringType: ScoringType.POINTS,
466
- matchResolveType: MatchResolveType.OVERTIME,
467
- periodType: PeriodType.INNING,
468
- isDrawAvailable: true,
469
- },
470
- [League.KBO]: {
471
- sport: Sport.BASEBALL,
472
- id: League.KBO,
473
- label: 'KBO',
474
- opticOddsName: 'KBO',
475
- provider: Provider.OPTICODDS,
476
- scoringType: ScoringType.POINTS,
477
- matchResolveType: MatchResolveType.OVERTIME,
478
- periodType: PeriodType.INNING,
479
- isDrawAvailable: true,
480
- },
481
- [League.COLLEGE_BASEBALL]: {
482
- sport: Sport.BASEBALL,
483
- id: League.COLLEGE_BASEBALL,
484
- label: 'College Baseball',
485
- opticOddsName: 'College Baseball',
486
- provider: Provider.OPTICODDS,
487
- scoringType: ScoringType.POINTS,
488
- matchResolveType: MatchResolveType.OVERTIME,
489
- periodType: PeriodType.INNING,
490
- isDrawAvailable: true,
491
- },
492
- [League.CPBL]: {
493
- sport: Sport.BASEBALL,
494
- id: League.CPBL,
495
- label: 'CPBL',
496
- opticOddsName: 'CPBL',
497
- provider: Provider.OPTICODDS,
498
- scoringType: ScoringType.POINTS,
499
- matchResolveType: MatchResolveType.OVERTIME,
500
- periodType: PeriodType.INNING,
501
- isDrawAvailable: true,
502
- },
503
- [League.CZECH_REPUBLIC_EXTRALIGA]: {
504
- sport: Sport.HOCKEY,
505
- id: League.CZECH_REPUBLIC_EXTRALIGA,
506
- label: 'Czech Republic Extraliga',
507
- opticOddsName: 'Czech Republic - Extraliga',
508
- provider: Provider.OPTICODDS,
509
- scoringType: ScoringType.GOALS,
510
- matchResolveType: MatchResolveType.OVERTIME,
511
- periodType: PeriodType.PERIOD,
512
- isDrawAvailable: true,
513
- },
514
- [League.FINLAND_SM_LIIGA]: {
515
- sport: Sport.HOCKEY,
516
- id: League.FINLAND_SM_LIIGA,
517
- label: 'Finland SM Liiga',
518
- opticOddsName: 'Finland - SM Liiga',
519
- provider: Provider.OPTICODDS,
520
- scoringType: ScoringType.GOALS,
521
- matchResolveType: MatchResolveType.OVERTIME,
522
- periodType: PeriodType.PERIOD,
523
- isDrawAvailable: true,
524
- },
525
- [League.RUSSIA_KHL]: {
526
- sport: Sport.HOCKEY,
527
- id: League.RUSSIA_KHL,
528
- label: 'Russia KHL',
529
- opticOddsName: 'Russia - KHL',
530
- provider: Provider.OPTICODDS,
531
- scoringType: ScoringType.GOALS,
532
- matchResolveType: MatchResolveType.OVERTIME,
533
- periodType: PeriodType.PERIOD,
534
- isDrawAvailable: true,
535
- },
536
- [League.GERMANY_DEL]: {
537
- sport: Sport.HOCKEY,
538
- id: League.GERMANY_DEL,
539
- label: 'Germany DEL',
540
- opticOddsName: 'Germany - DEL',
541
- provider: Provider.OPTICODDS,
542
- scoringType: ScoringType.GOALS,
543
- matchResolveType: MatchResolveType.OVERTIME,
544
- periodType: PeriodType.PERIOD,
545
- isDrawAvailable: true,
546
- },
547
- [League.AUSTRIA_ICE_HOCKEY_LEAGUE]: {
548
- sport: Sport.HOCKEY,
549
- id: League.AUSTRIA_ICE_HOCKEY_LEAGUE,
550
- label: 'Austria Ice Hockey League',
551
- opticOddsName: 'Austria - Ice Hockey League',
552
- provider: Provider.OPTICODDS,
553
- scoringType: ScoringType.GOALS,
554
- matchResolveType: MatchResolveType.OVERTIME,
555
- periodType: PeriodType.PERIOD,
556
- isDrawAvailable: true,
557
- },
558
- [League.SWEDEN_SHL]: {
559
- sport: Sport.HOCKEY,
560
- id: League.SWEDEN_SHL,
561
- label: 'Sweden SHL',
562
- opticOddsName: 'Sweden - SHL',
563
- provider: Provider.OPTICODDS,
564
- scoringType: ScoringType.GOALS,
565
- matchResolveType: MatchResolveType.OVERTIME,
566
- periodType: PeriodType.PERIOD,
567
- isDrawAvailable: true,
568
- },
569
- [League.SWITZETLAND_NATIONAL_LEAGUE]: {
570
- sport: Sport.HOCKEY,
571
- id: League.SWITZETLAND_NATIONAL_LEAGUE,
572
- label: 'Switzerland National League',
573
- opticOddsName: 'Switzerland - National League',
574
- provider: Provider.OPTICODDS,
575
- scoringType: ScoringType.GOALS,
576
- matchResolveType: MatchResolveType.OVERTIME,
577
- periodType: PeriodType.PERIOD,
578
- isDrawAvailable: true,
579
- },
580
- [League.USA_AHL]: {
581
- sport: Sport.HOCKEY,
582
- id: League.USA_AHL,
583
- label: 'USA AHL',
584
- opticOddsName: 'USA - AHL',
585
- provider: Provider.OPTICODDS,
586
- scoringType: ScoringType.GOALS,
587
- matchResolveType: MatchResolveType.OVERTIME,
588
- periodType: PeriodType.PERIOD,
589
- isDrawAvailable: true,
590
- },
591
- [League.SUMMER_OLYMPICS_HANDBALL_WOMEN]: {
592
- sport: Sport.HANDBALL,
593
- id: League.SUMMER_OLYMPICS_HANDBALL_WOMEN,
594
- label: 'Olympic Games Handball Women',
595
- opticOddsName: 'Olympics Handball Women',
596
- provider: Provider.EMPTY,
597
- scoringType: ScoringType.GOALS,
598
- matchResolveType: MatchResolveType.REGULAR,
599
- periodType: PeriodType.HALF,
600
- isDrawAvailable: true,
601
- },
602
- [League.SUMMER_OLYMPICS_HANDBALL]: {
603
- sport: Sport.HANDBALL,
604
- id: League.SUMMER_OLYMPICS_HANDBALL,
605
- label: 'Olympic Games Handball',
606
- opticOddsName: 'Olympics Handball Men',
607
- provider: Provider.EMPTY,
608
- scoringType: ScoringType.GOALS,
609
- matchResolveType: MatchResolveType.REGULAR,
610
- periodType: PeriodType.HALF,
611
- isDrawAvailable: true,
612
- },
613
- [League.EUROLEAGUE]: {
614
- sport: Sport.BASKETBALL,
615
- id: League.EUROLEAGUE,
616
- label: 'Euroleague',
617
- opticOddsName: 'Euroleague',
618
- provider: Provider.OPTICODDS,
619
- scoringType: ScoringType.POINTS,
620
- matchResolveType: MatchResolveType.OVERTIME,
621
- periodType: PeriodType.QUARTER,
622
- isDrawAvailable: false,
623
- },
624
- [League.SUMMER_OLYMPICS_BASKETBALL]: {
625
- sport: Sport.BASKETBALL,
626
- id: League.SUMMER_OLYMPICS_BASKETBALL,
627
- label: 'Olympic Games Basketball',
628
- opticOddsName: 'Olympics Basketball Men',
629
- provider: Provider.EMPTY,
630
- scoringType: ScoringType.POINTS,
631
- matchResolveType: MatchResolveType.OVERTIME,
632
- periodType: PeriodType.QUARTER,
633
- isDrawAvailable: false,
634
- },
635
- [League.SUMMER_OLYMPICS_BASKETBALL_WOMEN]: {
636
- sport: Sport.BASKETBALL,
637
- id: League.SUMMER_OLYMPICS_BASKETBALL_WOMEN,
638
- label: 'Olympic Games Basketball Women',
639
- opticOddsName: 'Olympics Basketball Women',
640
- provider: Provider.EMPTY,
641
- scoringType: ScoringType.POINTS,
642
- matchResolveType: MatchResolveType.OVERTIME,
643
- periodType: PeriodType.QUARTER,
644
- isDrawAvailable: false,
645
- },
646
- [League.FIBA_WORLD_CUP]: {
647
- sport: Sport.BASKETBALL,
648
- id: League.FIBA_WORLD_CUP,
649
- label: 'FIBA World Cup',
650
- provider: Provider.EMPTY,
651
- scoringType: ScoringType.POINTS,
652
- matchResolveType: MatchResolveType.OVERTIME,
653
- periodType: PeriodType.QUARTER,
654
- isDrawAvailable: false,
655
- },
656
- [League.FORMULA1]: {
657
- sport: Sport.MOTOSPORT,
658
- id: League.FORMULA1,
659
- label: 'Formula 1',
660
- provider: Provider.EMPTY,
661
- scoringType: ScoringType.EMPTY,
662
- matchResolveType: MatchResolveType.EMPTY,
663
- periodType: PeriodType.EMPTY,
664
- isDrawAvailable: false,
665
- },
666
- [League.SUMMER_OLYMPICS_BEACH_VOLEYBALL_WOMEN]: {
667
- sport: Sport.VOLLEYBALL,
668
- id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL_WOMEN,
669
- label: 'Olympic Games Beach Voleyball Women',
670
- provider: Provider.EMPTY,
671
- scoringType: ScoringType.SETS,
672
- matchResolveType: MatchResolveType.REGULAR,
673
- periodType: PeriodType.SET,
674
- isDrawAvailable: false,
675
- },
676
- [League.SUMMER_OLYMPICS_BEACH_VOLEYBALL]: {
677
- sport: Sport.VOLLEYBALL,
678
- id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL,
679
- label: 'Olympic Games Beach Voleyball',
680
- provider: Provider.EMPTY,
681
- scoringType: ScoringType.SETS,
682
- matchResolveType: MatchResolveType.REGULAR,
683
- periodType: PeriodType.SET,
684
- isDrawAvailable: false,
685
- },
686
- [League.SUMMER_OLYMPICS_TABLE_TENNIS]: {
687
- sport: Sport.TABLE_TENNIS,
688
- id: League.SUMMER_OLYMPICS_TABLE_TENNIS,
689
- label: 'Olympic Games Table Tennis',
690
- provider: Provider.EMPTY,
691
- scoringType: ScoringType.SETS,
692
- matchResolveType: MatchResolveType.REGULAR,
693
- periodType: PeriodType.SET,
694
- isDrawAvailable: false,
695
- },
696
- [League.MOTOGP]: {
697
- sport: Sport.MOTOSPORT,
698
- id: League.MOTOGP,
699
- label: 'MotoGP',
700
- provider: Provider.EMPTY,
701
- scoringType: ScoringType.EMPTY,
702
- matchResolveType: MatchResolveType.EMPTY,
703
- periodType: PeriodType.EMPTY,
704
- isDrawAvailable: false,
705
- },
706
- [League.SAUDI_PROFESSIONAL_LEAGUE]: {
707
- sport: Sport.SOCCER,
708
- id: League.SAUDI_PROFESSIONAL_LEAGUE,
709
- label: 'Saudi Professional League',
710
- opticOddsName: 'Saudi Arabia - Saudi League',
711
- provider: Provider.OPTICODDS,
712
- scoringType: ScoringType.GOALS,
713
- matchResolveType: MatchResolveType.REGULAR,
714
- periodType: PeriodType.HALF,
715
- isDrawAvailable: true,
716
- },
717
- [League.SUMMER_OLYMPICS_WATERPOLO]: {
718
- sport: Sport.WATERPOLO,
719
- id: League.SUMMER_OLYMPICS_WATERPOLO,
720
- label: 'Olympic Games Water Polo',
721
- opticOddsName: 'Olympics Water Polo',
722
- provider: Provider.EMPTY,
723
- scoringType: ScoringType.GOALS,
724
- matchResolveType: MatchResolveType.REGULAR,
725
- periodType: PeriodType.QUARTER,
726
- isDrawAvailable: true,
727
- },
728
- [League.SUMMER_OLYMPICS_VOLEYBALL_WOMEN]: {
729
- sport: Sport.VOLLEYBALL,
730
- id: League.SUMMER_OLYMPICS_VOLEYBALL_WOMEN,
731
- label: 'Olympic Games Volleyball Women',
732
- opticOddsName: 'Olympics Volleyball Women',
733
- provider: Provider.EMPTY,
734
- scoringType: ScoringType.SETS,
735
- matchResolveType: MatchResolveType.REGULAR,
736
- periodType: PeriodType.SET,
737
- isDrawAvailable: false,
738
- },
739
- [League.SUMMER_OLYMPICS_VOLEYBALL]: {
740
- sport: Sport.VOLLEYBALL,
741
- id: League.SUMMER_OLYMPICS_VOLEYBALL,
742
- label: 'Olympic Games Volleyball',
743
- opticOddsName: 'Olympics Volleyball Men',
744
- provider: Provider.EMPTY,
745
- scoringType: ScoringType.SETS,
746
- matchResolveType: MatchResolveType.REGULAR,
747
- periodType: PeriodType.SET,
748
- isDrawAvailable: false,
749
- },
750
- [League.BOXING]: {
751
- sport: Sport.FIGHTING,
752
- id: League.BOXING,
753
- label: 'Boxing',
754
- provider: Provider.EMPTY,
755
- scoringType: ScoringType.ROUNDS,
756
- matchResolveType: MatchResolveType.EMPTY,
757
- periodType: PeriodType.ROUND,
758
- isDrawAvailable: false,
759
- },
760
- [League.AUSTRALIA_NRL]: {
761
- sport: Sport.RUGBY,
762
- id: League.AUSTRALIA_NRL,
763
- label: 'Australia NRL',
764
- opticOddsName: 'Australia - NRL',
765
- provider: Provider.OPTICODDS,
766
- scoringType: ScoringType.POINTS,
767
- matchResolveType: MatchResolveType.REGULAR,
768
- periodType: PeriodType.HALF,
769
- isDrawAvailable: true,
770
- },
771
- [League.ENGLAND_SUPER_LEAGUE]: {
772
- sport: Sport.RUGBY,
773
- id: League.ENGLAND_SUPER_LEAGUE,
774
- label: 'England Super League',
775
- opticOddsName: 'England - Super League',
776
- provider: Provider.OPTICODDS,
777
- scoringType: ScoringType.POINTS,
778
- matchResolveType: MatchResolveType.REGULAR,
779
- periodType: PeriodType.HALF,
780
- isDrawAvailable: true,
781
- },
782
- [League.SUPER_RUGBY]: {
783
- sport: Sport.RUGBY,
784
- id: League.SUPER_RUGBY,
785
- label: 'Super Rugby',
786
- opticOddsName: 'Oceania - Super Rugby',
787
- provider: Provider.OPTICODDS,
788
- scoringType: ScoringType.POINTS,
789
- matchResolveType: MatchResolveType.REGULAR,
790
- periodType: PeriodType.HALF,
791
- isDrawAvailable: true,
792
- },
793
- [League.SIX_NATIONS]: {
794
- sport: Sport.RUGBY,
795
- id: League.SIX_NATIONS,
796
- label: 'Six Nations',
797
- opticOddsName: 'International - Six Nations',
798
- provider: Provider.OPTICODDS,
799
- scoringType: ScoringType.POINTS,
800
- matchResolveType: MatchResolveType.REGULAR,
801
- periodType: PeriodType.HALF,
802
- isDrawAvailable: true,
803
- },
804
- [League.SUMMER_OLYMPICS_RUGBY]: {
805
- sport: Sport.RUGBY,
806
- id: League.SUMMER_OLYMPICS_RUGBY,
807
- label: 'Olympic Games Rugby',
808
- opticOddsName: 'Olympics Rugby 7s Men',
809
- provider: Provider.EMPTY,
810
- scoringType: ScoringType.POINTS,
811
- matchResolveType: MatchResolveType.REGULAR,
812
- periodType: PeriodType.HALF,
813
- isDrawAvailable: true,
814
- },
815
- [League.SUMMER_OLYMPICS_RUGBY_WOMEN]: {
816
- sport: Sport.RUGBY,
817
- id: League.SUMMER_OLYMPICS_RUGBY_WOMEN,
818
- label: 'Olympic Games Rugby Women',
819
- opticOddsName: 'Olympics Rugby 7s Women',
820
- provider: Provider.EMPTY,
821
- scoringType: ScoringType.POINTS,
822
- matchResolveType: MatchResolveType.REGULAR,
823
- periodType: PeriodType.HALF,
824
- isDrawAvailable: true,
825
- },
826
- [League.SUMMER_OLYMPICS_HOCKEY_WOMEN]: {
827
- sport: Sport.HOCKEY,
828
- id: League.SUMMER_OLYMPICS_HOCKEY_WOMEN,
829
- label: 'Olympic Games Hockey Women',
830
- provider: Provider.EMPTY,
831
- scoringType: ScoringType.GOALS,
832
- matchResolveType: MatchResolveType.REGULAR,
833
- periodType: PeriodType.PERIOD,
834
- isDrawAvailable: true,
835
- },
836
- [League.SUMMER_OLYMPICS_HOCKEY]: {
837
- sport: Sport.HOCKEY,
838
- id: League.SUMMER_OLYMPICS_HOCKEY,
839
- label: 'Olympic Games Hockey',
840
- provider: Provider.EMPTY,
841
- scoringType: ScoringType.GOALS,
842
- matchResolveType: MatchResolveType.REGULAR,
843
- periodType: PeriodType.PERIOD,
844
- isDrawAvailable: true,
845
- },
846
- [League.UEFA_NATIONS_LEAGUE]: {
847
- sport: Sport.SOCCER,
848
- id: League.UEFA_NATIONS_LEAGUE,
849
- label: 'UEFA Nations League',
850
- provider: Provider.OPTICODDS,
851
- opticOddsName: 'UEFA - Nations League',
852
- scoringType: ScoringType.GOALS,
853
- matchResolveType: MatchResolveType.REGULAR,
854
- periodType: PeriodType.HALF,
855
- isDrawAvailable: true,
856
- },
857
- [League.CANADA_PREMIER_LEAGUE]: {
858
- sport: Sport.SOCCER,
859
- id: League.CANADA_PREMIER_LEAGUE,
860
- label: 'Canada Premier League',
861
- opticOddsName: 'Canada - Premier League',
862
- provider: Provider.OPTICODDS,
863
- scoringType: ScoringType.GOALS,
864
- matchResolveType: MatchResolveType.REGULAR,
865
- periodType: PeriodType.HALF,
866
- isDrawAvailable: true,
867
- },
868
- [League.CONCACAF_NATIONS_LEAGUE]: {
869
- sport: Sport.SOCCER,
870
- id: League.CONCACAF_NATIONS_LEAGUE,
871
- label: 'CONCACAF Nations League',
872
- provider: Provider.EMPTY,
873
- scoringType: ScoringType.GOALS,
874
- matchResolveType: MatchResolveType.REGULAR,
875
- periodType: PeriodType.HALF,
876
- isDrawAvailable: true,
877
- },
878
- [League.CSGO]: {
879
- sport: Sport.ESPORTS,
880
- id: League.CSGO,
881
- label: 'CS GO',
882
- opticOddsName: 'CS2',
883
- provider: Provider.OPTICODDS,
884
- scoringType: ScoringType.MAPS,
885
- matchResolveType: MatchResolveType.EMPTY,
886
- periodType: PeriodType.MAP,
887
- isDrawAvailable: false,
888
- },
889
- [League.DOTA2]: {
890
- sport: Sport.ESPORTS,
891
- id: League.DOTA2,
892
- label: 'DOTA 2',
893
- opticOddsName: 'Dota 2',
894
- provider: Provider.OPTICODDS,
895
- scoringType: ScoringType.MAPS,
896
- matchResolveType: MatchResolveType.EMPTY,
897
- periodType: PeriodType.MAP,
898
- isDrawAvailable: false,
899
- },
900
- [League.SUMMER_OLYMPICS_BASKETBALL_3X3]: {
901
- sport: Sport.BASKETBALL,
902
- id: League.SUMMER_OLYMPICS_BASKETBALL_3X3,
903
- label: 'Olympic Games Basketball 3x3',
904
- opticOddsName: 'Olympics Basketball 3x3 Men',
905
- provider: Provider.EMPTY,
906
- scoringType: ScoringType.POINTS,
907
- matchResolveType: MatchResolveType.OVERTIME,
908
- periodType: PeriodType.QUARTER,
909
- isDrawAvailable: false,
910
- },
911
- [League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN]: {
912
- sport: Sport.BASKETBALL,
913
- id: League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN,
914
- label: 'Olympic Games Basketball 3x3 Women',
915
- opticOddsName: 'Olympics Basketball 3x3 Women',
916
- provider: Provider.EMPTY,
917
- scoringType: ScoringType.POINTS,
918
- matchResolveType: MatchResolveType.OVERTIME,
919
- periodType: PeriodType.QUARTER,
920
- isDrawAvailable: false,
921
- },
922
- [League.SUMMER_OLYMPICS_QUALIFICATION]: {
923
- sport: Sport.BASKETBALL,
924
- id: League.SUMMER_OLYMPICS_QUALIFICATION,
925
- label: 'Summer Olympics Basketball Qualification',
926
- provider: Provider.EMPTY,
927
- scoringType: ScoringType.POINTS,
928
- matchResolveType: MatchResolveType.OVERTIME,
929
- periodType: PeriodType.QUARTER,
930
- isDrawAvailable: false,
931
- },
932
- [League.LOL]: {
933
- sport: Sport.ESPORTS,
934
- id: League.LOL,
935
- label: 'LOL',
936
- opticOddsName: 'League of Legends',
937
- provider: Provider.OPTICODDS,
938
- scoringType: ScoringType.MAPS,
939
- matchResolveType: MatchResolveType.EMPTY,
940
- periodType: PeriodType.MAP,
941
- isDrawAvailable: false,
942
- },
943
- [League.CONMEBOL_WC_QUALIFICATIONS]: {
944
- sport: Sport.SOCCER,
945
- id: League.CONMEBOL_WC_QUALIFICATIONS,
946
- label: 'CONMEBOL WC Qualification',
947
- provider: Provider.EMPTY,
948
- scoringType: ScoringType.GOALS,
949
- matchResolveType: MatchResolveType.REGULAR,
950
- periodType: PeriodType.HALF,
951
- isDrawAvailable: true,
952
- },
953
- [League.UEFA_CONFERENCE_LEAGUE]: {
954
- sport: Sport.SOCCER,
955
- id: League.UEFA_CONFERENCE_LEAGUE,
956
- label: 'UEFA Conference League',
957
- opticOddsName: 'UEFA - Europa Conference League',
958
- provider: Provider.OPTICODDS,
959
- scoringType: ScoringType.GOALS,
960
- matchResolveType: MatchResolveType.REGULAR,
961
- periodType: PeriodType.HALF,
962
- isDrawAvailable: true,
963
- },
964
- [League.NON_TITLE_BOXING]: {
965
- sport: Sport.FIGHTING,
966
- id: League.NON_TITLE_BOXING,
967
- label: 'Boxing',
968
- provider: Provider.EMPTY,
969
- scoringType: ScoringType.ROUNDS,
970
- matchResolveType: MatchResolveType.EMPTY,
971
- periodType: PeriodType.ROUND,
972
- isDrawAvailable: false,
973
- },
974
- [League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION]: {
975
- sport: Sport.SOCCER,
976
- id: League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION,
977
- label: 'UEFA Champions League Qualification',
978
- opticOddsName: 'UEFA - Champions League',
979
- provider: Provider.EMPTY,
980
- scoringType: ScoringType.GOALS,
981
- matchResolveType: MatchResolveType.REGULAR,
982
- periodType: PeriodType.HALF,
983
- isDrawAvailable: true,
984
- },
985
- [League.UEFA_EUROPA_LEAGUE_QUALIFICATION]: {
986
- sport: Sport.SOCCER,
987
- id: League.UEFA_EUROPA_LEAGUE_QUALIFICATION,
988
- label: 'UEFA Europa League Qualification',
989
- opticOddsName: 'UEFA - Europa League',
990
- provider: Provider.EMPTY,
991
- scoringType: ScoringType.GOALS,
992
- matchResolveType: MatchResolveType.REGULAR,
993
- periodType: PeriodType.HALF,
994
- isDrawAvailable: true,
995
- },
996
- [League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION]: {
997
- sport: Sport.SOCCER,
998
- id: League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION,
999
- label: 'UEFA Conference League Qualification',
1000
- opticOddsName: 'UEFA - Europa Conference League',
1001
- provider: Provider.EMPTY,
1002
- scoringType: ScoringType.GOALS,
1003
- matchResolveType: MatchResolveType.REGULAR,
1004
- periodType: PeriodType.HALF,
1005
- isDrawAvailable: true,
1006
- },
1007
- [League.US_ELECTION]: {
1008
- sport: Sport.POLITICS,
1009
- id: League.US_ELECTION,
1010
- label: 'US Election 2024',
1011
- provider: Provider.EMPTY,
1012
- scoringType: ScoringType.EMPTY,
1013
- matchResolveType: MatchResolveType.EMPTY,
1014
- periodType: PeriodType.EMPTY,
1015
- isDrawAvailable: false,
1016
- },
1017
- [League.UEFA_SUPER_CUP]: {
1018
- sport: Sport.SOCCER,
1019
- id: League.UEFA_SUPER_CUP,
1020
- label: 'UEFA Super Cup',
1021
- opticOddsName: 'UEFA - Super Cup',
1022
- provider: Provider.OPTICODDS,
1023
- scoringType: ScoringType.GOALS,
1024
- matchResolveType: MatchResolveType.REGULAR,
1025
- periodType: PeriodType.HALF,
1026
- isDrawAvailable: true,
1027
- },
1028
- [League.BRAZIL_CUP]: {
1029
- sport: Sport.SOCCER,
1030
- id: League.BRAZIL_CUP,
1031
- label: 'Copa do Brasil',
1032
- opticOddsName: 'Brazil - Copa do Brasil',
1033
- provider: Provider.OPTICODDS,
1034
- scoringType: ScoringType.GOALS,
1035
- matchResolveType: MatchResolveType.REGULAR,
1036
- periodType: PeriodType.HALF,
1037
- isDrawAvailable: true,
1038
- },
1039
- [League.ENGLAND_CHAMPIONSHIP]: {
1040
- sport: Sport.SOCCER,
1041
- id: League.ENGLAND_CHAMPIONSHIP,
1042
- label: 'EFL Championship',
1043
- opticOddsName: 'England - Championship',
1044
- provider: Provider.OPTICODDS,
1045
- scoringType: ScoringType.GOALS,
1046
- matchResolveType: MatchResolveType.REGULAR,
1047
- periodType: PeriodType.HALF,
1048
- isDrawAvailable: true,
1049
- },
1050
- [League.SCOTLAND_PREMIERSHIP]: {
1051
- sport: Sport.SOCCER,
1052
- id: League.SCOTLAND_PREMIERSHIP,
1053
- label: 'Scotland Premiership',
1054
- opticOddsName: 'Scotland - Premiership',
1055
- provider: Provider.OPTICODDS,
1056
- scoringType: ScoringType.GOALS,
1057
- matchResolveType: MatchResolveType.REGULAR,
1058
- periodType: PeriodType.HALF,
1059
- isDrawAvailable: true,
1060
- },
1061
- [League.BELGIUM_LEAGUE]: {
1062
- sport: Sport.SOCCER,
1063
- id: League.BELGIUM_LEAGUE,
1064
- label: 'Belgium Jupiler Pro League',
1065
- opticOddsName: 'Belgium - Jupiler Pro League',
1066
- provider: Provider.OPTICODDS,
1067
- scoringType: ScoringType.GOALS,
1068
- matchResolveType: MatchResolveType.REGULAR,
1069
- periodType: PeriodType.HALF,
1070
- isDrawAvailable: true,
1071
- },
1072
- [League.CZECH_LEAGUE]: {
1073
- sport: Sport.SOCCER,
1074
- id: League.CZECH_LEAGUE,
1075
- label: 'Czech Republic FNL',
1076
- opticOddsName: 'Czech Republic - FNL',
1077
- provider: Provider.OPTICODDS,
1078
- scoringType: ScoringType.GOALS,
1079
- matchResolveType: MatchResolveType.REGULAR,
1080
- periodType: PeriodType.HALF,
1081
- isDrawAvailable: true,
1082
- },
1083
- [League.CHILE_PRIMERA]: {
1084
- sport: Sport.SOCCER,
1085
- id: League.CHILE_PRIMERA,
1086
- label: 'Chile Primera Division',
1087
- opticOddsName: 'Chile - Primera Division',
1088
- provider: Provider.OPTICODDS,
1089
- scoringType: ScoringType.GOALS,
1090
- matchResolveType: MatchResolveType.REGULAR,
1091
- periodType: PeriodType.HALF,
1092
- isDrawAvailable: true,
1093
- },
1094
- [League.FINLAND_LEAGUE]: {
1095
- sport: Sport.SOCCER,
1096
- id: League.FINLAND_LEAGUE,
1097
- label: 'Finland Veikkausliiga',
1098
- opticOddsName: 'Finland - Veikkausliiga',
1099
- provider: Provider.OPTICODDS,
1100
- scoringType: ScoringType.GOALS,
1101
- matchResolveType: MatchResolveType.REGULAR,
1102
- periodType: PeriodType.HALF,
1103
- isDrawAvailable: true,
1104
- },
1105
- [League.ARGENTINA_PRIMERA]: {
1106
- sport: Sport.SOCCER,
1107
- id: League.ARGENTINA_PRIMERA,
1108
- label: 'Argentina Primera Division',
1109
- opticOddsName: 'Argentina - Primera Division',
1110
- provider: Provider.OPTICODDS,
1111
- scoringType: ScoringType.GOALS,
1112
- matchResolveType: MatchResolveType.REGULAR,
1113
- periodType: PeriodType.HALF,
1114
- isDrawAvailable: true,
1115
- },
1116
- [League.RUSSIA_PREMIER]: {
1117
- sport: Sport.SOCCER,
1118
- id: League.RUSSIA_PREMIER,
1119
- label: 'Russia Premier League',
1120
- opticOddsName: 'Russia - Premier League',
1121
- provider: Provider.OPTICODDS,
1122
- scoringType: ScoringType.GOALS,
1123
- matchResolveType: MatchResolveType.REGULAR,
1124
- periodType: PeriodType.HALF,
1125
- isDrawAvailable: true,
1126
- },
1127
- [League.TURKEY_SUPER_LEAGUE]: {
1128
- sport: Sport.SOCCER,
1129
- id: League.TURKEY_SUPER_LEAGUE,
1130
- label: 'Turkey Super Lig',
1131
- opticOddsName: 'Turkey - Super Lig',
1132
- provider: Provider.OPTICODDS,
1133
- scoringType: ScoringType.GOALS,
1134
- matchResolveType: MatchResolveType.REGULAR,
1135
- periodType: PeriodType.HALF,
1136
- isDrawAvailable: true,
1137
- },
1138
- [League.SERBIA_SUPER_LEAGUE]: {
1139
- sport: Sport.SOCCER,
1140
- id: League.SERBIA_SUPER_LEAGUE,
1141
- label: 'Serbia Super Liga',
1142
- opticOddsName: 'Serbia - Super Liga',
1143
- provider: Provider.OPTICODDS,
1144
- scoringType: ScoringType.GOALS,
1145
- matchResolveType: MatchResolveType.REGULAR,
1146
- periodType: PeriodType.HALF,
1147
- isDrawAvailable: true,
1148
- },
1149
- [League.GREECE_SUPER_LEAGUE]: {
1150
- sport: Sport.SOCCER,
1151
- id: League.GREECE_SUPER_LEAGUE,
1152
- label: 'Greece Super League',
1153
- opticOddsName: 'Greece - Super League',
1154
- provider: Provider.OPTICODDS,
1155
- scoringType: ScoringType.GOALS,
1156
- matchResolveType: MatchResolveType.REGULAR,
1157
- periodType: PeriodType.HALF,
1158
- isDrawAvailable: true,
1159
- },
1160
- [League.INDIA_PREMIER]: {
1161
- sport: Sport.SOCCER,
1162
- id: League.INDIA_PREMIER,
1163
- label: 'India Calcutta Premier Division',
1164
- opticOddsName: 'India - Calcutta Premier Division',
1165
- provider: Provider.OPTICODDS,
1166
- scoringType: ScoringType.GOALS,
1167
- matchResolveType: MatchResolveType.REGULAR,
1168
- periodType: PeriodType.HALF,
1169
- isDrawAvailable: true,
1170
- },
1171
- [League.CHINA_SUPER_LEAGUE]: {
1172
- sport: Sport.SOCCER,
1173
- id: League.CHINA_SUPER_LEAGUE,
1174
- label: 'China Super League',
1175
- opticOddsName: 'China - Super League',
1176
- provider: Provider.OPTICODDS,
1177
- scoringType: ScoringType.GOALS,
1178
- matchResolveType: MatchResolveType.REGULAR,
1179
- periodType: PeriodType.HALF,
1180
- isDrawAvailable: true,
1181
- },
1182
- [League.AUSTRALIA_A_LEAGUE]: {
1183
- sport: Sport.SOCCER,
1184
- id: League.AUSTRALIA_A_LEAGUE,
1185
- label: 'Australia A-League',
1186
- opticOddsName: 'Australia - A-League',
1187
- provider: Provider.OPTICODDS,
1188
- scoringType: ScoringType.GOALS,
1189
- matchResolveType: MatchResolveType.REGULAR,
1190
- periodType: PeriodType.HALF,
1191
- isDrawAvailable: true,
1192
- },
1193
- [League.SWITZERLAND_SUPER_LEAGUE]: {
1194
- sport: Sport.SOCCER,
1195
- id: League.SWITZERLAND_SUPER_LEAGUE,
1196
- label: 'Switzerland Super League',
1197
- opticOddsName: 'Switzerland - Super League',
1198
- provider: Provider.OPTICODDS,
1199
- scoringType: ScoringType.GOALS,
1200
- matchResolveType: MatchResolveType.REGULAR,
1201
- periodType: PeriodType.HALF,
1202
- isDrawAvailable: true,
1203
- },
1204
- [League.BUNDESLIGA_2]: {
1205
- sport: Sport.SOCCER,
1206
- id: League.BUNDESLIGA_2,
1207
- label: 'Bundesliga 2',
1208
- opticOddsName: 'Germany - Bundesliga 2',
1209
- provider: Provider.OPTICODDS,
1210
- scoringType: ScoringType.GOALS,
1211
- matchResolveType: MatchResolveType.REGULAR,
1212
- periodType: PeriodType.HALF,
1213
- isDrawAvailable: true,
1214
- },
1215
- [League.LA_LIGA_2]: {
1216
- sport: Sport.SOCCER,
1217
- id: League.LA_LIGA_2,
1218
- label: 'La Liga 2',
1219
- opticOddsName: 'Spain - La Liga 2',
1220
- provider: Provider.OPTICODDS,
1221
- scoringType: ScoringType.GOALS,
1222
- matchResolveType: MatchResolveType.REGULAR,
1223
- periodType: PeriodType.HALF,
1224
- isDrawAvailable: true,
1225
- },
1226
- [League.SERIE_B]: {
1227
- sport: Sport.SOCCER,
1228
- id: League.SERIE_B,
1229
- label: 'Serie B',
1230
- opticOddsName: 'Italy - Serie B',
1231
- provider: Provider.OPTICODDS,
1232
- scoringType: ScoringType.GOALS,
1233
- matchResolveType: MatchResolveType.REGULAR,
1234
- periodType: PeriodType.HALF,
1235
- isDrawAvailable: true,
1236
- },
1237
- [League.INDIA_SUPER_LEAGUE]: {
1238
- sport: Sport.SOCCER,
1239
- id: League.INDIA_SUPER_LEAGUE,
1240
- label: 'India Super League',
1241
- opticOddsName: 'India - Super League',
1242
- provider: Provider.OPTICODDS,
1243
- scoringType: ScoringType.GOALS,
1244
- matchResolveType: MatchResolveType.REGULAR,
1245
- periodType: PeriodType.HALF,
1246
- isDrawAvailable: true,
1247
- },
1248
- [League.LIGUE_2]: {
1249
- sport: Sport.SOCCER,
1250
- id: League.LIGUE_2,
1251
- label: 'Ligue 2',
1252
- opticOddsName: 'France - Ligue 2',
1253
- provider: Provider.OPTICODDS,
1254
- scoringType: ScoringType.GOALS,
1255
- matchResolveType: MatchResolveType.REGULAR,
1256
- periodType: PeriodType.HALF,
1257
- isDrawAvailable: true,
1258
- },
1259
- [League.AUSTRIA_BUNDESLIGA]: {
1260
- sport: Sport.SOCCER,
1261
- id: League.AUSTRIA_BUNDESLIGA,
1262
- label: 'Austria Bundesliga',
1263
- opticOddsName: 'Austria - Bundesliga',
1264
- provider: Provider.OPTICODDS,
1265
- scoringType: ScoringType.GOALS,
1266
- matchResolveType: MatchResolveType.REGULAR,
1267
- periodType: PeriodType.HALF,
1268
- isDrawAvailable: true,
1269
- },
1270
- [League.DENMARK_SUPER_LEAGUE]: {
1271
- sport: Sport.SOCCER,
1272
- id: League.DENMARK_SUPER_LEAGUE,
1273
- label: 'Denmark Superliga',
1274
- opticOddsName: 'Denmark - Superliga',
1275
- provider: Provider.OPTICODDS,
1276
- scoringType: ScoringType.GOALS,
1277
- matchResolveType: MatchResolveType.REGULAR,
1278
- periodType: PeriodType.HALF,
1279
- isDrawAvailable: true,
1280
- },
1281
- [League.POLAND_LEAGUE]: {
1282
- sport: Sport.SOCCER,
1283
- id: League.POLAND_LEAGUE,
1284
- label: 'Poland Ekstraklasa',
1285
- opticOddsName: 'Poland - Ekstraklasa',
1286
- provider: Provider.OPTICODDS,
1287
- scoringType: ScoringType.GOALS,
1288
- matchResolveType: MatchResolveType.REGULAR,
1289
- periodType: PeriodType.HALF,
1290
- isDrawAvailable: true,
1291
- },
1292
- [League.SWEDEN_LEAGUE]: {
1293
- sport: Sport.SOCCER,
1294
- id: League.SWEDEN_LEAGUE,
1295
- label: 'Sweden Allsvenskan',
1296
- opticOddsName: 'Sweden - Allsvenskan',
1297
- provider: Provider.OPTICODDS,
1298
- scoringType: ScoringType.GOALS,
1299
- matchResolveType: MatchResolveType.REGULAR,
1300
- periodType: PeriodType.HALF,
1301
- isDrawAvailable: true,
1302
- },
1303
- [League.COLOMBIA_PRIMERA_A]: {
1304
- sport: Sport.SOCCER,
1305
- id: League.COLOMBIA_PRIMERA_A,
1306
- label: 'Colombia Primera A',
1307
- opticOddsName: 'Colombia - Primera A',
1308
- provider: Provider.OPTICODDS,
1309
- scoringType: ScoringType.GOALS,
1310
- matchResolveType: MatchResolveType.REGULAR,
1311
- periodType: PeriodType.HALF,
1312
- isDrawAvailable: true,
1313
- },
1314
- [League.ENGLAND_EFL_CUP]: {
1315
- sport: Sport.SOCCER,
1316
- id: League.ENGLAND_EFL_CUP,
1317
- label: 'England EFL Cup',
1318
- opticOddsName: 'England - EFL Cup',
1319
- provider: Provider.OPTICODDS,
1320
- scoringType: ScoringType.GOALS,
1321
- matchResolveType: MatchResolveType.REGULAR,
1322
- periodType: PeriodType.HALF,
1323
- isDrawAvailable: true,
1324
- },
1325
- [League.ENGLAND_LEGAUE_1]: {
1326
- sport: Sport.SOCCER,
1327
- id: League.ENGLAND_LEGAUE_1,
1328
- label: 'England League 1',
1329
- opticOddsName: 'England - League 1',
1330
- provider: Provider.OPTICODDS,
1331
- scoringType: ScoringType.GOALS,
1332
- matchResolveType: MatchResolveType.REGULAR,
1333
- periodType: PeriodType.HALF,
1334
- isDrawAvailable: true,
1335
- },
1336
- [League.URUGUAY_PRIMERA_DIVISION]: {
1337
- sport: Sport.SOCCER,
1338
- id: League.URUGUAY_PRIMERA_DIVISION,
1339
- label: 'Uruguay Primera Division',
1340
- opticOddsName: 'Uruguay - Primera Division',
1341
- provider: Provider.OPTICODDS,
1342
- scoringType: ScoringType.GOALS,
1343
- matchResolveType: MatchResolveType.REGULAR,
1344
- periodType: PeriodType.HALF,
1345
- isDrawAvailable: true,
1346
- },
1347
- [League.AFC_CHAMPIONS_LEAGUE]: {
1348
- sport: Sport.SOCCER,
1349
- id: League.AFC_CHAMPIONS_LEAGUE,
1350
- label: 'AFC Champions League',
1351
- opticOddsName: 'AFC - Champions League',
1352
- provider: Provider.OPTICODDS,
1353
- scoringType: ScoringType.GOALS,
1354
- matchResolveType: MatchResolveType.REGULAR,
1355
- periodType: PeriodType.HALF,
1356
- isDrawAvailable: true,
1357
- },
1358
- [League.ITALY_SUPER_CUP]: {
1359
- sport: Sport.SOCCER,
1360
- id: League.ITALY_SUPER_CUP,
1361
- label: 'Italy Super Cup',
1362
- opticOddsName: 'Italy - Supercoppa',
1363
- provider: Provider.OPTICODDS,
1364
- scoringType: ScoringType.GOALS,
1365
- matchResolveType: MatchResolveType.REGULAR,
1366
- periodType: PeriodType.HALF,
1367
- isDrawAvailable: true,
1368
- },
1369
- [League.FRANCE_SUPER_CUP]: {
1370
- sport: Sport.SOCCER,
1371
- id: League.FRANCE_SUPER_CUP,
1372
- label: 'France Super Cup',
1373
- opticOddsName: 'France - Super Cup',
1374
- provider: Provider.OPTICODDS,
1375
- scoringType: ScoringType.GOALS,
1376
- matchResolveType: MatchResolveType.REGULAR,
1377
- periodType: PeriodType.HALF,
1378
- isDrawAvailable: true,
1379
- },
1380
- [League.SPAIN_SUPER_CUP]: {
1381
- sport: Sport.SOCCER,
1382
- id: League.SPAIN_SUPER_CUP,
1383
- label: 'Spain Super Cup',
1384
- opticOddsName: 'Spain - Supercopa',
1385
- provider: Provider.OPTICODDS,
1386
- scoringType: ScoringType.GOALS,
1387
- matchResolveType: MatchResolveType.REGULAR,
1388
- periodType: PeriodType.HALF,
1389
- isDrawAvailable: true,
1390
- },
1391
- [League.GERMANY_SUPER_CUP]: {
1392
- sport: Sport.SOCCER,
1393
- id: League.GERMANY_SUPER_CUP,
1394
- label: 'Germany Super Cup',
1395
- opticOddsName: 'Germany - Super Cup',
1396
- provider: Provider.OPTICODDS,
1397
- scoringType: ScoringType.GOALS,
1398
- matchResolveType: MatchResolveType.REGULAR,
1399
- periodType: PeriodType.HALF,
1400
- isDrawAvailable: true,
1401
- },
1402
- [League.PORTUGAL_LEAGUE_CUP]: {
1403
- sport: Sport.SOCCER,
1404
- id: League.PORTUGAL_LEAGUE_CUP,
1405
- label: 'Portugal League Cup',
1406
- opticOddsName: 'Portugal - League Cup',
1407
- provider: Provider.OPTICODDS,
1408
- scoringType: ScoringType.GOALS,
1409
- matchResolveType: MatchResolveType.REGULAR,
1410
- periodType: PeriodType.HALF,
1411
- isDrawAvailable: true,
1412
- },
1413
- [League.THAILAND_LEAGUE_1]: {
1414
- sport: Sport.SOCCER,
1415
- id: League.THAILAND_LEAGUE_1,
1416
- label: 'Thai League 1',
1417
- opticOddsName: 'Thailand - Thai League 1',
1418
- provider: Provider.OPTICODDS,
1419
- scoringType: ScoringType.GOALS,
1420
- matchResolveType: MatchResolveType.REGULAR,
1421
- periodType: PeriodType.HALF,
1422
- isDrawAvailable: true,
1423
- },
1424
- [League.NETHERLANDS_CUP]: {
1425
- sport: Sport.SOCCER,
1426
- id: League.NETHERLANDS_CUP,
1427
- label: 'Netherlands KNVB Beker',
1428
- opticOddsName: 'Netherlands - KNVB Beker',
1429
- provider: Provider.OPTICODDS,
1430
- scoringType: ScoringType.GOALS,
1431
- matchResolveType: MatchResolveType.REGULAR,
1432
- periodType: PeriodType.HALF,
1433
- isDrawAvailable: true,
1434
- },
1435
- [League.PORTUGAL_CUP]: {
1436
- sport: Sport.SOCCER,
1437
- id: League.PORTUGAL_CUP,
1438
- label: 'Taca de Portugal',
1439
- opticOddsName: 'Portugal - Taca de Portugal',
1440
- provider: Provider.OPTICODDS,
1441
- scoringType: ScoringType.GOALS,
1442
- matchResolveType: MatchResolveType.REGULAR,
1443
- periodType: PeriodType.HALF,
1444
- isDrawAvailable: true,
1445
- },
1446
-
1447
- [League.ENGLAND_SUPER_LEAGUE_WOMEN]: {
1448
- sport: Sport.SOCCER,
1449
- id: League.ENGLAND_SUPER_LEAGUE_WOMEN,
1450
- label: "England Women's Super League",
1451
- opticOddsName: 'England - Womens Super League',
1452
- provider: Provider.OPTICODDS,
1453
- scoringType: ScoringType.GOALS,
1454
- matchResolveType: MatchResolveType.REGULAR,
1455
- periodType: PeriodType.HALF,
1456
- isDrawAvailable: true,
1457
- },
1458
- [League.ITALY_SERIE_A_WOMEN]: {
1459
- sport: Sport.SOCCER,
1460
- id: League.ITALY_SERIE_A_WOMEN,
1461
- label: 'Italy Serie A Femminile',
1462
- opticOddsName: 'Italy - Serie A Femminile',
1463
- provider: Provider.OPTICODDS,
1464
- scoringType: ScoringType.GOALS,
1465
- matchResolveType: MatchResolveType.REGULAR,
1466
- periodType: PeriodType.HALF,
1467
- isDrawAvailable: true,
1468
- },
1469
- [League.FRANCE_PREMIERE_LIGUE_WOMEN]: {
1470
- sport: Sport.SOCCER,
1471
- id: League.FRANCE_PREMIERE_LIGUE_WOMEN,
1472
- label: 'France Premiere Ligue Women',
1473
- opticOddsName: 'France - Premiere Ligue',
1474
- provider: Provider.OPTICODDS,
1475
- scoringType: ScoringType.GOALS,
1476
- matchResolveType: MatchResolveType.REGULAR,
1477
- periodType: PeriodType.HALF,
1478
- isDrawAvailable: true,
1479
- },
1480
- [League.GERMANY_BUNDESLIGA_WOMEN]: {
1481
- sport: Sport.SOCCER,
1482
- id: League.GERMANY_BUNDESLIGA_WOMEN,
1483
- label: 'Germany Frauen Bundesliga',
1484
- opticOddsName: 'Germany - Frauen Bundesliga',
1485
- provider: Provider.OPTICODDS,
1486
- scoringType: ScoringType.GOALS,
1487
- matchResolveType: MatchResolveType.REGULAR,
1488
- periodType: PeriodType.HALF,
1489
- isDrawAvailable: true,
1490
- },
1491
- [League.SPAIN_LIGA_F_WOMEN]: {
1492
- sport: Sport.SOCCER,
1493
- id: League.SPAIN_LIGA_F_WOMEN,
1494
- label: 'Spain Liga F Women',
1495
- opticOddsName: 'Spain - Liga F',
1496
- provider: Provider.OPTICODDS,
1497
- scoringType: ScoringType.GOALS,
1498
- matchResolveType: MatchResolveType.REGULAR,
1499
- periodType: PeriodType.HALF,
1500
- isDrawAvailable: true,
1501
- },
1502
- [League.NETHERLANDS_EREDIVISIE_WOMEN]: {
1503
- sport: Sport.SOCCER,
1504
- id: League.NETHERLANDS_EREDIVISIE_WOMEN,
1505
- label: 'Netherlands Eredivisie Women',
1506
- opticOddsName: 'Netherlands - Vrouwen Eredivisie',
1507
- provider: Provider.OPTICODDS,
1508
- scoringType: ScoringType.GOALS,
1509
- matchResolveType: MatchResolveType.REGULAR,
1510
- periodType: PeriodType.HALF,
1511
- isDrawAvailable: true,
1512
- },
1513
- [League.BELGIUM_SUPER_LEAGUE_WOMEN]: {
1514
- sport: Sport.SOCCER,
1515
- id: League.BELGIUM_SUPER_LEAGUE_WOMEN,
1516
- label: "Belgium Women's Super League",
1517
- opticOddsName: 'Belgium - Womens Super League',
1518
- provider: Provider.OPTICODDS,
1519
- scoringType: ScoringType.GOALS,
1520
- matchResolveType: MatchResolveType.REGULAR,
1521
- periodType: PeriodType.HALF,
1522
- isDrawAvailable: true,
1523
- },
1524
- [League.UEFA_CHAMPIONS_LEAGUE_WOMEN]: {
1525
- sport: Sport.SOCCER,
1526
- id: League.UEFA_CHAMPIONS_LEAGUE_WOMEN,
1527
- label: 'UEFA Champions League Women',
1528
- opticOddsName: 'UEFA - Champions League Women',
1529
- provider: Provider.OPTICODDS,
1530
- scoringType: ScoringType.GOALS,
1531
- matchResolveType: MatchResolveType.REGULAR,
1532
- periodType: PeriodType.HALF,
1533
- isDrawAvailable: true,
1534
- },
1535
- [League.USA_NWSL]: {
1536
- sport: Sport.SOCCER,
1537
- id: League.USA_NWSL,
1538
- label: 'USA NWSL',
1539
- opticOddsName: 'USA - NWSL',
1540
- provider: Provider.OPTICODDS,
1541
- scoringType: ScoringType.GOALS,
1542
- matchResolveType: MatchResolveType.REGULAR,
1543
- periodType: PeriodType.HALF,
1544
- isDrawAvailable: true,
1545
- },
1546
- [League.AUSTRALIA_A_LEAGUE_WOMEN]: {
1547
- sport: Sport.SOCCER,
1548
- id: League.AUSTRALIA_A_LEAGUE_WOMEN,
1549
- label: 'Australia A-League Women',
1550
- opticOddsName: 'Australia - A-League Women',
1551
- provider: Provider.OPTICODDS,
1552
- scoringType: ScoringType.GOALS,
1553
- matchResolveType: MatchResolveType.REGULAR,
1554
- periodType: PeriodType.HALF,
1555
- isDrawAvailable: true,
1556
- },
1557
- [League.CONCACAF_CHAMPIONS_CUP]: {
1558
- sport: Sport.SOCCER,
1559
- id: League.CONCACAF_CHAMPIONS_CUP,
1560
- label: 'CONCACAF Champions Cup',
1561
- opticOddsName: 'CONCACAF - Champions Cup',
1562
- provider: Provider.OPTICODDS,
1563
- scoringType: ScoringType.GOALS,
1564
- matchResolveType: MatchResolveType.REGULAR,
1565
- periodType: PeriodType.HALF,
1566
- isDrawAvailable: true,
1567
- },
1568
- [League.UEFA_NATIONS_LEAGUE_WOMEN]: {
1569
- sport: Sport.SOCCER,
1570
- id: League.UEFA_NATIONS_LEAGUE_WOMEN,
1571
- label: 'UEFA Nations League Women',
1572
- opticOddsName: 'UEFA - Nations League Women',
1573
- provider: Provider.OPTICODDS,
1574
- scoringType: ScoringType.GOALS,
1575
- matchResolveType: MatchResolveType.REGULAR,
1576
- periodType: PeriodType.HALF,
1577
- isDrawAvailable: true,
1578
- },
1579
- [League.EUROCUP]: {
1580
- sport: Sport.BASKETBALL,
1581
- id: League.EUROCUP,
1582
- label: 'Eurocup',
1583
- opticOddsName: 'Eurocup',
1584
- provider: Provider.OPTICODDS,
1585
- scoringType: ScoringType.POINTS,
1586
- matchResolveType: MatchResolveType.OVERTIME,
1587
- periodType: PeriodType.QUARTER,
1588
- isDrawAvailable: false,
1589
- },
1590
- [League.SPAIN_LIGA_ACB]: {
1591
- sport: Sport.BASKETBALL,
1592
- id: League.SPAIN_LIGA_ACB,
1593
- label: 'Spain Liga ACB',
1594
- opticOddsName: 'Spain - Liga ACB',
1595
- provider: Provider.OPTICODDS,
1596
- scoringType: ScoringType.POINTS,
1597
- matchResolveType: MatchResolveType.OVERTIME,
1598
- periodType: PeriodType.QUARTER,
1599
- isDrawAvailable: false,
1600
- },
1601
- [League.ITALY_LEGA_BASKET_SERIE_A]: {
1602
- sport: Sport.BASKETBALL,
1603
- id: League.ITALY_LEGA_BASKET_SERIE_A,
1604
- label: 'Italy Lega Basket Serie A',
1605
- opticOddsName: 'Italy - Lega Basket Serie A',
1606
- provider: Provider.OPTICODDS,
1607
- scoringType: ScoringType.POINTS,
1608
- matchResolveType: MatchResolveType.OVERTIME,
1609
- periodType: PeriodType.QUARTER,
1610
- isDrawAvailable: false,
1611
- },
1612
- [League.GERMANY_BBL]: {
1613
- sport: Sport.BASKETBALL,
1614
- id: League.GERMANY_BBL,
1615
- label: 'Germany BBL',
1616
- opticOddsName: 'Germany - BBL',
1617
- provider: Provider.OPTICODDS,
1618
- scoringType: ScoringType.POINTS,
1619
- matchResolveType: MatchResolveType.OVERTIME,
1620
- periodType: PeriodType.QUARTER,
1621
- isDrawAvailable: false,
1622
- },
1623
- [League.FRANCE_LNB_PRO_A]: {
1624
- sport: Sport.BASKETBALL,
1625
- id: League.FRANCE_LNB_PRO_A,
1626
- label: 'France LNB Pro A',
1627
- opticOddsName: 'France - LNB Pro A',
1628
- provider: Provider.OPTICODDS,
1629
- scoringType: ScoringType.POINTS,
1630
- matchResolveType: MatchResolveType.OVERTIME,
1631
- periodType: PeriodType.QUARTER,
1632
- isDrawAvailable: false,
1633
- },
1634
- [League.CHINA_CBA]: {
1635
- sport: Sport.BASKETBALL,
1636
- id: League.CHINA_CBA,
1637
- label: 'China CBA',
1638
- opticOddsName: 'China - CBA',
1639
- provider: Provider.OPTICODDS,
1640
- scoringType: ScoringType.POINTS,
1641
- matchResolveType: MatchResolveType.OVERTIME,
1642
- periodType: PeriodType.QUARTER,
1643
- isDrawAvailable: false,
1644
- },
1645
- [League.AUSTRALIA_NBL]: {
1646
- sport: Sport.BASKETBALL,
1647
- id: League.AUSTRALIA_NBL,
1648
- label: 'Australia NBL',
1649
- opticOddsName: 'Australia - NBL',
1650
- provider: Provider.OPTICODDS,
1651
- scoringType: ScoringType.POINTS,
1652
- matchResolveType: MatchResolveType.OVERTIME,
1653
- periodType: PeriodType.QUARTER,
1654
- isDrawAvailable: false,
1655
- },
1656
- [League.FIBA_CHAMPIONS_LEAGUE]: {
1657
- sport: Sport.BASKETBALL,
1658
- id: League.FIBA_CHAMPIONS_LEAGUE,
1659
- label: 'FIBA Champions League',
1660
- opticOddsName: 'International - Champions Leagu',
1661
- provider: Provider.OPTICODDS,
1662
- scoringType: ScoringType.POINTS,
1663
- matchResolveType: MatchResolveType.OVERTIME,
1664
- periodType: PeriodType.QUARTER,
1665
- isDrawAvailable: false,
1666
- },
1667
- [League.NCAAW]: {
1668
- sport: Sport.BASKETBALL,
1669
- id: League.NCAAW,
1670
- label: 'NCAAW',
1671
- opticOddsName: 'NCAAW',
1672
- provider: Provider.OPTICODDS,
1673
- scoringType: ScoringType.POINTS,
1674
- matchResolveType: MatchResolveType.OVERTIME,
1675
- periodType: PeriodType.QUARTER,
1676
- isDrawAvailable: false,
1677
- },
1678
- [League.FIBA_AMERICUP_QUALIFIERS]: {
1679
- sport: Sport.BASKETBALL,
1680
- id: League.FIBA_AMERICUP_QUALIFIERS,
1681
- label: 'FIBA Americup Qualifiers',
1682
- opticOddsName: 'FIBA - Americup Qualifiers',
1683
- provider: Provider.OPTICODDS,
1684
- scoringType: ScoringType.POINTS,
1685
- matchResolveType: MatchResolveType.OVERTIME,
1686
- periodType: PeriodType.QUARTER,
1687
- isDrawAvailable: false,
1688
- },
1689
- [League.FIBA_ASIA_CUP_QUALIFIERS]: {
1690
- sport: Sport.BASKETBALL,
1691
- id: League.FIBA_ASIA_CUP_QUALIFIERS,
1692
- label: 'FIBA Asia Cup Qualifiers',
1693
- opticOddsName: 'FIBA - Asia Cup Qualifiers',
1694
- provider: Provider.OPTICODDS,
1695
- scoringType: ScoringType.POINTS,
1696
- matchResolveType: MatchResolveType.OVERTIME,
1697
- periodType: PeriodType.QUARTER,
1698
- isDrawAvailable: false,
1699
- },
1700
- [League.FIBA_EUROBASKET_QUALIFIERS]: {
1701
- sport: Sport.BASKETBALL,
1702
- id: League.FIBA_EUROBASKET_QUALIFIERS,
1703
- label: 'FIBA Eurobasket Qualifiers',
1704
- opticOddsName: 'FIBA - Eurobasket Qualifiers',
1705
- provider: Provider.OPTICODDS,
1706
- scoringType: ScoringType.POINTS,
1707
- matchResolveType: MatchResolveType.OVERTIME,
1708
- periodType: PeriodType.QUARTER,
1709
- isDrawAvailable: false,
1710
- },
1711
- [League.FIBA_WORLD_CUP_QUALIFIERS]: {
1712
- sport: Sport.BASKETBALL,
1713
- id: League.FIBA_WORLD_CUP_QUALIFIERS,
1714
- label: 'FIBA World Cup Qualifiers',
1715
- opticOddsName: 'FIBA - World Cup Qualifiers',
1716
- provider: Provider.OPTICODDS,
1717
- scoringType: ScoringType.POINTS,
1718
- matchResolveType: MatchResolveType.OVERTIME,
1719
- periodType: PeriodType.QUARTER,
1720
- isDrawAvailable: false,
1721
- },
1722
- [League.FIBA_AFRO_BASKET_QUALIFIERS]: {
1723
- sport: Sport.BASKETBALL,
1724
- id: League.FIBA_AFRO_BASKET_QUALIFIERS,
1725
- label: 'FIBA AfroBasket Qualifiers',
1726
- opticOddsName: 'FIBA - AfroBasket Qualifiers',
1727
- provider: Provider.OPTICODDS,
1728
- scoringType: ScoringType.POINTS,
1729
- matchResolveType: MatchResolveType.OVERTIME,
1730
- periodType: PeriodType.QUARTER,
1731
- isDrawAvailable: false,
1732
- },
1733
- [League.GREECE_A1_LEAGUE]: {
1734
- sport: Sport.BASKETBALL,
1735
- id: League.GREECE_A1_LEAGUE,
1736
- label: 'Greece A1 League',
1737
- opticOddsName: 'Greece - A1 League',
1738
- provider: Provider.OPTICODDS,
1739
- scoringType: ScoringType.POINTS,
1740
- matchResolveType: MatchResolveType.OVERTIME,
1741
- periodType: PeriodType.QUARTER,
1742
- isDrawAvailable: false,
1743
- },
1744
- [League.ROCKET_LEAGUE]: {
1745
- sport: Sport.ESPORTS,
1746
- id: League.ROCKET_LEAGUE,
1747
- label: 'Rocket League',
1748
- opticOddsName: 'Rocket League',
1749
- provider: Provider.OPTICODDS,
1750
- scoringType: ScoringType.MAPS,
1751
- matchResolveType: MatchResolveType.EMPTY,
1752
- periodType: PeriodType.MAP,
1753
- isDrawAvailable: false,
1754
- },
1755
- [League.CALL_OF_DUTY]: {
1756
- sport: Sport.ESPORTS,
1757
- id: League.CALL_OF_DUTY,
1758
- label: 'Call of Duty',
1759
- opticOddsName: 'Call of Duty',
1760
- provider: Provider.OPTICODDS,
1761
- scoringType: ScoringType.MAPS,
1762
- matchResolveType: MatchResolveType.EMPTY,
1763
- periodType: PeriodType.MAP,
1764
- isDrawAvailable: false,
1765
- },
1766
- [League.STARCRAFT]: {
1767
- sport: Sport.ESPORTS,
1768
- id: League.STARCRAFT,
1769
- label: 'Starcraft',
1770
- opticOddsName: 'Starcraft',
1771
- provider: Provider.OPTICODDS,
1772
- scoringType: ScoringType.MAPS,
1773
- matchResolveType: MatchResolveType.EMPTY,
1774
- periodType: PeriodType.MAP,
1775
- isDrawAvailable: false,
1776
- },
1777
- [League.VALORANT]: {
1778
- sport: Sport.ESPORTS,
1779
- id: League.VALORANT,
1780
- label: 'Valorant',
1781
- opticOddsName: 'Valorant',
1782
- provider: Provider.OPTICODDS,
1783
- scoringType: ScoringType.MAPS,
1784
- matchResolveType: MatchResolveType.EMPTY,
1785
- periodType: PeriodType.MAP,
1786
- isDrawAvailable: false,
1787
- },
1788
- [League.NFL_FUTURES]: {
1789
- sport: Sport.FUTURES,
1790
- id: League.NFL_FUTURES,
1791
- label: 'NFL Futures',
1792
- provider: Provider.EMPTY,
1793
- scoringType: ScoringType.EMPTY,
1794
- matchResolveType: MatchResolveType.EMPTY,
1795
- periodType: PeriodType.EMPTY,
1796
- isDrawAvailable: false,
1797
- },
1798
- [League.NBA_FUTURES]: {
1799
- sport: Sport.FUTURES,
1800
- id: League.NBA_FUTURES,
1801
- label: 'NBA Futures',
1802
- provider: Provider.EMPTY,
1803
- scoringType: ScoringType.EMPTY,
1804
- matchResolveType: MatchResolveType.EMPTY,
1805
- periodType: PeriodType.EMPTY,
1806
- isDrawAvailable: false,
1807
- },
1808
- [League.NCAAB_FUTURES]: {
1809
- sport: Sport.FUTURES,
1810
- id: League.NCAAB_FUTURES,
1811
- label: 'NCAAB Futures',
1812
- provider: Provider.EMPTY,
1813
- scoringType: ScoringType.EMPTY,
1814
- matchResolveType: MatchResolveType.EMPTY,
1815
- periodType: PeriodType.EMPTY,
1816
- isDrawAvailable: false,
1817
- },
1818
- [League.NHL_FUTURES]: {
1819
- sport: Sport.FUTURES,
1820
- id: League.NHL_FUTURES,
1821
- label: 'NHL Futures',
1822
- provider: Provider.EMPTY,
1823
- scoringType: ScoringType.EMPTY,
1824
- matchResolveType: MatchResolveType.EMPTY,
1825
- periodType: PeriodType.EMPTY,
1826
- isDrawAvailable: false,
1827
- },
1828
- [League.EPL_FUTURES]: {
1829
- sport: Sport.FUTURES,
1830
- id: League.EPL_FUTURES,
1831
- label: 'EPL Futures',
1832
- provider: Provider.EMPTY,
1833
- scoringType: ScoringType.EMPTY,
1834
- matchResolveType: MatchResolveType.EMPTY,
1835
- periodType: PeriodType.EMPTY,
1836
- isDrawAvailable: false,
1837
- },
1838
- [League.LIGUE_ONE_FUTURES]: {
1839
- sport: Sport.FUTURES,
1840
- id: League.LIGUE_ONE_FUTURES,
1841
- label: 'Ligue 1 Futures',
1842
- provider: Provider.EMPTY,
1843
- scoringType: ScoringType.EMPTY,
1844
- matchResolveType: MatchResolveType.EMPTY,
1845
- periodType: PeriodType.EMPTY,
1846
- isDrawAvailable: false,
1847
- },
1848
- [League.BUNDESLIGA_FUTURES]: {
1849
- sport: Sport.FUTURES,
1850
- id: League.BUNDESLIGA_FUTURES,
1851
- label: 'Bundesliga Futures',
1852
- provider: Provider.EMPTY,
1853
- scoringType: ScoringType.EMPTY,
1854
- matchResolveType: MatchResolveType.EMPTY,
1855
- periodType: PeriodType.EMPTY,
1856
- isDrawAvailable: false,
1857
- },
1858
- [League.LA_LIGA_FUTURES]: {
1859
- sport: Sport.FUTURES,
1860
- id: League.LA_LIGA_FUTURES,
1861
- label: 'La Liga',
1862
- provider: Provider.EMPTY,
1863
- scoringType: ScoringType.EMPTY,
1864
- matchResolveType: MatchResolveType.EMPTY,
1865
- periodType: PeriodType.EMPTY,
1866
- isDrawAvailable: false,
1867
- },
1868
- [League.SERIE_A_FUTURES]: {
1869
- sport: Sport.FUTURES,
1870
- id: League.SERIE_A_FUTURES,
1871
- label: 'Serie A Futures',
1872
- provider: Provider.EMPTY,
1873
- scoringType: ScoringType.EMPTY,
1874
- matchResolveType: MatchResolveType.EMPTY,
1875
- periodType: PeriodType.EMPTY,
1876
- isDrawAvailable: false,
1877
- },
1878
- [League.UEFA_CHAMPIONS_LEAGUE_FUTURES]: {
1879
- sport: Sport.FUTURES,
1880
- id: League.UEFA_CHAMPIONS_LEAGUE_FUTURES,
1881
- label: 'UEFA Champions League Futures',
1882
- provider: Provider.EMPTY,
1883
- scoringType: ScoringType.EMPTY,
1884
- matchResolveType: MatchResolveType.EMPTY,
1885
- periodType: PeriodType.EMPTY,
1886
- isDrawAvailable: false,
1887
- },
1888
- [League.ATP_FUTURES]: {
1889
- sport: Sport.FUTURES,
1890
- id: League.ATP_FUTURES,
1891
- label: 'ATP Futures',
1892
- provider: Provider.EMPTY,
1893
- scoringType: ScoringType.EMPTY,
1894
- matchResolveType: MatchResolveType.EMPTY,
1895
- periodType: PeriodType.EMPTY,
1896
- isDrawAvailable: false,
1897
- },
1898
- [League.EUROLEAGUE_FUTURES]: {
1899
- sport: Sport.FUTURES,
1900
- id: League.EUROLEAGUE_FUTURES,
1901
- label: 'Euroleague Futures',
1902
- provider: Provider.EMPTY,
1903
- scoringType: ScoringType.EMPTY,
1904
- matchResolveType: MatchResolveType.EMPTY,
1905
- periodType: PeriodType.EMPTY,
1906
- isDrawAvailable: false,
1907
- },
1908
- [League.GOLF_H2H]: {
1909
- sport: Sport.GOLF,
1910
- id: League.GOLF_H2H,
1911
- label: 'Golf head-to-head',
1912
- provider: Provider.EMPTY,
1913
- scoringType: ScoringType.EMPTY,
1914
- matchResolveType: MatchResolveType.EMPTY,
1915
- periodType: PeriodType.EMPTY,
1916
- isDrawAvailable: false,
1917
- },
1918
- [League.GOLF_WINNER]: {
1919
- sport: Sport.GOLF,
1920
- id: League.GOLF_WINNER,
1921
- label: 'Golf Tournament Winner',
1922
- provider: Provider.EMPTY,
1923
- scoringType: ScoringType.EMPTY,
1924
- matchResolveType: MatchResolveType.EMPTY,
1925
- periodType: PeriodType.EMPTY,
1926
- isDrawAvailable: false,
1927
- },
1928
- };
1
+ import { League } from 'overtime-utils';
2
+ import { TennisSubLeague } from '../enums/sports';
1929
3
 
1930
4
  export const LEAGUES_NO_FORMAL_HOME_AWAY = [
1931
5
  League.CSGO,
@@ -1938,82 +12,67 @@ export const LEAGUES_NO_FORMAL_HOME_AWAY = [
1938
12
  League.TENNIS_GS,
1939
13
  League.TENNIS_MASTERS,
1940
14
  League.SUMMER_OLYMPICS_TENNIS,
1941
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_0,
1942
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_1,
1943
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_2,
1944
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_3,
1945
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_4,
1946
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_5,
1947
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_6,
1948
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_7,
1949
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_0,
1950
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_1,
1951
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_2,
1952
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_3,
1953
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_4,
1954
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_5,
1955
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_6,
1956
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_7,
1957
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_1,
1958
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_2,
1959
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_3,
1960
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_4,
1961
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_5,
1962
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_6,
1963
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_7,
1964
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_8,
1965
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_9,
1966
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_10,
1967
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_11,
1968
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_12,
1969
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_13,
1970
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_14,
1971
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_15,
1972
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_16,
1973
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_17,
1974
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_18,
1975
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_19,
1976
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_20,
1977
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_21,
1978
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_22,
1979
- League.TENNIS_WTA_LIVE_MAPPING_V2_1,
1980
- League.TENNIS_WTA_LIVE_MAPPING_V2_2,
1981
- League.TENNIS_WTA_LIVE_MAPPING_V2_3,
1982
- League.TENNIS_WTA_LIVE_MAPPING_V2_4,
1983
- League.TENNIS_WTA_LIVE_MAPPING_V2_5,
1984
- League.TENNIS_WTA_LIVE_MAPPING_V2_6,
1985
- League.TENNIS_WTA_LIVE_MAPPING_V2_7,
1986
- League.TENNIS_WTA_LIVE_MAPPING_V2_8,
1987
- League.TENNIS_WTA_LIVE_MAPPING_V2_9,
1988
- League.TENNIS_WTA_LIVE_MAPPING_V2_10,
1989
- League.TENNIS_WTA_LIVE_MAPPING_V2_11,
1990
- League.TENNIS_WTA_LIVE_MAPPING_V2_12,
1991
- League.TENNIS_WTA_LIVE_MAPPING_V2_13,
1992
- League.TENNIS_WTA_LIVE_MAPPING_V2_14,
1993
- League.TENNIS_WTA_LIVE_MAPPING_V2_15,
1994
- League.TENNIS_WTA_LIVE_MAPPING_V2_16,
1995
- League.TENNIS_WTA_LIVE_MAPPING_V2_17,
1996
- League.TENNIS_WTA_LIVE_MAPPING_V2_18,
1997
- League.TENNIS_WTA_LIVE_MAPPING_V2_19,
1998
- League.TENNIS_WTA_LIVE_MAPPING_V2_20,
1999
- League.TENNIS_WTA_LIVE_MAPPING_V2_21,
2000
- League.TENNIS_WTA_LIVE_MAPPING_V2_22,
2001
- League.TENNIS_WTA_LIVE_MAPPING_V2_23,
2002
- ];
2003
-
2004
- export const LEAGUES_NO_LIVE_CONSTRAINTS = [League.SUMMER_OLYMPICS_RUGBY, League.SUMMER_OLYMPICS_RUGBY_WOMEN];
2005
-
2006
- export const AMERICAN_LEAGUES = [
2007
- League.NCAAF,
2008
- League.NFL,
2009
- League.MLB,
2010
- League.NBA,
2011
- League.NCAAB,
2012
- League.NHL,
2013
- League.WNBA,
2014
- League.MLS,
2015
- League.IPL,
2016
- League.T20_BLAST,
15
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_0,
16
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_1,
17
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_2,
18
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_3,
19
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_4,
20
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_5,
21
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_6,
22
+ TennisSubLeague.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_7,
23
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_0,
24
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_1,
25
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_2,
26
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_3,
27
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_4,
28
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_5,
29
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_6,
30
+ TennisSubLeague.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_7,
31
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_1,
32
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_2,
33
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_3,
34
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_4,
35
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_5,
36
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_6,
37
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_7,
38
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_8,
39
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_9,
40
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_10,
41
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_11,
42
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_12,
43
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_13,
44
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_14,
45
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_15,
46
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_16,
47
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_17,
48
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_18,
49
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_19,
50
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_20,
51
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_21,
52
+ TennisSubLeague.TENNIS_MASTERS_LIVE_MAPPING_V2_22,
53
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_1,
54
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_2,
55
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_3,
56
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_4,
57
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_5,
58
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_6,
59
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_7,
60
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_8,
61
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_9,
62
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_10,
63
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_11,
64
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_12,
65
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_13,
66
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_14,
67
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_15,
68
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_16,
69
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_17,
70
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_18,
71
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_19,
72
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_20,
73
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_21,
74
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_22,
75
+ TennisSubLeague.TENNIS_WTA_LIVE_MAPPING_V2_23,
2017
76
  ];
2018
77
 
2019
78
  export const UFC_LEAGUE_IDS = [701, 702, 703, 704];
@@ -2113,7 +172,7 @@ export const LeagueIdMapEnetpulse = {
2113
172
  10615: 10615, // Conference League Qualification
2114
173
  };
2115
174
 
2116
- export const LeagueIdMapOpticOdds = {
175
+ export const LeagueIdMapOpticOdds: Record<number, string> = {
2117
176
  1: 'NCAAF',
2118
177
  2: 'NFL',
2119
178
  3: 'MLB',