overtime-utils 0.1.56 → 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/constants/marketTypes.ts +0 -18
- 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,
|
|
@@ -5072,24 +5072,6 @@ export const ESPORTS_MARKET_TYPES = [
|
|
|
5072
5072
|
MarketType.FOURTH_MAP_TOTAL_BOMBS_DEFUSED,
|
|
5073
5073
|
MarketType.FIFTH_MAP_TOTAL_BOMBS_DEFUSED,
|
|
5074
5074
|
|
|
5075
|
-
// CS2 / Valorant – pistol rounds
|
|
5076
|
-
MarketType.FIRST_MAP_CORRECT_PISTOL_ROUND_SCORE,
|
|
5077
|
-
MarketType.FIRST_MAP_PISTOL_ROUND_1_ML,
|
|
5078
|
-
MarketType.FIRST_MAP_PISTOL_ROUND_2_ML,
|
|
5079
|
-
MarketType.SECOND_MAP_CORRECT_PISTOL_ROUND_SCORE,
|
|
5080
|
-
MarketType.SECOND_MAP_PISTOL_ROUND_1_ML,
|
|
5081
|
-
MarketType.SECOND_MAP_PISTOL_ROUND_2_ML,
|
|
5082
|
-
MarketType.THIRD_MAP_CORRECT_PISTOL_ROUND_SCORE,
|
|
5083
|
-
MarketType.THIRD_MAP_PISTOL_ROUND_1_ML,
|
|
5084
|
-
MarketType.THIRD_MAP_PISTOL_ROUND_2_ML,
|
|
5085
|
-
MarketType.FOURTH_MAP_CORRECT_PISTOL_ROUND_SCORE,
|
|
5086
|
-
MarketType.FOURTH_MAP_PISTOL_ROUND_1_ML,
|
|
5087
|
-
MarketType.FOURTH_MAP_PISTOL_ROUND_2_ML,
|
|
5088
|
-
MarketType.FIFTH_MAP_CORRECT_PISTOL_ROUND_SCORE,
|
|
5089
|
-
MarketType.FIFTH_MAP_PISTOL_ROUND_1_ML,
|
|
5090
|
-
MarketType.FIFTH_MAP_PISTOL_ROUND_2_ML,
|
|
5091
|
-
|
|
5092
|
-
MarketType.ROUND_HANDICAP,
|
|
5093
5075
|
MarketType.TOTAL_ROUNDS,
|
|
5094
5076
|
];
|
|
5095
5077
|
|
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,
|