overtime-utils 0.2.50 → 0.2.52

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,478 +1,485 @@
1
- import { League, MatchResolveType, PeriodType, Provider, ScoringType, Sport } from '../../enums/sports';
2
- import { LeagueInfo } from '../../types/sports';
3
-
4
- // Common default values for Basketball leagues
5
- export const BASKETBALL_DEFAULTS = {
6
- sport: Sport.BASKETBALL,
7
- provider: Provider.OPTICODDS,
8
- scoringType: ScoringType.POINTS,
9
- matchResolveType: MatchResolveType.OVERTIME,
10
- periodType: PeriodType.QUARTER,
11
- isDrawAvailable: false,
12
- hidden: false,
13
- } as const;
14
-
15
- export const BASKETBALL_LEAGUES: Partial<Record<League, LeagueInfo>> = {
16
- [League.NBA]: {
17
- ...BASKETBALL_DEFAULTS,
18
- id: League.NBA,
19
- label: 'NBA',
20
- opticOddsName: 'NBA',
21
- logo: `/logos/leagueLogos/nba.webp`,
22
- logoClass: 'icon-homepage league--nba',
23
- priority: 301,
24
- },
25
- [League.NCAAB]: {
26
- ...BASKETBALL_DEFAULTS,
27
- id: League.NCAAB,
28
- label: 'NCAA Basketball',
29
- opticOddsName: 'NCAAB',
30
- logoClass: 'icon-homepage league--ncaa',
31
- periodType: PeriodType.HALF,
32
- priority: 302,
33
- },
34
- [League.WNBA]: {
35
- ...BASKETBALL_DEFAULTS,
36
- id: League.WNBA,
37
- label: 'WNBA',
38
- opticOddsName: 'WNBA',
39
- logoClass: 'icon-homepage league--wnba',
40
- priority: 305,
41
- },
42
- [League.EUROLEAGUE]: {
43
- ...BASKETBALL_DEFAULTS,
44
- id: League.EUROLEAGUE,
45
- label: 'Euroleague',
46
- opticOddsName: 'Euroleague',
47
- logoClass: 'icon-homepage league--euroleague',
48
- logo: `/logos/leagueLogos/euroleague.webp`,
49
- priority: 303,
50
- },
51
- [League.NBA_SUMMER_LEAGUE]: {
52
- ...BASKETBALL_DEFAULTS,
53
- id: League.NBA_SUMMER_LEAGUE,
54
- label: 'NBA Summer League',
55
- opticOddsName: 'USA - NBA Summer League',
56
- logo: `/logos/leagueLogos/nba.webp`,
57
- logoClass: 'icon-homepage league--nba',
58
- priority: 301,
59
- },
60
- [League.NBA_ALL_STAR]: {
61
- ...BASKETBALL_DEFAULTS,
62
- id: League.NBA_ALL_STAR,
63
- label: 'NBA All Star',
64
- opticOddsName: 'USA - NBA All Star',
65
- logo: `/logos/leagueLogos/nba.webp`,
66
- logoClass: 'icon-homepage league--nba',
67
- priority: 305,
68
- },
69
- [League.SUMMER_OLYMPICS_BASKETBALL]: {
70
- ...BASKETBALL_DEFAULTS,
71
- id: League.SUMMER_OLYMPICS_BASKETBALL,
72
- label: 'Olympic Games Basketball',
73
- opticOddsName: 'Olympics Basketball Men',
74
- provider: Provider.EMPTY,
75
- logoClass: 'icon-homepage league--paris2024',
76
- priority: 306,
77
- hidden: true,
78
- },
79
- [League.SUMMER_OLYMPICS_BASKETBALL_WOMEN]: {
80
- ...BASKETBALL_DEFAULTS,
81
- id: League.SUMMER_OLYMPICS_BASKETBALL_WOMEN,
82
- label: 'Olympic Games Basketball Women',
83
- opticOddsName: 'Olympics Basketball Women',
84
- provider: Provider.EMPTY,
85
- logoClass: 'icon-homepage league--paris2024',
86
- priority: 306,
87
- hidden: true,
88
- },
89
- [League.FIBA_WORLD_CUP]: {
90
- ...BASKETBALL_DEFAULTS,
91
- id: League.FIBA_WORLD_CUP,
92
- label: 'FIBA World Cup',
93
- provider: Provider.EMPTY,
94
- priority: 300,
95
- hidden: true,
96
- },
97
- [League.SUMMER_OLYMPICS_BASKETBALL_3X3]: {
98
- ...BASKETBALL_DEFAULTS,
99
- id: League.SUMMER_OLYMPICS_BASKETBALL_3X3,
100
- label: 'Olympic Games Basketball 3x3',
101
- opticOddsName: 'Olympics Basketball 3x3 Men',
102
- provider: Provider.EMPTY,
103
- logoClass: 'icon-homepage league--paris2024',
104
- priority: 307,
105
- hidden: true,
106
- },
107
- [League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN]: {
108
- ...BASKETBALL_DEFAULTS,
109
- id: League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN,
110
- label: 'Olympic Games Basketball 3x3 Women',
111
- opticOddsName: 'Olympics Basketball 3x3 Women',
112
- provider: Provider.EMPTY,
113
- logoClass: 'icon-homepage league--paris2024',
114
- priority: 307,
115
- hidden: true,
116
- },
117
- [League.SUMMER_OLYMPICS_QUALIFICATION]: {
118
- ...BASKETBALL_DEFAULTS,
119
- id: League.SUMMER_OLYMPICS_QUALIFICATION,
120
- label: 'Summer Olympics Qualification',
121
- provider: Provider.EMPTY,
122
- priority: 306,
123
- hidden: true,
124
- },
125
- [League.FIBA_EUROBASKET]: {
126
- ...BASKETBALL_DEFAULTS,
127
- id: League.FIBA_EUROBASKET,
128
- label: 'FIBA EuroBasket',
129
- opticOddsName: 'FIBA - EuroBasket',
130
- priority: 300,
131
- },
132
- [League.FIBA_AFROBASKET]: {
133
- ...BASKETBALL_DEFAULTS,
134
- id: League.FIBA_AFROBASKET,
135
- label: 'FIBA AfroBasket',
136
- opticOddsName: 'FIBA - AfroBasket',
137
- priority: 300,
138
- },
139
- [League.FIBA_AMERICUP]: {
140
- ...BASKETBALL_DEFAULTS,
141
- id: League.FIBA_AMERICUP,
142
- label: 'FIBA Americup',
143
- opticOddsName: 'FIBA - Americup',
144
- priority: 300,
145
- },
146
- [League.EUROCUP]: {
147
- ...BASKETBALL_DEFAULTS,
148
- id: League.EUROCUP,
149
- label: 'Eurocup',
150
- opticOddsName: 'Eurocup',
151
- priority: 304,
152
- },
153
- [League.FIBA_EUROPE_CUP]: {
154
- ...BASKETBALL_DEFAULTS,
155
- id: League.FIBA_EUROPE_CUP,
156
- label: 'FIBA Europe Cup',
157
- opticOddsName: 'FIBA - Europe Cup',
158
- priority: 304,
159
- },
160
- [League.ABA_LEAGUE]: {
161
- ...BASKETBALL_DEFAULTS,
162
- id: League.ABA_LEAGUE,
163
- label: 'ABA League',
164
- opticOddsName: 'International - ABA League',
165
- priority: 307,
166
- },
167
- [League.SPAIN_LIGA_ACB]: {
168
- ...BASKETBALL_DEFAULTS,
169
- id: League.SPAIN_LIGA_ACB,
170
- label: 'Spain Liga ACB',
171
- opticOddsName: 'Spain - Liga ACB',
172
- priority: 308,
173
- },
174
- [League.ITALY_LEGA_BASKET_SERIE_A]: {
175
- ...BASKETBALL_DEFAULTS,
176
- id: League.ITALY_LEGA_BASKET_SERIE_A,
177
- label: 'Italy Lega Basket Serie A',
178
- opticOddsName: 'Italy - Lega Basket Serie A',
179
- priority: 309,
180
- },
181
- [League.GERMANY_BBL]: {
182
- ...BASKETBALL_DEFAULTS,
183
- id: League.GERMANY_BBL,
184
- label: 'Germany BBL',
185
- opticOddsName: 'Germany - BBL',
186
- priority: 310,
187
- },
188
- [League.FRANCE_LNB_PRO_A]: {
189
- ...BASKETBALL_DEFAULTS,
190
- id: League.FRANCE_LNB_PRO_A,
191
- label: 'France LNB Pro A',
192
- opticOddsName: 'France - LNB Pro A',
193
- priority: 311,
194
- },
195
- [League.CHINA_CBA]: {
196
- ...BASKETBALL_DEFAULTS,
197
- id: League.CHINA_CBA,
198
- label: 'China CBA',
199
- opticOddsName: 'China - CBA',
200
- priority: 312,
201
- },
202
- [League.AUSTRALIA_NBL]: {
203
- ...BASKETBALL_DEFAULTS,
204
- id: League.AUSTRALIA_NBL,
205
- label: 'Australia NBL',
206
- opticOddsName: 'Australia - NBL',
207
- priority: 313,
208
- },
209
- [League.GREECE_A1_LEAGUE]: {
210
- ...BASKETBALL_DEFAULTS,
211
- id: League.GREECE_A1_LEAGUE,
212
- label: 'Greece A1 League',
213
- opticOddsName: 'Greece - A1 League',
214
- priority: 314,
215
- },
216
- [League.FIBA_CHAMPIONS_LEAGUE]: {
217
- ...BASKETBALL_DEFAULTS,
218
- id: League.FIBA_CHAMPIONS_LEAGUE,
219
- label: 'FIBA Champions League',
220
- opticOddsName: 'International - Champions League',
221
- priority: 315,
222
- },
223
- [League.TURKEY_BSL]: {
224
- ...BASKETBALL_DEFAULTS,
225
- id: League.TURKEY_BSL,
226
- label: 'Turkey BSL',
227
- opticOddsName: 'Turkey - BSL',
228
- priority: 316,
229
- },
230
- [League.FIBA_EUROBASKET_WOMEN]: {
231
- ...BASKETBALL_DEFAULTS,
232
- id: League.FIBA_EUROBASKET_WOMEN,
233
- label: 'FIBA Eurobasket Women',
234
- opticOddsName: 'FIBA - Eurobasket Women',
235
- priority: 317,
236
- },
237
- [League.PBA_PHILIPPINE_CUP]: {
238
- ...BASKETBALL_DEFAULTS,
239
- id: League.PBA_PHILIPPINE_CUP,
240
- label: 'PBA Philippine Cup',
241
- opticOddsName: 'Philippines - Phillipine Cup',
242
- priority: 318,
243
- },
244
- [League.BIG3]: {
245
- ...BASKETBALL_DEFAULTS,
246
- id: League.BIG3,
247
- label: 'BIG3',
248
- opticOddsName: 'BIG3',
249
- priority: 330,
250
- },
251
- [League.NCAAW]: {
252
- ...BASKETBALL_DEFAULTS,
253
- id: League.NCAAW,
254
- label: 'NCAAW',
255
- opticOddsName: 'NCAAW',
256
- priority: 317,
257
- },
258
- [League.FIBA_AMERICUP_WOMEN]: {
259
- ...BASKETBALL_DEFAULTS,
260
- id: League.FIBA_AMERICUP_WOMEN,
261
- label: 'FIBA Americup Women',
262
- opticOddsName: 'FIBA - Americup Women',
263
- priority: 319,
264
- },
265
- [League.FIBA_AMERICUP_QUALIFIERS]: {
266
- ...BASKETBALL_DEFAULTS,
267
- id: League.FIBA_AMERICUP_QUALIFIERS,
268
- label: 'FIBA Americup Qualifiers',
269
- opticOddsName: 'FIBA - Americup Qualifiers',
270
- priority: 320,
271
- },
272
- [League.FIBA_ASIA_CUP_QUALIFIERS]: {
273
- ...BASKETBALL_DEFAULTS,
274
- id: League.FIBA_ASIA_CUP_QUALIFIERS,
275
- label: 'FIBA Asia Cup Qualifiers',
276
- opticOddsName: 'FIBA - Asia Cup Qualifiers',
277
- priority: 321,
278
- },
279
- [League.FIBA_EUROBASKET_QUALIFIERS]: {
280
- ...BASKETBALL_DEFAULTS,
281
- id: League.FIBA_EUROBASKET_QUALIFIERS,
282
- label: 'FIBA Eurobasket Qualifiers',
283
- opticOddsName: 'FIBA - Eurobasket Qualifiers',
284
- priority: 322,
285
- },
286
- [League.FIBA_WORLD_CUP_QUALIFIERS]: {
287
- ...BASKETBALL_DEFAULTS,
288
- id: League.FIBA_WORLD_CUP_QUALIFIERS,
289
- label: 'FIBA World Cup Qualifiers',
290
- opticOddsName: 'FIBA - World Cup Qualifiers',
291
- priority: 323,
292
- },
293
- [League.FIBA_EUROBASKET_QUALIFIERS_WOMEN]: {
294
- ...BASKETBALL_DEFAULTS,
295
- id: League.FIBA_EUROBASKET_QUALIFIERS_WOMEN,
296
- label: 'FIBA EuroBasket Qualifiers Women',
297
- opticOddsName: 'FIBA - EuroBasket Qualifiers Women',
298
- priority: 324,
299
- },
300
- [League.FIBA_WORLD_CUP_QUALIFIERS_WOMEN]: {
301
- ...BASKETBALL_DEFAULTS,
302
- id: League.FIBA_WORLD_CUP_QUALIFIERS_WOMEN,
303
- label: 'FIBA World Cup Qualifiers Women',
304
- opticOddsName: 'FIBA - World Cup Qualifiers Women',
305
- priority: 325,
306
- },
307
- [League.FIBA_WORLD_CUP_WOMEN]: {
308
- ...BASKETBALL_DEFAULTS,
309
- id: League.FIBA_WORLD_CUP_WOMEN,
310
- label: 'FIBA World Cup Women',
311
- opticOddsName: 'FIBA - World Cup Women',
312
- priority: 325,
313
- },
314
- [League.FIBA_AFRO_BASKET_QUALIFIERS]: {
315
- ...BASKETBALL_DEFAULTS,
316
- id: League.FIBA_AFRO_BASKET_QUALIFIERS,
317
- label: 'FIBA AfroBasket Qualifiers',
318
- opticOddsName: 'FIBA - AfroBasket Qualifiers',
319
- priority: 324,
320
- },
321
- [League.FIBA_WORLD_CUP_U19]: {
322
- ...BASKETBALL_DEFAULTS,
323
- id: League.FIBA_WORLD_CUP_U19,
324
- label: 'FIBA World Cup U19',
325
- opticOddsName: 'FIBA - World Cup U19',
326
- priority: 325,
327
- },
328
- [League.ISRAEL_SUPER_LEAGUE]: {
329
- ...BASKETBALL_DEFAULTS,
330
- id: League.ISRAEL_SUPER_LEAGUE,
331
- label: 'Israel Super League',
332
- opticOddsName: 'Israel - Super League',
333
- priority: 326,
334
- },
335
- [League.INTERNATIONAL_VTB_UNITED_LEAGUE]: {
336
- ...BASKETBALL_DEFAULTS,
337
- id: League.INTERNATIONAL_VTB_UNITED_LEAGUE,
338
- label: 'VTB United League',
339
- opticOddsName: 'International - VTB United League',
340
- priority: 327,
341
- },
342
- [League.ITALY_SERIE_A2]: {
343
- ...BASKETBALL_DEFAULTS,
344
- id: League.ITALY_SERIE_A2,
345
- label: 'Italy Serie A2',
346
- opticOddsName: 'Italy - Serie A2',
347
- priority: 328,
348
- },
349
-
350
- [League.EUROLEAGUE_WOMEN]: {
351
- ...BASKETBALL_DEFAULTS,
352
- id: League.EUROLEAGUE_WOMEN,
353
- label: 'Euroleague Women',
354
- opticOddsName: 'Euroleague - Women',
355
- priority: 329,
356
- },
357
-
358
- [League.FINLAND_KORISLIIGA]: {
359
- ...BASKETBALL_DEFAULTS,
360
- id: League.FINLAND_KORISLIIGA,
361
- label: 'Finland Korisliiga',
362
- opticOddsName: 'Finland - Korisliiga',
363
- priority: 330,
364
- },
365
-
366
- [League.POLAND_PKL]: {
367
- ...BASKETBALL_DEFAULTS,
368
- id: League.POLAND_PKL,
369
- label: 'Poland PKL',
370
- opticOddsName: 'Poland - PKL',
371
- priority: 331,
372
- },
373
-
374
- [League.KOREA_WKBL]: {
375
- ...BASKETBALL_DEFAULTS,
376
- id: League.KOREA_WKBL,
377
- label: 'Korea WKBL',
378
- opticOddsName: 'Korea - WKBL',
379
- priority: 332,
380
- },
381
-
382
- [League.KOREA_KBL]: {
383
- ...BASKETBALL_DEFAULTS,
384
- id: League.KOREA_KBL,
385
- label: 'Korea KBL',
386
- opticOddsName: 'Korea - KBL',
387
- priority: 333,
388
- },
389
-
390
- [League.SINGAPORE_NBL]: {
391
- ...BASKETBALL_DEFAULTS,
392
- id: League.SINGAPORE_NBL,
393
- label: 'Singapore NBL',
394
- opticOddsName: 'Singapore - NBL',
395
- priority: 334,
396
- },
397
-
398
- [League.ARGENTINA_LNB]: {
399
- ...BASKETBALL_DEFAULTS,
400
- id: League.ARGENTINA_LNB,
401
- label: 'Argentina LNB',
402
- opticOddsName: 'Argentina - LNB',
403
- priority: 335,
404
- },
405
-
406
- [League.NORWAY_BLNO]: {
407
- ...BASKETBALL_DEFAULTS,
408
- id: League.NORWAY_BLNO,
409
- label: 'Norway BLNO',
410
- opticOddsName: 'Norway - BLNO',
411
- priority: 336,
412
- },
413
-
414
- [League.SWEDEN_BASKETLIGAEN]: {
415
- ...BASKETBALL_DEFAULTS,
416
- id: League.SWEDEN_BASKETLIGAEN,
417
- label: 'Sweden BasketLigaen',
418
- opticOddsName: 'Sweden - BasketLigaen',
419
- priority: 337,
420
- },
421
-
422
- [League.AUSTRIA_BSL]: {
423
- ...BASKETBALL_DEFAULTS,
424
- id: League.AUSTRIA_BSL,
425
- label: 'Austria BSL',
426
- opticOddsName: 'Austria - BSL',
427
- priority: 338,
428
- },
429
- [League.JAPAN_B1_LEAGUE]: {
430
- ...BASKETBALL_DEFAULTS,
431
- id: League.JAPAN_B1_LEAGUE,
432
- label: 'Japan B1 League',
433
- opticOddsName: 'Japan - B1 League',
434
- priority: 318,
435
- },
436
- [League.MEXICO_LNBP]: {
437
- ...BASKETBALL_DEFAULTS,
438
- id: League.MEXICO_LNBP,
439
- label: 'Mexico LNBP',
440
- opticOddsName: 'Mexico - LNBP',
441
- priority: 325,
442
- },
443
- [League.PHILIPPINES_GOVERNORS_CUP]: {
444
- ...BASKETBALL_DEFAULTS,
445
- id: League.PHILIPPINES_GOVERNORS_CUP,
446
- label: 'Philippines Governors Cup',
447
- opticOddsName: 'Philippines - Governors Cup',
448
- priority: 326,
449
- },
450
- [League.CZECH_REPUBLIC_NBL]: {
451
- ...BASKETBALL_DEFAULTS,
452
- id: League.CZECH_REPUBLIC_NBL,
453
- label: 'Czech Republic NBL',
454
- opticOddsName: 'Czech Republic - NBL',
455
- priority: 328,
456
- },
457
- [League.INTERNATIONAL_BNXT_LEAGUE]: {
458
- ...BASKETBALL_DEFAULTS,
459
- id: League.INTERNATIONAL_BNXT_LEAGUE,
460
- label: 'International BNXT League',
461
- opticOddsName: 'International - BNXT League',
462
- priority: 322,
463
- },
464
- [League.GERMANY_PRO_A]: {
465
- ...BASKETBALL_DEFAULTS,
466
- id: League.GERMANY_PRO_A,
467
- label: 'Germany Pro A',
468
- opticOddsName: 'Germany - Pro A',
469
- priority: 330,
470
- },
471
- [League.AUSTRALIA_WNBL]: {
472
- ...BASKETBALL_DEFAULTS,
473
- id: League.AUSTRALIA_WNBL,
474
- label: 'Australia WNBL',
475
- opticOddsName: 'Australia - WNBL',
476
- priority: 335,
477
- },
478
- };
1
+ import { League, MatchResolveType, PeriodType, Provider, ScoringType, Sport } from '../../enums/sports';
2
+ import { LeagueInfo } from '../../types/sports';
3
+
4
+ // Common default values for Basketball leagues
5
+ export const BASKETBALL_DEFAULTS = {
6
+ sport: Sport.BASKETBALL,
7
+ provider: Provider.OPTICODDS,
8
+ scoringType: ScoringType.POINTS,
9
+ matchResolveType: MatchResolveType.OVERTIME,
10
+ periodType: PeriodType.QUARTER,
11
+ isDrawAvailable: false,
12
+ hidden: false,
13
+ } as const;
14
+
15
+ export const BASKETBALL_LEAGUES: Partial<Record<League, LeagueInfo>> = {
16
+ [League.NBA]: {
17
+ ...BASKETBALL_DEFAULTS,
18
+ id: League.NBA,
19
+ label: 'NBA',
20
+ opticOddsName: 'NBA',
21
+ logo: `/logos/leagueLogos/nba.webp`,
22
+ logoClass: 'icon-homepage league--nba',
23
+ priority: 301,
24
+ },
25
+ [League.NCAAB]: {
26
+ ...BASKETBALL_DEFAULTS,
27
+ id: League.NCAAB,
28
+ label: 'NCAA Basketball',
29
+ opticOddsName: 'NCAAB',
30
+ logoClass: 'icon-homepage league--ncaa',
31
+ periodType: PeriodType.HALF,
32
+ priority: 302,
33
+ },
34
+ [League.WNBA]: {
35
+ ...BASKETBALL_DEFAULTS,
36
+ id: League.WNBA,
37
+ label: 'WNBA',
38
+ opticOddsName: 'WNBA',
39
+ logoClass: 'icon-homepage league--wnba',
40
+ priority: 305,
41
+ },
42
+ [League.EUROLEAGUE]: {
43
+ ...BASKETBALL_DEFAULTS,
44
+ id: League.EUROLEAGUE,
45
+ label: 'Euroleague',
46
+ opticOddsName: 'Euroleague',
47
+ logoClass: 'icon-homepage league--euroleague',
48
+ logo: `/logos/leagueLogos/euroleague.webp`,
49
+ priority: 303,
50
+ },
51
+ [League.NBA_SUMMER_LEAGUE]: {
52
+ ...BASKETBALL_DEFAULTS,
53
+ id: League.NBA_SUMMER_LEAGUE,
54
+ label: 'NBA Summer League',
55
+ opticOddsName: 'USA - NBA Summer League',
56
+ logo: `/logos/leagueLogos/nba.webp`,
57
+ logoClass: 'icon-homepage league--nba',
58
+ priority: 301,
59
+ },
60
+ [League.NBA_ALL_STAR]: {
61
+ ...BASKETBALL_DEFAULTS,
62
+ id: League.NBA_ALL_STAR,
63
+ label: 'NBA All Star',
64
+ opticOddsName: 'USA - NBA All Star',
65
+ logo: `/logos/leagueLogos/nba.webp`,
66
+ logoClass: 'icon-homepage league--nba',
67
+ priority: 305,
68
+ },
69
+ [League.SUMMER_OLYMPICS_BASKETBALL]: {
70
+ ...BASKETBALL_DEFAULTS,
71
+ id: League.SUMMER_OLYMPICS_BASKETBALL,
72
+ label: 'Olympic Games Basketball',
73
+ opticOddsName: 'Olympics Basketball Men',
74
+ provider: Provider.EMPTY,
75
+ logoClass: 'icon-homepage league--paris2024',
76
+ priority: 306,
77
+ hidden: true,
78
+ },
79
+ [League.SUMMER_OLYMPICS_BASKETBALL_WOMEN]: {
80
+ ...BASKETBALL_DEFAULTS,
81
+ id: League.SUMMER_OLYMPICS_BASKETBALL_WOMEN,
82
+ label: 'Olympic Games Basketball Women',
83
+ opticOddsName: 'Olympics Basketball Women',
84
+ provider: Provider.EMPTY,
85
+ logoClass: 'icon-homepage league--paris2024',
86
+ priority: 306,
87
+ hidden: true,
88
+ },
89
+ [League.FIBA_WORLD_CUP]: {
90
+ ...BASKETBALL_DEFAULTS,
91
+ id: League.FIBA_WORLD_CUP,
92
+ label: 'FIBA World Cup',
93
+ provider: Provider.EMPTY,
94
+ priority: 300,
95
+ hidden: true,
96
+ },
97
+ [League.SUMMER_OLYMPICS_BASKETBALL_3X3]: {
98
+ ...BASKETBALL_DEFAULTS,
99
+ id: League.SUMMER_OLYMPICS_BASKETBALL_3X3,
100
+ label: 'Olympic Games Basketball 3x3',
101
+ opticOddsName: 'Olympics Basketball 3x3 Men',
102
+ provider: Provider.EMPTY,
103
+ logoClass: 'icon-homepage league--paris2024',
104
+ priority: 307,
105
+ hidden: true,
106
+ },
107
+ [League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN]: {
108
+ ...BASKETBALL_DEFAULTS,
109
+ id: League.SUMMER_OLYMPICS_BASKETBALL_3X3_WOMEN,
110
+ label: 'Olympic Games Basketball 3x3 Women',
111
+ opticOddsName: 'Olympics Basketball 3x3 Women',
112
+ provider: Provider.EMPTY,
113
+ logoClass: 'icon-homepage league--paris2024',
114
+ priority: 307,
115
+ hidden: true,
116
+ },
117
+ [League.SUMMER_OLYMPICS_QUALIFICATION]: {
118
+ ...BASKETBALL_DEFAULTS,
119
+ id: League.SUMMER_OLYMPICS_QUALIFICATION,
120
+ label: 'Summer Olympics Qualification',
121
+ provider: Provider.EMPTY,
122
+ priority: 306,
123
+ hidden: true,
124
+ },
125
+ [League.FIBA_EUROBASKET]: {
126
+ ...BASKETBALL_DEFAULTS,
127
+ id: League.FIBA_EUROBASKET,
128
+ label: 'FIBA EuroBasket',
129
+ opticOddsName: 'FIBA - EuroBasket',
130
+ priority: 300,
131
+ },
132
+ [League.FIBA_AFROBASKET]: {
133
+ ...BASKETBALL_DEFAULTS,
134
+ id: League.FIBA_AFROBASKET,
135
+ label: 'FIBA AfroBasket',
136
+ opticOddsName: 'FIBA - AfroBasket',
137
+ priority: 300,
138
+ },
139
+ [League.FIBA_AMERICUP]: {
140
+ ...BASKETBALL_DEFAULTS,
141
+ id: League.FIBA_AMERICUP,
142
+ label: 'FIBA Americup',
143
+ opticOddsName: 'FIBA - Americup',
144
+ priority: 300,
145
+ },
146
+ [League.EUROCUP]: {
147
+ ...BASKETBALL_DEFAULTS,
148
+ id: League.EUROCUP,
149
+ label: 'Eurocup',
150
+ opticOddsName: 'Eurocup',
151
+ priority: 304,
152
+ },
153
+ [League.FIBA_EUROPE_CUP]: {
154
+ ...BASKETBALL_DEFAULTS,
155
+ id: League.FIBA_EUROPE_CUP,
156
+ label: 'FIBA Europe Cup',
157
+ opticOddsName: 'FIBA - Europe Cup',
158
+ priority: 304,
159
+ },
160
+ [League.ABA_LEAGUE]: {
161
+ ...BASKETBALL_DEFAULTS,
162
+ id: League.ABA_LEAGUE,
163
+ label: 'ABA League',
164
+ opticOddsName: 'International - ABA League',
165
+ priority: 307,
166
+ },
167
+ [League.SPAIN_LIGA_ACB]: {
168
+ ...BASKETBALL_DEFAULTS,
169
+ id: League.SPAIN_LIGA_ACB,
170
+ label: 'Spain Liga ACB',
171
+ opticOddsName: 'Spain - Liga ACB',
172
+ priority: 308,
173
+ },
174
+ [League.ITALY_LEGA_BASKET_SERIE_A]: {
175
+ ...BASKETBALL_DEFAULTS,
176
+ id: League.ITALY_LEGA_BASKET_SERIE_A,
177
+ label: 'Italy Lega Basket Serie A',
178
+ opticOddsName: 'Italy - Lega Basket Serie A',
179
+ priority: 309,
180
+ },
181
+ [League.GERMANY_BBL]: {
182
+ ...BASKETBALL_DEFAULTS,
183
+ id: League.GERMANY_BBL,
184
+ label: 'Germany BBL',
185
+ opticOddsName: 'Germany - BBL',
186
+ priority: 310,
187
+ },
188
+ [League.FRANCE_LNB_PRO_A]: {
189
+ ...BASKETBALL_DEFAULTS,
190
+ id: League.FRANCE_LNB_PRO_A,
191
+ label: 'France LNB Pro A',
192
+ opticOddsName: 'France - LNB Pro A',
193
+ priority: 311,
194
+ },
195
+ [League.CHINA_CBA]: {
196
+ ...BASKETBALL_DEFAULTS,
197
+ id: League.CHINA_CBA,
198
+ label: 'China CBA',
199
+ opticOddsName: 'China - CBA',
200
+ priority: 312,
201
+ },
202
+ [League.AUSTRALIA_NBL]: {
203
+ ...BASKETBALL_DEFAULTS,
204
+ id: League.AUSTRALIA_NBL,
205
+ label: 'Australia NBL',
206
+ opticOddsName: 'Australia - NBL',
207
+ priority: 313,
208
+ },
209
+ [League.GREECE_A1_LEAGUE]: {
210
+ ...BASKETBALL_DEFAULTS,
211
+ id: League.GREECE_A1_LEAGUE,
212
+ label: 'Greece A1 League',
213
+ opticOddsName: 'Greece - A1 League',
214
+ priority: 314,
215
+ },
216
+ [League.FIBA_CHAMPIONS_LEAGUE]: {
217
+ ...BASKETBALL_DEFAULTS,
218
+ id: League.FIBA_CHAMPIONS_LEAGUE,
219
+ label: 'FIBA Champions League',
220
+ opticOddsName: 'International - Champions League',
221
+ priority: 315,
222
+ },
223
+ [League.TURKEY_BSL]: {
224
+ ...BASKETBALL_DEFAULTS,
225
+ id: League.TURKEY_BSL,
226
+ label: 'Turkey BSL',
227
+ opticOddsName: 'Turkey - BSL',
228
+ priority: 316,
229
+ },
230
+ [League.FIBA_EUROBASKET_WOMEN]: {
231
+ ...BASKETBALL_DEFAULTS,
232
+ id: League.FIBA_EUROBASKET_WOMEN,
233
+ label: 'FIBA Eurobasket Women',
234
+ opticOddsName: 'FIBA - Eurobasket Women',
235
+ priority: 317,
236
+ },
237
+ [League.PBA_PHILIPPINE_CUP]: {
238
+ ...BASKETBALL_DEFAULTS,
239
+ id: League.PBA_PHILIPPINE_CUP,
240
+ label: 'PBA Philippine Cup',
241
+ opticOddsName: 'Philippines - Phillipine Cup',
242
+ priority: 318,
243
+ },
244
+ [League.BIG3]: {
245
+ ...BASKETBALL_DEFAULTS,
246
+ id: League.BIG3,
247
+ label: 'BIG3',
248
+ opticOddsName: 'BIG3',
249
+ priority: 330,
250
+ },
251
+ [League.NCAAW]: {
252
+ ...BASKETBALL_DEFAULTS,
253
+ id: League.NCAAW,
254
+ label: 'NCAAW',
255
+ opticOddsName: 'NCAAW',
256
+ priority: 317,
257
+ },
258
+ [League.FIBA_AMERICUP_WOMEN]: {
259
+ ...BASKETBALL_DEFAULTS,
260
+ id: League.FIBA_AMERICUP_WOMEN,
261
+ label: 'FIBA Americup Women',
262
+ opticOddsName: 'FIBA - Americup Women',
263
+ priority: 319,
264
+ },
265
+ [League.FIBA_AMERICUP_QUALIFIERS]: {
266
+ ...BASKETBALL_DEFAULTS,
267
+ id: League.FIBA_AMERICUP_QUALIFIERS,
268
+ label: 'FIBA Americup Qualifiers',
269
+ opticOddsName: 'FIBA - Americup Qualifiers',
270
+ priority: 320,
271
+ },
272
+ [League.FIBA_ASIA_CUP_QUALIFIERS]: {
273
+ ...BASKETBALL_DEFAULTS,
274
+ id: League.FIBA_ASIA_CUP_QUALIFIERS,
275
+ label: 'FIBA Asia Cup Qualifiers',
276
+ opticOddsName: 'FIBA - Asia Cup Qualifiers',
277
+ priority: 321,
278
+ },
279
+ [League.FIBA_EUROBASKET_QUALIFIERS]: {
280
+ ...BASKETBALL_DEFAULTS,
281
+ id: League.FIBA_EUROBASKET_QUALIFIERS,
282
+ label: 'FIBA Eurobasket Qualifiers',
283
+ opticOddsName: 'FIBA - Eurobasket Qualifiers',
284
+ priority: 322,
285
+ },
286
+ [League.FIBA_WORLD_CUP_QUALIFIERS]: {
287
+ ...BASKETBALL_DEFAULTS,
288
+ id: League.FIBA_WORLD_CUP_QUALIFIERS,
289
+ label: 'FIBA World Cup Qualifiers',
290
+ opticOddsName: 'FIBA - World Cup Qualifiers',
291
+ priority: 323,
292
+ },
293
+ [League.FIBA_EUROBASKET_QUALIFIERS_WOMEN]: {
294
+ ...BASKETBALL_DEFAULTS,
295
+ id: League.FIBA_EUROBASKET_QUALIFIERS_WOMEN,
296
+ label: 'FIBA EuroBasket Qualifiers Women',
297
+ opticOddsName: 'FIBA - EuroBasket Qualifiers Women',
298
+ priority: 324,
299
+ },
300
+ [League.FIBA_WORLD_CUP_QUALIFIERS_WOMEN]: {
301
+ ...BASKETBALL_DEFAULTS,
302
+ id: League.FIBA_WORLD_CUP_QUALIFIERS_WOMEN,
303
+ label: 'FIBA World Cup Qualifiers Women',
304
+ opticOddsName: 'FIBA - World Cup Qualifiers Women',
305
+ priority: 325,
306
+ },
307
+ [League.FIBA_WORLD_CUP_WOMEN]: {
308
+ ...BASKETBALL_DEFAULTS,
309
+ id: League.FIBA_WORLD_CUP_WOMEN,
310
+ label: 'FIBA World Cup Women',
311
+ opticOddsName: 'FIBA - World Cup Women',
312
+ priority: 325,
313
+ },
314
+ [League.FIBA_AFRO_BASKET_QUALIFIERS]: {
315
+ ...BASKETBALL_DEFAULTS,
316
+ id: League.FIBA_AFRO_BASKET_QUALIFIERS,
317
+ label: 'FIBA AfroBasket Qualifiers',
318
+ opticOddsName: 'FIBA - AfroBasket Qualifiers',
319
+ priority: 324,
320
+ },
321
+ [League.FIBA_WORLD_CUP_U19]: {
322
+ ...BASKETBALL_DEFAULTS,
323
+ id: League.FIBA_WORLD_CUP_U19,
324
+ label: 'FIBA World Cup U19',
325
+ opticOddsName: 'FIBA - World Cup U19',
326
+ priority: 325,
327
+ },
328
+ [League.ISRAEL_SUPER_LEAGUE]: {
329
+ ...BASKETBALL_DEFAULTS,
330
+ id: League.ISRAEL_SUPER_LEAGUE,
331
+ label: 'Israel Super League',
332
+ opticOddsName: 'Israel - Super League',
333
+ priority: 326,
334
+ },
335
+ [League.INTERNATIONAL_VTB_UNITED_LEAGUE]: {
336
+ ...BASKETBALL_DEFAULTS,
337
+ id: League.INTERNATIONAL_VTB_UNITED_LEAGUE,
338
+ label: 'VTB United League',
339
+ opticOddsName: 'International - VTB United League',
340
+ priority: 327,
341
+ },
342
+ [League.ITALY_SERIE_A2]: {
343
+ ...BASKETBALL_DEFAULTS,
344
+ id: League.ITALY_SERIE_A2,
345
+ label: 'Italy Serie A2',
346
+ opticOddsName: 'Italy - Serie A2',
347
+ priority: 328,
348
+ },
349
+
350
+ [League.EUROLEAGUE_WOMEN]: {
351
+ ...BASKETBALL_DEFAULTS,
352
+ id: League.EUROLEAGUE_WOMEN,
353
+ label: 'Euroleague Women',
354
+ opticOddsName: 'Euroleague - Women',
355
+ priority: 329,
356
+ },
357
+
358
+ [League.FINLAND_KORISLIIGA]: {
359
+ ...BASKETBALL_DEFAULTS,
360
+ id: League.FINLAND_KORISLIIGA,
361
+ label: 'Finland Korisliiga',
362
+ opticOddsName: 'Finland - Korisliiga',
363
+ priority: 330,
364
+ },
365
+
366
+ [League.POLAND_PKL]: {
367
+ ...BASKETBALL_DEFAULTS,
368
+ id: League.POLAND_PKL,
369
+ label: 'Poland PKL',
370
+ opticOddsName: 'Poland - PKL',
371
+ priority: 331,
372
+ },
373
+
374
+ [League.KOREA_WKBL]: {
375
+ ...BASKETBALL_DEFAULTS,
376
+ id: League.KOREA_WKBL,
377
+ label: 'Korea WKBL',
378
+ opticOddsName: 'Korea - WKBL',
379
+ priority: 332,
380
+ },
381
+
382
+ [League.KOREA_KBL]: {
383
+ ...BASKETBALL_DEFAULTS,
384
+ id: League.KOREA_KBL,
385
+ label: 'Korea KBL',
386
+ opticOddsName: 'Korea - KBL',
387
+ priority: 333,
388
+ },
389
+
390
+ [League.SINGAPORE_NBL]: {
391
+ ...BASKETBALL_DEFAULTS,
392
+ id: League.SINGAPORE_NBL,
393
+ label: 'Singapore NBL',
394
+ opticOddsName: 'Singapore - NBL',
395
+ priority: 334,
396
+ },
397
+
398
+ [League.ARGENTINA_LNB]: {
399
+ ...BASKETBALL_DEFAULTS,
400
+ id: League.ARGENTINA_LNB,
401
+ label: 'Argentina LNB',
402
+ opticOddsName: 'Argentina - LNB',
403
+ priority: 335,
404
+ },
405
+
406
+ [League.NORWAY_BLNO]: {
407
+ ...BASKETBALL_DEFAULTS,
408
+ id: League.NORWAY_BLNO,
409
+ label: 'Norway BLNO',
410
+ opticOddsName: 'Norway - BLNO',
411
+ priority: 336,
412
+ },
413
+
414
+ [League.SWEDEN_BASKETLIGAEN]: {
415
+ ...BASKETBALL_DEFAULTS,
416
+ id: League.SWEDEN_BASKETLIGAEN,
417
+ label: 'Sweden BasketLigaen',
418
+ opticOddsName: 'Sweden - BasketLigaen',
419
+ priority: 337,
420
+ },
421
+
422
+ [League.AUSTRIA_BSL]: {
423
+ ...BASKETBALL_DEFAULTS,
424
+ id: League.AUSTRIA_BSL,
425
+ label: 'Austria BSL',
426
+ opticOddsName: 'Austria - BSL',
427
+ priority: 338,
428
+ },
429
+ [League.JAPAN_B1_LEAGUE]: {
430
+ ...BASKETBALL_DEFAULTS,
431
+ id: League.JAPAN_B1_LEAGUE,
432
+ label: 'Japan B1 League',
433
+ opticOddsName: 'Japan - B1 League',
434
+ priority: 318,
435
+ },
436
+ [League.MEXICO_LNBP]: {
437
+ ...BASKETBALL_DEFAULTS,
438
+ id: League.MEXICO_LNBP,
439
+ label: 'Mexico LNBP',
440
+ opticOddsName: 'Mexico - LNBP',
441
+ priority: 325,
442
+ },
443
+ [League.PHILIPPINES_GOVERNORS_CUP]: {
444
+ ...BASKETBALL_DEFAULTS,
445
+ id: League.PHILIPPINES_GOVERNORS_CUP,
446
+ label: 'Philippines Governors Cup',
447
+ opticOddsName: 'Philippines - Governors Cup',
448
+ priority: 326,
449
+ },
450
+ [League.CZECH_REPUBLIC_NBL]: {
451
+ ...BASKETBALL_DEFAULTS,
452
+ id: League.CZECH_REPUBLIC_NBL,
453
+ label: 'Czech Republic NBL',
454
+ opticOddsName: 'Czech Republic - NBL',
455
+ priority: 328,
456
+ },
457
+ [League.INTERNATIONAL_BNXT_LEAGUE]: {
458
+ ...BASKETBALL_DEFAULTS,
459
+ id: League.INTERNATIONAL_BNXT_LEAGUE,
460
+ label: 'International BNXT League',
461
+ opticOddsName: 'International - BNXT League',
462
+ priority: 322,
463
+ },
464
+ [League.GERMANY_PRO_A]: {
465
+ ...BASKETBALL_DEFAULTS,
466
+ id: League.GERMANY_PRO_A,
467
+ label: 'Germany Pro A',
468
+ opticOddsName: 'Germany - Pro A',
469
+ priority: 330,
470
+ },
471
+ [League.AUSTRALIA_WNBL]: {
472
+ ...BASKETBALL_DEFAULTS,
473
+ id: League.AUSTRALIA_WNBL,
474
+ label: 'Australia WNBL',
475
+ opticOddsName: 'Australia - WNBL',
476
+ priority: 335,
477
+ },
478
+ [League.EUROLEAGUE_SUPER_CUP]: {
479
+ ...BASKETBALL_DEFAULTS,
480
+ id: League.EUROLEAGUE_SUPER_CUP,
481
+ label: 'Euroleague Super Cup',
482
+ opticOddsName: 'Euroleague - Super Cup',
483
+ priority: 339,
484
+ },
485
+ };