overtime-utils 0.2.3 → 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/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
|
};
|
|
@@ -107,12 +107,12 @@ export const FUTURES_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>
|
|
|
107
107
|
id: MarketType.SERIES_HANDICAP,
|
|
108
108
|
key: 'seriesHandicap',
|
|
109
109
|
name: 'Series handicap',
|
|
110
|
-
resultType: ResultType.
|
|
110
|
+
resultType: ResultType.EXACT_POSITION,
|
|
111
111
|
},
|
|
112
112
|
[MarketType.SERIES_TOTAL]: {
|
|
113
113
|
id: MarketType.SERIES_TOTAL,
|
|
114
114
|
key: 'seriesTotal',
|
|
115
115
|
name: 'Series total',
|
|
116
|
-
resultType: ResultType.
|
|
116
|
+
resultType: ResultType.EXACT_POSITION,
|
|
117
117
|
},
|
|
118
118
|
};
|
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,
|