overtime-utils 0.1.57 → 0.1.58
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/leagues/soccer.ts +7 -0
- package/src/enums/sports.ts +1 -0
package/package.json
CHANGED
|
@@ -1197,6 +1197,13 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
1197
1197
|
opticOddsName: 'Venezuela - Primera Division',
|
|
1198
1198
|
priority: 150,
|
|
1199
1199
|
},
|
|
1200
|
+
[League.FIFA_ARAB_NATIONS_CUP]: {
|
|
1201
|
+
...SOCCER_DEFAULTS,
|
|
1202
|
+
id: League.FIFA_ARAB_NATIONS_CUP,
|
|
1203
|
+
label: 'Arab Nations Cup',
|
|
1204
|
+
opticOddsName: 'FIFA - Arab Nations Cup',
|
|
1205
|
+
priority: 150,
|
|
1206
|
+
},
|
|
1200
1207
|
[League.JAPAN_EMPEROR_CUP]: {
|
|
1201
1208
|
...SOCCER_DEFAULTS,
|
|
1202
1209
|
id: League.JAPAN_EMPEROR_CUP,
|
package/src/enums/sports.ts
CHANGED
|
@@ -406,6 +406,7 @@ export enum League {
|
|
|
406
406
|
CONMEBOL_COPA_SUDAMERICANA = 20720,
|
|
407
407
|
BOLIVIA_DIVISION_PROFESSIONAL = 20721,
|
|
408
408
|
VENEZUELA_PRIMERA_DIVISION = 20722,
|
|
409
|
+
FIFA_ARAB_NATIONS_CUP = 20723,
|
|
409
410
|
NCAAF_FUTURES = 30001,
|
|
410
411
|
NFL_FUTURES = 30002,
|
|
411
412
|
MLB_FUTURES = 30003,
|