overtime-utils 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.js +1 -1
- package/package.json +1 -1
- package/src/constants/sports.ts +322 -1
- package/src/enums/sports.ts +8 -0
- package/src/types/sports.ts +3 -1
- package/src/utils/markets.ts +40 -0
package/src/constants/sports.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { League, MatchResolveType, PeriodType, ScoringType, Sport } from '../enums/sports';
|
|
1
|
+
import { League, MatchResolveType, PeriodType, Provider, ScoringType, Sport } from '../enums/sports';
|
|
2
2
|
import { LeagueInfo } from '../types/sports';
|
|
3
3
|
|
|
4
4
|
export const LeagueMap: Record<League, LeagueInfo> = {
|
|
@@ -6,6 +6,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
6
6
|
sport: Sport.FOOTBALL,
|
|
7
7
|
id: League.NCAAF,
|
|
8
8
|
label: 'NCAA Football',
|
|
9
|
+
opticOddsName: 'NCAAF',
|
|
10
|
+
provider: Provider.OPTICODDS,
|
|
9
11
|
logo: `/logos/leagueLogos/ncaa.webp`,
|
|
10
12
|
logoClass: 'icon-homepage league--ncaa',
|
|
11
13
|
scoringType: ScoringType.POINTS,
|
|
@@ -19,6 +21,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
19
21
|
sport: Sport.FOOTBALL,
|
|
20
22
|
id: League.NFL,
|
|
21
23
|
label: 'NFL',
|
|
24
|
+
opticOddsName: 'NFL',
|
|
25
|
+
provider: Provider.OPTICODDS,
|
|
22
26
|
logo: `/logos/leagueLogos/nfl.webp`,
|
|
23
27
|
logoClass: 'icon-homepage league--nfl',
|
|
24
28
|
scoringType: ScoringType.POINTS,
|
|
@@ -32,6 +36,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
32
36
|
sport: Sport.BASEBALL,
|
|
33
37
|
id: League.MLB,
|
|
34
38
|
label: 'MLB',
|
|
39
|
+
opticOddsName: 'MLB',
|
|
40
|
+
provider: Provider.OPTICODDS,
|
|
35
41
|
logo: `/logos/leagueLogos/mlb.webp`,
|
|
36
42
|
logoClass: 'icon-homepage league--mlb',
|
|
37
43
|
scoringType: ScoringType.POINTS,
|
|
@@ -45,6 +51,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
45
51
|
sport: Sport.BASKETBALL,
|
|
46
52
|
id: League.NBA,
|
|
47
53
|
label: 'NBA',
|
|
54
|
+
opticOddsName: 'NBA',
|
|
55
|
+
provider: Provider.OPTICODDS,
|
|
48
56
|
logo: `/logos/leagueLogos/nba.webp`,
|
|
49
57
|
logoClass: 'icon-homepage league--nba',
|
|
50
58
|
scoringType: ScoringType.POINTS,
|
|
@@ -58,6 +66,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
58
66
|
sport: Sport.BASKETBALL,
|
|
59
67
|
id: League.NCAAB,
|
|
60
68
|
label: 'NCAA Basketball',
|
|
69
|
+
opticOddsName: 'NCAAB',
|
|
70
|
+
provider: Provider.OPTICODDS,
|
|
61
71
|
logoClass: 'icon-homepage league--ncaa',
|
|
62
72
|
scoringType: ScoringType.POINTS,
|
|
63
73
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
@@ -70,6 +80,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
70
80
|
sport: Sport.HOCKEY,
|
|
71
81
|
id: League.NHL,
|
|
72
82
|
label: 'NHL',
|
|
83
|
+
opticOddsName: 'NHL',
|
|
84
|
+
provider: Provider.OPTICODDS,
|
|
73
85
|
logo: `/logos/leagueLogos/nhl.webp`,
|
|
74
86
|
logoClass: 'icon-homepage league--nhl',
|
|
75
87
|
scoringType: ScoringType.GOALS,
|
|
@@ -83,6 +95,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
83
95
|
sport: Sport.FIGHTING,
|
|
84
96
|
id: League.UFC,
|
|
85
97
|
label: 'UFC',
|
|
98
|
+
provider: Provider.OPTICODDS,
|
|
86
99
|
logo: '/logos/leagueLogos/ufc.webp',
|
|
87
100
|
logoClass: 'icon-homepage league--ufc',
|
|
88
101
|
scoringType: ScoringType.ROUNDS,
|
|
@@ -96,6 +109,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
96
109
|
sport: Sport.BASKETBALL,
|
|
97
110
|
id: League.WNBA,
|
|
98
111
|
label: 'WNBA',
|
|
112
|
+
opticOddsName: 'WNBA',
|
|
113
|
+
provider: Provider.OPTICODDS,
|
|
99
114
|
logoClass: 'icon-homepage league--wnba',
|
|
100
115
|
scoringType: ScoringType.POINTS,
|
|
101
116
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
@@ -108,6 +123,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
108
123
|
sport: Sport.SOCCER,
|
|
109
124
|
id: League.MLS,
|
|
110
125
|
label: 'MLS',
|
|
126
|
+
opticOddsName: 'USA - Major League Soccer',
|
|
127
|
+
provider: Provider.OPTICODDS,
|
|
111
128
|
logo: `/logos/leagueLogos/mls.webp`,
|
|
112
129
|
logoClass: 'icon-homepage league--mls',
|
|
113
130
|
scoringType: ScoringType.GOALS,
|
|
@@ -121,6 +138,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
121
138
|
sport: Sport.SOCCER,
|
|
122
139
|
id: League.EPL,
|
|
123
140
|
label: 'EPL',
|
|
141
|
+
opticOddsName: 'England - Premier League',
|
|
142
|
+
provider: Provider.OPTICODDS,
|
|
124
143
|
logo: `/logos/leagueLogos/EPL.webp`,
|
|
125
144
|
logoClass: 'icon-homepage league--epl',
|
|
126
145
|
scoringType: ScoringType.GOALS,
|
|
@@ -134,6 +153,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
134
153
|
sport: Sport.SOCCER,
|
|
135
154
|
id: League.LIGUE_ONE,
|
|
136
155
|
label: 'Ligue 1',
|
|
156
|
+
opticOddsName: 'France - Ligue 1',
|
|
157
|
+
provider: Provider.OPTICODDS,
|
|
137
158
|
logo: `/logos/leagueLogos/Ligue1.webp`,
|
|
138
159
|
logoClass: 'icon-homepage league--ligue1',
|
|
139
160
|
scoringType: ScoringType.GOALS,
|
|
@@ -147,6 +168,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
147
168
|
sport: Sport.SOCCER,
|
|
148
169
|
id: League.BUNDESLIGA,
|
|
149
170
|
label: 'Bundesliga',
|
|
171
|
+
opticOddsName: 'Germany - Bundesliga',
|
|
172
|
+
provider: Provider.OPTICODDS,
|
|
150
173
|
logo: '/logos/leagueLogos/bundesliga.webp',
|
|
151
174
|
logoClass: 'icon-homepage league--bundesliga',
|
|
152
175
|
scoringType: ScoringType.GOALS,
|
|
@@ -160,6 +183,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
160
183
|
sport: Sport.SOCCER,
|
|
161
184
|
id: League.LA_LIGA,
|
|
162
185
|
label: 'La Liga',
|
|
186
|
+
opticOddsName: 'Spain - La Liga',
|
|
187
|
+
provider: Provider.OPTICODDS,
|
|
163
188
|
logo: `/logos/leagueLogos/LaLiga.webp`,
|
|
164
189
|
logoClass: 'icon-homepage league--la-liga',
|
|
165
190
|
scoringType: ScoringType.GOALS,
|
|
@@ -173,6 +198,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
173
198
|
sport: Sport.SOCCER,
|
|
174
199
|
id: League.SERIE_A,
|
|
175
200
|
label: 'Serie A',
|
|
201
|
+
opticOddsName: 'Italy - Serie A',
|
|
202
|
+
provider: Provider.OPTICODDS,
|
|
176
203
|
logo: `/logos/leagueLogos/seriea.webp`,
|
|
177
204
|
logoClass: 'icon-homepage league--serie-a',
|
|
178
205
|
scoringType: ScoringType.GOALS,
|
|
@@ -186,6 +213,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
186
213
|
sport: Sport.SOCCER,
|
|
187
214
|
id: League.UEFA_CL,
|
|
188
215
|
label: 'UEFA Champions League',
|
|
216
|
+
opticOddsName: 'UEFA - Champions League',
|
|
217
|
+
provider: Provider.OPTICODDS,
|
|
189
218
|
logo: `/logos/leagueLogos/ucl-white.webp`,
|
|
190
219
|
logoClass: 'icon-homepage league--ucl',
|
|
191
220
|
scoringType: ScoringType.GOALS,
|
|
@@ -200,6 +229,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
200
229
|
sport: Sport.SOCCER,
|
|
201
230
|
id: League.UEFA_EL,
|
|
202
231
|
label: 'UEFA Europa League',
|
|
232
|
+
opticOddsName: 'UEFA - Europa League',
|
|
233
|
+
provider: Provider.OPTICODDS,
|
|
203
234
|
logoClass: 'icon-homepage league--uel',
|
|
204
235
|
scoringType: ScoringType.GOALS,
|
|
205
236
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -213,6 +244,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
213
244
|
sport: Sport.SOCCER,
|
|
214
245
|
id: League.FIFA_WC,
|
|
215
246
|
label: 'FIFA World Cup Qualifiers',
|
|
247
|
+
opticOddsName: 'FIFA - World Cup Qualifiers',
|
|
248
|
+
provider: Provider.OPTICODDS,
|
|
216
249
|
logoClass: 'icon-homepage league--fifa-world-cup',
|
|
217
250
|
scoringType: ScoringType.GOALS,
|
|
218
251
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -226,6 +259,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
226
259
|
sport: Sport.SOCCER,
|
|
227
260
|
id: League.J1_LEAGUE,
|
|
228
261
|
label: 'J1 League',
|
|
262
|
+
opticOddsName: 'Japan - J1 League',
|
|
263
|
+
provider: Provider.OPTICODDS,
|
|
229
264
|
logoClass: 'icon-homepage league--j1',
|
|
230
265
|
scoringType: ScoringType.GOALS,
|
|
231
266
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -238,6 +273,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
238
273
|
sport: Sport.CRICKET,
|
|
239
274
|
id: League.IPL,
|
|
240
275
|
label: 'Indian Premier League',
|
|
276
|
+
provider: Provider.EMPTY,
|
|
241
277
|
logoClass: 'icon-homepage league--ipl',
|
|
242
278
|
scoringType: ScoringType.POINTS,
|
|
243
279
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -250,6 +286,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
250
286
|
sport: Sport.CRICKET,
|
|
251
287
|
id: League.T20_BLAST,
|
|
252
288
|
label: 'T20 Blast',
|
|
289
|
+
provider: Provider.EMPTY,
|
|
253
290
|
logoClass: 'icon-homepage league--t20',
|
|
254
291
|
scoringType: ScoringType.POINTS,
|
|
255
292
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -262,6 +299,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
262
299
|
sport: Sport.HOCKEY,
|
|
263
300
|
id: League.IIHF_WORLD_CHAMPIONSHIP,
|
|
264
301
|
label: 'IIHF World Championship',
|
|
302
|
+
provider: Provider.EMPTY,
|
|
265
303
|
logoClass: 'icon-homepage league--iihf',
|
|
266
304
|
scoringType: ScoringType.GOALS,
|
|
267
305
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -275,6 +313,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
275
313
|
sport: Sport.SOCCER,
|
|
276
314
|
id: League.COPA_AMERICA,
|
|
277
315
|
label: 'Copa America 2024',
|
|
316
|
+
opticOddsName: 'CONMEBOL - Copa America',
|
|
317
|
+
provider: Provider.EMPTY,
|
|
278
318
|
scoringType: ScoringType.GOALS,
|
|
279
319
|
matchResolveType: MatchResolveType.REGULAR,
|
|
280
320
|
periodType: PeriodType.HALF,
|
|
@@ -286,6 +326,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
286
326
|
sport: Sport.SOCCER,
|
|
287
327
|
id: League.COPA_LIBERTADORES,
|
|
288
328
|
label: 'Copa Libertadores',
|
|
329
|
+
opticOddsName: 'CONMEBOL - Copa Libertadores',
|
|
330
|
+
provider: Provider.OPTICODDS,
|
|
289
331
|
logoClass: 'icon-homepage league--copa-libertadores',
|
|
290
332
|
scoringType: ScoringType.GOALS,
|
|
291
333
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -298,6 +340,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
298
340
|
sport: Sport.SOCCER,
|
|
299
341
|
id: League.UEFA_EURO,
|
|
300
342
|
label: 'UEFA EURO 2024',
|
|
343
|
+
opticOddsName: 'UEFA - European Championship',
|
|
344
|
+
provider: Provider.EMPTY,
|
|
301
345
|
logoClass: 'icon-homepage league--uefa',
|
|
302
346
|
scoringType: ScoringType.GOALS,
|
|
303
347
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -311,6 +355,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
311
355
|
sport: Sport.SOCCER,
|
|
312
356
|
id: League.EREDIVISIE,
|
|
313
357
|
label: 'Eredivisie',
|
|
358
|
+
opticOddsName: 'Netherlands - Eredivisie',
|
|
359
|
+
provider: Provider.OPTICODDS,
|
|
314
360
|
logoClass: 'icon-homepage league--eredivisie',
|
|
315
361
|
scoringType: ScoringType.GOALS,
|
|
316
362
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -323,6 +369,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
323
369
|
sport: Sport.SOCCER,
|
|
324
370
|
id: League.PRIMEIRA_LIGA,
|
|
325
371
|
label: 'Primeira Liga',
|
|
372
|
+
opticOddsName: 'Portugal - Primeira Liga',
|
|
373
|
+
provider: Provider.OPTICODDS,
|
|
326
374
|
logoClass: 'icon-homepage league--portugal',
|
|
327
375
|
scoringType: ScoringType.GOALS,
|
|
328
376
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -335,6 +383,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
335
383
|
sport: Sport.SOCCER,
|
|
336
384
|
id: League.SUMMER_OLYMPICS_SOCCER_WOMEN,
|
|
337
385
|
label: 'Olympic Games Soccer Women',
|
|
386
|
+
opticOddsName: 'Olympics Soccer Women',
|
|
387
|
+
provider: Provider.EMPTY,
|
|
338
388
|
logoClass: 'icon-homepage league--paris2024',
|
|
339
389
|
scoringType: ScoringType.GOALS,
|
|
340
390
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -349,6 +399,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
349
399
|
id: League.SUMMER_OLYMPICS_SOCCER,
|
|
350
400
|
logoClass: 'icon-homepage league--paris2024',
|
|
351
401
|
label: 'Olympic Games Soccer',
|
|
402
|
+
opticOddsName: 'Olympics Soccer Men',
|
|
403
|
+
provider: Provider.EMPTY,
|
|
352
404
|
scoringType: ScoringType.GOALS,
|
|
353
405
|
matchResolveType: MatchResolveType.REGULAR,
|
|
354
406
|
periodType: PeriodType.HALF,
|
|
@@ -361,6 +413,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
361
413
|
sport: Sport.SOCCER,
|
|
362
414
|
id: League.FIFA_WC_WOMEN,
|
|
363
415
|
label: 'FIFA World Cup Women',
|
|
416
|
+
provider: Provider.EMPTY,
|
|
364
417
|
scoringType: ScoringType.GOALS,
|
|
365
418
|
matchResolveType: MatchResolveType.REGULAR,
|
|
366
419
|
periodType: PeriodType.HALF,
|
|
@@ -373,6 +426,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
373
426
|
sport: Sport.SOCCER,
|
|
374
427
|
id: League.ENGLAND_FA_CUP,
|
|
375
428
|
label: 'FA Cup',
|
|
429
|
+
opticOddsName: 'England - FA Cup',
|
|
430
|
+
provider: Provider.OPTICODDS,
|
|
376
431
|
scoringType: ScoringType.GOALS,
|
|
377
432
|
matchResolveType: MatchResolveType.REGULAR,
|
|
378
433
|
periodType: PeriodType.HALF,
|
|
@@ -384,6 +439,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
384
439
|
sport: Sport.SOCCER,
|
|
385
440
|
id: League.FRANCE_CUP,
|
|
386
441
|
label: 'Coupe de France',
|
|
442
|
+
opticOddsName: 'France - Coupe de France',
|
|
443
|
+
provider: Provider.OPTICODDS,
|
|
387
444
|
scoringType: ScoringType.GOALS,
|
|
388
445
|
matchResolveType: MatchResolveType.REGULAR,
|
|
389
446
|
periodType: PeriodType.HALF,
|
|
@@ -395,6 +452,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
395
452
|
sport: Sport.SOCCER,
|
|
396
453
|
id: League.SPAIN_CUP,
|
|
397
454
|
label: 'Copa del Rey',
|
|
455
|
+
opticOddsName: 'Spain - Copa del Rey',
|
|
456
|
+
provider: Provider.OPTICODDS,
|
|
398
457
|
scoringType: ScoringType.GOALS,
|
|
399
458
|
matchResolveType: MatchResolveType.REGULAR,
|
|
400
459
|
periodType: PeriodType.HALF,
|
|
@@ -406,6 +465,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
406
465
|
sport: Sport.SOCCER,
|
|
407
466
|
id: League.ITALY_CUP,
|
|
408
467
|
label: 'Coppa Italia',
|
|
468
|
+
opticOddsName: 'Italy - Coppa Italia',
|
|
469
|
+
provider: Provider.OPTICODDS,
|
|
409
470
|
scoringType: ScoringType.GOALS,
|
|
410
471
|
matchResolveType: MatchResolveType.REGULAR,
|
|
411
472
|
periodType: PeriodType.HALF,
|
|
@@ -417,6 +478,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
417
478
|
sport: Sport.TENNIS,
|
|
418
479
|
id: League.TENNIS_WTA,
|
|
419
480
|
label: 'WTA Events',
|
|
481
|
+
opticOddsName: 'WTA',
|
|
482
|
+
provider: Provider.OPTICODDS,
|
|
420
483
|
scoringType: ScoringType.SETS,
|
|
421
484
|
matchResolveType: MatchResolveType.REGULAR,
|
|
422
485
|
periodType: PeriodType.SET,
|
|
@@ -429,6 +492,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
429
492
|
sport: Sport.TENNIS,
|
|
430
493
|
id: League.TENNIS_GS,
|
|
431
494
|
label: 'Grand Slam',
|
|
495
|
+
opticOddsName: 'ATP,WTA',
|
|
496
|
+
provider: Provider.EMPTY,
|
|
432
497
|
logo: `/logos/Tennis/atp.webp`,
|
|
433
498
|
logoClass: 'icon-homepage league--atp',
|
|
434
499
|
scoringType: ScoringType.SETS,
|
|
@@ -443,6 +508,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
443
508
|
sport: Sport.TENNIS,
|
|
444
509
|
id: League.TENNIS_MASTERS,
|
|
445
510
|
label: 'ATP Events',
|
|
511
|
+
opticOddsName: 'ATP',
|
|
512
|
+
provider: Provider.OPTICODDS,
|
|
446
513
|
logo: `/logos/Tennis/atp.webp`,
|
|
447
514
|
logoClass: 'icon-homepage league--atp',
|
|
448
515
|
scoringType: ScoringType.SETS,
|
|
@@ -457,6 +524,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
457
524
|
sport: Sport.TENNIS,
|
|
458
525
|
id: League.SUMMER_OLYMPICS_TENNIS,
|
|
459
526
|
label: 'Olympic Games Tennis',
|
|
527
|
+
provider: Provider.EMPTY,
|
|
460
528
|
logo: `/logos/Tennis/atp.webp`,
|
|
461
529
|
logoClass: 'icon-homepage league--atp',
|
|
462
530
|
scoringType: ScoringType.SETS,
|
|
@@ -471,6 +539,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
471
539
|
sport: Sport.SOCCER,
|
|
472
540
|
id: League.GERMANY_CUP,
|
|
473
541
|
label: 'DFB Pokal',
|
|
542
|
+
opticOddsName: 'Germany - DFB Pokal',
|
|
543
|
+
provider: Provider.OPTICODDS,
|
|
474
544
|
scoringType: ScoringType.GOALS,
|
|
475
545
|
matchResolveType: MatchResolveType.REGULAR,
|
|
476
546
|
periodType: PeriodType.HALF,
|
|
@@ -482,6 +552,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
482
552
|
sport: Sport.SOCCER,
|
|
483
553
|
id: League.LIGA_MX,
|
|
484
554
|
label: 'Liga MX',
|
|
555
|
+
opticOddsName: 'Mexico - Liga MX',
|
|
556
|
+
provider: Provider.OPTICODDS,
|
|
485
557
|
scoringType: ScoringType.GOALS,
|
|
486
558
|
matchResolveType: MatchResolveType.REGULAR,
|
|
487
559
|
periodType: PeriodType.HALF,
|
|
@@ -493,6 +565,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
493
565
|
sport: Sport.SOCCER,
|
|
494
566
|
id: League.BRAZIL_1,
|
|
495
567
|
label: 'Brazil Serie A',
|
|
568
|
+
opticOddsName: 'Brazil - Serie A',
|
|
569
|
+
provider: Provider.OPTICODDS,
|
|
496
570
|
scoringType: ScoringType.GOALS,
|
|
497
571
|
matchResolveType: MatchResolveType.REGULAR,
|
|
498
572
|
periodType: PeriodType.HALF,
|
|
@@ -504,6 +578,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
504
578
|
sport: Sport.SOCCER,
|
|
505
579
|
id: League.UEFA_EURO_U21,
|
|
506
580
|
label: 'UEFA EURO U21',
|
|
581
|
+
provider: Provider.EMPTY,
|
|
507
582
|
scoringType: ScoringType.GOALS,
|
|
508
583
|
matchResolveType: MatchResolveType.REGULAR,
|
|
509
584
|
periodType: PeriodType.HALF,
|
|
@@ -516,6 +591,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
516
591
|
sport: Sport.SOCCER,
|
|
517
592
|
id: League.FIFA_WORLD_CUP_U20,
|
|
518
593
|
label: 'FIFA World Cup U20',
|
|
594
|
+
provider: Provider.EMPTY,
|
|
519
595
|
logoClass: 'icon-homepage league--fifa-world-cup-u20',
|
|
520
596
|
scoringType: ScoringType.GOALS,
|
|
521
597
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -529,6 +605,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
529
605
|
sport: Sport.BASEBALL,
|
|
530
606
|
id: League.NPB,
|
|
531
607
|
label: 'NPB',
|
|
608
|
+
opticOddsName: 'NPB',
|
|
609
|
+
provider: Provider.OPTICODDS,
|
|
532
610
|
scoringType: ScoringType.POINTS,
|
|
533
611
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
534
612
|
periodType: PeriodType.INNING,
|
|
@@ -540,6 +618,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
540
618
|
sport: Sport.BASEBALL,
|
|
541
619
|
id: League.KBO,
|
|
542
620
|
label: 'KBO',
|
|
621
|
+
opticOddsName: 'KBO',
|
|
622
|
+
provider: Provider.OPTICODDS,
|
|
543
623
|
scoringType: ScoringType.POINTS,
|
|
544
624
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
545
625
|
periodType: PeriodType.INNING,
|
|
@@ -551,6 +631,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
551
631
|
sport: Sport.BASEBALL,
|
|
552
632
|
id: League.COLLEGE_BASEBALL,
|
|
553
633
|
label: 'College Baseball',
|
|
634
|
+
opticOddsName: 'College Baseball',
|
|
635
|
+
provider: Provider.OPTICODDS,
|
|
554
636
|
scoringType: ScoringType.POINTS,
|
|
555
637
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
556
638
|
periodType: PeriodType.INNING,
|
|
@@ -562,6 +644,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
562
644
|
sport: Sport.BASEBALL,
|
|
563
645
|
id: League.CPBL,
|
|
564
646
|
label: 'CPBL',
|
|
647
|
+
opticOddsName: 'CPBL',
|
|
648
|
+
provider: Provider.OPTICODDS,
|
|
565
649
|
scoringType: ScoringType.POINTS,
|
|
566
650
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
567
651
|
periodType: PeriodType.INNING,
|
|
@@ -573,6 +657,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
573
657
|
sport: Sport.HOCKEY,
|
|
574
658
|
id: League.CZECH_REPUBLIC_EXTRALIGA,
|
|
575
659
|
label: 'Czech Republic Extraliga',
|
|
660
|
+
opticOddsName: 'Czech Republic - Extraliga',
|
|
661
|
+
provider: Provider.OPTICODDS,
|
|
576
662
|
scoringType: ScoringType.GOALS,
|
|
577
663
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
578
664
|
periodType: PeriodType.PERIOD,
|
|
@@ -584,6 +670,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
584
670
|
sport: Sport.HOCKEY,
|
|
585
671
|
id: League.FINLAND_SM_LIIGA,
|
|
586
672
|
label: 'Finland SM Liiga',
|
|
673
|
+
opticOddsName: 'Finland - SM Liiga',
|
|
674
|
+
provider: Provider.OPTICODDS,
|
|
587
675
|
scoringType: ScoringType.GOALS,
|
|
588
676
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
589
677
|
periodType: PeriodType.PERIOD,
|
|
@@ -595,6 +683,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
595
683
|
sport: Sport.HOCKEY,
|
|
596
684
|
id: League.RUSSIA_KHL,
|
|
597
685
|
label: 'Russia KHL',
|
|
686
|
+
opticOddsName: 'Russia - KHL',
|
|
687
|
+
provider: Provider.OPTICODDS,
|
|
598
688
|
scoringType: ScoringType.GOALS,
|
|
599
689
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
600
690
|
periodType: PeriodType.PERIOD,
|
|
@@ -606,6 +696,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
606
696
|
sport: Sport.HOCKEY,
|
|
607
697
|
id: League.GERMANY_DEL,
|
|
608
698
|
label: 'Germany DEL',
|
|
699
|
+
opticOddsName: 'Germany - DEL',
|
|
700
|
+
provider: Provider.OPTICODDS,
|
|
609
701
|
scoringType: ScoringType.GOALS,
|
|
610
702
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
611
703
|
periodType: PeriodType.PERIOD,
|
|
@@ -617,6 +709,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
617
709
|
sport: Sport.HOCKEY,
|
|
618
710
|
id: League.AUSTRIA_ICE_HOCKEY_LEAGUE,
|
|
619
711
|
label: 'Austria Ice Hockey League',
|
|
712
|
+
opticOddsName: 'Austria - Ice Hockey League',
|
|
713
|
+
provider: Provider.OPTICODDS,
|
|
620
714
|
scoringType: ScoringType.GOALS,
|
|
621
715
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
622
716
|
periodType: PeriodType.PERIOD,
|
|
@@ -628,6 +722,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
628
722
|
sport: Sport.HOCKEY,
|
|
629
723
|
id: League.SWEDEN_SHL,
|
|
630
724
|
label: 'Sweden SHL',
|
|
725
|
+
opticOddsName: 'Sweden - SHL',
|
|
726
|
+
provider: Provider.OPTICODDS,
|
|
631
727
|
scoringType: ScoringType.GOALS,
|
|
632
728
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
633
729
|
periodType: PeriodType.PERIOD,
|
|
@@ -639,6 +735,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
639
735
|
sport: Sport.HOCKEY,
|
|
640
736
|
id: League.SWITZETLAND_NATIONAL_LEAGUE,
|
|
641
737
|
label: 'Switzerland National League',
|
|
738
|
+
opticOddsName: 'Switzerland - National League',
|
|
739
|
+
provider: Provider.OPTICODDS,
|
|
642
740
|
scoringType: ScoringType.GOALS,
|
|
643
741
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
644
742
|
periodType: PeriodType.PERIOD,
|
|
@@ -650,6 +748,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
650
748
|
sport: Sport.HOCKEY,
|
|
651
749
|
id: League.USA_AHL,
|
|
652
750
|
label: 'USA AHL',
|
|
751
|
+
opticOddsName: 'USA - AHL',
|
|
752
|
+
provider: Provider.OPTICODDS,
|
|
653
753
|
scoringType: ScoringType.GOALS,
|
|
654
754
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
655
755
|
periodType: PeriodType.PERIOD,
|
|
@@ -661,6 +761,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
661
761
|
sport: Sport.HANDBALL,
|
|
662
762
|
id: League.SUMMER_OLYMPICS_HANDBALL_WOMEN,
|
|
663
763
|
label: 'Olympic Games Handball Women',
|
|
764
|
+
opticOddsName: 'Olympics Handball Women',
|
|
765
|
+
provider: Provider.EMPTY,
|
|
664
766
|
logoClass: 'icon-homepage league--paris2024',
|
|
665
767
|
scoringType: ScoringType.GOALS,
|
|
666
768
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -673,6 +775,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
673
775
|
sport: Sport.HANDBALL,
|
|
674
776
|
id: League.SUMMER_OLYMPICS_HANDBALL,
|
|
675
777
|
label: 'Olympic Games Handball',
|
|
778
|
+
opticOddsName: 'Olympics Handball Men',
|
|
779
|
+
provider: Provider.EMPTY,
|
|
676
780
|
logoClass: 'icon-homepage league--paris2024',
|
|
677
781
|
scoringType: ScoringType.GOALS,
|
|
678
782
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -685,6 +789,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
685
789
|
sport: Sport.BASKETBALL,
|
|
686
790
|
id: League.EUROLEAGUE,
|
|
687
791
|
label: 'Euroleague',
|
|
792
|
+
opticOddsName: 'Euroleague',
|
|
793
|
+
provider: Provider.OPTICODDS,
|
|
688
794
|
logoClass: 'icon-homepage league--euroleague',
|
|
689
795
|
logo: `/logos/leagueLogos/euroleague.webp`,
|
|
690
796
|
scoringType: ScoringType.POINTS,
|
|
@@ -698,6 +804,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
698
804
|
sport: Sport.BASKETBALL,
|
|
699
805
|
id: League.SUMMER_OLYMPICS_BASKETBALL,
|
|
700
806
|
label: 'Olympic Games Basketball',
|
|
807
|
+
opticOddsName: 'Olympics Basketball Men',
|
|
808
|
+
provider: Provider.EMPTY,
|
|
701
809
|
logoClass: 'icon-homepage league--paris2024',
|
|
702
810
|
scoringType: ScoringType.POINTS,
|
|
703
811
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
@@ -710,6 +818,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
710
818
|
sport: Sport.BASKETBALL,
|
|
711
819
|
id: League.SUMMER_OLYMPICS_BASKETBALL_WOMEN,
|
|
712
820
|
label: 'Olympic Games Basketball Women',
|
|
821
|
+
opticOddsName: 'Olympics Basketball Women',
|
|
822
|
+
provider: Provider.EMPTY,
|
|
713
823
|
logoClass: 'icon-homepage league--paris2024',
|
|
714
824
|
scoringType: ScoringType.POINTS,
|
|
715
825
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
@@ -722,6 +832,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
722
832
|
sport: Sport.BASKETBALL,
|
|
723
833
|
id: League.FIBA_WORLD_CUP,
|
|
724
834
|
label: 'FIBA World Cup',
|
|
835
|
+
provider: Provider.EMPTY,
|
|
725
836
|
scoringType: ScoringType.POINTS,
|
|
726
837
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
727
838
|
periodType: PeriodType.QUARTER,
|
|
@@ -733,6 +844,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
733
844
|
sport: Sport.MOTOSPORT,
|
|
734
845
|
id: League.FORMULA1,
|
|
735
846
|
label: 'Formula 1',
|
|
847
|
+
provider: Provider.EMPTY,
|
|
736
848
|
logo: '/logos/leagueLogos/f1.webp',
|
|
737
849
|
logoClass: 'icon-homepage league--f1',
|
|
738
850
|
scoringType: ScoringType.EMPTY,
|
|
@@ -746,6 +858,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
746
858
|
sport: Sport.VOLLEYBALL,
|
|
747
859
|
id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL_WOMEN,
|
|
748
860
|
label: 'Olympic Games Beach Voleyball Women',
|
|
861
|
+
provider: Provider.EMPTY,
|
|
749
862
|
logoClass: 'icon-homepage league--paris2024',
|
|
750
863
|
scoringType: ScoringType.SETS,
|
|
751
864
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -758,6 +871,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
758
871
|
sport: Sport.VOLLEYBALL,
|
|
759
872
|
id: League.SUMMER_OLYMPICS_BEACH_VOLEYBALL,
|
|
760
873
|
label: 'Olympic Games Beach Voleyball',
|
|
874
|
+
provider: Provider.EMPTY,
|
|
761
875
|
logoClass: 'icon-homepage league--paris2024',
|
|
762
876
|
scoringType: ScoringType.SETS,
|
|
763
877
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -770,6 +884,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
770
884
|
sport: Sport.MOTOSPORT,
|
|
771
885
|
id: League.MOTOGP,
|
|
772
886
|
label: 'MotoGP',
|
|
887
|
+
provider: Provider.EMPTY,
|
|
773
888
|
logo: `/logos/leagueLogos/motogp.webp`,
|
|
774
889
|
logoClass: 'icon-homepage league--motogp',
|
|
775
890
|
scoringType: ScoringType.EMPTY,
|
|
@@ -783,6 +898,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
783
898
|
sport: Sport.SOCCER,
|
|
784
899
|
id: League.SAUDI_PROFESSIONAL_LEAGUE,
|
|
785
900
|
label: 'Saudi Professional League',
|
|
901
|
+
opticOddsName: 'Saudi Arabia - Saudi League',
|
|
902
|
+
provider: Provider.OPTICODDS,
|
|
786
903
|
scoringType: ScoringType.GOALS,
|
|
787
904
|
matchResolveType: MatchResolveType.REGULAR,
|
|
788
905
|
periodType: PeriodType.HALF,
|
|
@@ -794,6 +911,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
794
911
|
sport: Sport.WATERPOLO,
|
|
795
912
|
id: League.SUMMER_OLYMPICS_WATERPOLO,
|
|
796
913
|
label: 'Olympic Games Water Polo',
|
|
914
|
+
opticOddsName: 'Olympics Water Polo',
|
|
915
|
+
provider: Provider.EMPTY,
|
|
797
916
|
logoClass: 'icon-homepage league--paris2024',
|
|
798
917
|
scoringType: ScoringType.GOALS,
|
|
799
918
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -806,6 +925,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
806
925
|
sport: Sport.VOLLEYBALL,
|
|
807
926
|
id: League.SUMMER_OLYMPICS_VOLEYBALL_WOMEN,
|
|
808
927
|
label: 'Olympic Games Voleyball Women',
|
|
928
|
+
opticOddsName: 'Olympics Volleyball Women',
|
|
929
|
+
provider: Provider.EMPTY,
|
|
809
930
|
logoClass: 'icon-homepage league--paris2024',
|
|
810
931
|
scoringType: ScoringType.SETS,
|
|
811
932
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -818,6 +939,9 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
818
939
|
sport: Sport.VOLLEYBALL,
|
|
819
940
|
id: League.SUMMER_OLYMPICS_VOLEYBALL,
|
|
820
941
|
label: 'Olympic Games Voleyball',
|
|
942
|
+
|
|
943
|
+
opticOddsName: 'Olympics Volleyball Men',
|
|
944
|
+
provider: Provider.EMPTY,
|
|
821
945
|
logoClass: 'icon-homepage league--paris2024',
|
|
822
946
|
scoringType: ScoringType.SETS,
|
|
823
947
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -830,6 +954,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
830
954
|
sport: Sport.TABLE_TENNIS,
|
|
831
955
|
id: League.SUMMER_OLYMPICS_TABLE_TENNIS,
|
|
832
956
|
label: 'Olympic Games Table Tennis',
|
|
957
|
+
provider: Provider.EMPTY,
|
|
833
958
|
scoringType: ScoringType.SETS,
|
|
834
959
|
matchResolveType: MatchResolveType.REGULAR,
|
|
835
960
|
periodType: PeriodType.SET,
|
|
@@ -841,6 +966,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
841
966
|
sport: Sport.FIGHTING,
|
|
842
967
|
id: League.BOXING,
|
|
843
968
|
label: 'Boxing',
|
|
969
|
+
provider: Provider.EMPTY,
|
|
844
970
|
logoClass: 'icon-homepage league--boxing',
|
|
845
971
|
scoringType: ScoringType.ROUNDS,
|
|
846
972
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -853,6 +979,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
853
979
|
sport: Sport.RUGBY,
|
|
854
980
|
id: League.AUSTRALIA_NRL,
|
|
855
981
|
label: 'Australia NRL',
|
|
982
|
+
opticOddsName: 'Australia - NRL',
|
|
983
|
+
provider: Provider.OPTICODDS,
|
|
856
984
|
scoringType: ScoringType.POINTS,
|
|
857
985
|
matchResolveType: MatchResolveType.REGULAR,
|
|
858
986
|
periodType: PeriodType.HALF,
|
|
@@ -864,6 +992,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
864
992
|
sport: Sport.RUGBY,
|
|
865
993
|
id: League.ENGLAND_SUPER_LEAGUE,
|
|
866
994
|
label: 'England Super League',
|
|
995
|
+
opticOddsName: 'England - Super League',
|
|
996
|
+
provider: Provider.OPTICODDS,
|
|
867
997
|
scoringType: ScoringType.POINTS,
|
|
868
998
|
matchResolveType: MatchResolveType.REGULAR,
|
|
869
999
|
periodType: PeriodType.HALF,
|
|
@@ -875,6 +1005,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
875
1005
|
sport: Sport.RUGBY,
|
|
876
1006
|
id: League.SUPER_RUGBY,
|
|
877
1007
|
label: 'Super Rugby',
|
|
1008
|
+
opticOddsName: 'Oceania - Super Rugby',
|
|
1009
|
+
provider: Provider.OPTICODDS,
|
|
878
1010
|
scoringType: ScoringType.POINTS,
|
|
879
1011
|
matchResolveType: MatchResolveType.REGULAR,
|
|
880
1012
|
periodType: PeriodType.HALF,
|
|
@@ -886,6 +1018,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
886
1018
|
sport: Sport.RUGBY,
|
|
887
1019
|
id: League.SIX_NATIONS,
|
|
888
1020
|
label: 'Six Nations',
|
|
1021
|
+
opticOddsName: 'International - Six Nations',
|
|
1022
|
+
provider: Provider.OPTICODDS,
|
|
889
1023
|
scoringType: ScoringType.POINTS,
|
|
890
1024
|
matchResolveType: MatchResolveType.REGULAR,
|
|
891
1025
|
periodType: PeriodType.HALF,
|
|
@@ -897,6 +1031,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
897
1031
|
sport: Sport.RUGBY,
|
|
898
1032
|
id: League.SUMMER_OLYMPICS_RUGBY,
|
|
899
1033
|
label: 'Olympic Games Rugby',
|
|
1034
|
+
opticOddsName: 'Olympics Rugby 7s Men',
|
|
1035
|
+
provider: Provider.EMPTY,
|
|
900
1036
|
logoClass: 'icon-homepage league--paris2024',
|
|
901
1037
|
scoringType: ScoringType.POINTS,
|
|
902
1038
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -909,6 +1045,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
909
1045
|
sport: Sport.RUGBY,
|
|
910
1046
|
id: League.SUMMER_OLYMPICS_RUGBY_WOMEN,
|
|
911
1047
|
label: 'Olympic Games Rugby Women',
|
|
1048
|
+
opticOddsName: 'Olympics Rugby 7s Women',
|
|
1049
|
+
provider: Provider.EMPTY,
|
|
912
1050
|
logoClass: 'icon-homepage league--paris2024',
|
|
913
1051
|
scoringType: ScoringType.POINTS,
|
|
914
1052
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -921,6 +1059,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
921
1059
|
sport: Sport.HOCKEY,
|
|
922
1060
|
id: League.SUMMER_OLYMPICS_HOCKEY_WOMEN,
|
|
923
1061
|
label: 'Olympic Games Hockey Women',
|
|
1062
|
+
provider: Provider.EMPTY,
|
|
924
1063
|
logoClass: 'icon-homepage league--paris2024',
|
|
925
1064
|
scoringType: ScoringType.GOALS,
|
|
926
1065
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -933,6 +1072,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
933
1072
|
sport: Sport.HOCKEY,
|
|
934
1073
|
id: League.SUMMER_OLYMPICS_HOCKEY,
|
|
935
1074
|
label: 'Olympic Games Hockey',
|
|
1075
|
+
provider: Provider.EMPTY,
|
|
936
1076
|
logoClass: 'icon-homepage league--paris2024',
|
|
937
1077
|
scoringType: ScoringType.GOALS,
|
|
938
1078
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -945,6 +1085,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
945
1085
|
sport: Sport.SOCCER,
|
|
946
1086
|
id: League.UEFA_NATIONS_LEAGUE,
|
|
947
1087
|
label: 'UEFA Nations League',
|
|
1088
|
+
provider: Provider.OPTICODDS,
|
|
1089
|
+
opticOddsName: 'UEFA - Nations League',
|
|
948
1090
|
logoClass: 'icon-homepage league--uefa-nations',
|
|
949
1091
|
scoringType: ScoringType.GOALS,
|
|
950
1092
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -958,6 +1100,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
958
1100
|
sport: Sport.SOCCER,
|
|
959
1101
|
id: League.UEFA_NATIONS_LEAGUE_WOMEN,
|
|
960
1102
|
label: 'UEFA Nations League Women',
|
|
1103
|
+
opticOddsName: 'UEFA - Nations League Women',
|
|
1104
|
+
provider: Provider.OPTICODDS,
|
|
961
1105
|
logoClass: 'icon-homepage league--uefa-nations',
|
|
962
1106
|
scoringType: ScoringType.GOALS,
|
|
963
1107
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -971,6 +1115,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
971
1115
|
sport: Sport.SOCCER,
|
|
972
1116
|
id: League.CANADA_PREMIER_LEAGUE,
|
|
973
1117
|
label: 'Canada Premier League',
|
|
1118
|
+
opticOddsName: 'Canada - Premier League',
|
|
1119
|
+
provider: Provider.OPTICODDS,
|
|
974
1120
|
scoringType: ScoringType.GOALS,
|
|
975
1121
|
matchResolveType: MatchResolveType.REGULAR,
|
|
976
1122
|
periodType: PeriodType.HALF,
|
|
@@ -982,6 +1128,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
982
1128
|
sport: Sport.SOCCER,
|
|
983
1129
|
id: League.CONCACAF_NATIONS_LEAGUE,
|
|
984
1130
|
label: 'CONCACAF Nations League',
|
|
1131
|
+
provider: Provider.EMPTY,
|
|
985
1132
|
logoClass: 'icon-homepage league--concacaf-nations',
|
|
986
1133
|
scoringType: ScoringType.GOALS,
|
|
987
1134
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -995,6 +1142,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
995
1142
|
sport: Sport.ESPORTS,
|
|
996
1143
|
id: League.CSGO,
|
|
997
1144
|
label: 'CS2',
|
|
1145
|
+
opticOddsName: 'CS2',
|
|
1146
|
+
provider: Provider.OPTICODDS,
|
|
998
1147
|
logoClass: 'icon-homepage league--csgo',
|
|
999
1148
|
scoringType: ScoringType.MAPS,
|
|
1000
1149
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -1007,6 +1156,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1007
1156
|
sport: Sport.ESPORTS,
|
|
1008
1157
|
id: League.DOTA2,
|
|
1009
1158
|
label: 'DOTA 2',
|
|
1159
|
+
opticOddsName: 'Dota 2',
|
|
1160
|
+
provider: Provider.OPTICODDS,
|
|
1010
1161
|
logoClass: 'icon-homepage league--dota2',
|
|
1011
1162
|
scoringType: ScoringType.MAPS,
|
|
1012
1163
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -1019,6 +1170,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1019
1170
|
sport: Sport.BASKETBALL,
|
|
1020
1171
|
id: League.SUMMER_OLYMPICS_BASKETBALL_3X3,
|
|
1021
1172
|
label: 'Olympic Games Basketball 3x3',
|
|
1173
|
+
opticOddsName: 'Olympics Basketball 3x3 Men',
|
|
1174
|
+
provider: Provider.EMPTY,
|
|
1022
1175
|
logoClass: 'icon-homepage league--paris2024',
|
|
1023
1176
|
scoringType: ScoringType.POINTS,
|
|
1024
1177
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
@@ -1031,6 +1184,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1031
1184
|
sport: Sport.BASKETBALL,
|
|
1032
1185
|
id: League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN,
|
|
1033
1186
|
label: 'Olympic Games Basketball 3x3 Women',
|
|
1187
|
+
opticOddsName: 'Olympics Basketball 3x3 Women',
|
|
1188
|
+
provider: Provider.EMPTY,
|
|
1034
1189
|
logoClass: 'icon-homepage league--paris2024',
|
|
1035
1190
|
scoringType: ScoringType.POINTS,
|
|
1036
1191
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
@@ -1043,6 +1198,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1043
1198
|
sport: Sport.BASKETBALL,
|
|
1044
1199
|
id: League.SUMMER_OLYMPICS_QUALIFICATION,
|
|
1045
1200
|
label: 'Summer Olympics Qualification',
|
|
1201
|
+
provider: Provider.EMPTY,
|
|
1046
1202
|
scoringType: ScoringType.POINTS,
|
|
1047
1203
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1048
1204
|
periodType: PeriodType.QUARTER,
|
|
@@ -1054,6 +1210,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1054
1210
|
sport: Sport.ESPORTS,
|
|
1055
1211
|
id: League.LOL,
|
|
1056
1212
|
label: 'LOL',
|
|
1213
|
+
opticOddsName: 'League of Legends',
|
|
1214
|
+
provider: Provider.OPTICODDS,
|
|
1057
1215
|
logoClass: 'icon-homepage league--lol',
|
|
1058
1216
|
scoringType: ScoringType.MAPS,
|
|
1059
1217
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -1066,6 +1224,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1066
1224
|
sport: Sport.SOCCER,
|
|
1067
1225
|
id: League.CONMEBOL_WC_QUALIFICATIONS,
|
|
1068
1226
|
label: 'CONMEBOL WC Qualification',
|
|
1227
|
+
provider: Provider.EMPTY,
|
|
1069
1228
|
scoringType: ScoringType.GOALS,
|
|
1070
1229
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1071
1230
|
periodType: PeriodType.HALF,
|
|
@@ -1077,6 +1236,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1077
1236
|
sport: Sport.SOCCER,
|
|
1078
1237
|
id: League.UEFA_CONFERENCE_LEAGUE,
|
|
1079
1238
|
label: 'UEFA Conference League',
|
|
1239
|
+
opticOddsName: 'UEFA - Europa Conference League',
|
|
1240
|
+
provider: Provider.OPTICODDS,
|
|
1080
1241
|
scoringType: ScoringType.GOALS,
|
|
1081
1242
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1082
1243
|
periodType: PeriodType.HALF,
|
|
@@ -1089,6 +1250,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1089
1250
|
sport: Sport.FIGHTING,
|
|
1090
1251
|
id: League.NON_TITLE_BOXING,
|
|
1091
1252
|
label: 'Boxing Non Title',
|
|
1253
|
+
provider: Provider.EMPTY,
|
|
1092
1254
|
logoClass: 'icon-homepage league--boxing',
|
|
1093
1255
|
scoringType: ScoringType.ROUNDS,
|
|
1094
1256
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -1101,6 +1263,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1101
1263
|
sport: Sport.SOCCER,
|
|
1102
1264
|
id: League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION,
|
|
1103
1265
|
label: 'UEFA Champions League Qualification',
|
|
1266
|
+
opticOddsName: 'UEFA - Champions League',
|
|
1267
|
+
provider: Provider.EMPTY,
|
|
1104
1268
|
logo: `/logos/leagueLogos/ucl-white.webp`,
|
|
1105
1269
|
logoClass: 'icon-homepage league--ucl',
|
|
1106
1270
|
scoringType: ScoringType.GOALS,
|
|
@@ -1115,6 +1279,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1115
1279
|
sport: Sport.SOCCER,
|
|
1116
1280
|
id: League.UEFA_EUROPA_LEAGUE_QUALIFICATION,
|
|
1117
1281
|
label: 'UEFA Europa League Qualification',
|
|
1282
|
+
opticOddsName: 'UEFA - Europa League',
|
|
1283
|
+
provider: Provider.EMPTY,
|
|
1118
1284
|
logoClass: 'icon-homepage league--uel',
|
|
1119
1285
|
scoringType: ScoringType.GOALS,
|
|
1120
1286
|
matchResolveType: MatchResolveType.REGULAR,
|
|
@@ -1128,6 +1294,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1128
1294
|
sport: Sport.SOCCER,
|
|
1129
1295
|
id: League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION,
|
|
1130
1296
|
label: 'UEFA Conference League Qualification',
|
|
1297
|
+
opticOddsName: 'UEFA - Europa Conference League',
|
|
1298
|
+
provider: Provider.EMPTY,
|
|
1131
1299
|
scoringType: ScoringType.GOALS,
|
|
1132
1300
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1133
1301
|
periodType: PeriodType.HALF,
|
|
@@ -1140,6 +1308,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1140
1308
|
sport: Sport.POLITICS,
|
|
1141
1309
|
id: League.US_ELECTION,
|
|
1142
1310
|
label: 'US Election 2024',
|
|
1311
|
+
provider: Provider.EMPTY,
|
|
1143
1312
|
scoringType: ScoringType.EMPTY,
|
|
1144
1313
|
matchResolveType: MatchResolveType.EMPTY,
|
|
1145
1314
|
periodType: PeriodType.EMPTY,
|
|
@@ -1152,6 +1321,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1152
1321
|
sport: Sport.SOCCER,
|
|
1153
1322
|
id: League.UEFA_SUPER_CUP,
|
|
1154
1323
|
label: 'UEFA Super Cup',
|
|
1324
|
+
opticOddsName: 'UEFA - Super Cup',
|
|
1325
|
+
provider: Provider.OPTICODDS,
|
|
1155
1326
|
scoringType: ScoringType.GOALS,
|
|
1156
1327
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1157
1328
|
periodType: PeriodType.HALF,
|
|
@@ -1164,6 +1335,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1164
1335
|
sport: Sport.SOCCER,
|
|
1165
1336
|
id: League.BRAZIL_CUP,
|
|
1166
1337
|
label: 'Copa do Brasil',
|
|
1338
|
+
opticOddsName: 'Brazil - Copa do Brasil',
|
|
1339
|
+
provider: Provider.OPTICODDS,
|
|
1167
1340
|
scoringType: ScoringType.GOALS,
|
|
1168
1341
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1169
1342
|
periodType: PeriodType.HALF,
|
|
@@ -1176,6 +1349,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1176
1349
|
sport: Sport.SOCCER,
|
|
1177
1350
|
id: League.ENGLAND_CHAMPIONSHIP,
|
|
1178
1351
|
label: 'EFL Championship',
|
|
1352
|
+
opticOddsName: 'England - Championship',
|
|
1353
|
+
provider: Provider.OPTICODDS,
|
|
1179
1354
|
scoringType: ScoringType.GOALS,
|
|
1180
1355
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1181
1356
|
periodType: PeriodType.HALF,
|
|
@@ -1187,6 +1362,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1187
1362
|
sport: Sport.SOCCER,
|
|
1188
1363
|
id: League.SCOTLAND_PREMIERSHIP,
|
|
1189
1364
|
label: 'Scotland Premiership',
|
|
1365
|
+
opticOddsName: 'Scotland - Premiership',
|
|
1366
|
+
provider: Provider.OPTICODDS,
|
|
1190
1367
|
scoringType: ScoringType.GOALS,
|
|
1191
1368
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1192
1369
|
periodType: PeriodType.HALF,
|
|
@@ -1198,6 +1375,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1198
1375
|
sport: Sport.SOCCER,
|
|
1199
1376
|
id: League.BELGIUM_LEAGUE,
|
|
1200
1377
|
label: 'Belgium Pro League',
|
|
1378
|
+
opticOddsName: 'Belgium - Jupiler Pro League',
|
|
1379
|
+
provider: Provider.OPTICODDS,
|
|
1201
1380
|
scoringType: ScoringType.GOALS,
|
|
1202
1381
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1203
1382
|
periodType: PeriodType.HALF,
|
|
@@ -1209,6 +1388,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1209
1388
|
sport: Sport.SOCCER,
|
|
1210
1389
|
id: League.CZECH_LEAGUE,
|
|
1211
1390
|
label: 'Czech Republic FNL',
|
|
1391
|
+
opticOddsName: 'Czech Republic - FNL',
|
|
1392
|
+
provider: Provider.OPTICODDS,
|
|
1212
1393
|
scoringType: ScoringType.GOALS,
|
|
1213
1394
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1214
1395
|
periodType: PeriodType.HALF,
|
|
@@ -1220,6 +1401,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1220
1401
|
sport: Sport.SOCCER,
|
|
1221
1402
|
id: League.CHILE_PRIMERA,
|
|
1222
1403
|
label: 'Chile Primera Division',
|
|
1404
|
+
opticOddsName: 'Chile - Primera Division',
|
|
1405
|
+
provider: Provider.OPTICODDS,
|
|
1223
1406
|
scoringType: ScoringType.GOALS,
|
|
1224
1407
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1225
1408
|
periodType: PeriodType.HALF,
|
|
@@ -1231,6 +1414,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1231
1414
|
sport: Sport.SOCCER,
|
|
1232
1415
|
id: League.FINLAND_LEAGUE,
|
|
1233
1416
|
label: 'Finland Veikkausliiga',
|
|
1417
|
+
opticOddsName: 'Finland - Veikkausliiga',
|
|
1418
|
+
provider: Provider.OPTICODDS,
|
|
1234
1419
|
scoringType: ScoringType.GOALS,
|
|
1235
1420
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1236
1421
|
periodType: PeriodType.HALF,
|
|
@@ -1242,6 +1427,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1242
1427
|
sport: Sport.SOCCER,
|
|
1243
1428
|
id: League.ARGENTINA_PRIMERA,
|
|
1244
1429
|
label: 'Argentina Primera Division',
|
|
1430
|
+
opticOddsName: 'Argentina - Primera Division',
|
|
1431
|
+
provider: Provider.OPTICODDS,
|
|
1245
1432
|
scoringType: ScoringType.GOALS,
|
|
1246
1433
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1247
1434
|
periodType: PeriodType.HALF,
|
|
@@ -1253,6 +1440,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1253
1440
|
sport: Sport.SOCCER,
|
|
1254
1441
|
id: League.RUSSIA_PREMIER,
|
|
1255
1442
|
label: 'Russia Premier League',
|
|
1443
|
+
opticOddsName: 'Russia - Premier League',
|
|
1444
|
+
provider: Provider.OPTICODDS,
|
|
1256
1445
|
scoringType: ScoringType.GOALS,
|
|
1257
1446
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1258
1447
|
periodType: PeriodType.HALF,
|
|
@@ -1264,6 +1453,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1264
1453
|
sport: Sport.SOCCER,
|
|
1265
1454
|
id: League.TURKEY_SUPER_LEAGUE,
|
|
1266
1455
|
label: 'Turkey Super Lig',
|
|
1456
|
+
opticOddsName: 'Turkey - Super Lig',
|
|
1457
|
+
provider: Provider.OPTICODDS,
|
|
1267
1458
|
scoringType: ScoringType.GOALS,
|
|
1268
1459
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1269
1460
|
periodType: PeriodType.HALF,
|
|
@@ -1275,6 +1466,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1275
1466
|
sport: Sport.SOCCER,
|
|
1276
1467
|
id: League.SERBIA_SUPER_LEAGUE,
|
|
1277
1468
|
label: 'Serbia Super Liga',
|
|
1469
|
+
opticOddsName: 'Serbia - Super Liga',
|
|
1470
|
+
provider: Provider.OPTICODDS,
|
|
1278
1471
|
scoringType: ScoringType.GOALS,
|
|
1279
1472
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1280
1473
|
periodType: PeriodType.HALF,
|
|
@@ -1286,6 +1479,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1286
1479
|
sport: Sport.SOCCER,
|
|
1287
1480
|
id: League.GREECE_SUPER_LEAGUE,
|
|
1288
1481
|
label: 'Greece Super League',
|
|
1482
|
+
opticOddsName: 'Greece - Super League',
|
|
1483
|
+
provider: Provider.OPTICODDS,
|
|
1289
1484
|
scoringType: ScoringType.GOALS,
|
|
1290
1485
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1291
1486
|
periodType: PeriodType.HALF,
|
|
@@ -1297,6 +1492,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1297
1492
|
sport: Sport.SOCCER,
|
|
1298
1493
|
id: League.INDIA_PREMIER,
|
|
1299
1494
|
label: 'India Calcutta Premier Division',
|
|
1495
|
+
opticOddsName: 'India - Calcutta Premier Division',
|
|
1496
|
+
provider: Provider.OPTICODDS,
|
|
1300
1497
|
scoringType: ScoringType.GOALS,
|
|
1301
1498
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1302
1499
|
periodType: PeriodType.HALF,
|
|
@@ -1308,6 +1505,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1308
1505
|
sport: Sport.SOCCER,
|
|
1309
1506
|
id: League.CHINA_SUPER_LEAGUE,
|
|
1310
1507
|
label: 'China Super League',
|
|
1508
|
+
opticOddsName: 'China - Super League',
|
|
1509
|
+
provider: Provider.OPTICODDS,
|
|
1311
1510
|
scoringType: ScoringType.GOALS,
|
|
1312
1511
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1313
1512
|
periodType: PeriodType.HALF,
|
|
@@ -1319,6 +1518,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1319
1518
|
sport: Sport.SOCCER,
|
|
1320
1519
|
id: League.AUSTRALIA_A_LEAGUE,
|
|
1321
1520
|
label: 'Australia A-League',
|
|
1521
|
+
opticOddsName: 'Australia - A-League',
|
|
1522
|
+
provider: Provider.OPTICODDS,
|
|
1322
1523
|
scoringType: ScoringType.GOALS,
|
|
1323
1524
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1324
1525
|
periodType: PeriodType.HALF,
|
|
@@ -1330,6 +1531,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1330
1531
|
sport: Sport.SOCCER,
|
|
1331
1532
|
id: League.SWITZERLAND_SUPER_LEAGUE,
|
|
1332
1533
|
label: 'Switzerland Super League',
|
|
1534
|
+
opticOddsName: 'Switzerland - Super League',
|
|
1535
|
+
provider: Provider.OPTICODDS,
|
|
1333
1536
|
scoringType: ScoringType.GOALS,
|
|
1334
1537
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1335
1538
|
periodType: PeriodType.HALF,
|
|
@@ -1341,6 +1544,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1341
1544
|
sport: Sport.SOCCER,
|
|
1342
1545
|
id: League.BUNDESLIGA_2,
|
|
1343
1546
|
label: 'Bundesliga 2',
|
|
1547
|
+
opticOddsName: 'Germany - Bundesliga 2',
|
|
1548
|
+
provider: Provider.OPTICODDS,
|
|
1344
1549
|
scoringType: ScoringType.GOALS,
|
|
1345
1550
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1346
1551
|
periodType: PeriodType.HALF,
|
|
@@ -1352,6 +1557,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1352
1557
|
sport: Sport.SOCCER,
|
|
1353
1558
|
id: League.LA_LIGA_2,
|
|
1354
1559
|
label: 'La Liga 2',
|
|
1560
|
+
opticOddsName: 'Spain - La Liga 2',
|
|
1561
|
+
provider: Provider.OPTICODDS,
|
|
1355
1562
|
scoringType: ScoringType.GOALS,
|
|
1356
1563
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1357
1564
|
periodType: PeriodType.HALF,
|
|
@@ -1363,6 +1570,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1363
1570
|
sport: Sport.SOCCER,
|
|
1364
1571
|
id: League.SERIE_B,
|
|
1365
1572
|
label: 'Serie B',
|
|
1573
|
+
opticOddsName: 'Italy - Serie B',
|
|
1574
|
+
provider: Provider.OPTICODDS,
|
|
1366
1575
|
scoringType: ScoringType.GOALS,
|
|
1367
1576
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1368
1577
|
periodType: PeriodType.HALF,
|
|
@@ -1374,6 +1583,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1374
1583
|
sport: Sport.SOCCER,
|
|
1375
1584
|
id: League.INDIA_SUPER_LEAGUE,
|
|
1376
1585
|
label: 'India Super League',
|
|
1586
|
+
opticOddsName: 'India - Super League',
|
|
1587
|
+
provider: Provider.OPTICODDS,
|
|
1377
1588
|
scoringType: ScoringType.GOALS,
|
|
1378
1589
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1379
1590
|
periodType: PeriodType.HALF,
|
|
@@ -1385,6 +1596,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1385
1596
|
sport: Sport.SOCCER,
|
|
1386
1597
|
id: League.LIGUE_2,
|
|
1387
1598
|
label: 'Ligue 2',
|
|
1599
|
+
opticOddsName: 'France - Ligue 2',
|
|
1600
|
+
provider: Provider.OPTICODDS,
|
|
1388
1601
|
scoringType: ScoringType.GOALS,
|
|
1389
1602
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1390
1603
|
periodType: PeriodType.HALF,
|
|
@@ -1396,6 +1609,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1396
1609
|
sport: Sport.SOCCER,
|
|
1397
1610
|
id: League.AUSTRIA_BUNDESLIGA,
|
|
1398
1611
|
label: 'Austria Bundesliga',
|
|
1612
|
+
opticOddsName: 'Austria - Bundesliga',
|
|
1613
|
+
provider: Provider.OPTICODDS,
|
|
1399
1614
|
scoringType: ScoringType.GOALS,
|
|
1400
1615
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1401
1616
|
periodType: PeriodType.HALF,
|
|
@@ -1407,6 +1622,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1407
1622
|
sport: Sport.SOCCER,
|
|
1408
1623
|
id: League.DENMARK_SUPER_LEAGUE,
|
|
1409
1624
|
label: 'Denmark Superliga',
|
|
1625
|
+
opticOddsName: 'Denmark - Superliga',
|
|
1626
|
+
provider: Provider.OPTICODDS,
|
|
1410
1627
|
scoringType: ScoringType.GOALS,
|
|
1411
1628
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1412
1629
|
periodType: PeriodType.HALF,
|
|
@@ -1418,6 +1635,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1418
1635
|
sport: Sport.SOCCER,
|
|
1419
1636
|
id: League.POLAND_LEAGUE,
|
|
1420
1637
|
label: 'Poland Ekstraklasa',
|
|
1638
|
+
opticOddsName: 'Poland - Ekstraklasa',
|
|
1639
|
+
provider: Provider.OPTICODDS,
|
|
1421
1640
|
scoringType: ScoringType.GOALS,
|
|
1422
1641
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1423
1642
|
periodType: PeriodType.HALF,
|
|
@@ -1429,6 +1648,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1429
1648
|
sport: Sport.SOCCER,
|
|
1430
1649
|
id: League.SWEDEN_LEAGUE,
|
|
1431
1650
|
label: 'Sweden Allsvenskan',
|
|
1651
|
+
opticOddsName: 'Sweden - Allsvenskan',
|
|
1652
|
+
provider: Provider.OPTICODDS,
|
|
1432
1653
|
scoringType: ScoringType.GOALS,
|
|
1433
1654
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1434
1655
|
periodType: PeriodType.HALF,
|
|
@@ -1440,6 +1661,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1440
1661
|
sport: Sport.SOCCER,
|
|
1441
1662
|
id: League.COLOMBIA_PRIMERA_A,
|
|
1442
1663
|
label: 'Colombia Primera A',
|
|
1664
|
+
opticOddsName: 'Colombia - Primera A',
|
|
1665
|
+
provider: Provider.OPTICODDS,
|
|
1443
1666
|
scoringType: ScoringType.GOALS,
|
|
1444
1667
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1445
1668
|
periodType: PeriodType.HALF,
|
|
@@ -1451,6 +1674,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1451
1674
|
sport: Sport.SOCCER,
|
|
1452
1675
|
id: League.ENGLAND_EFL_CUP,
|
|
1453
1676
|
label: 'England EFL Cup',
|
|
1677
|
+
opticOddsName: 'England - EFL Cup',
|
|
1678
|
+
provider: Provider.OPTICODDS,
|
|
1454
1679
|
scoringType: ScoringType.GOALS,
|
|
1455
1680
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1456
1681
|
periodType: PeriodType.HALF,
|
|
@@ -1462,6 +1687,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1462
1687
|
sport: Sport.SOCCER,
|
|
1463
1688
|
id: League.ENGLAND_LEGAUE_1,
|
|
1464
1689
|
label: 'England League 1',
|
|
1690
|
+
opticOddsName: 'England - League 1',
|
|
1691
|
+
provider: Provider.OPTICODDS,
|
|
1465
1692
|
scoringType: ScoringType.GOALS,
|
|
1466
1693
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1467
1694
|
periodType: PeriodType.HALF,
|
|
@@ -1473,6 +1700,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1473
1700
|
sport: Sport.SOCCER,
|
|
1474
1701
|
id: League.URUGUAY_PRIMERA_DIVISION,
|
|
1475
1702
|
label: 'Uruguay Primera Division',
|
|
1703
|
+
opticOddsName: 'Uruguay - Primera Division',
|
|
1704
|
+
provider: Provider.OPTICODDS,
|
|
1476
1705
|
scoringType: ScoringType.GOALS,
|
|
1477
1706
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1478
1707
|
periodType: PeriodType.HALF,
|
|
@@ -1484,6 +1713,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1484
1713
|
sport: Sport.SOCCER,
|
|
1485
1714
|
id: League.AFC_CHAMPIONS_LEAGUE,
|
|
1486
1715
|
label: 'AFC Champions League',
|
|
1716
|
+
opticOddsName: 'AFC - Champions League',
|
|
1717
|
+
provider: Provider.OPTICODDS,
|
|
1487
1718
|
scoringType: ScoringType.GOALS,
|
|
1488
1719
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1489
1720
|
periodType: PeriodType.HALF,
|
|
@@ -1495,6 +1726,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1495
1726
|
sport: Sport.SOCCER,
|
|
1496
1727
|
id: League.ITALY_SUPER_CUP,
|
|
1497
1728
|
label: 'Italy Super Cup',
|
|
1729
|
+
opticOddsName: 'Italy - Supercoppa',
|
|
1730
|
+
provider: Provider.OPTICODDS,
|
|
1498
1731
|
scoringType: ScoringType.GOALS,
|
|
1499
1732
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1500
1733
|
periodType: PeriodType.HALF,
|
|
@@ -1506,6 +1739,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1506
1739
|
sport: Sport.SOCCER,
|
|
1507
1740
|
id: League.FRANCE_SUPER_CUP,
|
|
1508
1741
|
label: 'France Super Cup',
|
|
1742
|
+
opticOddsName: 'France - Super Cup',
|
|
1743
|
+
provider: Provider.OPTICODDS,
|
|
1509
1744
|
scoringType: ScoringType.GOALS,
|
|
1510
1745
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1511
1746
|
periodType: PeriodType.HALF,
|
|
@@ -1517,6 +1752,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1517
1752
|
sport: Sport.SOCCER,
|
|
1518
1753
|
id: League.SPAIN_SUPER_CUP,
|
|
1519
1754
|
label: 'Spain Super Cup',
|
|
1755
|
+
opticOddsName: 'Spain - Supercopa',
|
|
1756
|
+
provider: Provider.OPTICODDS,
|
|
1520
1757
|
scoringType: ScoringType.GOALS,
|
|
1521
1758
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1522
1759
|
periodType: PeriodType.HALF,
|
|
@@ -1528,6 +1765,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1528
1765
|
sport: Sport.SOCCER,
|
|
1529
1766
|
id: League.GERMANY_SUPER_CUP,
|
|
1530
1767
|
label: 'Germany Super Cup',
|
|
1768
|
+
opticOddsName: 'Germany - Super Cup',
|
|
1769
|
+
provider: Provider.OPTICODDS,
|
|
1531
1770
|
scoringType: ScoringType.GOALS,
|
|
1532
1771
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1533
1772
|
periodType: PeriodType.HALF,
|
|
@@ -1539,6 +1778,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1539
1778
|
sport: Sport.SOCCER,
|
|
1540
1779
|
id: League.PORTUGAL_LEAGUE_CUP,
|
|
1541
1780
|
label: 'Portugal League Cup',
|
|
1781
|
+
opticOddsName: 'Portugal - League Cup',
|
|
1782
|
+
provider: Provider.OPTICODDS,
|
|
1542
1783
|
scoringType: ScoringType.GOALS,
|
|
1543
1784
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1544
1785
|
periodType: PeriodType.HALF,
|
|
@@ -1550,6 +1791,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1550
1791
|
sport: Sport.SOCCER,
|
|
1551
1792
|
id: League.THAILAND_LEAGUE_1,
|
|
1552
1793
|
label: 'Thai League 1',
|
|
1794
|
+
opticOddsName: 'Thailand - Thai League 1',
|
|
1795
|
+
provider: Provider.OPTICODDS,
|
|
1553
1796
|
scoringType: ScoringType.GOALS,
|
|
1554
1797
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1555
1798
|
periodType: PeriodType.HALF,
|
|
@@ -1561,6 +1804,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1561
1804
|
sport: Sport.SOCCER,
|
|
1562
1805
|
id: League.NETHERLANDS_CUP,
|
|
1563
1806
|
label: 'Netherlands KNVB Beker',
|
|
1807
|
+
opticOddsName: 'Netherlands - KNVB Beker',
|
|
1808
|
+
provider: Provider.OPTICODDS,
|
|
1564
1809
|
scoringType: ScoringType.GOALS,
|
|
1565
1810
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1566
1811
|
periodType: PeriodType.HALF,
|
|
@@ -1572,6 +1817,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1572
1817
|
sport: Sport.SOCCER,
|
|
1573
1818
|
id: League.PORTUGAL_CUP,
|
|
1574
1819
|
label: 'Taca de Portugal',
|
|
1820
|
+
opticOddsName: 'Portugal - Taca de Portugal',
|
|
1821
|
+
provider: Provider.OPTICODDS,
|
|
1575
1822
|
scoringType: ScoringType.GOALS,
|
|
1576
1823
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1577
1824
|
periodType: PeriodType.HALF,
|
|
@@ -1583,6 +1830,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1583
1830
|
sport: Sport.SOCCER,
|
|
1584
1831
|
id: League.ENGLAND_SUPER_LEAGUE_WOMEN,
|
|
1585
1832
|
label: "England Women's Super League",
|
|
1833
|
+
opticOddsName: 'England - Womens Super League',
|
|
1834
|
+
provider: Provider.OPTICODDS,
|
|
1586
1835
|
scoringType: ScoringType.GOALS,
|
|
1587
1836
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1588
1837
|
periodType: PeriodType.HALF,
|
|
@@ -1594,6 +1843,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1594
1843
|
sport: Sport.SOCCER,
|
|
1595
1844
|
id: League.ITALY_SERIE_A_WOMEN,
|
|
1596
1845
|
label: 'Italy Serie A Femminile',
|
|
1846
|
+
opticOddsName: 'Italy - Serie A Femminile',
|
|
1847
|
+
provider: Provider.OPTICODDS,
|
|
1597
1848
|
scoringType: ScoringType.GOALS,
|
|
1598
1849
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1599
1850
|
periodType: PeriodType.HALF,
|
|
@@ -1605,6 +1856,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1605
1856
|
sport: Sport.SOCCER,
|
|
1606
1857
|
id: League.FRANCE_PREMIERE_LIGUE_WOMEN,
|
|
1607
1858
|
label: 'France Premiere Ligue Women',
|
|
1859
|
+
opticOddsName: 'France - Premiere Ligue',
|
|
1860
|
+
provider: Provider.OPTICODDS,
|
|
1608
1861
|
scoringType: ScoringType.GOALS,
|
|
1609
1862
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1610
1863
|
periodType: PeriodType.HALF,
|
|
@@ -1616,6 +1869,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1616
1869
|
sport: Sport.SOCCER,
|
|
1617
1870
|
id: League.GERMANY_BUNDESLIGA_WOMEN,
|
|
1618
1871
|
label: 'Germany Frauen Bundesliga',
|
|
1872
|
+
opticOddsName: 'Germany - Frauen Bundesliga',
|
|
1873
|
+
provider: Provider.OPTICODDS,
|
|
1619
1874
|
scoringType: ScoringType.GOALS,
|
|
1620
1875
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1621
1876
|
periodType: PeriodType.HALF,
|
|
@@ -1627,6 +1882,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1627
1882
|
sport: Sport.SOCCER,
|
|
1628
1883
|
id: League.SPAIN_LIGA_F_WOMEN,
|
|
1629
1884
|
label: 'Spain Liga F Women',
|
|
1885
|
+
opticOddsName: 'Spain - Liga F',
|
|
1886
|
+
provider: Provider.OPTICODDS,
|
|
1630
1887
|
scoringType: ScoringType.GOALS,
|
|
1631
1888
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1632
1889
|
periodType: PeriodType.HALF,
|
|
@@ -1638,6 +1895,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1638
1895
|
sport: Sport.SOCCER,
|
|
1639
1896
|
id: League.NETHERLANDS_EREDIVISIE_WOMEN,
|
|
1640
1897
|
label: 'Netherlands Eredivisie Women',
|
|
1898
|
+
opticOddsName: 'Netherlands - Vrouwen Eredivisie',
|
|
1899
|
+
provider: Provider.OPTICODDS,
|
|
1641
1900
|
scoringType: ScoringType.GOALS,
|
|
1642
1901
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1643
1902
|
periodType: PeriodType.HALF,
|
|
@@ -1649,6 +1908,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1649
1908
|
sport: Sport.SOCCER,
|
|
1650
1909
|
id: League.BELGIUM_SUPER_LEAGUE_WOMEN,
|
|
1651
1910
|
label: "Belgium Women's Super League",
|
|
1911
|
+
opticOddsName: 'Belgium - Womens Super League',
|
|
1912
|
+
provider: Provider.OPTICODDS,
|
|
1652
1913
|
scoringType: ScoringType.GOALS,
|
|
1653
1914
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1654
1915
|
periodType: PeriodType.HALF,
|
|
@@ -1660,6 +1921,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1660
1921
|
sport: Sport.SOCCER,
|
|
1661
1922
|
id: League.UEFA_CHAMPIONS_LEAGUE_WOMEN,
|
|
1662
1923
|
label: 'UEFA Champions League Women',
|
|
1924
|
+
opticOddsName: 'UEFA - Champions League Women',
|
|
1925
|
+
provider: Provider.OPTICODDS,
|
|
1663
1926
|
scoringType: ScoringType.GOALS,
|
|
1664
1927
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1665
1928
|
periodType: PeriodType.HALF,
|
|
@@ -1671,6 +1934,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1671
1934
|
sport: Sport.SOCCER,
|
|
1672
1935
|
id: League.USA_NWSL,
|
|
1673
1936
|
label: 'USA NWSL',
|
|
1937
|
+
opticOddsName: 'USA - NWSL',
|
|
1938
|
+
provider: Provider.OPTICODDS,
|
|
1674
1939
|
scoringType: ScoringType.GOALS,
|
|
1675
1940
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1676
1941
|
periodType: PeriodType.HALF,
|
|
@@ -1682,6 +1947,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1682
1947
|
sport: Sport.SOCCER,
|
|
1683
1948
|
id: League.AUSTRALIA_A_LEAGUE_WOMEN,
|
|
1684
1949
|
label: 'Australia A-League Women',
|
|
1950
|
+
opticOddsName: 'Australia - A-League Women',
|
|
1951
|
+
provider: Provider.OPTICODDS,
|
|
1685
1952
|
scoringType: ScoringType.GOALS,
|
|
1686
1953
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1687
1954
|
periodType: PeriodType.HALF,
|
|
@@ -1693,6 +1960,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1693
1960
|
sport: Sport.SOCCER,
|
|
1694
1961
|
id: League.CONCACAF_CHAMPIONS_CUP,
|
|
1695
1962
|
label: 'CONCACAF Champions Cup',
|
|
1963
|
+
opticOddsName: 'CONCACAF - Champions Cup',
|
|
1964
|
+
provider: Provider.OPTICODDS,
|
|
1696
1965
|
scoringType: ScoringType.GOALS,
|
|
1697
1966
|
matchResolveType: MatchResolveType.REGULAR,
|
|
1698
1967
|
periodType: PeriodType.HALF,
|
|
@@ -1705,6 +1974,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1705
1974
|
sport: Sport.BASKETBALL,
|
|
1706
1975
|
id: League.EUROCUP,
|
|
1707
1976
|
label: 'Eurocup',
|
|
1977
|
+
opticOddsName: 'Eurocup',
|
|
1978
|
+
provider: Provider.OPTICODDS,
|
|
1708
1979
|
scoringType: ScoringType.POINTS,
|
|
1709
1980
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1710
1981
|
periodType: PeriodType.QUARTER,
|
|
@@ -1716,6 +1987,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1716
1987
|
sport: Sport.BASKETBALL,
|
|
1717
1988
|
id: League.SPAIN_LIGA_ACB,
|
|
1718
1989
|
label: 'Spain Liga ACB',
|
|
1990
|
+
opticOddsName: 'Spain - Liga ACB',
|
|
1991
|
+
provider: Provider.OPTICODDS,
|
|
1719
1992
|
scoringType: ScoringType.POINTS,
|
|
1720
1993
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1721
1994
|
periodType: PeriodType.QUARTER,
|
|
@@ -1727,6 +2000,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1727
2000
|
sport: Sport.BASKETBALL,
|
|
1728
2001
|
id: League.ITALY_LEGA_BASKET_SERIE_A,
|
|
1729
2002
|
label: 'Italy Lega Basket Serie A',
|
|
2003
|
+
opticOddsName: 'Italy - Lega Basket Serie A',
|
|
2004
|
+
provider: Provider.OPTICODDS,
|
|
1730
2005
|
scoringType: ScoringType.POINTS,
|
|
1731
2006
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1732
2007
|
periodType: PeriodType.QUARTER,
|
|
@@ -1738,6 +2013,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1738
2013
|
sport: Sport.BASKETBALL,
|
|
1739
2014
|
id: League.GERMANY_BBL,
|
|
1740
2015
|
label: 'Germany BBL',
|
|
2016
|
+
opticOddsName: 'Germany - BBL',
|
|
2017
|
+
provider: Provider.OPTICODDS,
|
|
1741
2018
|
scoringType: ScoringType.POINTS,
|
|
1742
2019
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1743
2020
|
periodType: PeriodType.QUARTER,
|
|
@@ -1749,6 +2026,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1749
2026
|
sport: Sport.BASKETBALL,
|
|
1750
2027
|
id: League.FRANCE_LNB_PRO_A,
|
|
1751
2028
|
label: 'France LNB Pro A',
|
|
2029
|
+
opticOddsName: 'France - LNB Pro A',
|
|
2030
|
+
provider: Provider.OPTICODDS,
|
|
1752
2031
|
scoringType: ScoringType.POINTS,
|
|
1753
2032
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1754
2033
|
periodType: PeriodType.QUARTER,
|
|
@@ -1760,6 +2039,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1760
2039
|
sport: Sport.BASKETBALL,
|
|
1761
2040
|
id: League.CHINA_CBA,
|
|
1762
2041
|
label: 'China CBA',
|
|
2042
|
+
opticOddsName: 'China - CBA',
|
|
2043
|
+
provider: Provider.OPTICODDS,
|
|
1763
2044
|
scoringType: ScoringType.POINTS,
|
|
1764
2045
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1765
2046
|
periodType: PeriodType.QUARTER,
|
|
@@ -1771,6 +2052,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1771
2052
|
sport: Sport.BASKETBALL,
|
|
1772
2053
|
id: League.AUSTRALIA_NBL,
|
|
1773
2054
|
label: 'Australia NBL',
|
|
2055
|
+
opticOddsName: 'Australia - NBL',
|
|
2056
|
+
provider: Provider.OPTICODDS,
|
|
1774
2057
|
scoringType: ScoringType.POINTS,
|
|
1775
2058
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1776
2059
|
periodType: PeriodType.QUARTER,
|
|
@@ -1782,6 +2065,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1782
2065
|
sport: Sport.BASKETBALL,
|
|
1783
2066
|
id: League.GREECE_A1_LEAGUE,
|
|
1784
2067
|
label: 'Greece A1 League',
|
|
2068
|
+
opticOddsName: 'Greece - A1 League',
|
|
2069
|
+
provider: Provider.OPTICODDS,
|
|
1785
2070
|
scoringType: ScoringType.POINTS,
|
|
1786
2071
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1787
2072
|
periodType: PeriodType.QUARTER,
|
|
@@ -1793,6 +2078,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1793
2078
|
sport: Sport.BASKETBALL,
|
|
1794
2079
|
id: League.FIBA_CHAMPIONS_LEAGUE,
|
|
1795
2080
|
label: 'FIBA Champions League',
|
|
2081
|
+
opticOddsName: 'International - Champions Leagu',
|
|
2082
|
+
provider: Provider.OPTICODDS,
|
|
1796
2083
|
scoringType: ScoringType.POINTS,
|
|
1797
2084
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1798
2085
|
periodType: PeriodType.QUARTER,
|
|
@@ -1804,6 +2091,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1804
2091
|
sport: Sport.BASKETBALL,
|
|
1805
2092
|
id: League.NCAAW,
|
|
1806
2093
|
label: 'NCAAW',
|
|
2094
|
+
opticOddsName: 'NCAAW',
|
|
2095
|
+
provider: Provider.OPTICODDS,
|
|
1807
2096
|
scoringType: ScoringType.POINTS,
|
|
1808
2097
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1809
2098
|
periodType: PeriodType.QUARTER,
|
|
@@ -1815,6 +2104,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1815
2104
|
sport: Sport.BASKETBALL,
|
|
1816
2105
|
id: League.FIBA_AMERICUP_QUALIFIERS,
|
|
1817
2106
|
label: 'FIBA Americup Qualifiers',
|
|
2107
|
+
opticOddsName: 'FIBA - Americup Qualifiers',
|
|
2108
|
+
provider: Provider.OPTICODDS,
|
|
1818
2109
|
scoringType: ScoringType.POINTS,
|
|
1819
2110
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1820
2111
|
periodType: PeriodType.QUARTER,
|
|
@@ -1826,6 +2117,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1826
2117
|
sport: Sport.BASKETBALL,
|
|
1827
2118
|
id: League.FIBA_ASIA_CUP_QUALIFIERS,
|
|
1828
2119
|
label: 'FIBA Asia Cup Qualifiers',
|
|
2120
|
+
opticOddsName: 'FIBA - Asia Cup Qualifiers',
|
|
2121
|
+
provider: Provider.OPTICODDS,
|
|
1829
2122
|
scoringType: ScoringType.POINTS,
|
|
1830
2123
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1831
2124
|
periodType: PeriodType.QUARTER,
|
|
@@ -1837,6 +2130,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1837
2130
|
sport: Sport.BASKETBALL,
|
|
1838
2131
|
id: League.FIBA_EUROBASKET_QUALIFIERS,
|
|
1839
2132
|
label: 'FIBA Eurobasket Qualifiers',
|
|
2133
|
+
opticOddsName: 'FIBA - Eurobasket Qualifiers',
|
|
2134
|
+
provider: Provider.OPTICODDS,
|
|
1840
2135
|
scoringType: ScoringType.POINTS,
|
|
1841
2136
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1842
2137
|
periodType: PeriodType.QUARTER,
|
|
@@ -1848,6 +2143,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1848
2143
|
sport: Sport.BASKETBALL,
|
|
1849
2144
|
id: League.FIBA_WORLD_CUP_QUALIFIERS,
|
|
1850
2145
|
label: 'FIBA World Cup Qualifiers',
|
|
2146
|
+
opticOddsName: 'FIBA - World Cup Qualifiers',
|
|
2147
|
+
provider: Provider.OPTICODDS,
|
|
1851
2148
|
scoringType: ScoringType.POINTS,
|
|
1852
2149
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1853
2150
|
periodType: PeriodType.QUARTER,
|
|
@@ -1859,6 +2156,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1859
2156
|
sport: Sport.BASKETBALL,
|
|
1860
2157
|
id: League.FIBA_AFRO_BASKET_QUALIFIERS,
|
|
1861
2158
|
label: 'FIBA AfroBasket Qualifiers',
|
|
2159
|
+
opticOddsName: 'FIBA - AfroBasket Qualifiers',
|
|
2160
|
+
provider: Provider.OPTICODDS,
|
|
1862
2161
|
scoringType: ScoringType.POINTS,
|
|
1863
2162
|
matchResolveType: MatchResolveType.OVERTIME,
|
|
1864
2163
|
periodType: PeriodType.QUARTER,
|
|
@@ -1870,6 +2169,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1870
2169
|
sport: Sport.ESPORTS,
|
|
1871
2170
|
id: League.ROCKET_LEAGUE,
|
|
1872
2171
|
label: 'Rocket League',
|
|
2172
|
+
opticOddsName: 'Rocket League',
|
|
2173
|
+
provider: Provider.OPTICODDS,
|
|
1873
2174
|
scoringType: ScoringType.MAPS,
|
|
1874
2175
|
matchResolveType: MatchResolveType.EMPTY,
|
|
1875
2176
|
periodType: PeriodType.MAP,
|
|
@@ -1881,6 +2182,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1881
2182
|
sport: Sport.ESPORTS,
|
|
1882
2183
|
id: League.CALL_OF_DUTY,
|
|
1883
2184
|
label: 'Call of Duty',
|
|
2185
|
+
opticOddsName: 'Call of Duty',
|
|
2186
|
+
provider: Provider.OPTICODDS,
|
|
1884
2187
|
scoringType: ScoringType.MAPS,
|
|
1885
2188
|
matchResolveType: MatchResolveType.EMPTY,
|
|
1886
2189
|
periodType: PeriodType.MAP,
|
|
@@ -1892,6 +2195,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1892
2195
|
sport: Sport.ESPORTS,
|
|
1893
2196
|
id: League.STARCRAFT,
|
|
1894
2197
|
label: 'Starcraft',
|
|
2198
|
+
opticOddsName: 'Starcraft',
|
|
2199
|
+
provider: Provider.OPTICODDS,
|
|
1895
2200
|
scoringType: ScoringType.MAPS,
|
|
1896
2201
|
matchResolveType: MatchResolveType.EMPTY,
|
|
1897
2202
|
periodType: PeriodType.MAP,
|
|
@@ -1903,6 +2208,8 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1903
2208
|
sport: Sport.ESPORTS,
|
|
1904
2209
|
id: League.VALORANT,
|
|
1905
2210
|
label: 'Valorant',
|
|
2211
|
+
opticOddsName: 'Valorant',
|
|
2212
|
+
provider: Provider.OPTICODDS,
|
|
1906
2213
|
scoringType: ScoringType.MAPS,
|
|
1907
2214
|
matchResolveType: MatchResolveType.EMPTY,
|
|
1908
2215
|
periodType: PeriodType.MAP,
|
|
@@ -1914,6 +2221,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1914
2221
|
sport: Sport.FUTURES,
|
|
1915
2222
|
id: League.NFL_FUTURES,
|
|
1916
2223
|
label: 'NFL Futures',
|
|
2224
|
+
provider: Provider.EMPTY,
|
|
1917
2225
|
logo: `/logos/leagueLogos/nfl.webp`,
|
|
1918
2226
|
logoClass: 'icon-homepage league--nfl',
|
|
1919
2227
|
scoringType: ScoringType.EMPTY,
|
|
@@ -1927,6 +2235,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1927
2235
|
sport: Sport.FUTURES,
|
|
1928
2236
|
id: League.NHL_FUTURES,
|
|
1929
2237
|
label: 'NHL Futures',
|
|
2238
|
+
provider: Provider.EMPTY,
|
|
1930
2239
|
logo: `/logos/leagueLogos/nhl.webp`,
|
|
1931
2240
|
logoClass: 'icon-homepage league--nhl',
|
|
1932
2241
|
scoringType: ScoringType.EMPTY,
|
|
@@ -1940,6 +2249,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1940
2249
|
sport: Sport.FUTURES,
|
|
1941
2250
|
id: League.NBA_FUTURES,
|
|
1942
2251
|
label: 'NBA Futures',
|
|
2252
|
+
provider: Provider.EMPTY,
|
|
1943
2253
|
logo: `/logos/leagueLogos/nba.webp`,
|
|
1944
2254
|
logoClass: 'icon-homepage league--nba',
|
|
1945
2255
|
scoringType: ScoringType.EMPTY,
|
|
@@ -1953,6 +2263,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1953
2263
|
sport: Sport.FUTURES,
|
|
1954
2264
|
id: League.NCAAB_FUTURES,
|
|
1955
2265
|
label: 'NCAAB Futures',
|
|
2266
|
+
provider: Provider.EMPTY,
|
|
1956
2267
|
logoClass: 'icon-homepage league--ncaa',
|
|
1957
2268
|
scoringType: ScoringType.EMPTY,
|
|
1958
2269
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -1965,6 +2276,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1965
2276
|
sport: Sport.FUTURES,
|
|
1966
2277
|
id: League.EPL_FUTURES,
|
|
1967
2278
|
label: 'EPL Futures',
|
|
2279
|
+
provider: Provider.EMPTY,
|
|
1968
2280
|
logo: `/logos/leagueLogos/EPL.webp`,
|
|
1969
2281
|
logoClass: 'icon-homepage league--epl',
|
|
1970
2282
|
scoringType: ScoringType.EMPTY,
|
|
@@ -1978,6 +2290,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1978
2290
|
sport: Sport.FUTURES,
|
|
1979
2291
|
id: League.LIGUE_ONE_FUTURES,
|
|
1980
2292
|
label: 'Ligue 1 Futures',
|
|
2293
|
+
provider: Provider.EMPTY,
|
|
1981
2294
|
logo: `/logos/leagueLogos/Ligue1.webp`,
|
|
1982
2295
|
logoClass: 'icon-homepage league--ligue1',
|
|
1983
2296
|
scoringType: ScoringType.EMPTY,
|
|
@@ -1991,6 +2304,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
1991
2304
|
sport: Sport.FUTURES,
|
|
1992
2305
|
id: League.BUNDESLIGA_FUTURES,
|
|
1993
2306
|
label: 'Bundesliga Futures',
|
|
2307
|
+
provider: Provider.EMPTY,
|
|
1994
2308
|
logo: '/logos/leagueLogos/bundesliga.webp',
|
|
1995
2309
|
logoClass: 'icon-homepage league--bundesliga',
|
|
1996
2310
|
scoringType: ScoringType.EMPTY,
|
|
@@ -2004,6 +2318,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
2004
2318
|
sport: Sport.FUTURES,
|
|
2005
2319
|
id: League.LA_LIGA_FUTURES,
|
|
2006
2320
|
label: 'La Liga Futures',
|
|
2321
|
+
provider: Provider.EMPTY,
|
|
2007
2322
|
logo: `/logos/leagueLogos/LaLiga.webp`,
|
|
2008
2323
|
logoClass: 'icon-homepage league--la-liga',
|
|
2009
2324
|
scoringType: ScoringType.EMPTY,
|
|
@@ -2017,6 +2332,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
2017
2332
|
sport: Sport.FUTURES,
|
|
2018
2333
|
id: League.SERIE_A_FUTURES,
|
|
2019
2334
|
label: 'Serie A Futures',
|
|
2335
|
+
provider: Provider.EMPTY,
|
|
2020
2336
|
logo: `/logos/leagueLogos/seriea.webp`,
|
|
2021
2337
|
logoClass: 'icon-homepage league--serie-a',
|
|
2022
2338
|
scoringType: ScoringType.EMPTY,
|
|
@@ -2030,6 +2346,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
2030
2346
|
sport: Sport.FUTURES,
|
|
2031
2347
|
id: League.UEFA_CHAMPIONS_LEAGUE_FUTURES,
|
|
2032
2348
|
label: 'UEFA Champions League Futures',
|
|
2349
|
+
provider: Provider.EMPTY,
|
|
2033
2350
|
logo: `/logos/leagueLogos/ucl-white.webp`,
|
|
2034
2351
|
logoClass: 'icon-homepage league--ucl',
|
|
2035
2352
|
scoringType: ScoringType.EMPTY,
|
|
@@ -2043,6 +2360,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
2043
2360
|
sport: Sport.FUTURES,
|
|
2044
2361
|
id: League.ATP_FUTURES,
|
|
2045
2362
|
label: 'ATP Futures',
|
|
2363
|
+
provider: Provider.EMPTY,
|
|
2046
2364
|
logo: `/logos/Tennis/atp.webp`,
|
|
2047
2365
|
logoClass: 'icon-homepage league--atp',
|
|
2048
2366
|
scoringType: ScoringType.EMPTY,
|
|
@@ -2056,6 +2374,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
2056
2374
|
sport: Sport.FUTURES,
|
|
2057
2375
|
id: League.EUROLEAGUE_FUTURES,
|
|
2058
2376
|
label: 'Euroleague Futures',
|
|
2377
|
+
provider: Provider.EMPTY,
|
|
2059
2378
|
logoClass: 'icon-homepage league--euroleague',
|
|
2060
2379
|
logo: `/logos/leagueLogos/euroleague.webp`,
|
|
2061
2380
|
scoringType: ScoringType.EMPTY,
|
|
@@ -2069,6 +2388,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
2069
2388
|
sport: Sport.GOLF,
|
|
2070
2389
|
id: League.GOLF_H2H,
|
|
2071
2390
|
label: 'Golf head-to-head',
|
|
2391
|
+
provider: Provider.EMPTY,
|
|
2072
2392
|
logoClass: 'icon-homepage league--pga',
|
|
2073
2393
|
scoringType: ScoringType.EMPTY,
|
|
2074
2394
|
matchResolveType: MatchResolveType.EMPTY,
|
|
@@ -2081,6 +2401,7 @@ export const LeagueMap: Record<League, LeagueInfo> = {
|
|
|
2081
2401
|
sport: Sport.GOLF,
|
|
2082
2402
|
id: League.GOLF_WINNER,
|
|
2083
2403
|
label: 'Golf Tournament Winner',
|
|
2404
|
+
provider: Provider.EMPTY,
|
|
2084
2405
|
logoClass: 'icon-homepage league--pga',
|
|
2085
2406
|
scoringType: ScoringType.EMPTY,
|
|
2086
2407
|
matchResolveType: MatchResolveType.EMPTY,
|