overtime-live-trading-utils 1.1.31 → 1.1.32

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,2109 +1,2109 @@
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.CZECH_REPUBLIC_EXTRALIGA]: {
460
- sport: Sport.HOCKEY,
461
- id: League.CZECH_REPUBLIC_EXTRALIGA,
462
- label: 'Czech Republic Extraliga',
463
- opticOddsName: 'Czech Republic - Extraliga',
464
- provider: Provider.OPTICODDS,
465
- scoringType: ScoringType.GOALS,
466
- matchResolveType: MatchResolveType.OVERTIME,
467
- periodType: PeriodType.PERIOD,
468
- isDrawAvailable: true,
469
- },
470
- [League.FINLAND_SM_LIIGA]: {
471
- sport: Sport.HOCKEY,
472
- id: League.FINLAND_SM_LIIGA,
473
- label: 'Finland SM Liiga',
474
- opticOddsName: 'Finland - SM Liiga',
475
- provider: Provider.OPTICODDS,
476
- scoringType: ScoringType.GOALS,
477
- matchResolveType: MatchResolveType.OVERTIME,
478
- periodType: PeriodType.PERIOD,
479
- isDrawAvailable: true,
480
- },
481
- [League.RUSSIA_KHL]: {
482
- sport: Sport.HOCKEY,
483
- id: League.RUSSIA_KHL,
484
- label: 'Russia KHL',
485
- opticOddsName: 'Russia - KHL',
486
- provider: Provider.OPTICODDS,
487
- scoringType: ScoringType.GOALS,
488
- matchResolveType: MatchResolveType.OVERTIME,
489
- periodType: PeriodType.PERIOD,
490
- isDrawAvailable: true,
491
- },
492
- [League.GERMANY_DEL]: {
493
- sport: Sport.HOCKEY,
494
- id: League.GERMANY_DEL,
495
- label: 'Germany DEL',
496
- opticOddsName: 'Germany - DEL',
497
- provider: Provider.OPTICODDS,
498
- scoringType: ScoringType.GOALS,
499
- matchResolveType: MatchResolveType.OVERTIME,
500
- periodType: PeriodType.PERIOD,
501
- isDrawAvailable: true,
502
- },
503
- [League.AUSTRIA_ICE_HOCKEY_LEAGUE]: {
504
- sport: Sport.HOCKEY,
505
- id: League.AUSTRIA_ICE_HOCKEY_LEAGUE,
506
- label: 'Austria Ice Hockey League',
507
- opticOddsName: 'Austria - Ice Hockey League',
508
- provider: Provider.OPTICODDS,
509
- scoringType: ScoringType.GOALS,
510
- matchResolveType: MatchResolveType.OVERTIME,
511
- periodType: PeriodType.PERIOD,
512
- isDrawAvailable: true,
513
- },
514
- [League.SWEDEN_SHL]: {
515
- sport: Sport.HOCKEY,
516
- id: League.SWEDEN_SHL,
517
- label: 'Sweden SHL',
518
- opticOddsName: 'Sweden - SHL',
519
- provider: Provider.OPTICODDS,
520
- scoringType: ScoringType.GOALS,
521
- matchResolveType: MatchResolveType.OVERTIME,
522
- periodType: PeriodType.PERIOD,
523
- isDrawAvailable: true,
524
- },
525
- [League.SWITZETLAND_NATIONAL_LEAGUE]: {
526
- sport: Sport.HOCKEY,
527
- id: League.SWITZETLAND_NATIONAL_LEAGUE,
528
- label: 'Switzerland National League',
529
- opticOddsName: 'Switzerland - National League',
530
- provider: Provider.OPTICODDS,
531
- scoringType: ScoringType.GOALS,
532
- matchResolveType: MatchResolveType.OVERTIME,
533
- periodType: PeriodType.PERIOD,
534
- isDrawAvailable: true,
535
- },
536
- [League.SUMMER_OLYMPICS_HANDBALL_WOMEN]: {
537
- sport: Sport.HANDBALL,
538
- id: League.SUMMER_OLYMPICS_HANDBALL_WOMEN,
539
- label: 'Olympic Games Handball Women',
540
- opticOddsName: 'Olympics Handball Women',
541
- provider: Provider.EMPTY,
542
- scoringType: ScoringType.GOALS,
543
- matchResolveType: MatchResolveType.REGULAR,
544
- periodType: PeriodType.HALF,
545
- isDrawAvailable: true,
546
- },
547
- [League.SUMMER_OLYMPICS_HANDBALL]: {
548
- sport: Sport.HANDBALL,
549
- id: League.SUMMER_OLYMPICS_HANDBALL,
550
- label: 'Olympic Games Handball',
551
- opticOddsName: 'Olympics Handball Men',
552
- provider: Provider.EMPTY,
553
- scoringType: ScoringType.GOALS,
554
- matchResolveType: MatchResolveType.REGULAR,
555
- periodType: PeriodType.HALF,
556
- isDrawAvailable: true,
557
- },
558
- [League.EUROLEAGUE]: {
559
- sport: Sport.BASKETBALL,
560
- id: League.EUROLEAGUE,
561
- label: 'Euroleague',
562
- opticOddsName: 'Euroleague',
563
- provider: Provider.OPTICODDS,
564
- scoringType: ScoringType.POINTS,
565
- matchResolveType: MatchResolveType.OVERTIME,
566
- periodType: PeriodType.QUARTER,
567
- isDrawAvailable: false,
568
- },
569
- [League.SUMMER_OLYMPICS_BASKETBALL]: {
570
- sport: Sport.BASKETBALL,
571
- id: League.SUMMER_OLYMPICS_BASKETBALL,
572
- label: 'Olympic Games Basketball',
573
- opticOddsName: 'Olympics Basketball Men',
574
- provider: Provider.EMPTY,
575
- scoringType: ScoringType.POINTS,
576
- matchResolveType: MatchResolveType.OVERTIME,
577
- periodType: PeriodType.QUARTER,
578
- isDrawAvailable: false,
579
- },
580
- [League.SUMMER_OLYMPICS_BASKETBALL_WOMEN]: {
581
- sport: Sport.BASKETBALL,
582
- id: League.SUMMER_OLYMPICS_BASKETBALL_WOMEN,
583
- label: 'Olympic Games Basketball Women',
584
- opticOddsName: 'Olympics Basketball Women',
585
- provider: Provider.EMPTY,
586
- scoringType: ScoringType.POINTS,
587
- matchResolveType: MatchResolveType.OVERTIME,
588
- periodType: PeriodType.QUARTER,
589
- isDrawAvailable: false,
590
- },
591
- [League.FIBA_WORLD_CUP]: {
592
- sport: Sport.BASKETBALL,
593
- id: League.FIBA_WORLD_CUP,
594
- label: 'FIBA World Cup',
595
- provider: Provider.EMPTY,
596
- scoringType: ScoringType.POINTS,
597
- matchResolveType: MatchResolveType.OVERTIME,
598
- periodType: PeriodType.QUARTER,
599
- isDrawAvailable: false,
600
- },
601
- [League.FORMULA1]: {
602
- sport: Sport.MOTOSPORT,
603
- id: League.FORMULA1,
604
- label: 'Formula 1',
605
- provider: Provider.EMPTY,
606
- scoringType: ScoringType.EMPTY,
607
- matchResolveType: MatchResolveType.EMPTY,
608
- periodType: PeriodType.EMPTY,
609
- isDrawAvailable: false,
610
- },
611
- [League.SUMMER_OLYMPICS_BEACH_VOLEYBALL_WOMEN]: {
612
- sport: Sport.VOLLEYBALL,
613
- id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL_WOMEN,
614
- label: 'Olympic Games Beach Voleyball Women',
615
- provider: Provider.EMPTY,
616
- scoringType: ScoringType.SETS,
617
- matchResolveType: MatchResolveType.REGULAR,
618
- periodType: PeriodType.SET,
619
- isDrawAvailable: false,
620
- },
621
- [League.SUMMER_OLYMPICS_BEACH_VOLEYBALL]: {
622
- sport: Sport.VOLLEYBALL,
623
- id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL,
624
- label: 'Olympic Games Beach Voleyball',
625
- provider: Provider.EMPTY,
626
- scoringType: ScoringType.SETS,
627
- matchResolveType: MatchResolveType.REGULAR,
628
- periodType: PeriodType.SET,
629
- isDrawAvailable: false,
630
- },
631
- [League.SUMMER_OLYMPICS_TABLE_TENNIS]: {
632
- sport: Sport.TABLE_TENNIS,
633
- id: League.SUMMER_OLYMPICS_TABLE_TENNIS,
634
- label: 'Olympic Games Table Tennis',
635
- provider: Provider.EMPTY,
636
- scoringType: ScoringType.SETS,
637
- matchResolveType: MatchResolveType.REGULAR,
638
- periodType: PeriodType.SET,
639
- isDrawAvailable: false,
640
- },
641
- [League.MOTOGP]: {
642
- sport: Sport.MOTOSPORT,
643
- id: League.MOTOGP,
644
- label: 'MotoGP',
645
- provider: Provider.EMPTY,
646
- scoringType: ScoringType.EMPTY,
647
- matchResolveType: MatchResolveType.EMPTY,
648
- periodType: PeriodType.EMPTY,
649
- isDrawAvailable: false,
650
- },
651
- [League.SAUDI_PROFESSIONAL_LEAGUE]: {
652
- sport: Sport.SOCCER,
653
- id: League.SAUDI_PROFESSIONAL_LEAGUE,
654
- label: 'Saudi Professional League',
655
- opticOddsName: 'Saudi Arabia - Saudi League',
656
- provider: Provider.OPTICODDS,
657
- scoringType: ScoringType.GOALS,
658
- matchResolveType: MatchResolveType.REGULAR,
659
- periodType: PeriodType.HALF,
660
- isDrawAvailable: true,
661
- },
662
- [League.SUMMER_OLYMPICS_WATERPOLO]: {
663
- sport: Sport.WATERPOLO,
664
- id: League.SUMMER_OLYMPICS_WATERPOLO,
665
- label: 'Olympic Games Water Polo',
666
- opticOddsName: 'Olympics Water Polo',
667
- provider: Provider.EMPTY,
668
- scoringType: ScoringType.GOALS,
669
- matchResolveType: MatchResolveType.REGULAR,
670
- periodType: PeriodType.QUARTER,
671
- isDrawAvailable: true,
672
- },
673
- [League.SUMMER_OLYMPICS_VOLEYBALL_WOMEN]: {
674
- sport: Sport.VOLLEYBALL,
675
- id: League.SUMMER_OLYMPICS_VOLEYBALL_WOMEN,
676
- label: 'Olympic Games Volleyball Women',
677
- opticOddsName: 'Olympics Volleyball Women',
678
- provider: Provider.EMPTY,
679
- scoringType: ScoringType.SETS,
680
- matchResolveType: MatchResolveType.REGULAR,
681
- periodType: PeriodType.SET,
682
- isDrawAvailable: false,
683
- },
684
- [League.SUMMER_OLYMPICS_VOLEYBALL]: {
685
- sport: Sport.VOLLEYBALL,
686
- id: League.SUMMER_OLYMPICS_VOLEYBALL,
687
- label: 'Olympic Games Volleyball',
688
- opticOddsName: 'Olympics Volleyball Men',
689
- provider: Provider.EMPTY,
690
- scoringType: ScoringType.SETS,
691
- matchResolveType: MatchResolveType.REGULAR,
692
- periodType: PeriodType.SET,
693
- isDrawAvailable: false,
694
- },
695
- [League.BOXING]: {
696
- sport: Sport.FIGHTING,
697
- id: League.BOXING,
698
- label: 'Boxing',
699
- provider: Provider.EMPTY,
700
- scoringType: ScoringType.ROUNDS,
701
- matchResolveType: MatchResolveType.EMPTY,
702
- periodType: PeriodType.ROUND,
703
- isDrawAvailable: false,
704
- },
705
- [League.SUMMER_OLYMPICS_RUGBY]: {
706
- sport: Sport.RUGBY,
707
- id: League.SUMMER_OLYMPICS_RUGBY,
708
- label: 'Olympic Games Rugby',
709
- opticOddsName: 'Olympics Rugby 7s Men',
710
- provider: Provider.EMPTY,
711
- scoringType: ScoringType.POINTS,
712
- matchResolveType: MatchResolveType.REGULAR,
713
- periodType: PeriodType.HALF,
714
- isDrawAvailable: true,
715
- },
716
- [League.SUMMER_OLYMPICS_RUGBY_WOMEN]: {
717
- sport: Sport.RUGBY,
718
- id: League.SUMMER_OLYMPICS_RUGBY_WOMEN,
719
- label: 'Olympic Games Rugby Women',
720
- opticOddsName: 'Olympics Rugby 7s Women',
721
- provider: Provider.EMPTY,
722
- scoringType: ScoringType.POINTS,
723
- matchResolveType: MatchResolveType.REGULAR,
724
- periodType: PeriodType.HALF,
725
- isDrawAvailable: true,
726
- },
727
- [League.SUMMER_OLYMPICS_HOCKEY_WOMEN]: {
728
- sport: Sport.HOCKEY,
729
- id: League.SUMMER_OLYMPICS_HOCKEY_WOMEN,
730
- label: 'Olympic Games Hockey Women',
731
- provider: Provider.EMPTY,
732
- scoringType: ScoringType.GOALS,
733
- matchResolveType: MatchResolveType.REGULAR,
734
- periodType: PeriodType.PERIOD,
735
- isDrawAvailable: true,
736
- },
737
- [League.SUMMER_OLYMPICS_HOCKEY]: {
738
- sport: Sport.HOCKEY,
739
- id: League.SUMMER_OLYMPICS_HOCKEY,
740
- label: 'Olympic Games Hockey',
741
- provider: Provider.EMPTY,
742
- scoringType: ScoringType.GOALS,
743
- matchResolveType: MatchResolveType.REGULAR,
744
- periodType: PeriodType.PERIOD,
745
- isDrawAvailable: true,
746
- },
747
- [League.UEFA_NATIONS_LEAGUE]: {
748
- sport: Sport.SOCCER,
749
- id: League.UEFA_NATIONS_LEAGUE,
750
- label: 'UEFA Nations League',
751
- provider: Provider.OPTICODDS,
752
- opticOddsName: 'UEFA - Nations League',
753
- scoringType: ScoringType.GOALS,
754
- matchResolveType: MatchResolveType.REGULAR,
755
- periodType: PeriodType.HALF,
756
- isDrawAvailable: true,
757
- },
758
- [League.CONCACAF_NATIONS_LEAGUE]: {
759
- sport: Sport.SOCCER,
760
- id: League.CONCACAF_NATIONS_LEAGUE,
761
- label: 'CONCACAF Nations League',
762
- provider: Provider.EMPTY,
763
- scoringType: ScoringType.GOALS,
764
- matchResolveType: MatchResolveType.REGULAR,
765
- periodType: PeriodType.HALF,
766
- isDrawAvailable: true,
767
- },
768
- [League.CSGO]: {
769
- sport: Sport.ESPORTS,
770
- id: League.CSGO,
771
- label: 'CS GO',
772
- opticOddsName: 'CS2',
773
- provider: Provider.OPTICODDS,
774
- scoringType: ScoringType.MAPS,
775
- matchResolveType: MatchResolveType.EMPTY,
776
- periodType: PeriodType.MAP,
777
- isDrawAvailable: false,
778
- },
779
- [League.DOTA2]: {
780
- sport: Sport.ESPORTS,
781
- id: League.DOTA2,
782
- label: 'DOTA 2',
783
- opticOddsName: 'Dota 2',
784
- provider: Provider.OPTICODDS,
785
- scoringType: ScoringType.MAPS,
786
- matchResolveType: MatchResolveType.EMPTY,
787
- periodType: PeriodType.MAP,
788
- isDrawAvailable: false,
789
- },
790
- [League.SUMMER_OLYMPICS_BASKETBALL_3X3]: {
791
- sport: Sport.BASKETBALL,
792
- id: League.SUMMER_OLYMPICS_BASKETBALL_3X3,
793
- label: 'Olympic Games Basketball 3x3',
794
- opticOddsName: 'Olympics Basketball 3x3 Men',
795
- provider: Provider.EMPTY,
796
- scoringType: ScoringType.POINTS,
797
- matchResolveType: MatchResolveType.OVERTIME,
798
- periodType: PeriodType.QUARTER,
799
- isDrawAvailable: false,
800
- },
801
- [League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN]: {
802
- sport: Sport.BASKETBALL,
803
- id: League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN,
804
- label: 'Olympic Games Basketball 3x3 Women',
805
- opticOddsName: 'Olympics Basketball 3x3 Women',
806
- provider: Provider.EMPTY,
807
- scoringType: ScoringType.POINTS,
808
- matchResolveType: MatchResolveType.OVERTIME,
809
- periodType: PeriodType.QUARTER,
810
- isDrawAvailable: false,
811
- },
812
- [League.SUMMER_OLYMPICS_QUALIFICATION]: {
813
- sport: Sport.BASKETBALL,
814
- id: League.SUMMER_OLYMPICS_QUALIFICATION,
815
- label: 'Summer Olympics Basketball Qualification',
816
- provider: Provider.EMPTY,
817
- scoringType: ScoringType.POINTS,
818
- matchResolveType: MatchResolveType.OVERTIME,
819
- periodType: PeriodType.QUARTER,
820
- isDrawAvailable: false,
821
- },
822
- [League.LOL]: {
823
- sport: Sport.ESPORTS,
824
- id: League.LOL,
825
- label: 'LOL',
826
- opticOddsName: 'League of Legends',
827
- provider: Provider.OPTICODDS,
828
- scoringType: ScoringType.MAPS,
829
- matchResolveType: MatchResolveType.EMPTY,
830
- periodType: PeriodType.MAP,
831
- isDrawAvailable: false,
832
- },
833
- [League.CONMEBOL_WC_QUALIFICATIONS]: {
834
- sport: Sport.SOCCER,
835
- id: League.CONMEBOL_WC_QUALIFICATIONS,
836
- label: 'CONMEBOL WC Qualification',
837
- provider: Provider.EMPTY,
838
- scoringType: ScoringType.GOALS,
839
- matchResolveType: MatchResolveType.REGULAR,
840
- periodType: PeriodType.HALF,
841
- isDrawAvailable: true,
842
- },
843
- [League.UEFA_CONFERENCE_LEAGUE]: {
844
- sport: Sport.SOCCER,
845
- id: League.UEFA_CONFERENCE_LEAGUE,
846
- label: 'UEFA Conference League',
847
- opticOddsName: 'UEFA - Europa Conference League',
848
- provider: Provider.OPTICODDS,
849
- scoringType: ScoringType.GOALS,
850
- matchResolveType: MatchResolveType.REGULAR,
851
- periodType: PeriodType.HALF,
852
- isDrawAvailable: true,
853
- },
854
- [League.NON_TITLE_BOXING]: {
855
- sport: Sport.FIGHTING,
856
- id: League.NON_TITLE_BOXING,
857
- label: 'Boxing',
858
- provider: Provider.EMPTY,
859
- scoringType: ScoringType.ROUNDS,
860
- matchResolveType: MatchResolveType.EMPTY,
861
- periodType: PeriodType.ROUND,
862
- isDrawAvailable: false,
863
- },
864
- [League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION]: {
865
- sport: Sport.SOCCER,
866
- id: League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION,
867
- label: 'UEFA Champions League Qualification',
868
- opticOddsName: 'UEFA - Champions League',
869
- provider: Provider.EMPTY,
870
- scoringType: ScoringType.GOALS,
871
- matchResolveType: MatchResolveType.REGULAR,
872
- periodType: PeriodType.HALF,
873
- isDrawAvailable: true,
874
- },
875
- [League.UEFA_EUROPA_LEAGUE_QUALIFICATION]: {
876
- sport: Sport.SOCCER,
877
- id: League.UEFA_EUROPA_LEAGUE_QUALIFICATION,
878
- label: 'UEFA Europa League Qualification',
879
- opticOddsName: 'UEFA - Europa League',
880
- provider: Provider.EMPTY,
881
- scoringType: ScoringType.GOALS,
882
- matchResolveType: MatchResolveType.REGULAR,
883
- periodType: PeriodType.HALF,
884
- isDrawAvailable: true,
885
- },
886
- [League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION]: {
887
- sport: Sport.SOCCER,
888
- id: League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION,
889
- label: 'UEFA Conference League Qualification',
890
- opticOddsName: 'UEFA - Europa Conference League',
891
- provider: Provider.EMPTY,
892
- scoringType: ScoringType.GOALS,
893
- matchResolveType: MatchResolveType.REGULAR,
894
- periodType: PeriodType.HALF,
895
- isDrawAvailable: true,
896
- },
897
- [League.US_ELECTION]: {
898
- sport: Sport.POLITICS,
899
- id: League.US_ELECTION,
900
- label: 'US Election 2024',
901
- provider: Provider.EMPTY,
902
- scoringType: ScoringType.EMPTY,
903
- matchResolveType: MatchResolveType.EMPTY,
904
- periodType: PeriodType.EMPTY,
905
- isDrawAvailable: false,
906
- },
907
- [League.UEFA_SUPER_CUP]: {
908
- sport: Sport.SOCCER,
909
- id: League.UEFA_SUPER_CUP,
910
- label: 'UEFA Super Cup',
911
- opticOddsName: 'UEFA - Super Cup',
912
- provider: Provider.OPTICODDS,
913
- scoringType: ScoringType.GOALS,
914
- matchResolveType: MatchResolveType.REGULAR,
915
- periodType: PeriodType.HALF,
916
- isDrawAvailable: true,
917
- },
918
- [League.BRAZIL_CUP]: {
919
- sport: Sport.SOCCER,
920
- id: League.BRAZIL_CUP,
921
- label: 'Copa do Brasil',
922
- opticOddsName: 'Brazil - Copa do Brasil',
923
- provider: Provider.OPTICODDS,
924
- scoringType: ScoringType.GOALS,
925
- matchResolveType: MatchResolveType.REGULAR,
926
- periodType: PeriodType.HALF,
927
- isDrawAvailable: true,
928
- },
929
- [League.ENGLAND_CHAMPIONSHIP]: {
930
- sport: Sport.SOCCER,
931
- id: League.ENGLAND_CHAMPIONSHIP,
932
- label: 'EFL Championship',
933
- opticOddsName: 'England - Championship',
934
- provider: Provider.OPTICODDS,
935
- scoringType: ScoringType.GOALS,
936
- matchResolveType: MatchResolveType.REGULAR,
937
- periodType: PeriodType.HALF,
938
- isDrawAvailable: true,
939
- },
940
- [League.SCOTLAND_PREMIERSHIP]: {
941
- sport: Sport.SOCCER,
942
- id: League.SCOTLAND_PREMIERSHIP,
943
- label: 'Scotland Premiership',
944
- opticOddsName: 'Scotland - Premiership',
945
- provider: Provider.OPTICODDS,
946
- scoringType: ScoringType.GOALS,
947
- matchResolveType: MatchResolveType.REGULAR,
948
- periodType: PeriodType.HALF,
949
- isDrawAvailable: true,
950
- },
951
- [League.BELGIUM_LEAGUE]: {
952
- sport: Sport.SOCCER,
953
- id: League.BELGIUM_LEAGUE,
954
- label: 'Belgium Jupiler Pro League',
955
- opticOddsName: 'Belgium - Jupiler Pro League',
956
- provider: Provider.OPTICODDS,
957
- scoringType: ScoringType.GOALS,
958
- matchResolveType: MatchResolveType.REGULAR,
959
- periodType: PeriodType.HALF,
960
- isDrawAvailable: true,
961
- },
962
- [League.CZECH_LEAGUE]: {
963
- sport: Sport.SOCCER,
964
- id: League.CZECH_LEAGUE,
965
- label: 'Czech Republic FNL',
966
- opticOddsName: 'Czech Republic - FNL',
967
- provider: Provider.OPTICODDS,
968
- scoringType: ScoringType.GOALS,
969
- matchResolveType: MatchResolveType.REGULAR,
970
- periodType: PeriodType.HALF,
971
- isDrawAvailable: true,
972
- },
973
- [League.CHILE_PRIMERA]: {
974
- sport: Sport.SOCCER,
975
- id: League.CHILE_PRIMERA,
976
- label: 'Chile Primera Division',
977
- opticOddsName: 'Chile - Primera Division',
978
- provider: Provider.OPTICODDS,
979
- scoringType: ScoringType.GOALS,
980
- matchResolveType: MatchResolveType.REGULAR,
981
- periodType: PeriodType.HALF,
982
- isDrawAvailable: true,
983
- },
984
- [League.FINLAND_LEAGUE]: {
985
- sport: Sport.SOCCER,
986
- id: League.FINLAND_LEAGUE,
987
- label: 'Finland Veikkausliiga',
988
- opticOddsName: 'Finland - Veikkausliiga',
989
- provider: Provider.OPTICODDS,
990
- scoringType: ScoringType.GOALS,
991
- matchResolveType: MatchResolveType.REGULAR,
992
- periodType: PeriodType.HALF,
993
- isDrawAvailable: true,
994
- },
995
- [League.ARGENTINA_PRIMERA]: {
996
- sport: Sport.SOCCER,
997
- id: League.ARGENTINA_PRIMERA,
998
- label: 'Argentina Primera Division',
999
- opticOddsName: 'Argentina - Primera Division',
1000
- provider: Provider.OPTICODDS,
1001
- scoringType: ScoringType.GOALS,
1002
- matchResolveType: MatchResolveType.REGULAR,
1003
- periodType: PeriodType.HALF,
1004
- isDrawAvailable: true,
1005
- },
1006
- [League.RUSSIA_PREMIER]: {
1007
- sport: Sport.SOCCER,
1008
- id: League.RUSSIA_PREMIER,
1009
- label: 'Russia Premier League',
1010
- opticOddsName: 'Russia - Premier League',
1011
- provider: Provider.OPTICODDS,
1012
- scoringType: ScoringType.GOALS,
1013
- matchResolveType: MatchResolveType.REGULAR,
1014
- periodType: PeriodType.HALF,
1015
- isDrawAvailable: true,
1016
- },
1017
- [League.TURKEY_SUPER_LEAGUE]: {
1018
- sport: Sport.SOCCER,
1019
- id: League.TURKEY_SUPER_LEAGUE,
1020
- label: 'Turkey Super Lig',
1021
- opticOddsName: 'Turkey - Super Lig',
1022
- provider: Provider.OPTICODDS,
1023
- scoringType: ScoringType.GOALS,
1024
- matchResolveType: MatchResolveType.REGULAR,
1025
- periodType: PeriodType.HALF,
1026
- isDrawAvailable: true,
1027
- },
1028
- [League.SERBIA_SUPER_LEAGUE]: {
1029
- sport: Sport.SOCCER,
1030
- id: League.SERBIA_SUPER_LEAGUE,
1031
- label: 'Serbia Super Liga',
1032
- opticOddsName: 'Serbia - Super Liga',
1033
- provider: Provider.OPTICODDS,
1034
- scoringType: ScoringType.GOALS,
1035
- matchResolveType: MatchResolveType.REGULAR,
1036
- periodType: PeriodType.HALF,
1037
- isDrawAvailable: true,
1038
- },
1039
- [League.GREECE_SUPER_LEAGUE]: {
1040
- sport: Sport.SOCCER,
1041
- id: League.GREECE_SUPER_LEAGUE,
1042
- label: 'Greece Super League',
1043
- opticOddsName: 'Greece - Super League',
1044
- provider: Provider.OPTICODDS,
1045
- scoringType: ScoringType.GOALS,
1046
- matchResolveType: MatchResolveType.REGULAR,
1047
- periodType: PeriodType.HALF,
1048
- isDrawAvailable: true,
1049
- },
1050
- [League.INDIA_PREMIER]: {
1051
- sport: Sport.SOCCER,
1052
- id: League.INDIA_PREMIER,
1053
- label: 'India Calcutta Premier Division',
1054
- opticOddsName: 'India - Calcutta Premier Division',
1055
- provider: Provider.OPTICODDS,
1056
- scoringType: ScoringType.GOALS,
1057
- matchResolveType: MatchResolveType.REGULAR,
1058
- periodType: PeriodType.HALF,
1059
- isDrawAvailable: true,
1060
- },
1061
- [League.CHINA_SUPER_LEAGUE]: {
1062
- sport: Sport.SOCCER,
1063
- id: League.CHINA_SUPER_LEAGUE,
1064
- label: 'China Super League',
1065
- opticOddsName: 'China - Super League',
1066
- provider: Provider.OPTICODDS,
1067
- scoringType: ScoringType.GOALS,
1068
- matchResolveType: MatchResolveType.REGULAR,
1069
- periodType: PeriodType.HALF,
1070
- isDrawAvailable: true,
1071
- },
1072
- [League.AUSTRALIA_A_LEAGUE]: {
1073
- sport: Sport.SOCCER,
1074
- id: League.AUSTRALIA_A_LEAGUE,
1075
- label: 'Australia A-League',
1076
- opticOddsName: 'Australia - A-League',
1077
- provider: Provider.OPTICODDS,
1078
- scoringType: ScoringType.GOALS,
1079
- matchResolveType: MatchResolveType.REGULAR,
1080
- periodType: PeriodType.HALF,
1081
- isDrawAvailable: true,
1082
- },
1083
- [League.SWITZERLAND_SUPER_LEAGUE]: {
1084
- sport: Sport.SOCCER,
1085
- id: League.SWITZERLAND_SUPER_LEAGUE,
1086
- label: 'Switzerland Super League',
1087
- opticOddsName: 'Switzerland - Super League',
1088
- provider: Provider.OPTICODDS,
1089
- scoringType: ScoringType.GOALS,
1090
- matchResolveType: MatchResolveType.REGULAR,
1091
- periodType: PeriodType.HALF,
1092
- isDrawAvailable: true,
1093
- },
1094
- [League.BUNDESLIGA_2]: {
1095
- sport: Sport.SOCCER,
1096
- id: League.BUNDESLIGA_2,
1097
- label: 'Bundesliga 2',
1098
- opticOddsName: 'Germany - Bundesliga 2',
1099
- provider: Provider.OPTICODDS,
1100
- scoringType: ScoringType.GOALS,
1101
- matchResolveType: MatchResolveType.REGULAR,
1102
- periodType: PeriodType.HALF,
1103
- isDrawAvailable: true,
1104
- },
1105
- [League.LA_LIGA_2]: {
1106
- sport: Sport.SOCCER,
1107
- id: League.LA_LIGA_2,
1108
- label: 'La Liga 2',
1109
- opticOddsName: 'Spain - La Liga 2',
1110
- provider: Provider.OPTICODDS,
1111
- scoringType: ScoringType.GOALS,
1112
- matchResolveType: MatchResolveType.REGULAR,
1113
- periodType: PeriodType.HALF,
1114
- isDrawAvailable: true,
1115
- },
1116
- [League.SERIE_B]: {
1117
- sport: Sport.SOCCER,
1118
- id: League.SERIE_B,
1119
- label: 'Serie B',
1120
- opticOddsName: 'Italy - Serie B',
1121
- provider: Provider.OPTICODDS,
1122
- scoringType: ScoringType.GOALS,
1123
- matchResolveType: MatchResolveType.REGULAR,
1124
- periodType: PeriodType.HALF,
1125
- isDrawAvailable: true,
1126
- },
1127
- [League.INDIA_SUPER_LEAGUE]: {
1128
- sport: Sport.SOCCER,
1129
- id: League.INDIA_SUPER_LEAGUE,
1130
- label: 'India Super League',
1131
- opticOddsName: 'India - Super League',
1132
- provider: Provider.OPTICODDS,
1133
- scoringType: ScoringType.GOALS,
1134
- matchResolveType: MatchResolveType.REGULAR,
1135
- periodType: PeriodType.HALF,
1136
- isDrawAvailable: true,
1137
- },
1138
- [League.LIGUE_2]: {
1139
- sport: Sport.SOCCER,
1140
- id: League.LIGUE_2,
1141
- label: 'Ligue 2',
1142
- opticOddsName: 'France - Ligue 2',
1143
- provider: Provider.OPTICODDS,
1144
- scoringType: ScoringType.GOALS,
1145
- matchResolveType: MatchResolveType.REGULAR,
1146
- periodType: PeriodType.HALF,
1147
- isDrawAvailable: true,
1148
- },
1149
- [League.AUSTRIA_BUNDESLIGA]: {
1150
- sport: Sport.SOCCER,
1151
- id: League.AUSTRIA_BUNDESLIGA,
1152
- label: 'Austria Bundesliga',
1153
- opticOddsName: 'Austria - Bundesliga',
1154
- provider: Provider.OPTICODDS,
1155
- scoringType: ScoringType.GOALS,
1156
- matchResolveType: MatchResolveType.REGULAR,
1157
- periodType: PeriodType.HALF,
1158
- isDrawAvailable: true,
1159
- },
1160
- [League.DENMARK_SUPER_LEAGUE]: {
1161
- sport: Sport.SOCCER,
1162
- id: League.DENMARK_SUPER_LEAGUE,
1163
- label: 'Denmark Superliga',
1164
- opticOddsName: 'Denmark - Superliga',
1165
- provider: Provider.OPTICODDS,
1166
- scoringType: ScoringType.GOALS,
1167
- matchResolveType: MatchResolveType.REGULAR,
1168
- periodType: PeriodType.HALF,
1169
- isDrawAvailable: true,
1170
- },
1171
- [League.POLAND_LEAGUE]: {
1172
- sport: Sport.SOCCER,
1173
- id: League.POLAND_LEAGUE,
1174
- label: 'Poland Ekstraklasa',
1175
- opticOddsName: 'Poland - Ekstraklasa',
1176
- provider: Provider.OPTICODDS,
1177
- scoringType: ScoringType.GOALS,
1178
- matchResolveType: MatchResolveType.REGULAR,
1179
- periodType: PeriodType.HALF,
1180
- isDrawAvailable: true,
1181
- },
1182
- [League.SWEDEN_LEAGUE]: {
1183
- sport: Sport.SOCCER,
1184
- id: League.SWEDEN_LEAGUE,
1185
- label: 'Sweden Allsvenskan',
1186
- opticOddsName: 'Sweden - Allsvenskan',
1187
- provider: Provider.OPTICODDS,
1188
- scoringType: ScoringType.GOALS,
1189
- matchResolveType: MatchResolveType.REGULAR,
1190
- periodType: PeriodType.HALF,
1191
- isDrawAvailable: true,
1192
- },
1193
- [League.COLOMBIA_PRIMERA_A]: {
1194
- sport: Sport.SOCCER,
1195
- id: League.COLOMBIA_PRIMERA_A,
1196
- label: 'Colombia Primera A',
1197
- opticOddsName: 'Colombia - Primera A',
1198
- provider: Provider.OPTICODDS,
1199
- scoringType: ScoringType.GOALS,
1200
- matchResolveType: MatchResolveType.REGULAR,
1201
- periodType: PeriodType.HALF,
1202
- isDrawAvailable: true,
1203
- },
1204
- [League.ENGLAND_EFL_CUP]: {
1205
- sport: Sport.SOCCER,
1206
- id: League.ENGLAND_EFL_CUP,
1207
- label: 'England EFL Cup',
1208
- opticOddsName: 'England - EFL Cup',
1209
- provider: Provider.OPTICODDS,
1210
- scoringType: ScoringType.GOALS,
1211
- matchResolveType: MatchResolveType.REGULAR,
1212
- periodType: PeriodType.HALF,
1213
- isDrawAvailable: true,
1214
- },
1215
- [League.ENGLAND_LEGAUE_1]: {
1216
- sport: Sport.SOCCER,
1217
- id: League.ENGLAND_LEGAUE_1,
1218
- label: 'England League 1',
1219
- opticOddsName: 'England - League 1',
1220
- provider: Provider.OPTICODDS,
1221
- scoringType: ScoringType.GOALS,
1222
- matchResolveType: MatchResolveType.REGULAR,
1223
- periodType: PeriodType.HALF,
1224
- isDrawAvailable: true,
1225
- },
1226
- [League.URUGUAY_PRIMERA_DIVISION]: {
1227
- sport: Sport.SOCCER,
1228
- id: League.URUGUAY_PRIMERA_DIVISION,
1229
- label: 'Uruguay Primera Division',
1230
- opticOddsName: 'Uruguay - Primera Division',
1231
- provider: Provider.OPTICODDS,
1232
- scoringType: ScoringType.GOALS,
1233
- matchResolveType: MatchResolveType.REGULAR,
1234
- periodType: PeriodType.HALF,
1235
- isDrawAvailable: true,
1236
- },
1237
- [League.AFC_CHAMPIONS_LEAGUE]: {
1238
- sport: Sport.SOCCER,
1239
- id: League.AFC_CHAMPIONS_LEAGUE,
1240
- label: 'AFC Champions League',
1241
- opticOddsName: 'AFC - Champions League',
1242
- provider: Provider.OPTICODDS,
1243
- scoringType: ScoringType.GOALS,
1244
- matchResolveType: MatchResolveType.REGULAR,
1245
- periodType: PeriodType.HALF,
1246
- isDrawAvailable: true,
1247
- },
1248
- [League.ITALY_SUPER_CUP]: {
1249
- sport: Sport.SOCCER,
1250
- id: League.ITALY_SUPER_CUP,
1251
- label: 'Italy Super Cup',
1252
- opticOddsName: 'Italy - Supercoppa',
1253
- provider: Provider.OPTICODDS,
1254
- scoringType: ScoringType.GOALS,
1255
- matchResolveType: MatchResolveType.REGULAR,
1256
- periodType: PeriodType.HALF,
1257
- isDrawAvailable: true,
1258
- },
1259
- [League.FRANCE_SUPER_CUP]: {
1260
- sport: Sport.SOCCER,
1261
- id: League.FRANCE_SUPER_CUP,
1262
- label: 'France Super Cup',
1263
- opticOddsName: 'France - Super Cup',
1264
- provider: Provider.OPTICODDS,
1265
- scoringType: ScoringType.GOALS,
1266
- matchResolveType: MatchResolveType.REGULAR,
1267
- periodType: PeriodType.HALF,
1268
- isDrawAvailable: true,
1269
- },
1270
- [League.SPAIN_SUPER_CUP]: {
1271
- sport: Sport.SOCCER,
1272
- id: League.SPAIN_SUPER_CUP,
1273
- label: 'Spain Super Cup',
1274
- opticOddsName: 'Spain - Supercopa',
1275
- provider: Provider.OPTICODDS,
1276
- scoringType: ScoringType.GOALS,
1277
- matchResolveType: MatchResolveType.REGULAR,
1278
- periodType: PeriodType.HALF,
1279
- isDrawAvailable: true,
1280
- },
1281
- [League.GERMANY_SUPER_CUP]: {
1282
- sport: Sport.SOCCER,
1283
- id: League.GERMANY_SUPER_CUP,
1284
- label: 'Germany Super Cup',
1285
- opticOddsName: 'Germany - Super Cup',
1286
- provider: Provider.OPTICODDS,
1287
- scoringType: ScoringType.GOALS,
1288
- matchResolveType: MatchResolveType.REGULAR,
1289
- periodType: PeriodType.HALF,
1290
- isDrawAvailable: true,
1291
- },
1292
- [League.PORTUGAL_LEAGUE_CUP]: {
1293
- sport: Sport.SOCCER,
1294
- id: League.PORTUGAL_LEAGUE_CUP,
1295
- label: 'Portugal League Cup',
1296
- opticOddsName: 'Portugal - League Cup',
1297
- provider: Provider.OPTICODDS,
1298
- scoringType: ScoringType.GOALS,
1299
- matchResolveType: MatchResolveType.REGULAR,
1300
- periodType: PeriodType.HALF,
1301
- isDrawAvailable: true,
1302
- },
1303
- [League.THAILAND_LEAGUE_1]: {
1304
- sport: Sport.SOCCER,
1305
- id: League.THAILAND_LEAGUE_1,
1306
- label: 'Thai League 1',
1307
- opticOddsName: 'Thailand - Thai League 1',
1308
- provider: Provider.OPTICODDS,
1309
- scoringType: ScoringType.GOALS,
1310
- matchResolveType: MatchResolveType.REGULAR,
1311
- periodType: PeriodType.HALF,
1312
- isDrawAvailable: true,
1313
- },
1314
- [League.NETHERLANDS_CUP]: {
1315
- sport: Sport.SOCCER,
1316
- id: League.NETHERLANDS_CUP,
1317
- label: 'Netherlands KNVB Beker',
1318
- opticOddsName: 'Netherlands - KNVB Beker',
1319
- provider: Provider.OPTICODDS,
1320
- scoringType: ScoringType.GOALS,
1321
- matchResolveType: MatchResolveType.REGULAR,
1322
- periodType: PeriodType.HALF,
1323
- isDrawAvailable: true,
1324
- },
1325
- [League.PORTUGAL_CUP]: {
1326
- sport: Sport.SOCCER,
1327
- id: League.PORTUGAL_CUP,
1328
- label: 'Taca de Portugal',
1329
- opticOddsName: 'Portugal - Taca de Portugal',
1330
- provider: Provider.OPTICODDS,
1331
- scoringType: ScoringType.GOALS,
1332
- matchResolveType: MatchResolveType.REGULAR,
1333
- periodType: PeriodType.HALF,
1334
- isDrawAvailable: true,
1335
- },
1336
-
1337
- [League.ENGLAND_SUPER_LEAGUE_WOMEN]: {
1338
- sport: Sport.SOCCER,
1339
- id: League.ENGLAND_SUPER_LEAGUE_WOMEN,
1340
- label: "England Women's Super League",
1341
- opticOddsName: 'England - Womens Super League',
1342
- provider: Provider.OPTICODDS,
1343
- scoringType: ScoringType.GOALS,
1344
- matchResolveType: MatchResolveType.REGULAR,
1345
- periodType: PeriodType.HALF,
1346
- isDrawAvailable: true,
1347
- },
1348
- [League.ITALY_SERIE_A_WOMEN]: {
1349
- sport: Sport.SOCCER,
1350
- id: League.ITALY_SERIE_A_WOMEN,
1351
- label: 'Italy Serie A Femminile',
1352
- opticOddsName: 'Italy - Serie A Femminile',
1353
- provider: Provider.OPTICODDS,
1354
- scoringType: ScoringType.GOALS,
1355
- matchResolveType: MatchResolveType.REGULAR,
1356
- periodType: PeriodType.HALF,
1357
- isDrawAvailable: true,
1358
- },
1359
- [League.FRANCE_PREMIERE_LIGUE_WOMEN]: {
1360
- sport: Sport.SOCCER,
1361
- id: League.FRANCE_PREMIERE_LIGUE_WOMEN,
1362
- label: 'France Premiere Ligue Women',
1363
- opticOddsName: 'France - Premiere Ligue',
1364
- provider: Provider.OPTICODDS,
1365
- scoringType: ScoringType.GOALS,
1366
- matchResolveType: MatchResolveType.REGULAR,
1367
- periodType: PeriodType.HALF,
1368
- isDrawAvailable: true,
1369
- },
1370
- [League.GERMANY_BUNDESLIGA_WOMEN]: {
1371
- sport: Sport.SOCCER,
1372
- id: League.GERMANY_BUNDESLIGA_WOMEN,
1373
- label: 'Germany Frauen Bundesliga',
1374
- opticOddsName: 'Germany - Frauen Bundesliga',
1375
- provider: Provider.OPTICODDS,
1376
- scoringType: ScoringType.GOALS,
1377
- matchResolveType: MatchResolveType.REGULAR,
1378
- periodType: PeriodType.HALF,
1379
- isDrawAvailable: true,
1380
- },
1381
- [League.SPAIN_LIGA_F_WOMEN]: {
1382
- sport: Sport.SOCCER,
1383
- id: League.SPAIN_LIGA_F_WOMEN,
1384
- label: 'Spain Liga F Women',
1385
- opticOddsName: 'Spain - Liga F',
1386
- provider: Provider.OPTICODDS,
1387
- scoringType: ScoringType.GOALS,
1388
- matchResolveType: MatchResolveType.REGULAR,
1389
- periodType: PeriodType.HALF,
1390
- isDrawAvailable: true,
1391
- },
1392
- [League.NETHERLANDS_EREDIVISIE_WOMEN]: {
1393
- sport: Sport.SOCCER,
1394
- id: League.NETHERLANDS_EREDIVISIE_WOMEN,
1395
- label: 'Netherlands Eredivisie Women',
1396
- opticOddsName: 'Netherlands - Vrouwen Eredivisie',
1397
- provider: Provider.OPTICODDS,
1398
- scoringType: ScoringType.GOALS,
1399
- matchResolveType: MatchResolveType.REGULAR,
1400
- periodType: PeriodType.HALF,
1401
- isDrawAvailable: true,
1402
- },
1403
- [League.BELGIUM_SUPER_LEAGUE_WOMEN]: {
1404
- sport: Sport.SOCCER,
1405
- id: League.BELGIUM_SUPER_LEAGUE_WOMEN,
1406
- label: "Belgium Women's Super League",
1407
- opticOddsName: 'Belgium - Womens Super League',
1408
- provider: Provider.OPTICODDS,
1409
- scoringType: ScoringType.GOALS,
1410
- matchResolveType: MatchResolveType.REGULAR,
1411
- periodType: PeriodType.HALF,
1412
- isDrawAvailable: true,
1413
- },
1414
- [League.UEFA_CHAMPIONS_LEAGUE_WOMEN]: {
1415
- sport: Sport.SOCCER,
1416
- id: League.UEFA_CHAMPIONS_LEAGUE_WOMEN,
1417
- label: 'UEFA Champions League Women',
1418
- opticOddsName: 'UEFA - Champions League Women',
1419
- provider: Provider.OPTICODDS,
1420
- scoringType: ScoringType.GOALS,
1421
- matchResolveType: MatchResolveType.REGULAR,
1422
- periodType: PeriodType.HALF,
1423
- isDrawAvailable: true,
1424
- },
1425
- [League.USA_NWSL]: {
1426
- sport: Sport.SOCCER,
1427
- id: League.USA_NWSL,
1428
- label: 'USA NWSL',
1429
- opticOddsName: 'USA - NWSL',
1430
- provider: Provider.OPTICODDS,
1431
- scoringType: ScoringType.GOALS,
1432
- matchResolveType: MatchResolveType.REGULAR,
1433
- periodType: PeriodType.HALF,
1434
- isDrawAvailable: true,
1435
- },
1436
- [League.AUSTRALIA_A_LEAGUE_WOMEN]: {
1437
- sport: Sport.SOCCER,
1438
- id: League.AUSTRALIA_A_LEAGUE_WOMEN,
1439
- label: 'Australia A-League Women',
1440
- opticOddsName: 'Australia - A-League Women',
1441
- provider: Provider.OPTICODDS,
1442
- scoringType: ScoringType.GOALS,
1443
- matchResolveType: MatchResolveType.REGULAR,
1444
- periodType: PeriodType.HALF,
1445
- isDrawAvailable: true,
1446
- },
1447
- [League.CONCACAF_CHAMPIONS_CUP]: {
1448
- sport: Sport.SOCCER,
1449
- id: League.CONCACAF_CHAMPIONS_CUP,
1450
- label: 'CONCACAF Champions Cup',
1451
- opticOddsName: 'CONCACAF - Champions Cup',
1452
- provider: Provider.OPTICODDS,
1453
- scoringType: ScoringType.GOALS,
1454
- matchResolveType: MatchResolveType.REGULAR,
1455
- periodType: PeriodType.HALF,
1456
- isDrawAvailable: true,
1457
- },
1458
- [League.UEFA_CHAMPIONS_LEAGUE_WOMEN]: {
1459
- sport: Sport.SOCCER,
1460
- id: League.UEFA_CHAMPIONS_LEAGUE_WOMEN,
1461
- label: 'UEFA Nations League Women',
1462
- opticOddsName: 'UEFA - Nations League Women',
1463
- provider: Provider.OPTICODDS,
1464
- scoringType: ScoringType.GOALS,
1465
- matchResolveType: MatchResolveType.REGULAR,
1466
- periodType: PeriodType.HALF,
1467
- isDrawAvailable: true,
1468
- },
1469
- [League.EUROCUP]: {
1470
- sport: Sport.BASKETBALL,
1471
- id: League.EUROCUP,
1472
- label: 'Eurocup',
1473
- opticOddsName: 'Eurocup',
1474
- provider: Provider.OPTICODDS,
1475
- scoringType: ScoringType.POINTS,
1476
- matchResolveType: MatchResolveType.OVERTIME,
1477
- periodType: PeriodType.QUARTER,
1478
- isDrawAvailable: false,
1479
- },
1480
- [League.SPAIN_LIGA_ACB]: {
1481
- sport: Sport.BASKETBALL,
1482
- id: League.SPAIN_LIGA_ACB,
1483
- label: 'Spain Liga ACB',
1484
- opticOddsName: 'Spain - Liga ACB',
1485
- provider: Provider.OPTICODDS,
1486
- scoringType: ScoringType.POINTS,
1487
- matchResolveType: MatchResolveType.OVERTIME,
1488
- periodType: PeriodType.QUARTER,
1489
- isDrawAvailable: false,
1490
- },
1491
- [League.ITALY_LEGA_BASKET_SERIE_A]: {
1492
- sport: Sport.BASKETBALL,
1493
- id: League.ITALY_LEGA_BASKET_SERIE_A,
1494
- label: 'Italy Lega Basket Serie A',
1495
- opticOddsName: 'Italy - Lega Basket Serie A',
1496
- provider: Provider.OPTICODDS,
1497
- scoringType: ScoringType.POINTS,
1498
- matchResolveType: MatchResolveType.OVERTIME,
1499
- periodType: PeriodType.QUARTER,
1500
- isDrawAvailable: false,
1501
- },
1502
- [League.GERMANY_BBL]: {
1503
- sport: Sport.BASKETBALL,
1504
- id: League.GERMANY_BBL,
1505
- label: 'Germany BBL',
1506
- opticOddsName: 'Germany - BBL',
1507
- provider: Provider.OPTICODDS,
1508
- scoringType: ScoringType.POINTS,
1509
- matchResolveType: MatchResolveType.OVERTIME,
1510
- periodType: PeriodType.QUARTER,
1511
- isDrawAvailable: false,
1512
- },
1513
- [League.FRANCE_LNB_PRO_A]: {
1514
- sport: Sport.BASKETBALL,
1515
- id: League.FRANCE_LNB_PRO_A,
1516
- label: 'France LNB Pro A',
1517
- opticOddsName: 'France - LNB Pro A',
1518
- provider: Provider.OPTICODDS,
1519
- scoringType: ScoringType.POINTS,
1520
- matchResolveType: MatchResolveType.OVERTIME,
1521
- periodType: PeriodType.QUARTER,
1522
- isDrawAvailable: false,
1523
- },
1524
- [League.CHINA_CBA]: {
1525
- sport: Sport.BASKETBALL,
1526
- id: League.CHINA_CBA,
1527
- label: 'China CBA',
1528
- opticOddsName: 'China - CBA',
1529
- provider: Provider.OPTICODDS,
1530
- scoringType: ScoringType.POINTS,
1531
- matchResolveType: MatchResolveType.OVERTIME,
1532
- periodType: PeriodType.QUARTER,
1533
- isDrawAvailable: false,
1534
- },
1535
- [League.AUSTRALIA_NBL]: {
1536
- sport: Sport.BASKETBALL,
1537
- id: League.AUSTRALIA_NBL,
1538
- label: 'Australia NBL',
1539
- opticOddsName: 'Australia - NBL',
1540
- provider: Provider.OPTICODDS,
1541
- scoringType: ScoringType.POINTS,
1542
- matchResolveType: MatchResolveType.OVERTIME,
1543
- periodType: PeriodType.QUARTER,
1544
- isDrawAvailable: false,
1545
- },
1546
- [League.NCAAW]: {
1547
- sport: Sport.BASKETBALL,
1548
- id: League.NCAAW,
1549
- label: 'NCAAW',
1550
- opticOddsName: 'NCAAW',
1551
- provider: Provider.OPTICODDS,
1552
- scoringType: ScoringType.POINTS,
1553
- matchResolveType: MatchResolveType.OVERTIME,
1554
- periodType: PeriodType.QUARTER,
1555
- isDrawAvailable: false,
1556
- },
1557
- [League.FIBA_AMERICUP_QUALIFIERS]: {
1558
- sport: Sport.BASKETBALL,
1559
- id: League.FIBA_AMERICUP_QUALIFIERS,
1560
- label: 'FIBA Americup Qualifiers',
1561
- opticOddsName: 'FIBA - Americup Qualifiers',
1562
- provider: Provider.OPTICODDS,
1563
- scoringType: ScoringType.POINTS,
1564
- matchResolveType: MatchResolveType.OVERTIME,
1565
- periodType: PeriodType.QUARTER,
1566
- isDrawAvailable: false,
1567
- },
1568
- [League.FIBA_ASIA_CUP_QUALIFIERS]: {
1569
- sport: Sport.BASKETBALL,
1570
- id: League.FIBA_ASIA_CUP_QUALIFIERS,
1571
- label: 'FIBA Asia Cup Qualifiers',
1572
- opticOddsName: 'FIBA - Asia Cup Qualifiers',
1573
- provider: Provider.OPTICODDS,
1574
- scoringType: ScoringType.POINTS,
1575
- matchResolveType: MatchResolveType.OVERTIME,
1576
- periodType: PeriodType.QUARTER,
1577
- isDrawAvailable: false,
1578
- },
1579
- [League.FIBA_EUROBASKET_QUALIFIERS]: {
1580
- sport: Sport.BASKETBALL,
1581
- id: League.FIBA_EUROBASKET_QUALIFIERS,
1582
- label: 'FIBA Eurobasket Qualifiers',
1583
- opticOddsName: 'FIBA - Eurobasket Qualifiers',
1584
- provider: Provider.OPTICODDS,
1585
- scoringType: ScoringType.POINTS,
1586
- matchResolveType: MatchResolveType.OVERTIME,
1587
- periodType: PeriodType.QUARTER,
1588
- isDrawAvailable: false,
1589
- },
1590
- [League.FIBA_WORLD_CUP_QUALIFIERS]: {
1591
- sport: Sport.BASKETBALL,
1592
- id: League.FIBA_WORLD_CUP_QUALIFIERS,
1593
- label: 'FIBA World Cup Qualifiers',
1594
- opticOddsName: 'FIBA - World Cup Qualifiers',
1595
- provider: Provider.OPTICODDS,
1596
- scoringType: ScoringType.POINTS,
1597
- matchResolveType: MatchResolveType.OVERTIME,
1598
- periodType: PeriodType.QUARTER,
1599
- isDrawAvailable: false,
1600
- },
1601
- [League.FIBA_AFRO_BASKET_QUALIFIERS]: {
1602
- sport: Sport.BASKETBALL,
1603
- id: League.FIBA_AFRO_BASKET_QUALIFIERS,
1604
- label: 'FIBA AfroBasket Qualifiers',
1605
- opticOddsName: 'FIBA - AfroBasket Qualifiers',
1606
- provider: Provider.OPTICODDS,
1607
- scoringType: ScoringType.POINTS,
1608
- matchResolveType: MatchResolveType.OVERTIME,
1609
- periodType: PeriodType.QUARTER,
1610
- isDrawAvailable: false,
1611
- },
1612
- [League.GREECE_A1_LEAGUE]: {
1613
- sport: Sport.BASKETBALL,
1614
- id: League.GREECE_A1_LEAGUE,
1615
- label: 'Greece - A1 League',
1616
- opticOddsName: 'Greece - A1 League',
1617
- provider: Provider.OPTICODDS,
1618
- scoringType: ScoringType.POINTS,
1619
- matchResolveType: MatchResolveType.OVERTIME,
1620
- periodType: PeriodType.QUARTER,
1621
- isDrawAvailable: false,
1622
- },
1623
- [League.ROCKET_LEAGUE]: {
1624
- sport: Sport.ESPORTS,
1625
- id: League.ROCKET_LEAGUE,
1626
- label: 'Rocket League',
1627
- opticOddsName: 'Rocket League',
1628
- provider: Provider.OPTICODDS,
1629
- scoringType: ScoringType.MAPS,
1630
- matchResolveType: MatchResolveType.EMPTY,
1631
- periodType: PeriodType.MAP,
1632
- isDrawAvailable: false,
1633
- },
1634
- [League.CALL_OF_DUTY]: {
1635
- sport: Sport.ESPORTS,
1636
- id: League.CALL_OF_DUTY,
1637
- label: 'Call of Duty',
1638
- opticOddsName: 'Call of Duty',
1639
- provider: Provider.OPTICODDS,
1640
- scoringType: ScoringType.MAPS,
1641
- matchResolveType: MatchResolveType.EMPTY,
1642
- periodType: PeriodType.MAP,
1643
- isDrawAvailable: false,
1644
- },
1645
- [League.STARCRAFT]: {
1646
- sport: Sport.ESPORTS,
1647
- id: League.STARCRAFT,
1648
- label: 'Starcraft',
1649
- opticOddsName: 'Starcraft',
1650
- provider: Provider.OPTICODDS,
1651
- scoringType: ScoringType.MAPS,
1652
- matchResolveType: MatchResolveType.EMPTY,
1653
- periodType: PeriodType.MAP,
1654
- isDrawAvailable: false,
1655
- },
1656
- [League.VALORANT]: {
1657
- sport: Sport.ESPORTS,
1658
- id: League.VALORANT,
1659
- label: 'Valorant',
1660
- opticOddsName: 'Valorant',
1661
- provider: Provider.OPTICODDS,
1662
- scoringType: ScoringType.MAPS,
1663
- matchResolveType: MatchResolveType.EMPTY,
1664
- periodType: PeriodType.MAP,
1665
- isDrawAvailable: false,
1666
- },
1667
- [League.NFL_FUTURES]: {
1668
- sport: Sport.FUTURES,
1669
- id: League.NFL_FUTURES,
1670
- label: 'NFL Futures',
1671
- provider: Provider.EMPTY,
1672
- scoringType: ScoringType.EMPTY,
1673
- matchResolveType: MatchResolveType.EMPTY,
1674
- periodType: PeriodType.EMPTY,
1675
- isDrawAvailable: false,
1676
- },
1677
- [League.NBA_FUTURES]: {
1678
- sport: Sport.FUTURES,
1679
- id: League.NBA_FUTURES,
1680
- label: 'NBA Futures',
1681
- provider: Provider.EMPTY,
1682
- scoringType: ScoringType.EMPTY,
1683
- matchResolveType: MatchResolveType.EMPTY,
1684
- periodType: PeriodType.EMPTY,
1685
- isDrawAvailable: false,
1686
- },
1687
- [League.NCAAB_FUTURES]: {
1688
- sport: Sport.FUTURES,
1689
- id: League.NCAAB_FUTURES,
1690
- label: 'NCAAB Futures',
1691
- provider: Provider.EMPTY,
1692
- scoringType: ScoringType.EMPTY,
1693
- matchResolveType: MatchResolveType.EMPTY,
1694
- periodType: PeriodType.EMPTY,
1695
- isDrawAvailable: false,
1696
- },
1697
- [League.NHL_FUTURES]: {
1698
- sport: Sport.FUTURES,
1699
- id: League.NHL_FUTURES,
1700
- label: 'NHL Futures',
1701
- provider: Provider.EMPTY,
1702
- scoringType: ScoringType.EMPTY,
1703
- matchResolveType: MatchResolveType.EMPTY,
1704
- periodType: PeriodType.EMPTY,
1705
- isDrawAvailable: false,
1706
- },
1707
- [League.EPL_FUTURES]: {
1708
- sport: Sport.FUTURES,
1709
- id: League.EPL_FUTURES,
1710
- label: 'EPL Futures',
1711
- provider: Provider.EMPTY,
1712
- scoringType: ScoringType.EMPTY,
1713
- matchResolveType: MatchResolveType.EMPTY,
1714
- periodType: PeriodType.EMPTY,
1715
- isDrawAvailable: false,
1716
- },
1717
- [League.LIGUE_ONE_FUTURES]: {
1718
- sport: Sport.FUTURES,
1719
- id: League.LIGUE_ONE_FUTURES,
1720
- label: 'Ligue 1 Futures',
1721
- provider: Provider.EMPTY,
1722
- scoringType: ScoringType.EMPTY,
1723
- matchResolveType: MatchResolveType.EMPTY,
1724
- periodType: PeriodType.EMPTY,
1725
- isDrawAvailable: false,
1726
- },
1727
- [League.BUNDESLIGA_FUTURES]: {
1728
- sport: Sport.FUTURES,
1729
- id: League.BUNDESLIGA_FUTURES,
1730
- label: 'Bundesliga Futures',
1731
- provider: Provider.EMPTY,
1732
- scoringType: ScoringType.EMPTY,
1733
- matchResolveType: MatchResolveType.EMPTY,
1734
- periodType: PeriodType.EMPTY,
1735
- isDrawAvailable: false,
1736
- },
1737
- [League.LA_LIGA_FUTURES]: {
1738
- sport: Sport.FUTURES,
1739
- id: League.LA_LIGA_FUTURES,
1740
- label: 'La Liga',
1741
- provider: Provider.EMPTY,
1742
- scoringType: ScoringType.EMPTY,
1743
- matchResolveType: MatchResolveType.EMPTY,
1744
- periodType: PeriodType.EMPTY,
1745
- isDrawAvailable: false,
1746
- },
1747
- [League.SERIE_A_FUTURES]: {
1748
- sport: Sport.FUTURES,
1749
- id: League.SERIE_A_FUTURES,
1750
- label: 'Serie A Futures',
1751
- provider: Provider.EMPTY,
1752
- scoringType: ScoringType.EMPTY,
1753
- matchResolveType: MatchResolveType.EMPTY,
1754
- periodType: PeriodType.EMPTY,
1755
- isDrawAvailable: false,
1756
- },
1757
- [League.UEFA_CHAMPIONS_LEAGUE_FUTURES]: {
1758
- sport: Sport.FUTURES,
1759
- id: League.UEFA_CHAMPIONS_LEAGUE_FUTURES,
1760
- label: 'UEFA Champions League Futures',
1761
- provider: Provider.EMPTY,
1762
- scoringType: ScoringType.EMPTY,
1763
- matchResolveType: MatchResolveType.EMPTY,
1764
- periodType: PeriodType.EMPTY,
1765
- isDrawAvailable: false,
1766
- },
1767
- [League.ATP_FUTURES]: {
1768
- sport: Sport.FUTURES,
1769
- id: League.ATP_FUTURES,
1770
- label: 'ATP Futures',
1771
- provider: Provider.EMPTY,
1772
- scoringType: ScoringType.EMPTY,
1773
- matchResolveType: MatchResolveType.EMPTY,
1774
- periodType: PeriodType.EMPTY,
1775
- isDrawAvailable: false,
1776
- },
1777
- [League.EUROLEAGUE_FUTURES]: {
1778
- sport: Sport.FUTURES,
1779
- id: League.EUROLEAGUE_FUTURES,
1780
- label: 'Euroleague Futures',
1781
- provider: Provider.EMPTY,
1782
- scoringType: ScoringType.EMPTY,
1783
- matchResolveType: MatchResolveType.EMPTY,
1784
- periodType: PeriodType.EMPTY,
1785
- isDrawAvailable: false,
1786
- },
1787
- [League.GOLF_H2H]: {
1788
- sport: Sport.GOLF,
1789
- id: League.GOLF_H2H,
1790
- label: 'Golf head-to-head',
1791
- provider: Provider.EMPTY,
1792
- scoringType: ScoringType.EMPTY,
1793
- matchResolveType: MatchResolveType.EMPTY,
1794
- periodType: PeriodType.EMPTY,
1795
- isDrawAvailable: false,
1796
- },
1797
- [League.GOLF_WINNER]: {
1798
- sport: Sport.GOLF,
1799
- id: League.GOLF_WINNER,
1800
- label: 'Golf Tournament Winner',
1801
- provider: Provider.EMPTY,
1802
- scoringType: ScoringType.EMPTY,
1803
- matchResolveType: MatchResolveType.EMPTY,
1804
- periodType: PeriodType.EMPTY,
1805
- isDrawAvailable: false,
1806
- },
1807
- };
1808
-
1809
- export const LEAGUES_NO_FORMAL_HOME_AWAY = [
1810
- League.CSGO,
1811
- League.DOTA2,
1812
- League.LOL,
1813
- League.VALORANT,
1814
- League.ROCKET_LEAGUE,
1815
- League.CALL_OF_DUTY,
1816
- League.STARCRAFT,
1817
- League.TENNIS_GS,
1818
- League.TENNIS_MASTERS,
1819
- League.SUMMER_OLYMPICS_TENNIS,
1820
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_0,
1821
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_1,
1822
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_2,
1823
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_3,
1824
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_4,
1825
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_5,
1826
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_6,
1827
- League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_7,
1828
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_0,
1829
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_1,
1830
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_2,
1831
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_3,
1832
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_4,
1833
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_5,
1834
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_6,
1835
- League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_7,
1836
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_1,
1837
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_2,
1838
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_3,
1839
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_4,
1840
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_5,
1841
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_6,
1842
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_7,
1843
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_8,
1844
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_9,
1845
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_10,
1846
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_11,
1847
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_12,
1848
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_13,
1849
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_14,
1850
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_15,
1851
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_16,
1852
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_17,
1853
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_18,
1854
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_19,
1855
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_20,
1856
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_21,
1857
- League.TENNIS_MASTERS_LIVE_MAPPING_V2_22,
1858
- League.TENNIS_WTA_LIVE_MAPPING_V2_1,
1859
- League.TENNIS_WTA_LIVE_MAPPING_V2_2,
1860
- League.TENNIS_WTA_LIVE_MAPPING_V2_3,
1861
- League.TENNIS_WTA_LIVE_MAPPING_V2_4,
1862
- League.TENNIS_WTA_LIVE_MAPPING_V2_5,
1863
- League.TENNIS_WTA_LIVE_MAPPING_V2_6,
1864
- League.TENNIS_WTA_LIVE_MAPPING_V2_7,
1865
- League.TENNIS_WTA_LIVE_MAPPING_V2_8,
1866
- League.TENNIS_WTA_LIVE_MAPPING_V2_9,
1867
- League.TENNIS_WTA_LIVE_MAPPING_V2_10,
1868
- League.TENNIS_WTA_LIVE_MAPPING_V2_11,
1869
- League.TENNIS_WTA_LIVE_MAPPING_V2_12,
1870
- League.TENNIS_WTA_LIVE_MAPPING_V2_13,
1871
- League.TENNIS_WTA_LIVE_MAPPING_V2_14,
1872
- League.TENNIS_WTA_LIVE_MAPPING_V2_15,
1873
- League.TENNIS_WTA_LIVE_MAPPING_V2_16,
1874
- League.TENNIS_WTA_LIVE_MAPPING_V2_17,
1875
- League.TENNIS_WTA_LIVE_MAPPING_V2_18,
1876
- League.TENNIS_WTA_LIVE_MAPPING_V2_19,
1877
- League.TENNIS_WTA_LIVE_MAPPING_V2_20,
1878
- League.TENNIS_WTA_LIVE_MAPPING_V2_21,
1879
- League.TENNIS_WTA_LIVE_MAPPING_V2_22,
1880
- League.TENNIS_WTA_LIVE_MAPPING_V2_23,
1881
- ];
1882
-
1883
- export const LEAGUES_NO_LIVE_CONSTRAINTS = [League.SUMMER_OLYMPICS_RUGBY, League.SUMMER_OLYMPICS_RUGBY_WOMEN];
1884
-
1885
- export const AMERICAN_LEAGUES = [
1886
- League.NCAAF,
1887
- League.NFL,
1888
- League.MLB,
1889
- League.NBA,
1890
- League.NCAAB,
1891
- League.NHL,
1892
- League.WNBA,
1893
- League.MLS,
1894
- League.IPL,
1895
- League.T20_BLAST,
1896
- ];
1897
-
1898
- export const UFC_LEAGUE_IDS = [701, 702, 703, 704];
1899
-
1900
- export const LeagueIdMapRundown = {
1901
- 1: 1, // NCAAF
1902
- 2: 2, // NFL
1903
- 3: 3, // MLB
1904
- 4: 4, // NBA
1905
- 5: 5, // NCAAB
1906
- 6: 6, // NHL
1907
- 7: 7, // UFC
1908
- 8: 8, // WNBA
1909
- 10: 10, // MLS
1910
- 11: 11, // EPL
1911
- 12: 12, // France League 1
1912
- 13: 13, // Bundesliga
1913
- 14: 14, // La Liga
1914
- 15: 15, // Seria A
1915
- 16: 16, // Champions League
1916
- 17: 17, // Europa League
1917
- 18: 18, // FIFA WC
1918
- 19: 19, // J1
1919
- 20: 20, // IPL
1920
- 21: 21, // T20
1921
- };
1922
-
1923
- export const LeagueIdMapEnetpulse = {
1924
- 320: 18, // Hockey Norway
1925
- 6: 24, // NHL
1926
- 33: 33, // Hockey World Championship
1927
- 16: 42, // Champions League
1928
- 44: 44, // Copa America
1929
- 45: 45, // Copa Libertadores
1930
- 11: 47, // EPL
1931
- 50: 50, // UEFA EURO
1932
- 12: 53, // France League 1
1933
- 13: 54, // Bundesliga
1934
- 15: 55, // Seria A
1935
- 57: 57, // Netherlands League 1
1936
- 61: 61, // Portugal League 1
1937
- 65: 65, // Summer Olympics Soccer Women
1938
- 66: 66, // Summer Olympics Soccer
1939
- 17: 73, // Europa League
1940
- 76: 76, // World Cup Woman
1941
- 14: 87, // La Liga
1942
- 152: 152, // Tennis WTA
1943
- 153: 153, // Tennis GS
1944
- 156: 156, // Tennis Masters 1000
1945
- 158: 158, // Summer Olympics Tennnis
1946
- 132: 132, // FA Cup
1947
- 134: 134, // Coupe de France
1948
- 138: 138, // Copa del Rey
1949
- 141: 141, // Coppa Italia
1950
- 209: 209, // DFB Pokal
1951
- 230: 230, // LIGA MX
1952
- 268: 268, // Brazil Football League
1953
- 288: 288, // EURO U21
1954
- 296: 296, // FIFA WC U20
1955
- 310: 310, // Hockey Czech
1956
- 319: 319, // Hockey Finland
1957
- 322: 322, // Hockey Germany
1958
- 327: 327, // Hockey Switzerland
1959
- 380: 380, // Summer Olympics Handball Women
1960
- 381: 381, // Summer Olympics Handball
1961
- 399: 399, // EuroLeague
1962
- 406: 406, // Summer Olympics Basketball
1963
- 407: 407, // Summer Olympics Basketball Women
1964
- 409: 409, // FIBA World Cup
1965
- 445: 445, // F1
1966
- 453: 453, // Summer Olympics Beach Voleyball Women
1967
- 454: 454, // Summer Olympics Beach Voleyball
1968
- 497: 497, // Moto GP
1969
- 536: 536, // Saudi Arabia Football League
1970
- 8881: 8881, // Summer Olympics Water Polo
1971
- 8893: 8893, // Summer Olympics Voleyball Women
1972
- 8894: 8894, // Summer Olympics Voleyball
1973
- 8910: 8910, // Summer Olympics Table Tennnis
1974
- 9196: 9196, // Boxing
1975
- 9578: 9578, // Summer Olympics Rugby
1976
- 9588: 9588, // Summer Olympics Rugby Women
1977
- 9698: 9698, // Summer Olympics Hockey Women
1978
- 9699: 9699, // Summer Olympics Hockey
1979
- 9806: 9806, // UEFA League of Nations
1980
- 9821: 9821, // CONCACAF League of Nations
1981
- 9977: 9977, // CsGo
1982
- 9983: 9983, // Dota
1983
- 10071: 10071, // Summer Olympics Basketball 3x3
1984
- 10072: 10072, // Summer Olympics Basketball 3x3 Women
1985
- 10502: 10502, // Summer Olympics Basketball Qualification
1986
- 10138: 10138, // LOL
1987
- 10199: 10199, // World Cup Qualifications CONMBOL
1988
- 10216: 10216, // Europa Conference League
1989
- 10595: 10595, // Non-Title Boxing
1990
- 10611: 10611, // Champions League Qualification
1991
- 10613: 10613, // Europa League Qualification
1992
- 10615: 10615, // Conference League Qualification
1993
- };
1994
-
1995
- export const LeagueIdMapOpticOdds = {
1996
- 1: 'NCAAF',
1997
- 2: 'NFL',
1998
- 3: 'MLB',
1999
- 4: 'NBA',
2000
- 5: 'NCAAB',
2001
- 6: 'NHL',
2002
- 7: 'UFC',
2003
- 8: 'WNBA',
2004
- 10: 'USA - Major League Soccer',
2005
- 11: 'England - Premier League',
2006
- 12: 'France - Ligue 1',
2007
- 13: 'Germany - Bundesliga',
2008
- 14: 'Spain - La Liga',
2009
- 15: 'Italy - Serie A',
2010
- 16: 'UEFA - Champions League',
2011
- 17: 'UEFA - Europa League',
2012
- 18: 'FIFA - World Cup Qualifiers',
2013
- 19: 'Japan - J1 League',
2014
- 45: 'CONMEBOL - Copa Libertadores',
2015
- 57: 'Netherlands - Eredivisie',
2016
- 61: 'Portugal - Primeira Liga',
2017
- 132: 'England - FA Cup',
2018
- 134: 'France - Coupe de France',
2019
- 138: 'Spain - Copa del Rey',
2020
- 152: 'WTA',
2021
- 156: 'ATP',
2022
- 141: 'Italy - Coppa Italia',
2023
- 209: 'Germany - DFB Pokal',
2024
- 230: 'Mexico - Liga MX',
2025
- 268: 'Brazil - Serie A',
2026
- 310: 'Czech Republic - Extraliga',
2027
- 319: 'Finland - SM Liiga',
2028
- 321: 'Russia - KHL',
2029
- 322: 'Germany - DEL',
2030
- 323: 'Austria - Ice Hockey League',
2031
- 324: 'Sweden - SHL',
2032
- 327: 'Switzerland - National League',
2033
- 399: 'Euroleague',
2034
- 536: 'Saudi Arabia - Saudi League',
2035
- 9806: 'UEFA - Nations League',
2036
- 9977: 'CS2',
2037
- 9983: 'Dota 2',
2038
- 10138: 'League of Legends',
2039
- 10216: 'UEFA - Europa Conference League',
2040
- 20001: 'UEFA - Super Cup',
2041
- 20002: 'Brazil - Copa do Brasil',
2042
- 20011: 'England - Championship',
2043
- 20101: 'Scotland - Premiership',
2044
- 20102: 'Belgium - Jupiler Pro League',
2045
- 20103: 'Czech Republic - FNL',
2046
- 20104: 'Chile - Primera Division',
2047
- 20105: 'Finland - Veikkausliiga',
2048
- 20106: 'Argentina - Primera Division',
2049
- 20107: 'Russia - Premier League',
2050
- 20108: 'Turkey - Super Lig',
2051
- 20109: 'Serbia - Super Liga',
2052
- 20110: 'Greece - Super League',
2053
- 20111: 'India - Calcutta Premier Division',
2054
- 20112: 'China - Super League',
2055
- 20113: 'Australia - A-League',
2056
- 20114: 'Switzerland - Super League',
2057
- 20115: 'Germany - Bundesliga 2',
2058
- 20116: 'Spain - La Liga 2',
2059
- 20117: 'Italy - Serie B',
2060
- 20118: 'India - Super League',
2061
- 20119: 'France - Ligue 2',
2062
- 20120: 'Austria - Bundesliga',
2063
- 20121: 'Denmark - Superliga',
2064
- 20122: 'Poland - Ekstraklasa',
2065
- 20123: 'Sweden - Allsvenskan',
2066
- 20124: 'Colombia - Primera A',
2067
- 20125: 'England - EFL Cup',
2068
- 20126: 'England - League 1',
2069
- 20127: 'Uruguay - Primera Division',
2070
- 20128: 'AFC - Champions League',
2071
- 20129: 'Italy - Supercoppa',
2072
- 20130: 'France - Super Cup',
2073
- 20131: 'Spain - Supercopa',
2074
- 20132: 'Germany - Super Cup',
2075
- 20133: 'Portugal - League Cup',
2076
- 20134: 'Thailand - Thai League 1',
2077
- 20135: 'Netherlands - KNVB Beker',
2078
- 20136: 'Portugal - Taca de Portugal',
2079
- 20137: 'England - Womens Super League',
2080
- 20138: 'Italy - Serie A Femminile',
2081
- 20139: 'France - Premiere Ligue',
2082
- 20140: 'Germany - Frauen Bundesliga',
2083
- 20141: 'Spain - Liga F',
2084
- 20142: 'Netherlands - Vrouwen Eredivisie',
2085
- 20143: 'Belgium - Womens Super League',
2086
- 20144: 'UEFA - Champions League Women',
2087
- 20145: 'USA - NWSL',
2088
- 20146: 'Australia - A-League Women',
2089
- 20147: 'CONCACAF - Champions Cup',
2090
- 20148: 'UEFA - Nations League Women',
2091
- 20200: 'Eurocup',
2092
- 20201: 'Spain - Liga ACB',
2093
- 20202: 'Italy - Lega Basket Serie A',
2094
- 20203: 'Germany - BBL',
2095
- 20204: 'France - LNB Pro A',
2096
- 20205: 'China - CBA',
2097
- 20206: 'Australia - NBL',
2098
- 20211: 'NCAAW',
2099
- 20212: 'FIBA - Americup Qualifiers',
2100
- 20213: 'FIBA - Asia Cup Qualifiers',
2101
- 20214: 'FIBA - Eurobasket Qualifiers',
2102
- 20215: 'FIBA - World Cup Qualifiers',
2103
- 20216: 'FIBA - AfroBasket Qualifiers',
2104
- 20217: 'Greece - A1 League',
2105
- 20297: 'Rocket League',
2106
- 20298: 'Call of Duty',
2107
- 20299: 'Starcraft',
2108
- 20300: 'Valorant',
2109
- };
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.CZECH_REPUBLIC_EXTRALIGA]: {
460
+ sport: Sport.HOCKEY,
461
+ id: League.CZECH_REPUBLIC_EXTRALIGA,
462
+ label: 'Czech Republic Extraliga',
463
+ opticOddsName: 'Czech Republic - Extraliga',
464
+ provider: Provider.OPTICODDS,
465
+ scoringType: ScoringType.GOALS,
466
+ matchResolveType: MatchResolveType.OVERTIME,
467
+ periodType: PeriodType.PERIOD,
468
+ isDrawAvailable: true,
469
+ },
470
+ [League.FINLAND_SM_LIIGA]: {
471
+ sport: Sport.HOCKEY,
472
+ id: League.FINLAND_SM_LIIGA,
473
+ label: 'Finland SM Liiga',
474
+ opticOddsName: 'Finland - SM Liiga',
475
+ provider: Provider.OPTICODDS,
476
+ scoringType: ScoringType.GOALS,
477
+ matchResolveType: MatchResolveType.OVERTIME,
478
+ periodType: PeriodType.PERIOD,
479
+ isDrawAvailable: true,
480
+ },
481
+ [League.RUSSIA_KHL]: {
482
+ sport: Sport.HOCKEY,
483
+ id: League.RUSSIA_KHL,
484
+ label: 'Russia KHL',
485
+ opticOddsName: 'Russia - KHL',
486
+ provider: Provider.OPTICODDS,
487
+ scoringType: ScoringType.GOALS,
488
+ matchResolveType: MatchResolveType.OVERTIME,
489
+ periodType: PeriodType.PERIOD,
490
+ isDrawAvailable: true,
491
+ },
492
+ [League.GERMANY_DEL]: {
493
+ sport: Sport.HOCKEY,
494
+ id: League.GERMANY_DEL,
495
+ label: 'Germany DEL',
496
+ opticOddsName: 'Germany - DEL',
497
+ provider: Provider.OPTICODDS,
498
+ scoringType: ScoringType.GOALS,
499
+ matchResolveType: MatchResolveType.OVERTIME,
500
+ periodType: PeriodType.PERIOD,
501
+ isDrawAvailable: true,
502
+ },
503
+ [League.AUSTRIA_ICE_HOCKEY_LEAGUE]: {
504
+ sport: Sport.HOCKEY,
505
+ id: League.AUSTRIA_ICE_HOCKEY_LEAGUE,
506
+ label: 'Austria Ice Hockey League',
507
+ opticOddsName: 'Austria - Ice Hockey League',
508
+ provider: Provider.OPTICODDS,
509
+ scoringType: ScoringType.GOALS,
510
+ matchResolveType: MatchResolveType.OVERTIME,
511
+ periodType: PeriodType.PERIOD,
512
+ isDrawAvailable: true,
513
+ },
514
+ [League.SWEDEN_SHL]: {
515
+ sport: Sport.HOCKEY,
516
+ id: League.SWEDEN_SHL,
517
+ label: 'Sweden SHL',
518
+ opticOddsName: 'Sweden - SHL',
519
+ provider: Provider.OPTICODDS,
520
+ scoringType: ScoringType.GOALS,
521
+ matchResolveType: MatchResolveType.OVERTIME,
522
+ periodType: PeriodType.PERIOD,
523
+ isDrawAvailable: true,
524
+ },
525
+ [League.SWITZETLAND_NATIONAL_LEAGUE]: {
526
+ sport: Sport.HOCKEY,
527
+ id: League.SWITZETLAND_NATIONAL_LEAGUE,
528
+ label: 'Switzerland National League',
529
+ opticOddsName: 'Switzerland - National League',
530
+ provider: Provider.OPTICODDS,
531
+ scoringType: ScoringType.GOALS,
532
+ matchResolveType: MatchResolveType.OVERTIME,
533
+ periodType: PeriodType.PERIOD,
534
+ isDrawAvailable: true,
535
+ },
536
+ [League.SUMMER_OLYMPICS_HANDBALL_WOMEN]: {
537
+ sport: Sport.HANDBALL,
538
+ id: League.SUMMER_OLYMPICS_HANDBALL_WOMEN,
539
+ label: 'Olympic Games Handball Women',
540
+ opticOddsName: 'Olympics Handball Women',
541
+ provider: Provider.EMPTY,
542
+ scoringType: ScoringType.GOALS,
543
+ matchResolveType: MatchResolveType.REGULAR,
544
+ periodType: PeriodType.HALF,
545
+ isDrawAvailable: true,
546
+ },
547
+ [League.SUMMER_OLYMPICS_HANDBALL]: {
548
+ sport: Sport.HANDBALL,
549
+ id: League.SUMMER_OLYMPICS_HANDBALL,
550
+ label: 'Olympic Games Handball',
551
+ opticOddsName: 'Olympics Handball Men',
552
+ provider: Provider.EMPTY,
553
+ scoringType: ScoringType.GOALS,
554
+ matchResolveType: MatchResolveType.REGULAR,
555
+ periodType: PeriodType.HALF,
556
+ isDrawAvailable: true,
557
+ },
558
+ [League.EUROLEAGUE]: {
559
+ sport: Sport.BASKETBALL,
560
+ id: League.EUROLEAGUE,
561
+ label: 'Euroleague',
562
+ opticOddsName: 'Euroleague',
563
+ provider: Provider.OPTICODDS,
564
+ scoringType: ScoringType.POINTS,
565
+ matchResolveType: MatchResolveType.OVERTIME,
566
+ periodType: PeriodType.QUARTER,
567
+ isDrawAvailable: false,
568
+ },
569
+ [League.SUMMER_OLYMPICS_BASKETBALL]: {
570
+ sport: Sport.BASKETBALL,
571
+ id: League.SUMMER_OLYMPICS_BASKETBALL,
572
+ label: 'Olympic Games Basketball',
573
+ opticOddsName: 'Olympics Basketball Men',
574
+ provider: Provider.EMPTY,
575
+ scoringType: ScoringType.POINTS,
576
+ matchResolveType: MatchResolveType.OVERTIME,
577
+ periodType: PeriodType.QUARTER,
578
+ isDrawAvailable: false,
579
+ },
580
+ [League.SUMMER_OLYMPICS_BASKETBALL_WOMEN]: {
581
+ sport: Sport.BASKETBALL,
582
+ id: League.SUMMER_OLYMPICS_BASKETBALL_WOMEN,
583
+ label: 'Olympic Games Basketball Women',
584
+ opticOddsName: 'Olympics Basketball Women',
585
+ provider: Provider.EMPTY,
586
+ scoringType: ScoringType.POINTS,
587
+ matchResolveType: MatchResolveType.OVERTIME,
588
+ periodType: PeriodType.QUARTER,
589
+ isDrawAvailable: false,
590
+ },
591
+ [League.FIBA_WORLD_CUP]: {
592
+ sport: Sport.BASKETBALL,
593
+ id: League.FIBA_WORLD_CUP,
594
+ label: 'FIBA World Cup',
595
+ provider: Provider.EMPTY,
596
+ scoringType: ScoringType.POINTS,
597
+ matchResolveType: MatchResolveType.OVERTIME,
598
+ periodType: PeriodType.QUARTER,
599
+ isDrawAvailable: false,
600
+ },
601
+ [League.FORMULA1]: {
602
+ sport: Sport.MOTOSPORT,
603
+ id: League.FORMULA1,
604
+ label: 'Formula 1',
605
+ provider: Provider.EMPTY,
606
+ scoringType: ScoringType.EMPTY,
607
+ matchResolveType: MatchResolveType.EMPTY,
608
+ periodType: PeriodType.EMPTY,
609
+ isDrawAvailable: false,
610
+ },
611
+ [League.SUMMER_OLYMPICS_BEACH_VOLEYBALL_WOMEN]: {
612
+ sport: Sport.VOLLEYBALL,
613
+ id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL_WOMEN,
614
+ label: 'Olympic Games Beach Voleyball Women',
615
+ provider: Provider.EMPTY,
616
+ scoringType: ScoringType.SETS,
617
+ matchResolveType: MatchResolveType.REGULAR,
618
+ periodType: PeriodType.SET,
619
+ isDrawAvailable: false,
620
+ },
621
+ [League.SUMMER_OLYMPICS_BEACH_VOLEYBALL]: {
622
+ sport: Sport.VOLLEYBALL,
623
+ id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL,
624
+ label: 'Olympic Games Beach Voleyball',
625
+ provider: Provider.EMPTY,
626
+ scoringType: ScoringType.SETS,
627
+ matchResolveType: MatchResolveType.REGULAR,
628
+ periodType: PeriodType.SET,
629
+ isDrawAvailable: false,
630
+ },
631
+ [League.SUMMER_OLYMPICS_TABLE_TENNIS]: {
632
+ sport: Sport.TABLE_TENNIS,
633
+ id: League.SUMMER_OLYMPICS_TABLE_TENNIS,
634
+ label: 'Olympic Games Table Tennis',
635
+ provider: Provider.EMPTY,
636
+ scoringType: ScoringType.SETS,
637
+ matchResolveType: MatchResolveType.REGULAR,
638
+ periodType: PeriodType.SET,
639
+ isDrawAvailable: false,
640
+ },
641
+ [League.MOTOGP]: {
642
+ sport: Sport.MOTOSPORT,
643
+ id: League.MOTOGP,
644
+ label: 'MotoGP',
645
+ provider: Provider.EMPTY,
646
+ scoringType: ScoringType.EMPTY,
647
+ matchResolveType: MatchResolveType.EMPTY,
648
+ periodType: PeriodType.EMPTY,
649
+ isDrawAvailable: false,
650
+ },
651
+ [League.SAUDI_PROFESSIONAL_LEAGUE]: {
652
+ sport: Sport.SOCCER,
653
+ id: League.SAUDI_PROFESSIONAL_LEAGUE,
654
+ label: 'Saudi Professional League',
655
+ opticOddsName: 'Saudi Arabia - Saudi League',
656
+ provider: Provider.OPTICODDS,
657
+ scoringType: ScoringType.GOALS,
658
+ matchResolveType: MatchResolveType.REGULAR,
659
+ periodType: PeriodType.HALF,
660
+ isDrawAvailable: true,
661
+ },
662
+ [League.SUMMER_OLYMPICS_WATERPOLO]: {
663
+ sport: Sport.WATERPOLO,
664
+ id: League.SUMMER_OLYMPICS_WATERPOLO,
665
+ label: 'Olympic Games Water Polo',
666
+ opticOddsName: 'Olympics Water Polo',
667
+ provider: Provider.EMPTY,
668
+ scoringType: ScoringType.GOALS,
669
+ matchResolveType: MatchResolveType.REGULAR,
670
+ periodType: PeriodType.QUARTER,
671
+ isDrawAvailable: true,
672
+ },
673
+ [League.SUMMER_OLYMPICS_VOLEYBALL_WOMEN]: {
674
+ sport: Sport.VOLLEYBALL,
675
+ id: League.SUMMER_OLYMPICS_VOLEYBALL_WOMEN,
676
+ label: 'Olympic Games Volleyball Women',
677
+ opticOddsName: 'Olympics Volleyball Women',
678
+ provider: Provider.EMPTY,
679
+ scoringType: ScoringType.SETS,
680
+ matchResolveType: MatchResolveType.REGULAR,
681
+ periodType: PeriodType.SET,
682
+ isDrawAvailable: false,
683
+ },
684
+ [League.SUMMER_OLYMPICS_VOLEYBALL]: {
685
+ sport: Sport.VOLLEYBALL,
686
+ id: League.SUMMER_OLYMPICS_VOLEYBALL,
687
+ label: 'Olympic Games Volleyball',
688
+ opticOddsName: 'Olympics Volleyball Men',
689
+ provider: Provider.EMPTY,
690
+ scoringType: ScoringType.SETS,
691
+ matchResolveType: MatchResolveType.REGULAR,
692
+ periodType: PeriodType.SET,
693
+ isDrawAvailable: false,
694
+ },
695
+ [League.BOXING]: {
696
+ sport: Sport.FIGHTING,
697
+ id: League.BOXING,
698
+ label: 'Boxing',
699
+ provider: Provider.EMPTY,
700
+ scoringType: ScoringType.ROUNDS,
701
+ matchResolveType: MatchResolveType.EMPTY,
702
+ periodType: PeriodType.ROUND,
703
+ isDrawAvailable: false,
704
+ },
705
+ [League.SUMMER_OLYMPICS_RUGBY]: {
706
+ sport: Sport.RUGBY,
707
+ id: League.SUMMER_OLYMPICS_RUGBY,
708
+ label: 'Olympic Games Rugby',
709
+ opticOddsName: 'Olympics Rugby 7s Men',
710
+ provider: Provider.EMPTY,
711
+ scoringType: ScoringType.POINTS,
712
+ matchResolveType: MatchResolveType.REGULAR,
713
+ periodType: PeriodType.HALF,
714
+ isDrawAvailable: true,
715
+ },
716
+ [League.SUMMER_OLYMPICS_RUGBY_WOMEN]: {
717
+ sport: Sport.RUGBY,
718
+ id: League.SUMMER_OLYMPICS_RUGBY_WOMEN,
719
+ label: 'Olympic Games Rugby Women',
720
+ opticOddsName: 'Olympics Rugby 7s Women',
721
+ provider: Provider.EMPTY,
722
+ scoringType: ScoringType.POINTS,
723
+ matchResolveType: MatchResolveType.REGULAR,
724
+ periodType: PeriodType.HALF,
725
+ isDrawAvailable: true,
726
+ },
727
+ [League.SUMMER_OLYMPICS_HOCKEY_WOMEN]: {
728
+ sport: Sport.HOCKEY,
729
+ id: League.SUMMER_OLYMPICS_HOCKEY_WOMEN,
730
+ label: 'Olympic Games Hockey Women',
731
+ provider: Provider.EMPTY,
732
+ scoringType: ScoringType.GOALS,
733
+ matchResolveType: MatchResolveType.REGULAR,
734
+ periodType: PeriodType.PERIOD,
735
+ isDrawAvailable: true,
736
+ },
737
+ [League.SUMMER_OLYMPICS_HOCKEY]: {
738
+ sport: Sport.HOCKEY,
739
+ id: League.SUMMER_OLYMPICS_HOCKEY,
740
+ label: 'Olympic Games Hockey',
741
+ provider: Provider.EMPTY,
742
+ scoringType: ScoringType.GOALS,
743
+ matchResolveType: MatchResolveType.REGULAR,
744
+ periodType: PeriodType.PERIOD,
745
+ isDrawAvailable: true,
746
+ },
747
+ [League.UEFA_NATIONS_LEAGUE]: {
748
+ sport: Sport.SOCCER,
749
+ id: League.UEFA_NATIONS_LEAGUE,
750
+ label: 'UEFA Nations League',
751
+ provider: Provider.OPTICODDS,
752
+ opticOddsName: 'UEFA - Nations League',
753
+ scoringType: ScoringType.GOALS,
754
+ matchResolveType: MatchResolveType.REGULAR,
755
+ periodType: PeriodType.HALF,
756
+ isDrawAvailable: true,
757
+ },
758
+ [League.CONCACAF_NATIONS_LEAGUE]: {
759
+ sport: Sport.SOCCER,
760
+ id: League.CONCACAF_NATIONS_LEAGUE,
761
+ label: 'CONCACAF Nations League',
762
+ provider: Provider.EMPTY,
763
+ scoringType: ScoringType.GOALS,
764
+ matchResolveType: MatchResolveType.REGULAR,
765
+ periodType: PeriodType.HALF,
766
+ isDrawAvailable: true,
767
+ },
768
+ [League.CSGO]: {
769
+ sport: Sport.ESPORTS,
770
+ id: League.CSGO,
771
+ label: 'CS GO',
772
+ opticOddsName: 'CS2',
773
+ provider: Provider.OPTICODDS,
774
+ scoringType: ScoringType.MAPS,
775
+ matchResolveType: MatchResolveType.EMPTY,
776
+ periodType: PeriodType.MAP,
777
+ isDrawAvailable: false,
778
+ },
779
+ [League.DOTA2]: {
780
+ sport: Sport.ESPORTS,
781
+ id: League.DOTA2,
782
+ label: 'DOTA 2',
783
+ opticOddsName: 'Dota 2',
784
+ provider: Provider.OPTICODDS,
785
+ scoringType: ScoringType.MAPS,
786
+ matchResolveType: MatchResolveType.EMPTY,
787
+ periodType: PeriodType.MAP,
788
+ isDrawAvailable: false,
789
+ },
790
+ [League.SUMMER_OLYMPICS_BASKETBALL_3X3]: {
791
+ sport: Sport.BASKETBALL,
792
+ id: League.SUMMER_OLYMPICS_BASKETBALL_3X3,
793
+ label: 'Olympic Games Basketball 3x3',
794
+ opticOddsName: 'Olympics Basketball 3x3 Men',
795
+ provider: Provider.EMPTY,
796
+ scoringType: ScoringType.POINTS,
797
+ matchResolveType: MatchResolveType.OVERTIME,
798
+ periodType: PeriodType.QUARTER,
799
+ isDrawAvailable: false,
800
+ },
801
+ [League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN]: {
802
+ sport: Sport.BASKETBALL,
803
+ id: League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN,
804
+ label: 'Olympic Games Basketball 3x3 Women',
805
+ opticOddsName: 'Olympics Basketball 3x3 Women',
806
+ provider: Provider.EMPTY,
807
+ scoringType: ScoringType.POINTS,
808
+ matchResolveType: MatchResolveType.OVERTIME,
809
+ periodType: PeriodType.QUARTER,
810
+ isDrawAvailable: false,
811
+ },
812
+ [League.SUMMER_OLYMPICS_QUALIFICATION]: {
813
+ sport: Sport.BASKETBALL,
814
+ id: League.SUMMER_OLYMPICS_QUALIFICATION,
815
+ label: 'Summer Olympics Basketball Qualification',
816
+ provider: Provider.EMPTY,
817
+ scoringType: ScoringType.POINTS,
818
+ matchResolveType: MatchResolveType.OVERTIME,
819
+ periodType: PeriodType.QUARTER,
820
+ isDrawAvailable: false,
821
+ },
822
+ [League.LOL]: {
823
+ sport: Sport.ESPORTS,
824
+ id: League.LOL,
825
+ label: 'LOL',
826
+ opticOddsName: 'League of Legends',
827
+ provider: Provider.OPTICODDS,
828
+ scoringType: ScoringType.MAPS,
829
+ matchResolveType: MatchResolveType.EMPTY,
830
+ periodType: PeriodType.MAP,
831
+ isDrawAvailable: false,
832
+ },
833
+ [League.CONMEBOL_WC_QUALIFICATIONS]: {
834
+ sport: Sport.SOCCER,
835
+ id: League.CONMEBOL_WC_QUALIFICATIONS,
836
+ label: 'CONMEBOL WC Qualification',
837
+ provider: Provider.EMPTY,
838
+ scoringType: ScoringType.GOALS,
839
+ matchResolveType: MatchResolveType.REGULAR,
840
+ periodType: PeriodType.HALF,
841
+ isDrawAvailable: true,
842
+ },
843
+ [League.UEFA_CONFERENCE_LEAGUE]: {
844
+ sport: Sport.SOCCER,
845
+ id: League.UEFA_CONFERENCE_LEAGUE,
846
+ label: 'UEFA Conference League',
847
+ opticOddsName: 'UEFA - Europa Conference League',
848
+ provider: Provider.OPTICODDS,
849
+ scoringType: ScoringType.GOALS,
850
+ matchResolveType: MatchResolveType.REGULAR,
851
+ periodType: PeriodType.HALF,
852
+ isDrawAvailable: true,
853
+ },
854
+ [League.NON_TITLE_BOXING]: {
855
+ sport: Sport.FIGHTING,
856
+ id: League.NON_TITLE_BOXING,
857
+ label: 'Boxing',
858
+ provider: Provider.EMPTY,
859
+ scoringType: ScoringType.ROUNDS,
860
+ matchResolveType: MatchResolveType.EMPTY,
861
+ periodType: PeriodType.ROUND,
862
+ isDrawAvailable: false,
863
+ },
864
+ [League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION]: {
865
+ sport: Sport.SOCCER,
866
+ id: League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION,
867
+ label: 'UEFA Champions League Qualification',
868
+ opticOddsName: 'UEFA - Champions League',
869
+ provider: Provider.EMPTY,
870
+ scoringType: ScoringType.GOALS,
871
+ matchResolveType: MatchResolveType.REGULAR,
872
+ periodType: PeriodType.HALF,
873
+ isDrawAvailable: true,
874
+ },
875
+ [League.UEFA_EUROPA_LEAGUE_QUALIFICATION]: {
876
+ sport: Sport.SOCCER,
877
+ id: League.UEFA_EUROPA_LEAGUE_QUALIFICATION,
878
+ label: 'UEFA Europa League Qualification',
879
+ opticOddsName: 'UEFA - Europa League',
880
+ provider: Provider.EMPTY,
881
+ scoringType: ScoringType.GOALS,
882
+ matchResolveType: MatchResolveType.REGULAR,
883
+ periodType: PeriodType.HALF,
884
+ isDrawAvailable: true,
885
+ },
886
+ [League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION]: {
887
+ sport: Sport.SOCCER,
888
+ id: League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION,
889
+ label: 'UEFA Conference League Qualification',
890
+ opticOddsName: 'UEFA - Europa Conference League',
891
+ provider: Provider.EMPTY,
892
+ scoringType: ScoringType.GOALS,
893
+ matchResolveType: MatchResolveType.REGULAR,
894
+ periodType: PeriodType.HALF,
895
+ isDrawAvailable: true,
896
+ },
897
+ [League.US_ELECTION]: {
898
+ sport: Sport.POLITICS,
899
+ id: League.US_ELECTION,
900
+ label: 'US Election 2024',
901
+ provider: Provider.EMPTY,
902
+ scoringType: ScoringType.EMPTY,
903
+ matchResolveType: MatchResolveType.EMPTY,
904
+ periodType: PeriodType.EMPTY,
905
+ isDrawAvailable: false,
906
+ },
907
+ [League.UEFA_SUPER_CUP]: {
908
+ sport: Sport.SOCCER,
909
+ id: League.UEFA_SUPER_CUP,
910
+ label: 'UEFA Super Cup',
911
+ opticOddsName: 'UEFA - Super Cup',
912
+ provider: Provider.OPTICODDS,
913
+ scoringType: ScoringType.GOALS,
914
+ matchResolveType: MatchResolveType.REGULAR,
915
+ periodType: PeriodType.HALF,
916
+ isDrawAvailable: true,
917
+ },
918
+ [League.BRAZIL_CUP]: {
919
+ sport: Sport.SOCCER,
920
+ id: League.BRAZIL_CUP,
921
+ label: 'Copa do Brasil',
922
+ opticOddsName: 'Brazil - Copa do Brasil',
923
+ provider: Provider.OPTICODDS,
924
+ scoringType: ScoringType.GOALS,
925
+ matchResolveType: MatchResolveType.REGULAR,
926
+ periodType: PeriodType.HALF,
927
+ isDrawAvailable: true,
928
+ },
929
+ [League.ENGLAND_CHAMPIONSHIP]: {
930
+ sport: Sport.SOCCER,
931
+ id: League.ENGLAND_CHAMPIONSHIP,
932
+ label: 'EFL Championship',
933
+ opticOddsName: 'England - Championship',
934
+ provider: Provider.OPTICODDS,
935
+ scoringType: ScoringType.GOALS,
936
+ matchResolveType: MatchResolveType.REGULAR,
937
+ periodType: PeriodType.HALF,
938
+ isDrawAvailable: true,
939
+ },
940
+ [League.SCOTLAND_PREMIERSHIP]: {
941
+ sport: Sport.SOCCER,
942
+ id: League.SCOTLAND_PREMIERSHIP,
943
+ label: 'Scotland Premiership',
944
+ opticOddsName: 'Scotland - Premiership',
945
+ provider: Provider.OPTICODDS,
946
+ scoringType: ScoringType.GOALS,
947
+ matchResolveType: MatchResolveType.REGULAR,
948
+ periodType: PeriodType.HALF,
949
+ isDrawAvailable: true,
950
+ },
951
+ [League.BELGIUM_LEAGUE]: {
952
+ sport: Sport.SOCCER,
953
+ id: League.BELGIUM_LEAGUE,
954
+ label: 'Belgium Jupiler Pro League',
955
+ opticOddsName: 'Belgium - Jupiler Pro League',
956
+ provider: Provider.OPTICODDS,
957
+ scoringType: ScoringType.GOALS,
958
+ matchResolveType: MatchResolveType.REGULAR,
959
+ periodType: PeriodType.HALF,
960
+ isDrawAvailable: true,
961
+ },
962
+ [League.CZECH_LEAGUE]: {
963
+ sport: Sport.SOCCER,
964
+ id: League.CZECH_LEAGUE,
965
+ label: 'Czech Republic FNL',
966
+ opticOddsName: 'Czech Republic - FNL',
967
+ provider: Provider.OPTICODDS,
968
+ scoringType: ScoringType.GOALS,
969
+ matchResolveType: MatchResolveType.REGULAR,
970
+ periodType: PeriodType.HALF,
971
+ isDrawAvailable: true,
972
+ },
973
+ [League.CHILE_PRIMERA]: {
974
+ sport: Sport.SOCCER,
975
+ id: League.CHILE_PRIMERA,
976
+ label: 'Chile Primera Division',
977
+ opticOddsName: 'Chile - Primera Division',
978
+ provider: Provider.OPTICODDS,
979
+ scoringType: ScoringType.GOALS,
980
+ matchResolveType: MatchResolveType.REGULAR,
981
+ periodType: PeriodType.HALF,
982
+ isDrawAvailable: true,
983
+ },
984
+ [League.FINLAND_LEAGUE]: {
985
+ sport: Sport.SOCCER,
986
+ id: League.FINLAND_LEAGUE,
987
+ label: 'Finland Veikkausliiga',
988
+ opticOddsName: 'Finland - Veikkausliiga',
989
+ provider: Provider.OPTICODDS,
990
+ scoringType: ScoringType.GOALS,
991
+ matchResolveType: MatchResolveType.REGULAR,
992
+ periodType: PeriodType.HALF,
993
+ isDrawAvailable: true,
994
+ },
995
+ [League.ARGENTINA_PRIMERA]: {
996
+ sport: Sport.SOCCER,
997
+ id: League.ARGENTINA_PRIMERA,
998
+ label: 'Argentina Primera Division',
999
+ opticOddsName: 'Argentina - Primera Division',
1000
+ provider: Provider.OPTICODDS,
1001
+ scoringType: ScoringType.GOALS,
1002
+ matchResolveType: MatchResolveType.REGULAR,
1003
+ periodType: PeriodType.HALF,
1004
+ isDrawAvailable: true,
1005
+ },
1006
+ [League.RUSSIA_PREMIER]: {
1007
+ sport: Sport.SOCCER,
1008
+ id: League.RUSSIA_PREMIER,
1009
+ label: 'Russia Premier League',
1010
+ opticOddsName: 'Russia - Premier League',
1011
+ provider: Provider.OPTICODDS,
1012
+ scoringType: ScoringType.GOALS,
1013
+ matchResolveType: MatchResolveType.REGULAR,
1014
+ periodType: PeriodType.HALF,
1015
+ isDrawAvailable: true,
1016
+ },
1017
+ [League.TURKEY_SUPER_LEAGUE]: {
1018
+ sport: Sport.SOCCER,
1019
+ id: League.TURKEY_SUPER_LEAGUE,
1020
+ label: 'Turkey Super Lig',
1021
+ opticOddsName: 'Turkey - Super Lig',
1022
+ provider: Provider.OPTICODDS,
1023
+ scoringType: ScoringType.GOALS,
1024
+ matchResolveType: MatchResolveType.REGULAR,
1025
+ periodType: PeriodType.HALF,
1026
+ isDrawAvailable: true,
1027
+ },
1028
+ [League.SERBIA_SUPER_LEAGUE]: {
1029
+ sport: Sport.SOCCER,
1030
+ id: League.SERBIA_SUPER_LEAGUE,
1031
+ label: 'Serbia Super Liga',
1032
+ opticOddsName: 'Serbia - Super Liga',
1033
+ provider: Provider.OPTICODDS,
1034
+ scoringType: ScoringType.GOALS,
1035
+ matchResolveType: MatchResolveType.REGULAR,
1036
+ periodType: PeriodType.HALF,
1037
+ isDrawAvailable: true,
1038
+ },
1039
+ [League.GREECE_SUPER_LEAGUE]: {
1040
+ sport: Sport.SOCCER,
1041
+ id: League.GREECE_SUPER_LEAGUE,
1042
+ label: 'Greece Super League',
1043
+ opticOddsName: 'Greece - Super League',
1044
+ provider: Provider.OPTICODDS,
1045
+ scoringType: ScoringType.GOALS,
1046
+ matchResolveType: MatchResolveType.REGULAR,
1047
+ periodType: PeriodType.HALF,
1048
+ isDrawAvailable: true,
1049
+ },
1050
+ [League.INDIA_PREMIER]: {
1051
+ sport: Sport.SOCCER,
1052
+ id: League.INDIA_PREMIER,
1053
+ label: 'India Calcutta Premier Division',
1054
+ opticOddsName: 'India - Calcutta Premier Division',
1055
+ provider: Provider.OPTICODDS,
1056
+ scoringType: ScoringType.GOALS,
1057
+ matchResolveType: MatchResolveType.REGULAR,
1058
+ periodType: PeriodType.HALF,
1059
+ isDrawAvailable: true,
1060
+ },
1061
+ [League.CHINA_SUPER_LEAGUE]: {
1062
+ sport: Sport.SOCCER,
1063
+ id: League.CHINA_SUPER_LEAGUE,
1064
+ label: 'China Super League',
1065
+ opticOddsName: 'China - Super League',
1066
+ provider: Provider.OPTICODDS,
1067
+ scoringType: ScoringType.GOALS,
1068
+ matchResolveType: MatchResolveType.REGULAR,
1069
+ periodType: PeriodType.HALF,
1070
+ isDrawAvailable: true,
1071
+ },
1072
+ [League.AUSTRALIA_A_LEAGUE]: {
1073
+ sport: Sport.SOCCER,
1074
+ id: League.AUSTRALIA_A_LEAGUE,
1075
+ label: 'Australia A-League',
1076
+ opticOddsName: 'Australia - A-League',
1077
+ provider: Provider.OPTICODDS,
1078
+ scoringType: ScoringType.GOALS,
1079
+ matchResolveType: MatchResolveType.REGULAR,
1080
+ periodType: PeriodType.HALF,
1081
+ isDrawAvailable: true,
1082
+ },
1083
+ [League.SWITZERLAND_SUPER_LEAGUE]: {
1084
+ sport: Sport.SOCCER,
1085
+ id: League.SWITZERLAND_SUPER_LEAGUE,
1086
+ label: 'Switzerland Super League',
1087
+ opticOddsName: 'Switzerland - Super League',
1088
+ provider: Provider.OPTICODDS,
1089
+ scoringType: ScoringType.GOALS,
1090
+ matchResolveType: MatchResolveType.REGULAR,
1091
+ periodType: PeriodType.HALF,
1092
+ isDrawAvailable: true,
1093
+ },
1094
+ [League.BUNDESLIGA_2]: {
1095
+ sport: Sport.SOCCER,
1096
+ id: League.BUNDESLIGA_2,
1097
+ label: 'Bundesliga 2',
1098
+ opticOddsName: 'Germany - Bundesliga 2',
1099
+ provider: Provider.OPTICODDS,
1100
+ scoringType: ScoringType.GOALS,
1101
+ matchResolveType: MatchResolveType.REGULAR,
1102
+ periodType: PeriodType.HALF,
1103
+ isDrawAvailable: true,
1104
+ },
1105
+ [League.LA_LIGA_2]: {
1106
+ sport: Sport.SOCCER,
1107
+ id: League.LA_LIGA_2,
1108
+ label: 'La Liga 2',
1109
+ opticOddsName: 'Spain - La Liga 2',
1110
+ provider: Provider.OPTICODDS,
1111
+ scoringType: ScoringType.GOALS,
1112
+ matchResolveType: MatchResolveType.REGULAR,
1113
+ periodType: PeriodType.HALF,
1114
+ isDrawAvailable: true,
1115
+ },
1116
+ [League.SERIE_B]: {
1117
+ sport: Sport.SOCCER,
1118
+ id: League.SERIE_B,
1119
+ label: 'Serie B',
1120
+ opticOddsName: 'Italy - Serie B',
1121
+ provider: Provider.OPTICODDS,
1122
+ scoringType: ScoringType.GOALS,
1123
+ matchResolveType: MatchResolveType.REGULAR,
1124
+ periodType: PeriodType.HALF,
1125
+ isDrawAvailable: true,
1126
+ },
1127
+ [League.INDIA_SUPER_LEAGUE]: {
1128
+ sport: Sport.SOCCER,
1129
+ id: League.INDIA_SUPER_LEAGUE,
1130
+ label: 'India Super League',
1131
+ opticOddsName: 'India - Super League',
1132
+ provider: Provider.OPTICODDS,
1133
+ scoringType: ScoringType.GOALS,
1134
+ matchResolveType: MatchResolveType.REGULAR,
1135
+ periodType: PeriodType.HALF,
1136
+ isDrawAvailable: true,
1137
+ },
1138
+ [League.LIGUE_2]: {
1139
+ sport: Sport.SOCCER,
1140
+ id: League.LIGUE_2,
1141
+ label: 'Ligue 2',
1142
+ opticOddsName: 'France - Ligue 2',
1143
+ provider: Provider.OPTICODDS,
1144
+ scoringType: ScoringType.GOALS,
1145
+ matchResolveType: MatchResolveType.REGULAR,
1146
+ periodType: PeriodType.HALF,
1147
+ isDrawAvailable: true,
1148
+ },
1149
+ [League.AUSTRIA_BUNDESLIGA]: {
1150
+ sport: Sport.SOCCER,
1151
+ id: League.AUSTRIA_BUNDESLIGA,
1152
+ label: 'Austria Bundesliga',
1153
+ opticOddsName: 'Austria - Bundesliga',
1154
+ provider: Provider.OPTICODDS,
1155
+ scoringType: ScoringType.GOALS,
1156
+ matchResolveType: MatchResolveType.REGULAR,
1157
+ periodType: PeriodType.HALF,
1158
+ isDrawAvailable: true,
1159
+ },
1160
+ [League.DENMARK_SUPER_LEAGUE]: {
1161
+ sport: Sport.SOCCER,
1162
+ id: League.DENMARK_SUPER_LEAGUE,
1163
+ label: 'Denmark Superliga',
1164
+ opticOddsName: 'Denmark - Superliga',
1165
+ provider: Provider.OPTICODDS,
1166
+ scoringType: ScoringType.GOALS,
1167
+ matchResolveType: MatchResolveType.REGULAR,
1168
+ periodType: PeriodType.HALF,
1169
+ isDrawAvailable: true,
1170
+ },
1171
+ [League.POLAND_LEAGUE]: {
1172
+ sport: Sport.SOCCER,
1173
+ id: League.POLAND_LEAGUE,
1174
+ label: 'Poland Ekstraklasa',
1175
+ opticOddsName: 'Poland - Ekstraklasa',
1176
+ provider: Provider.OPTICODDS,
1177
+ scoringType: ScoringType.GOALS,
1178
+ matchResolveType: MatchResolveType.REGULAR,
1179
+ periodType: PeriodType.HALF,
1180
+ isDrawAvailable: true,
1181
+ },
1182
+ [League.SWEDEN_LEAGUE]: {
1183
+ sport: Sport.SOCCER,
1184
+ id: League.SWEDEN_LEAGUE,
1185
+ label: 'Sweden Allsvenskan',
1186
+ opticOddsName: 'Sweden - Allsvenskan',
1187
+ provider: Provider.OPTICODDS,
1188
+ scoringType: ScoringType.GOALS,
1189
+ matchResolveType: MatchResolveType.REGULAR,
1190
+ periodType: PeriodType.HALF,
1191
+ isDrawAvailable: true,
1192
+ },
1193
+ [League.COLOMBIA_PRIMERA_A]: {
1194
+ sport: Sport.SOCCER,
1195
+ id: League.COLOMBIA_PRIMERA_A,
1196
+ label: 'Colombia Primera A',
1197
+ opticOddsName: 'Colombia - Primera A',
1198
+ provider: Provider.OPTICODDS,
1199
+ scoringType: ScoringType.GOALS,
1200
+ matchResolveType: MatchResolveType.REGULAR,
1201
+ periodType: PeriodType.HALF,
1202
+ isDrawAvailable: true,
1203
+ },
1204
+ [League.ENGLAND_EFL_CUP]: {
1205
+ sport: Sport.SOCCER,
1206
+ id: League.ENGLAND_EFL_CUP,
1207
+ label: 'England EFL Cup',
1208
+ opticOddsName: 'England - EFL Cup',
1209
+ provider: Provider.OPTICODDS,
1210
+ scoringType: ScoringType.GOALS,
1211
+ matchResolveType: MatchResolveType.REGULAR,
1212
+ periodType: PeriodType.HALF,
1213
+ isDrawAvailable: true,
1214
+ },
1215
+ [League.ENGLAND_LEGAUE_1]: {
1216
+ sport: Sport.SOCCER,
1217
+ id: League.ENGLAND_LEGAUE_1,
1218
+ label: 'England League 1',
1219
+ opticOddsName: 'England - League 1',
1220
+ provider: Provider.OPTICODDS,
1221
+ scoringType: ScoringType.GOALS,
1222
+ matchResolveType: MatchResolveType.REGULAR,
1223
+ periodType: PeriodType.HALF,
1224
+ isDrawAvailable: true,
1225
+ },
1226
+ [League.URUGUAY_PRIMERA_DIVISION]: {
1227
+ sport: Sport.SOCCER,
1228
+ id: League.URUGUAY_PRIMERA_DIVISION,
1229
+ label: 'Uruguay Primera Division',
1230
+ opticOddsName: 'Uruguay - Primera Division',
1231
+ provider: Provider.OPTICODDS,
1232
+ scoringType: ScoringType.GOALS,
1233
+ matchResolveType: MatchResolveType.REGULAR,
1234
+ periodType: PeriodType.HALF,
1235
+ isDrawAvailable: true,
1236
+ },
1237
+ [League.AFC_CHAMPIONS_LEAGUE]: {
1238
+ sport: Sport.SOCCER,
1239
+ id: League.AFC_CHAMPIONS_LEAGUE,
1240
+ label: 'AFC Champions League',
1241
+ opticOddsName: 'AFC - Champions League',
1242
+ provider: Provider.OPTICODDS,
1243
+ scoringType: ScoringType.GOALS,
1244
+ matchResolveType: MatchResolveType.REGULAR,
1245
+ periodType: PeriodType.HALF,
1246
+ isDrawAvailable: true,
1247
+ },
1248
+ [League.ITALY_SUPER_CUP]: {
1249
+ sport: Sport.SOCCER,
1250
+ id: League.ITALY_SUPER_CUP,
1251
+ label: 'Italy Super Cup',
1252
+ opticOddsName: 'Italy - Supercoppa',
1253
+ provider: Provider.OPTICODDS,
1254
+ scoringType: ScoringType.GOALS,
1255
+ matchResolveType: MatchResolveType.REGULAR,
1256
+ periodType: PeriodType.HALF,
1257
+ isDrawAvailable: true,
1258
+ },
1259
+ [League.FRANCE_SUPER_CUP]: {
1260
+ sport: Sport.SOCCER,
1261
+ id: League.FRANCE_SUPER_CUP,
1262
+ label: 'France Super Cup',
1263
+ opticOddsName: 'France - Super Cup',
1264
+ provider: Provider.OPTICODDS,
1265
+ scoringType: ScoringType.GOALS,
1266
+ matchResolveType: MatchResolveType.REGULAR,
1267
+ periodType: PeriodType.HALF,
1268
+ isDrawAvailable: true,
1269
+ },
1270
+ [League.SPAIN_SUPER_CUP]: {
1271
+ sport: Sport.SOCCER,
1272
+ id: League.SPAIN_SUPER_CUP,
1273
+ label: 'Spain Super Cup',
1274
+ opticOddsName: 'Spain - Supercopa',
1275
+ provider: Provider.OPTICODDS,
1276
+ scoringType: ScoringType.GOALS,
1277
+ matchResolveType: MatchResolveType.REGULAR,
1278
+ periodType: PeriodType.HALF,
1279
+ isDrawAvailable: true,
1280
+ },
1281
+ [League.GERMANY_SUPER_CUP]: {
1282
+ sport: Sport.SOCCER,
1283
+ id: League.GERMANY_SUPER_CUP,
1284
+ label: 'Germany Super Cup',
1285
+ opticOddsName: 'Germany - Super Cup',
1286
+ provider: Provider.OPTICODDS,
1287
+ scoringType: ScoringType.GOALS,
1288
+ matchResolveType: MatchResolveType.REGULAR,
1289
+ periodType: PeriodType.HALF,
1290
+ isDrawAvailable: true,
1291
+ },
1292
+ [League.PORTUGAL_LEAGUE_CUP]: {
1293
+ sport: Sport.SOCCER,
1294
+ id: League.PORTUGAL_LEAGUE_CUP,
1295
+ label: 'Portugal League Cup',
1296
+ opticOddsName: 'Portugal - League Cup',
1297
+ provider: Provider.OPTICODDS,
1298
+ scoringType: ScoringType.GOALS,
1299
+ matchResolveType: MatchResolveType.REGULAR,
1300
+ periodType: PeriodType.HALF,
1301
+ isDrawAvailable: true,
1302
+ },
1303
+ [League.THAILAND_LEAGUE_1]: {
1304
+ sport: Sport.SOCCER,
1305
+ id: League.THAILAND_LEAGUE_1,
1306
+ label: 'Thai League 1',
1307
+ opticOddsName: 'Thailand - Thai League 1',
1308
+ provider: Provider.OPTICODDS,
1309
+ scoringType: ScoringType.GOALS,
1310
+ matchResolveType: MatchResolveType.REGULAR,
1311
+ periodType: PeriodType.HALF,
1312
+ isDrawAvailable: true,
1313
+ },
1314
+ [League.NETHERLANDS_CUP]: {
1315
+ sport: Sport.SOCCER,
1316
+ id: League.NETHERLANDS_CUP,
1317
+ label: 'Netherlands KNVB Beker',
1318
+ opticOddsName: 'Netherlands - KNVB Beker',
1319
+ provider: Provider.OPTICODDS,
1320
+ scoringType: ScoringType.GOALS,
1321
+ matchResolveType: MatchResolveType.REGULAR,
1322
+ periodType: PeriodType.HALF,
1323
+ isDrawAvailable: true,
1324
+ },
1325
+ [League.PORTUGAL_CUP]: {
1326
+ sport: Sport.SOCCER,
1327
+ id: League.PORTUGAL_CUP,
1328
+ label: 'Taca de Portugal',
1329
+ opticOddsName: 'Portugal - Taca de Portugal',
1330
+ provider: Provider.OPTICODDS,
1331
+ scoringType: ScoringType.GOALS,
1332
+ matchResolveType: MatchResolveType.REGULAR,
1333
+ periodType: PeriodType.HALF,
1334
+ isDrawAvailable: true,
1335
+ },
1336
+
1337
+ [League.ENGLAND_SUPER_LEAGUE_WOMEN]: {
1338
+ sport: Sport.SOCCER,
1339
+ id: League.ENGLAND_SUPER_LEAGUE_WOMEN,
1340
+ label: "England Women's Super League",
1341
+ opticOddsName: 'England - Womens Super League',
1342
+ provider: Provider.OPTICODDS,
1343
+ scoringType: ScoringType.GOALS,
1344
+ matchResolveType: MatchResolveType.REGULAR,
1345
+ periodType: PeriodType.HALF,
1346
+ isDrawAvailable: true,
1347
+ },
1348
+ [League.ITALY_SERIE_A_WOMEN]: {
1349
+ sport: Sport.SOCCER,
1350
+ id: League.ITALY_SERIE_A_WOMEN,
1351
+ label: 'Italy Serie A Femminile',
1352
+ opticOddsName: 'Italy - Serie A Femminile',
1353
+ provider: Provider.OPTICODDS,
1354
+ scoringType: ScoringType.GOALS,
1355
+ matchResolveType: MatchResolveType.REGULAR,
1356
+ periodType: PeriodType.HALF,
1357
+ isDrawAvailable: true,
1358
+ },
1359
+ [League.FRANCE_PREMIERE_LIGUE_WOMEN]: {
1360
+ sport: Sport.SOCCER,
1361
+ id: League.FRANCE_PREMIERE_LIGUE_WOMEN,
1362
+ label: 'France Premiere Ligue Women',
1363
+ opticOddsName: 'France - Premiere Ligue',
1364
+ provider: Provider.OPTICODDS,
1365
+ scoringType: ScoringType.GOALS,
1366
+ matchResolveType: MatchResolveType.REGULAR,
1367
+ periodType: PeriodType.HALF,
1368
+ isDrawAvailable: true,
1369
+ },
1370
+ [League.GERMANY_BUNDESLIGA_WOMEN]: {
1371
+ sport: Sport.SOCCER,
1372
+ id: League.GERMANY_BUNDESLIGA_WOMEN,
1373
+ label: 'Germany Frauen Bundesliga',
1374
+ opticOddsName: 'Germany - Frauen Bundesliga',
1375
+ provider: Provider.OPTICODDS,
1376
+ scoringType: ScoringType.GOALS,
1377
+ matchResolveType: MatchResolveType.REGULAR,
1378
+ periodType: PeriodType.HALF,
1379
+ isDrawAvailable: true,
1380
+ },
1381
+ [League.SPAIN_LIGA_F_WOMEN]: {
1382
+ sport: Sport.SOCCER,
1383
+ id: League.SPAIN_LIGA_F_WOMEN,
1384
+ label: 'Spain Liga F Women',
1385
+ opticOddsName: 'Spain - Liga F',
1386
+ provider: Provider.OPTICODDS,
1387
+ scoringType: ScoringType.GOALS,
1388
+ matchResolveType: MatchResolveType.REGULAR,
1389
+ periodType: PeriodType.HALF,
1390
+ isDrawAvailable: true,
1391
+ },
1392
+ [League.NETHERLANDS_EREDIVISIE_WOMEN]: {
1393
+ sport: Sport.SOCCER,
1394
+ id: League.NETHERLANDS_EREDIVISIE_WOMEN,
1395
+ label: 'Netherlands Eredivisie Women',
1396
+ opticOddsName: 'Netherlands - Vrouwen Eredivisie',
1397
+ provider: Provider.OPTICODDS,
1398
+ scoringType: ScoringType.GOALS,
1399
+ matchResolveType: MatchResolveType.REGULAR,
1400
+ periodType: PeriodType.HALF,
1401
+ isDrawAvailable: true,
1402
+ },
1403
+ [League.BELGIUM_SUPER_LEAGUE_WOMEN]: {
1404
+ sport: Sport.SOCCER,
1405
+ id: League.BELGIUM_SUPER_LEAGUE_WOMEN,
1406
+ label: "Belgium Women's Super League",
1407
+ opticOddsName: 'Belgium - Womens Super League',
1408
+ provider: Provider.OPTICODDS,
1409
+ scoringType: ScoringType.GOALS,
1410
+ matchResolveType: MatchResolveType.REGULAR,
1411
+ periodType: PeriodType.HALF,
1412
+ isDrawAvailable: true,
1413
+ },
1414
+ [League.UEFA_CHAMPIONS_LEAGUE_WOMEN]: {
1415
+ sport: Sport.SOCCER,
1416
+ id: League.UEFA_CHAMPIONS_LEAGUE_WOMEN,
1417
+ label: 'UEFA Champions League Women',
1418
+ opticOddsName: 'UEFA - Champions League Women',
1419
+ provider: Provider.OPTICODDS,
1420
+ scoringType: ScoringType.GOALS,
1421
+ matchResolveType: MatchResolveType.REGULAR,
1422
+ periodType: PeriodType.HALF,
1423
+ isDrawAvailable: true,
1424
+ },
1425
+ [League.USA_NWSL]: {
1426
+ sport: Sport.SOCCER,
1427
+ id: League.USA_NWSL,
1428
+ label: 'USA NWSL',
1429
+ opticOddsName: 'USA - NWSL',
1430
+ provider: Provider.OPTICODDS,
1431
+ scoringType: ScoringType.GOALS,
1432
+ matchResolveType: MatchResolveType.REGULAR,
1433
+ periodType: PeriodType.HALF,
1434
+ isDrawAvailable: true,
1435
+ },
1436
+ [League.AUSTRALIA_A_LEAGUE_WOMEN]: {
1437
+ sport: Sport.SOCCER,
1438
+ id: League.AUSTRALIA_A_LEAGUE_WOMEN,
1439
+ label: 'Australia A-League Women',
1440
+ opticOddsName: 'Australia - A-League Women',
1441
+ provider: Provider.OPTICODDS,
1442
+ scoringType: ScoringType.GOALS,
1443
+ matchResolveType: MatchResolveType.REGULAR,
1444
+ periodType: PeriodType.HALF,
1445
+ isDrawAvailable: true,
1446
+ },
1447
+ [League.CONCACAF_CHAMPIONS_CUP]: {
1448
+ sport: Sport.SOCCER,
1449
+ id: League.CONCACAF_CHAMPIONS_CUP,
1450
+ label: 'CONCACAF Champions Cup',
1451
+ opticOddsName: 'CONCACAF - Champions Cup',
1452
+ provider: Provider.OPTICODDS,
1453
+ scoringType: ScoringType.GOALS,
1454
+ matchResolveType: MatchResolveType.REGULAR,
1455
+ periodType: PeriodType.HALF,
1456
+ isDrawAvailable: true,
1457
+ },
1458
+ [League.UEFA_NATIONS_LEAGUE_WOMEN]: {
1459
+ sport: Sport.SOCCER,
1460
+ id: League.UEFA_NATIONS_LEAGUE_WOMEN,
1461
+ label: 'UEFA Nations League Women',
1462
+ opticOddsName: 'UEFA - Nations League Women',
1463
+ provider: Provider.OPTICODDS,
1464
+ scoringType: ScoringType.GOALS,
1465
+ matchResolveType: MatchResolveType.REGULAR,
1466
+ periodType: PeriodType.HALF,
1467
+ isDrawAvailable: true,
1468
+ },
1469
+ [League.EUROCUP]: {
1470
+ sport: Sport.BASKETBALL,
1471
+ id: League.EUROCUP,
1472
+ label: 'Eurocup',
1473
+ opticOddsName: 'Eurocup',
1474
+ provider: Provider.OPTICODDS,
1475
+ scoringType: ScoringType.POINTS,
1476
+ matchResolveType: MatchResolveType.OVERTIME,
1477
+ periodType: PeriodType.QUARTER,
1478
+ isDrawAvailable: false,
1479
+ },
1480
+ [League.SPAIN_LIGA_ACB]: {
1481
+ sport: Sport.BASKETBALL,
1482
+ id: League.SPAIN_LIGA_ACB,
1483
+ label: 'Spain Liga ACB',
1484
+ opticOddsName: 'Spain - Liga ACB',
1485
+ provider: Provider.OPTICODDS,
1486
+ scoringType: ScoringType.POINTS,
1487
+ matchResolveType: MatchResolveType.OVERTIME,
1488
+ periodType: PeriodType.QUARTER,
1489
+ isDrawAvailable: false,
1490
+ },
1491
+ [League.ITALY_LEGA_BASKET_SERIE_A]: {
1492
+ sport: Sport.BASKETBALL,
1493
+ id: League.ITALY_LEGA_BASKET_SERIE_A,
1494
+ label: 'Italy Lega Basket Serie A',
1495
+ opticOddsName: 'Italy - Lega Basket Serie A',
1496
+ provider: Provider.OPTICODDS,
1497
+ scoringType: ScoringType.POINTS,
1498
+ matchResolveType: MatchResolveType.OVERTIME,
1499
+ periodType: PeriodType.QUARTER,
1500
+ isDrawAvailable: false,
1501
+ },
1502
+ [League.GERMANY_BBL]: {
1503
+ sport: Sport.BASKETBALL,
1504
+ id: League.GERMANY_BBL,
1505
+ label: 'Germany BBL',
1506
+ opticOddsName: 'Germany - BBL',
1507
+ provider: Provider.OPTICODDS,
1508
+ scoringType: ScoringType.POINTS,
1509
+ matchResolveType: MatchResolveType.OVERTIME,
1510
+ periodType: PeriodType.QUARTER,
1511
+ isDrawAvailable: false,
1512
+ },
1513
+ [League.FRANCE_LNB_PRO_A]: {
1514
+ sport: Sport.BASKETBALL,
1515
+ id: League.FRANCE_LNB_PRO_A,
1516
+ label: 'France LNB Pro A',
1517
+ opticOddsName: 'France - LNB Pro A',
1518
+ provider: Provider.OPTICODDS,
1519
+ scoringType: ScoringType.POINTS,
1520
+ matchResolveType: MatchResolveType.OVERTIME,
1521
+ periodType: PeriodType.QUARTER,
1522
+ isDrawAvailable: false,
1523
+ },
1524
+ [League.CHINA_CBA]: {
1525
+ sport: Sport.BASKETBALL,
1526
+ id: League.CHINA_CBA,
1527
+ label: 'China CBA',
1528
+ opticOddsName: 'China - CBA',
1529
+ provider: Provider.OPTICODDS,
1530
+ scoringType: ScoringType.POINTS,
1531
+ matchResolveType: MatchResolveType.OVERTIME,
1532
+ periodType: PeriodType.QUARTER,
1533
+ isDrawAvailable: false,
1534
+ },
1535
+ [League.AUSTRALIA_NBL]: {
1536
+ sport: Sport.BASKETBALL,
1537
+ id: League.AUSTRALIA_NBL,
1538
+ label: 'Australia NBL',
1539
+ opticOddsName: 'Australia - NBL',
1540
+ provider: Provider.OPTICODDS,
1541
+ scoringType: ScoringType.POINTS,
1542
+ matchResolveType: MatchResolveType.OVERTIME,
1543
+ periodType: PeriodType.QUARTER,
1544
+ isDrawAvailable: false,
1545
+ },
1546
+ [League.NCAAW]: {
1547
+ sport: Sport.BASKETBALL,
1548
+ id: League.NCAAW,
1549
+ label: 'NCAAW',
1550
+ opticOddsName: 'NCAAW',
1551
+ provider: Provider.OPTICODDS,
1552
+ scoringType: ScoringType.POINTS,
1553
+ matchResolveType: MatchResolveType.OVERTIME,
1554
+ periodType: PeriodType.QUARTER,
1555
+ isDrawAvailable: false,
1556
+ },
1557
+ [League.FIBA_AMERICUP_QUALIFIERS]: {
1558
+ sport: Sport.BASKETBALL,
1559
+ id: League.FIBA_AMERICUP_QUALIFIERS,
1560
+ label: 'FIBA Americup Qualifiers',
1561
+ opticOddsName: 'FIBA - Americup Qualifiers',
1562
+ provider: Provider.OPTICODDS,
1563
+ scoringType: ScoringType.POINTS,
1564
+ matchResolveType: MatchResolveType.OVERTIME,
1565
+ periodType: PeriodType.QUARTER,
1566
+ isDrawAvailable: false,
1567
+ },
1568
+ [League.FIBA_ASIA_CUP_QUALIFIERS]: {
1569
+ sport: Sport.BASKETBALL,
1570
+ id: League.FIBA_ASIA_CUP_QUALIFIERS,
1571
+ label: 'FIBA Asia Cup Qualifiers',
1572
+ opticOddsName: 'FIBA - Asia Cup Qualifiers',
1573
+ provider: Provider.OPTICODDS,
1574
+ scoringType: ScoringType.POINTS,
1575
+ matchResolveType: MatchResolveType.OVERTIME,
1576
+ periodType: PeriodType.QUARTER,
1577
+ isDrawAvailable: false,
1578
+ },
1579
+ [League.FIBA_EUROBASKET_QUALIFIERS]: {
1580
+ sport: Sport.BASKETBALL,
1581
+ id: League.FIBA_EUROBASKET_QUALIFIERS,
1582
+ label: 'FIBA Eurobasket Qualifiers',
1583
+ opticOddsName: 'FIBA - Eurobasket Qualifiers',
1584
+ provider: Provider.OPTICODDS,
1585
+ scoringType: ScoringType.POINTS,
1586
+ matchResolveType: MatchResolveType.OVERTIME,
1587
+ periodType: PeriodType.QUARTER,
1588
+ isDrawAvailable: false,
1589
+ },
1590
+ [League.FIBA_WORLD_CUP_QUALIFIERS]: {
1591
+ sport: Sport.BASKETBALL,
1592
+ id: League.FIBA_WORLD_CUP_QUALIFIERS,
1593
+ label: 'FIBA World Cup Qualifiers',
1594
+ opticOddsName: 'FIBA - World Cup Qualifiers',
1595
+ provider: Provider.OPTICODDS,
1596
+ scoringType: ScoringType.POINTS,
1597
+ matchResolveType: MatchResolveType.OVERTIME,
1598
+ periodType: PeriodType.QUARTER,
1599
+ isDrawAvailable: false,
1600
+ },
1601
+ [League.FIBA_AFRO_BASKET_QUALIFIERS]: {
1602
+ sport: Sport.BASKETBALL,
1603
+ id: League.FIBA_AFRO_BASKET_QUALIFIERS,
1604
+ label: 'FIBA AfroBasket Qualifiers',
1605
+ opticOddsName: 'FIBA - AfroBasket Qualifiers',
1606
+ provider: Provider.OPTICODDS,
1607
+ scoringType: ScoringType.POINTS,
1608
+ matchResolveType: MatchResolveType.OVERTIME,
1609
+ periodType: PeriodType.QUARTER,
1610
+ isDrawAvailable: false,
1611
+ },
1612
+ [League.GREECE_A1_LEAGUE]: {
1613
+ sport: Sport.BASKETBALL,
1614
+ id: League.GREECE_A1_LEAGUE,
1615
+ label: 'Greece A1 League',
1616
+ opticOddsName: 'Greece - A1 League',
1617
+ provider: Provider.OPTICODDS,
1618
+ scoringType: ScoringType.POINTS,
1619
+ matchResolveType: MatchResolveType.OVERTIME,
1620
+ periodType: PeriodType.QUARTER,
1621
+ isDrawAvailable: false,
1622
+ },
1623
+ [League.ROCKET_LEAGUE]: {
1624
+ sport: Sport.ESPORTS,
1625
+ id: League.ROCKET_LEAGUE,
1626
+ label: 'Rocket League',
1627
+ opticOddsName: 'Rocket League',
1628
+ provider: Provider.OPTICODDS,
1629
+ scoringType: ScoringType.MAPS,
1630
+ matchResolveType: MatchResolveType.EMPTY,
1631
+ periodType: PeriodType.MAP,
1632
+ isDrawAvailable: false,
1633
+ },
1634
+ [League.CALL_OF_DUTY]: {
1635
+ sport: Sport.ESPORTS,
1636
+ id: League.CALL_OF_DUTY,
1637
+ label: 'Call of Duty',
1638
+ opticOddsName: 'Call of Duty',
1639
+ provider: Provider.OPTICODDS,
1640
+ scoringType: ScoringType.MAPS,
1641
+ matchResolveType: MatchResolveType.EMPTY,
1642
+ periodType: PeriodType.MAP,
1643
+ isDrawAvailable: false,
1644
+ },
1645
+ [League.STARCRAFT]: {
1646
+ sport: Sport.ESPORTS,
1647
+ id: League.STARCRAFT,
1648
+ label: 'Starcraft',
1649
+ opticOddsName: 'Starcraft',
1650
+ provider: Provider.OPTICODDS,
1651
+ scoringType: ScoringType.MAPS,
1652
+ matchResolveType: MatchResolveType.EMPTY,
1653
+ periodType: PeriodType.MAP,
1654
+ isDrawAvailable: false,
1655
+ },
1656
+ [League.VALORANT]: {
1657
+ sport: Sport.ESPORTS,
1658
+ id: League.VALORANT,
1659
+ label: 'Valorant',
1660
+ opticOddsName: 'Valorant',
1661
+ provider: Provider.OPTICODDS,
1662
+ scoringType: ScoringType.MAPS,
1663
+ matchResolveType: MatchResolveType.EMPTY,
1664
+ periodType: PeriodType.MAP,
1665
+ isDrawAvailable: false,
1666
+ },
1667
+ [League.NFL_FUTURES]: {
1668
+ sport: Sport.FUTURES,
1669
+ id: League.NFL_FUTURES,
1670
+ label: 'NFL Futures',
1671
+ provider: Provider.EMPTY,
1672
+ scoringType: ScoringType.EMPTY,
1673
+ matchResolveType: MatchResolveType.EMPTY,
1674
+ periodType: PeriodType.EMPTY,
1675
+ isDrawAvailable: false,
1676
+ },
1677
+ [League.NBA_FUTURES]: {
1678
+ sport: Sport.FUTURES,
1679
+ id: League.NBA_FUTURES,
1680
+ label: 'NBA Futures',
1681
+ provider: Provider.EMPTY,
1682
+ scoringType: ScoringType.EMPTY,
1683
+ matchResolveType: MatchResolveType.EMPTY,
1684
+ periodType: PeriodType.EMPTY,
1685
+ isDrawAvailable: false,
1686
+ },
1687
+ [League.NCAAB_FUTURES]: {
1688
+ sport: Sport.FUTURES,
1689
+ id: League.NCAAB_FUTURES,
1690
+ label: 'NCAAB Futures',
1691
+ provider: Provider.EMPTY,
1692
+ scoringType: ScoringType.EMPTY,
1693
+ matchResolveType: MatchResolveType.EMPTY,
1694
+ periodType: PeriodType.EMPTY,
1695
+ isDrawAvailable: false,
1696
+ },
1697
+ [League.NHL_FUTURES]: {
1698
+ sport: Sport.FUTURES,
1699
+ id: League.NHL_FUTURES,
1700
+ label: 'NHL Futures',
1701
+ provider: Provider.EMPTY,
1702
+ scoringType: ScoringType.EMPTY,
1703
+ matchResolveType: MatchResolveType.EMPTY,
1704
+ periodType: PeriodType.EMPTY,
1705
+ isDrawAvailable: false,
1706
+ },
1707
+ [League.EPL_FUTURES]: {
1708
+ sport: Sport.FUTURES,
1709
+ id: League.EPL_FUTURES,
1710
+ label: 'EPL Futures',
1711
+ provider: Provider.EMPTY,
1712
+ scoringType: ScoringType.EMPTY,
1713
+ matchResolveType: MatchResolveType.EMPTY,
1714
+ periodType: PeriodType.EMPTY,
1715
+ isDrawAvailable: false,
1716
+ },
1717
+ [League.LIGUE_ONE_FUTURES]: {
1718
+ sport: Sport.FUTURES,
1719
+ id: League.LIGUE_ONE_FUTURES,
1720
+ label: 'Ligue 1 Futures',
1721
+ provider: Provider.EMPTY,
1722
+ scoringType: ScoringType.EMPTY,
1723
+ matchResolveType: MatchResolveType.EMPTY,
1724
+ periodType: PeriodType.EMPTY,
1725
+ isDrawAvailable: false,
1726
+ },
1727
+ [League.BUNDESLIGA_FUTURES]: {
1728
+ sport: Sport.FUTURES,
1729
+ id: League.BUNDESLIGA_FUTURES,
1730
+ label: 'Bundesliga Futures',
1731
+ provider: Provider.EMPTY,
1732
+ scoringType: ScoringType.EMPTY,
1733
+ matchResolveType: MatchResolveType.EMPTY,
1734
+ periodType: PeriodType.EMPTY,
1735
+ isDrawAvailable: false,
1736
+ },
1737
+ [League.LA_LIGA_FUTURES]: {
1738
+ sport: Sport.FUTURES,
1739
+ id: League.LA_LIGA_FUTURES,
1740
+ label: 'La Liga',
1741
+ provider: Provider.EMPTY,
1742
+ scoringType: ScoringType.EMPTY,
1743
+ matchResolveType: MatchResolveType.EMPTY,
1744
+ periodType: PeriodType.EMPTY,
1745
+ isDrawAvailable: false,
1746
+ },
1747
+ [League.SERIE_A_FUTURES]: {
1748
+ sport: Sport.FUTURES,
1749
+ id: League.SERIE_A_FUTURES,
1750
+ label: 'Serie A Futures',
1751
+ provider: Provider.EMPTY,
1752
+ scoringType: ScoringType.EMPTY,
1753
+ matchResolveType: MatchResolveType.EMPTY,
1754
+ periodType: PeriodType.EMPTY,
1755
+ isDrawAvailable: false,
1756
+ },
1757
+ [League.UEFA_CHAMPIONS_LEAGUE_FUTURES]: {
1758
+ sport: Sport.FUTURES,
1759
+ id: League.UEFA_CHAMPIONS_LEAGUE_FUTURES,
1760
+ label: 'UEFA Champions League Futures',
1761
+ provider: Provider.EMPTY,
1762
+ scoringType: ScoringType.EMPTY,
1763
+ matchResolveType: MatchResolveType.EMPTY,
1764
+ periodType: PeriodType.EMPTY,
1765
+ isDrawAvailable: false,
1766
+ },
1767
+ [League.ATP_FUTURES]: {
1768
+ sport: Sport.FUTURES,
1769
+ id: League.ATP_FUTURES,
1770
+ label: 'ATP Futures',
1771
+ provider: Provider.EMPTY,
1772
+ scoringType: ScoringType.EMPTY,
1773
+ matchResolveType: MatchResolveType.EMPTY,
1774
+ periodType: PeriodType.EMPTY,
1775
+ isDrawAvailable: false,
1776
+ },
1777
+ [League.EUROLEAGUE_FUTURES]: {
1778
+ sport: Sport.FUTURES,
1779
+ id: League.EUROLEAGUE_FUTURES,
1780
+ label: 'Euroleague Futures',
1781
+ provider: Provider.EMPTY,
1782
+ scoringType: ScoringType.EMPTY,
1783
+ matchResolveType: MatchResolveType.EMPTY,
1784
+ periodType: PeriodType.EMPTY,
1785
+ isDrawAvailable: false,
1786
+ },
1787
+ [League.GOLF_H2H]: {
1788
+ sport: Sport.GOLF,
1789
+ id: League.GOLF_H2H,
1790
+ label: 'Golf head-to-head',
1791
+ provider: Provider.EMPTY,
1792
+ scoringType: ScoringType.EMPTY,
1793
+ matchResolveType: MatchResolveType.EMPTY,
1794
+ periodType: PeriodType.EMPTY,
1795
+ isDrawAvailable: false,
1796
+ },
1797
+ [League.GOLF_WINNER]: {
1798
+ sport: Sport.GOLF,
1799
+ id: League.GOLF_WINNER,
1800
+ label: 'Golf Tournament Winner',
1801
+ provider: Provider.EMPTY,
1802
+ scoringType: ScoringType.EMPTY,
1803
+ matchResolveType: MatchResolveType.EMPTY,
1804
+ periodType: PeriodType.EMPTY,
1805
+ isDrawAvailable: false,
1806
+ },
1807
+ };
1808
+
1809
+ export const LEAGUES_NO_FORMAL_HOME_AWAY = [
1810
+ League.CSGO,
1811
+ League.DOTA2,
1812
+ League.LOL,
1813
+ League.VALORANT,
1814
+ League.ROCKET_LEAGUE,
1815
+ League.CALL_OF_DUTY,
1816
+ League.STARCRAFT,
1817
+ League.TENNIS_GS,
1818
+ League.TENNIS_MASTERS,
1819
+ League.SUMMER_OLYMPICS_TENNIS,
1820
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_0,
1821
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_1,
1822
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_2,
1823
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_3,
1824
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_4,
1825
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_5,
1826
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_6,
1827
+ League.TENNIS_ATP_GRAND_SLAM_LIVE_MAPPING_V2_7,
1828
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_0,
1829
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_1,
1830
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_2,
1831
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_3,
1832
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_4,
1833
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_5,
1834
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_6,
1835
+ League.TENNIS_WTA_GRAND_SLAM_LIVE_MAPPING_V2_7,
1836
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_1,
1837
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_2,
1838
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_3,
1839
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_4,
1840
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_5,
1841
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_6,
1842
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_7,
1843
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_8,
1844
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_9,
1845
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_10,
1846
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_11,
1847
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_12,
1848
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_13,
1849
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_14,
1850
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_15,
1851
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_16,
1852
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_17,
1853
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_18,
1854
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_19,
1855
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_20,
1856
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_21,
1857
+ League.TENNIS_MASTERS_LIVE_MAPPING_V2_22,
1858
+ League.TENNIS_WTA_LIVE_MAPPING_V2_1,
1859
+ League.TENNIS_WTA_LIVE_MAPPING_V2_2,
1860
+ League.TENNIS_WTA_LIVE_MAPPING_V2_3,
1861
+ League.TENNIS_WTA_LIVE_MAPPING_V2_4,
1862
+ League.TENNIS_WTA_LIVE_MAPPING_V2_5,
1863
+ League.TENNIS_WTA_LIVE_MAPPING_V2_6,
1864
+ League.TENNIS_WTA_LIVE_MAPPING_V2_7,
1865
+ League.TENNIS_WTA_LIVE_MAPPING_V2_8,
1866
+ League.TENNIS_WTA_LIVE_MAPPING_V2_9,
1867
+ League.TENNIS_WTA_LIVE_MAPPING_V2_10,
1868
+ League.TENNIS_WTA_LIVE_MAPPING_V2_11,
1869
+ League.TENNIS_WTA_LIVE_MAPPING_V2_12,
1870
+ League.TENNIS_WTA_LIVE_MAPPING_V2_13,
1871
+ League.TENNIS_WTA_LIVE_MAPPING_V2_14,
1872
+ League.TENNIS_WTA_LIVE_MAPPING_V2_15,
1873
+ League.TENNIS_WTA_LIVE_MAPPING_V2_16,
1874
+ League.TENNIS_WTA_LIVE_MAPPING_V2_17,
1875
+ League.TENNIS_WTA_LIVE_MAPPING_V2_18,
1876
+ League.TENNIS_WTA_LIVE_MAPPING_V2_19,
1877
+ League.TENNIS_WTA_LIVE_MAPPING_V2_20,
1878
+ League.TENNIS_WTA_LIVE_MAPPING_V2_21,
1879
+ League.TENNIS_WTA_LIVE_MAPPING_V2_22,
1880
+ League.TENNIS_WTA_LIVE_MAPPING_V2_23,
1881
+ ];
1882
+
1883
+ export const LEAGUES_NO_LIVE_CONSTRAINTS = [League.SUMMER_OLYMPICS_RUGBY, League.SUMMER_OLYMPICS_RUGBY_WOMEN];
1884
+
1885
+ export const AMERICAN_LEAGUES = [
1886
+ League.NCAAF,
1887
+ League.NFL,
1888
+ League.MLB,
1889
+ League.NBA,
1890
+ League.NCAAB,
1891
+ League.NHL,
1892
+ League.WNBA,
1893
+ League.MLS,
1894
+ League.IPL,
1895
+ League.T20_BLAST,
1896
+ ];
1897
+
1898
+ export const UFC_LEAGUE_IDS = [701, 702, 703, 704];
1899
+
1900
+ export const LeagueIdMapRundown = {
1901
+ 1: 1, // NCAAF
1902
+ 2: 2, // NFL
1903
+ 3: 3, // MLB
1904
+ 4: 4, // NBA
1905
+ 5: 5, // NCAAB
1906
+ 6: 6, // NHL
1907
+ 7: 7, // UFC
1908
+ 8: 8, // WNBA
1909
+ 10: 10, // MLS
1910
+ 11: 11, // EPL
1911
+ 12: 12, // France League 1
1912
+ 13: 13, // Bundesliga
1913
+ 14: 14, // La Liga
1914
+ 15: 15, // Seria A
1915
+ 16: 16, // Champions League
1916
+ 17: 17, // Europa League
1917
+ 18: 18, // FIFA WC
1918
+ 19: 19, // J1
1919
+ 20: 20, // IPL
1920
+ 21: 21, // T20
1921
+ };
1922
+
1923
+ export const LeagueIdMapEnetpulse = {
1924
+ 320: 18, // Hockey Norway
1925
+ 6: 24, // NHL
1926
+ 33: 33, // Hockey World Championship
1927
+ 16: 42, // Champions League
1928
+ 44: 44, // Copa America
1929
+ 45: 45, // Copa Libertadores
1930
+ 11: 47, // EPL
1931
+ 50: 50, // UEFA EURO
1932
+ 12: 53, // France League 1
1933
+ 13: 54, // Bundesliga
1934
+ 15: 55, // Seria A
1935
+ 57: 57, // Netherlands League 1
1936
+ 61: 61, // Portugal League 1
1937
+ 65: 65, // Summer Olympics Soccer Women
1938
+ 66: 66, // Summer Olympics Soccer
1939
+ 17: 73, // Europa League
1940
+ 76: 76, // World Cup Woman
1941
+ 14: 87, // La Liga
1942
+ 152: 152, // Tennis WTA
1943
+ 153: 153, // Tennis GS
1944
+ 156: 156, // Tennis Masters 1000
1945
+ 158: 158, // Summer Olympics Tennnis
1946
+ 132: 132, // FA Cup
1947
+ 134: 134, // Coupe de France
1948
+ 138: 138, // Copa del Rey
1949
+ 141: 141, // Coppa Italia
1950
+ 209: 209, // DFB Pokal
1951
+ 230: 230, // LIGA MX
1952
+ 268: 268, // Brazil Football League
1953
+ 288: 288, // EURO U21
1954
+ 296: 296, // FIFA WC U20
1955
+ 310: 310, // Hockey Czech
1956
+ 319: 319, // Hockey Finland
1957
+ 322: 322, // Hockey Germany
1958
+ 327: 327, // Hockey Switzerland
1959
+ 380: 380, // Summer Olympics Handball Women
1960
+ 381: 381, // Summer Olympics Handball
1961
+ 399: 399, // EuroLeague
1962
+ 406: 406, // Summer Olympics Basketball
1963
+ 407: 407, // Summer Olympics Basketball Women
1964
+ 409: 409, // FIBA World Cup
1965
+ 445: 445, // F1
1966
+ 453: 453, // Summer Olympics Beach Voleyball Women
1967
+ 454: 454, // Summer Olympics Beach Voleyball
1968
+ 497: 497, // Moto GP
1969
+ 536: 536, // Saudi Arabia Football League
1970
+ 8881: 8881, // Summer Olympics Water Polo
1971
+ 8893: 8893, // Summer Olympics Voleyball Women
1972
+ 8894: 8894, // Summer Olympics Voleyball
1973
+ 8910: 8910, // Summer Olympics Table Tennnis
1974
+ 9196: 9196, // Boxing
1975
+ 9578: 9578, // Summer Olympics Rugby
1976
+ 9588: 9588, // Summer Olympics Rugby Women
1977
+ 9698: 9698, // Summer Olympics Hockey Women
1978
+ 9699: 9699, // Summer Olympics Hockey
1979
+ 9806: 9806, // UEFA League of Nations
1980
+ 9821: 9821, // CONCACAF League of Nations
1981
+ 9977: 9977, // CsGo
1982
+ 9983: 9983, // Dota
1983
+ 10071: 10071, // Summer Olympics Basketball 3x3
1984
+ 10072: 10072, // Summer Olympics Basketball 3x3 Women
1985
+ 10502: 10502, // Summer Olympics Basketball Qualification
1986
+ 10138: 10138, // LOL
1987
+ 10199: 10199, // World Cup Qualifications CONMBOL
1988
+ 10216: 10216, // Europa Conference League
1989
+ 10595: 10595, // Non-Title Boxing
1990
+ 10611: 10611, // Champions League Qualification
1991
+ 10613: 10613, // Europa League Qualification
1992
+ 10615: 10615, // Conference League Qualification
1993
+ };
1994
+
1995
+ export const LeagueIdMapOpticOdds = {
1996
+ 1: 'NCAAF',
1997
+ 2: 'NFL',
1998
+ 3: 'MLB',
1999
+ 4: 'NBA',
2000
+ 5: 'NCAAB',
2001
+ 6: 'NHL',
2002
+ 7: 'UFC',
2003
+ 8: 'WNBA',
2004
+ 10: 'USA - Major League Soccer',
2005
+ 11: 'England - Premier League',
2006
+ 12: 'France - Ligue 1',
2007
+ 13: 'Germany - Bundesliga',
2008
+ 14: 'Spain - La Liga',
2009
+ 15: 'Italy - Serie A',
2010
+ 16: 'UEFA - Champions League',
2011
+ 17: 'UEFA - Europa League',
2012
+ 18: 'FIFA - World Cup Qualifiers',
2013
+ 19: 'Japan - J1 League',
2014
+ 45: 'CONMEBOL - Copa Libertadores',
2015
+ 57: 'Netherlands - Eredivisie',
2016
+ 61: 'Portugal - Primeira Liga',
2017
+ 132: 'England - FA Cup',
2018
+ 134: 'France - Coupe de France',
2019
+ 138: 'Spain - Copa del Rey',
2020
+ 152: 'WTA',
2021
+ 156: 'ATP',
2022
+ 141: 'Italy - Coppa Italia',
2023
+ 209: 'Germany - DFB Pokal',
2024
+ 230: 'Mexico - Liga MX',
2025
+ 268: 'Brazil - Serie A',
2026
+ 310: 'Czech Republic - Extraliga',
2027
+ 319: 'Finland - SM Liiga',
2028
+ 321: 'Russia - KHL',
2029
+ 322: 'Germany - DEL',
2030
+ 323: 'Austria - Ice Hockey League',
2031
+ 324: 'Sweden - SHL',
2032
+ 327: 'Switzerland - National League',
2033
+ 399: 'Euroleague',
2034
+ 536: 'Saudi Arabia - Saudi League',
2035
+ 9806: 'UEFA - Nations League',
2036
+ 9977: 'CS2',
2037
+ 9983: 'Dota 2',
2038
+ 10138: 'League of Legends',
2039
+ 10216: 'UEFA - Europa Conference League',
2040
+ 20001: 'UEFA - Super Cup',
2041
+ 20002: 'Brazil - Copa do Brasil',
2042
+ 20011: 'England - Championship',
2043
+ 20101: 'Scotland - Premiership',
2044
+ 20102: 'Belgium - Jupiler Pro League',
2045
+ 20103: 'Czech Republic - FNL',
2046
+ 20104: 'Chile - Primera Division',
2047
+ 20105: 'Finland - Veikkausliiga',
2048
+ 20106: 'Argentina - Primera Division',
2049
+ 20107: 'Russia - Premier League',
2050
+ 20108: 'Turkey - Super Lig',
2051
+ 20109: 'Serbia - Super Liga',
2052
+ 20110: 'Greece - Super League',
2053
+ 20111: 'India - Calcutta Premier Division',
2054
+ 20112: 'China - Super League',
2055
+ 20113: 'Australia - A-League',
2056
+ 20114: 'Switzerland - Super League',
2057
+ 20115: 'Germany - Bundesliga 2',
2058
+ 20116: 'Spain - La Liga 2',
2059
+ 20117: 'Italy - Serie B',
2060
+ 20118: 'India - Super League',
2061
+ 20119: 'France - Ligue 2',
2062
+ 20120: 'Austria - Bundesliga',
2063
+ 20121: 'Denmark - Superliga',
2064
+ 20122: 'Poland - Ekstraklasa',
2065
+ 20123: 'Sweden - Allsvenskan',
2066
+ 20124: 'Colombia - Primera A',
2067
+ 20125: 'England - EFL Cup',
2068
+ 20126: 'England - League 1',
2069
+ 20127: 'Uruguay - Primera Division',
2070
+ 20128: 'AFC - Champions League',
2071
+ 20129: 'Italy - Supercoppa',
2072
+ 20130: 'France - Super Cup',
2073
+ 20131: 'Spain - Supercopa',
2074
+ 20132: 'Germany - Super Cup',
2075
+ 20133: 'Portugal - League Cup',
2076
+ 20134: 'Thailand - Thai League 1',
2077
+ 20135: 'Netherlands - KNVB Beker',
2078
+ 20136: 'Portugal - Taca de Portugal',
2079
+ 20137: 'England - Womens Super League',
2080
+ 20138: 'Italy - Serie A Femminile',
2081
+ 20139: 'France - Premiere Ligue',
2082
+ 20140: 'Germany - Frauen Bundesliga',
2083
+ 20141: 'Spain - Liga F',
2084
+ 20142: 'Netherlands - Vrouwen Eredivisie',
2085
+ 20143: 'Belgium - Womens Super League',
2086
+ 20144: 'UEFA - Champions League Women',
2087
+ 20145: 'USA - NWSL',
2088
+ 20146: 'Australia - A-League Women',
2089
+ 20147: 'CONCACAF - Champions Cup',
2090
+ 20148: 'UEFA - Nations League Women',
2091
+ 20200: 'Eurocup',
2092
+ 20201: 'Spain - Liga ACB',
2093
+ 20202: 'Italy - Lega Basket Serie A',
2094
+ 20203: 'Germany - BBL',
2095
+ 20204: 'France - LNB Pro A',
2096
+ 20205: 'China - CBA',
2097
+ 20206: 'Australia - NBL',
2098
+ 20211: 'NCAAW',
2099
+ 20212: 'FIBA - Americup Qualifiers',
2100
+ 20213: 'FIBA - Asia Cup Qualifiers',
2101
+ 20214: 'FIBA - Eurobasket Qualifiers',
2102
+ 20215: 'FIBA - World Cup Qualifiers',
2103
+ 20216: 'FIBA - AfroBasket Qualifiers',
2104
+ 20217: 'Greece - A1 League',
2105
+ 20297: 'Rocket League',
2106
+ 20298: 'Call of Duty',
2107
+ 20299: 'Starcraft',
2108
+ 20300: 'Valorant',
2109
+ };