overtime-utils 0.2.36 → 0.2.38
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/futures.ts +6 -0
- package/src/constants/marketTypes.ts +19 -0
package/package.json
CHANGED
|
@@ -251,6 +251,7 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
251
251
|
id: League.UEFA_EL_FUTURES,
|
|
252
252
|
initialSport: Sport.SOCCER,
|
|
253
253
|
label: 'UEFA Europa League Futures',
|
|
254
|
+
logo: '/logos/leagueLogos/uel-white.webp',
|
|
254
255
|
logoClass: 'icon-homepage league--uel',
|
|
255
256
|
priority: 1816,
|
|
256
257
|
},
|
|
@@ -259,6 +260,7 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
259
260
|
id: League.UEFA_CONFERENCE_LEAGUE_FUTURES,
|
|
260
261
|
initialSport: Sport.SOCCER,
|
|
261
262
|
label: 'UEFA Conference League Futures',
|
|
263
|
+
logo: '/logos/leagueLogos/uecl-white.webp',
|
|
262
264
|
logoClass: 'icon-homepage league--uefa',
|
|
263
265
|
priority: 1817,
|
|
264
266
|
},
|
|
@@ -267,6 +269,7 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
267
269
|
id: League.EREDIVISIE_FUTURES,
|
|
268
270
|
initialSport: Sport.SOCCER,
|
|
269
271
|
label: 'Eredivisie Futures',
|
|
272
|
+
logo: '/logos/leagueLogos/eredivisie.webp',
|
|
270
273
|
logoClass: 'icon-homepage league--eredivisie',
|
|
271
274
|
priority: 1818,
|
|
272
275
|
},
|
|
@@ -275,6 +278,7 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
275
278
|
id: League.PRIMEIRA_LIGA_FUTURES,
|
|
276
279
|
initialSport: Sport.SOCCER,
|
|
277
280
|
label: 'Primeira Liga Futures',
|
|
281
|
+
logo: '/logos/leagueLogos/primeira-liga.webp',
|
|
278
282
|
logoClass: 'icon-homepage league--portugal',
|
|
279
283
|
priority: 1819,
|
|
280
284
|
},
|
|
@@ -283,6 +287,7 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
283
287
|
id: League.BELGIUM_LEAGUE_FUTURES,
|
|
284
288
|
initialSport: Sport.SOCCER,
|
|
285
289
|
label: 'Belgium Pro League Futures',
|
|
290
|
+
logo: '/logos/leagueLogos/jupiler-pro-league.webp',
|
|
286
291
|
priority: 1820,
|
|
287
292
|
},
|
|
288
293
|
[League.ENGLAND_CHAMPIONSHIP_FUTURES]: {
|
|
@@ -290,6 +295,7 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
290
295
|
id: League.ENGLAND_CHAMPIONSHIP_FUTURES,
|
|
291
296
|
initialSport: Sport.SOCCER,
|
|
292
297
|
label: 'Championship Futures',
|
|
298
|
+
logo: '/logos/leagueLogos/efl-championship.webp',
|
|
293
299
|
priority: 1821,
|
|
294
300
|
},
|
|
295
301
|
};
|
|
@@ -869,6 +869,25 @@ export const FUTURES_MARKET_TYPES = [
|
|
|
869
869
|
MarketType.PRESIDENTIAL_DEMOCRATIC_NOMINEE,
|
|
870
870
|
MarketType.VICE_PRESIDENTIAL_DEMOCRATIC_NOMINEE,
|
|
871
871
|
MarketType.UK_GENERAL_ELECTION_MOST_SEATS,
|
|
872
|
+
// League-position futures (relegation / promotion / top-N finish)
|
|
873
|
+
MarketType.TEAM_TO_BE_RELEGATED,
|
|
874
|
+
MarketType.AVOID_RELEGATION,
|
|
875
|
+
MarketType.WINNER_RUNNER_UP,
|
|
876
|
+
MarketType.TOP_2_FINISHER,
|
|
877
|
+
MarketType.TOP_3_FINISHER,
|
|
878
|
+
MarketType.TOP_4_FINISHER,
|
|
879
|
+
MarketType.TOP_5_FINISHER,
|
|
880
|
+
MarketType.TOP_6_FINISHER,
|
|
881
|
+
MarketType.TOP_7_FINISHER,
|
|
882
|
+
MarketType.TOP_8_FINISHER,
|
|
883
|
+
MarketType.TOP_9_FINISHER,
|
|
884
|
+
MarketType.TOP_10_FINISHER,
|
|
885
|
+
MarketType.TOP_11_FINISHER,
|
|
886
|
+
MarketType.TOP_12_FINISHER,
|
|
887
|
+
MarketType.TOP_13_FINISHER,
|
|
888
|
+
MarketType.TOP_14_FINISHER,
|
|
889
|
+
MarketType.TOP_15_FINISHER,
|
|
890
|
+
MarketType.TEAMS_TO_BE_PROMOTED,
|
|
872
891
|
];
|
|
873
892
|
|
|
874
893
|
export const ONE_SIDE_PLAYER_PROPS_MARKET_TYPES = [
|