overtime-utils 0.2.4 → 0.2.5
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 +14 -0
- package/src/constants/sports.ts +1 -0
- package/src/enums/sports.ts +2 -0
package/package.json
CHANGED
|
@@ -1571,4 +1571,18 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
1571
1571
|
opticOddsName: 'Kings League - World Cup',
|
|
1572
1572
|
priority: 200,
|
|
1573
1573
|
},
|
|
1574
|
+
[League.SAUDI_KINGS_CUP]: {
|
|
1575
|
+
...SOCCER_DEFAULTS,
|
|
1576
|
+
id: League.SAUDI_KINGS_CUP,
|
|
1577
|
+
label: 'Saudi Kings Cup',
|
|
1578
|
+
opticOddsName: 'Saudi Arabia - Kings Cup',
|
|
1579
|
+
priority: 200,
|
|
1580
|
+
},
|
|
1581
|
+
[League.INTERNATIONAL_KINGS_CUP]: {
|
|
1582
|
+
...SOCCER_DEFAULTS,
|
|
1583
|
+
id: League.INTERNATIONAL_KINGS_CUP,
|
|
1584
|
+
label: 'International Kings Cup',
|
|
1585
|
+
opticOddsName: 'International - Kings Cup',
|
|
1586
|
+
priority: 200,
|
|
1587
|
+
},
|
|
1574
1588
|
};
|
package/src/constants/sports.ts
CHANGED
package/src/enums/sports.ts
CHANGED
|
@@ -400,6 +400,8 @@ export enum League {
|
|
|
400
400
|
GERMANY_KINGS_LEAGUE = 20903,
|
|
401
401
|
KINGS_LEAGUE_CLUB_WORLD_CUP = 20904,
|
|
402
402
|
KINGS_LEAGUE_WORLD_CUP = 20905,
|
|
403
|
+
SAUDI_KINGS_CUP = 20906,
|
|
404
|
+
INTERNATIONAL_KINGS_CUP = 20907,
|
|
403
405
|
SLOVAKIA_SUPERLIGA = 20714,
|
|
404
406
|
CHINA_FA_CUP = 20715,
|
|
405
407
|
ROMANIA_LIGA_I = 20661,
|