overtime-utils 0.1.75 → 0.1.76

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overtime-utils",
3
- "version": "0.1.75",
3
+ "version": "0.1.76",
4
4
  "description": "",
5
5
  "main": "main.js",
6
6
  "scripts": {
@@ -122,6 +122,21 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
122
122
  logoClass: 'icon-homepage league--ucl',
123
123
  priority: 1810,
124
124
  },
125
+ [League.FIFA_WORLD_CUP_FUTURES]: {
126
+ ...FUTURES_DEFAULTS,
127
+ id: League.FIFA_WORLD_CUP_FUTURES,
128
+ initialSport: Sport.SOCCER,
129
+ label: 'FIFA World Cup Futures',
130
+ logoClass: 'icon-homepage league--fifa-world-cup',
131
+ priority: 1817,
132
+ },
133
+ [League.CAF_AFRICA_CUP_OF_NATIONS_FUTURES]: {
134
+ ...FUTURES_DEFAULTS,
135
+ id: League.CAF_AFRICA_CUP_OF_NATIONS_FUTURES,
136
+ initialSport: Sport.SOCCER,
137
+ label: 'CAF Africa Cup of Nations Futures',
138
+ priority: 1818,
139
+ },
125
140
  [League.WTA_FUTURES]: {
126
141
  ...FUTURES_DEFAULTS,
127
142
  id: League.WTA_FUTURES,
@@ -161,7 +176,7 @@ export const FUTURES_LEAGUES: Partial<Record<League, LeagueInfo>> = {
161
176
  ...FUTURES_DEFAULTS,
162
177
  id: League.FIFA_CLUB_WORLD_CUP_FUTURES,
163
178
  initialSport: Sport.SOCCER,
164
- label: 'FIFA - Club World Cup - Futures',
179
+ label: 'FIFA Club World Cup Futures',
165
180
  logo: `/logos/leagueLogos/fifa-club-world-cup.webp`,
166
181
  priority: 1816,
167
182
  },
@@ -86,15 +86,24 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
86
86
  priority: 104,
87
87
  tooltipKey: 'common.football-tooltip',
88
88
  },
89
- [League.FIFA_WC]: {
89
+ [League.FIFA_WC_QUALIFIERS]: {
90
90
  ...SOCCER_DEFAULTS,
91
- id: League.FIFA_WC,
91
+ id: League.FIFA_WC_QUALIFIERS,
92
92
  label: 'FIFA World Cup Qualifiers',
93
93
  opticOddsName: 'FIFA - World Cup Qualifiers',
94
94
  logoClass: 'icon-homepage league--fifa-world-cup',
95
95
  priority: 100,
96
96
  tooltipKey: 'common.fifa-tooltip',
97
97
  },
98
+ [League.FIFA_WORLD_CUP]: {
99
+ ...SOCCER_DEFAULTS,
100
+ id: League.FIFA_WORLD_CUP,
101
+ label: 'FIFA World Cup',
102
+ opticOddsName: 'FIFA - World Cup',
103
+ logoClass: 'icon-homepage league--fifa-world-cup',
104
+ priority: 101,
105
+ tooltipKey: 'common.fifa-tooltip',
106
+ },
98
107
  [League.J1_LEAGUE]: {
99
108
  ...SOCCER_DEFAULTS,
100
109
  id: League.J1_LEAGUE,
@@ -213,6 +222,48 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
213
222
  opticOddsName: 'Germany - DFB Pokal',
214
223
  priority: 133,
215
224
  },
225
+ [League.DENMARK_DBU_POKALEN]: {
226
+ ...SOCCER_DEFAULTS,
227
+ id: League.DENMARK_DBU_POKALEN,
228
+ label: 'Denmark DBU Pokalen',
229
+ opticOddsName: 'Denmark - DBU Pokalen',
230
+ priority: 135,
231
+ },
232
+ [League.GREECE_CUP]: {
233
+ ...SOCCER_DEFAULTS,
234
+ id: League.GREECE_CUP,
235
+ label: 'Greece Cup',
236
+ opticOddsName: 'Greece - Cup',
237
+ priority: 136,
238
+ },
239
+ [League.POLAND_CUP]: {
240
+ ...SOCCER_DEFAULTS,
241
+ id: League.POLAND_CUP,
242
+ label: 'Poland Cup',
243
+ opticOddsName: 'Poland - Cup',
244
+ priority: 137,
245
+ },
246
+ [League.NORWAY_NM_CUP]: {
247
+ ...SOCCER_DEFAULTS,
248
+ id: League.NORWAY_NM_CUP,
249
+ label: 'Norway NM Cup',
250
+ opticOddsName: 'Norway - NM Cup',
251
+ priority: 138,
252
+ },
253
+ [League.BELGIUM_CUP]: {
254
+ ...SOCCER_DEFAULTS,
255
+ id: League.BELGIUM_CUP,
256
+ label: 'Belgium Cup',
257
+ opticOddsName: 'Belgium - Cup',
258
+ priority: 139,
259
+ },
260
+ [League.ROMANIA_CUPA_ROMANIEI]: {
261
+ ...SOCCER_DEFAULTS,
262
+ id: League.ROMANIA_CUPA_ROMANIEI,
263
+ label: 'Cupa Romaniei',
264
+ opticOddsName: 'Romania - Cupa Romaniei',
265
+ priority: 141,
266
+ },
216
267
  [League.LIGA_MX]: {
217
268
  ...SOCCER_DEFAULTS,
218
269
  id: League.LIGA_MX,
@@ -7,7 +7,8 @@ export const LeagueMap: Record<League, LeagueInfo> = ALL_LEAGUES as Record<Leagu
7
7
  export const BOXING_LEAGUES = [League.BOXING, League.NON_TITLE_BOXING];
8
8
 
9
9
  export const INTERNATIONAL_LEAGUES = [
10
- League.FIFA_WC,
10
+ League.FIFA_WORLD_CUP,
11
+ League.FIFA_WC_QUALIFIERS,
11
12
  League.IIHF_WORLD_CHAMPIONSHIP,
12
13
  League.UEFA_EURO,
13
14
  League.FIFA_WC_WOMEN,
@@ -73,10 +73,11 @@ export enum League {
73
73
  SERIE_A = 15,
74
74
  UEFA_CL = 16,
75
75
  UEFA_EL = 17,
76
- FIFA_WC = 18,
76
+ FIFA_WC_QUALIFIERS = 18,
77
77
  J1_LEAGUE = 19,
78
78
  IPL = 20,
79
79
  T20_BLAST = 21,
80
+ FIFA_WORLD_CUP = 22,
80
81
  IIHF_WORLD_CHAMPIONSHIP = 33,
81
82
  COPA_AMERICA = 44,
82
83
  COPA_LIBERTADORES = 45,
@@ -381,7 +382,9 @@ export enum League {
381
382
  JAPAN_EMPEROR_CUP = 20719,
382
383
  ARGENTINA_COPA_ARGENTINA = 20160,
383
384
  NORWAY_1_DIVISJON = 20642,
385
+ NORWAY_NM_CUP = 20644,
384
386
  DENMARK_1ST_DIVISION = 20531,
387
+ DENMARK_DBU_POKALEN = 20533,
385
388
  ENGLAND_COMMUNITY_SHIELD = 20540,
386
389
  EGYPT_PREMIER_LEAGUE = 20538,
387
390
  UZBEKISTAN_SUPER_LEAGUE = 20707,
@@ -391,11 +394,13 @@ export enum League {
391
394
  SOUTH_AFRICA_PREMIER_LEAGUE = 20683,
392
395
  INDONESIA_LIGA_1 = 20583,
393
396
  QATAR_STARS_LEAGUE = 20659,
397
+ ROMANIA_CUPA_ROMANIEI = 20660,
394
398
  GEORGIA_EROVNULI_LIGA = 20561,
395
399
  MALAYSIA_SUPER_LEAGUE = 20621,
396
400
  VIETNAM_V_LEAGUE_1 = 20709,
397
401
  AUSTRIA_2_LIGA = 20175,
398
402
  BELGIUM_CHALLENGER_PRO_LEAGUE = 20184,
403
+ BELGIUM_CUP = 20185,
399
404
  NETHERLANDS_EERSTE_DIVISIE = 20634,
400
405
  IRELAND_DIVISION_1 = 20588,
401
406
  PORTUGAL_SEGUNDA_LIGA = 20657,
@@ -404,10 +409,12 @@ export enum League {
404
409
  TURKEY_1_LIG = 20692,
405
410
  ENGLAND_LEAGUE_2 = 20543,
406
411
  GERMANY_BUNDESLIGA_3 = 20563,
412
+ GREECE_CUP = 20566,
407
413
  PORTUGAL_LIGA_3 = 20656,
408
414
  ROMANIA_LIGA_II = 20662,
409
415
  ISRAEL_PREMIER_LEAGUE = 20593,
410
416
  PARAGUAY_PRIMERA_DIVISION = 20649,
417
+ POLAND_CUP = 20653,
411
418
  UAE_PRO_LEAGUE = 20694,
412
419
  ARGENTINA_PRIMERA_NACIONAL = 20161,
413
420
  CONMEBOL_COPA_SUDAMERICANA = 20720,
@@ -435,9 +442,11 @@ export enum League {
435
442
  LA_LIGA_FUTURES = 30014,
436
443
  SERIE_A_FUTURES = 30015,
437
444
  UEFA_CHAMPIONS_LEAGUE_FUTURES = 30016,
445
+ FIFA_WORLD_CUP_FUTURES = 30022,
438
446
  WTA_FUTURES = 30152,
439
447
  ATP_FUTURES = 30156,
440
448
  EUROLEAGUE_FUTURES = 30399,
449
+ CAF_AFRICA_CUP_OF_NATIONS_FUTURES = 30724,
441
450
  FIFA_CLUB_WORLD_CUP_FUTURES = 39997,
442
451
  PGA_FUTURES = 39998,
443
452
  FORMULA1_FUTURES = 39999,