overtime-utils 0.1.101 → 0.2.0
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 +21 -0
- package/src/constants/sports.ts +3 -0
- package/src/enums/sports.ts +3 -0
package/package.json
CHANGED
|
@@ -743,6 +743,20 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
743
743
|
opticOddsName: 'UEFA - European Championship Qualifiers U21',
|
|
744
744
|
priority: 189,
|
|
745
745
|
},
|
|
746
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19]: {
|
|
747
|
+
...SOCCER_DEFAULTS,
|
|
748
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19,
|
|
749
|
+
label: 'UEFA European Championship Qualifiers U19',
|
|
750
|
+
opticOddsName: 'UEFA - European Championship Qualifiers U19',
|
|
751
|
+
priority: 189,
|
|
752
|
+
},
|
|
753
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_U19]: {
|
|
754
|
+
...SOCCER_DEFAULTS,
|
|
755
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_U19,
|
|
756
|
+
label: 'UEFA European Championship U19',
|
|
757
|
+
opticOddsName: 'UEFA - European Championship U19',
|
|
758
|
+
priority: 189,
|
|
759
|
+
},
|
|
746
760
|
[League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN]: {
|
|
747
761
|
...SOCCER_DEFAULTS,
|
|
748
762
|
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN,
|
|
@@ -1297,6 +1311,13 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
1297
1311
|
opticOddsName: 'CAF - Africa Cup of Nations',
|
|
1298
1312
|
priority: 100,
|
|
1299
1313
|
},
|
|
1314
|
+
[League.CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS]: {
|
|
1315
|
+
...SOCCER_DEFAULTS,
|
|
1316
|
+
id: League.CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS,
|
|
1317
|
+
label: 'CAF Africa Cup of Nations Qualifiers',
|
|
1318
|
+
opticOddsName: 'CAF - Africa Cup of Nations Qualifiers',
|
|
1319
|
+
priority: 100,
|
|
1320
|
+
},
|
|
1300
1321
|
[League.FINLAND_YKKOSLIIGA]: {
|
|
1301
1322
|
...SOCCER_DEFAULTS,
|
|
1302
1323
|
id: League.FINLAND_YKKOSLIIGA,
|
package/src/constants/sports.ts
CHANGED
|
@@ -52,6 +52,8 @@ export const INTERNATIONAL_LEAGUES = [
|
|
|
52
52
|
League.COSAFA_CUP,
|
|
53
53
|
League.UEFA_EUROPEAN_CHAMPIONSHIP_U21,
|
|
54
54
|
League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21,
|
|
55
|
+
League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19,
|
|
56
|
+
League.UEFA_EUROPEAN_CHAMPIONSHIP_U19,
|
|
55
57
|
League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN,
|
|
56
58
|
League.PDC_WORLD_CUP_OF_DARTS,
|
|
57
59
|
League.PDC_WORLD_GRAND_PRIX,
|
|
@@ -67,6 +69,7 @@ export const INTERNATIONAL_LEAGUES = [
|
|
|
67
69
|
League.INTERNATIONAL_FRIENDLIES_WOMEN,
|
|
68
70
|
League.FIFA_ARAB_NATIONS_CUP,
|
|
69
71
|
League.CAF_AFRICA_CUP_OF_NATIONS,
|
|
72
|
+
League.CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS,
|
|
70
73
|
League.LEN_EUROPEAN_CHAMPIONSHIP,
|
|
71
74
|
League.EHF_EUROPEAN_CHAMPIONSHIP,
|
|
72
75
|
League.OLYMPICS_HOCKEY_MEN,
|
package/src/enums/sports.ts
CHANGED
|
@@ -392,6 +392,8 @@ export enum League {
|
|
|
392
392
|
UEFA_EUROPEAN_CHAMPIONSHIP_U21 = 20712,
|
|
393
393
|
UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN = 20713,
|
|
394
394
|
UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21 = 20744,
|
|
395
|
+
UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19 = 20746,
|
|
396
|
+
UEFA_EUROPEAN_CHAMPIONSHIP_U19 = 20747,
|
|
395
397
|
ITALY_KINGS_LEAGUE = 20900,
|
|
396
398
|
SPAIN_KINGS_LEAGUE = 20901,
|
|
397
399
|
BRAZIL_KINGS_LEAGUE = 20902,
|
|
@@ -473,6 +475,7 @@ export enum League {
|
|
|
473
475
|
FIFA_INTERCONTINENTAL_CUP = 20558,
|
|
474
476
|
|
|
475
477
|
CAF_AFRICA_CUP_OF_NATIONS = 20724,
|
|
478
|
+
CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS = 20745,
|
|
476
479
|
FINLAND_YKKOSLIIGA = 20725,
|
|
477
480
|
SOUTH_KOREA_K_LEAGUE_2 = 20726,
|
|
478
481
|
MEXICO_LIGA_DE_EXPANSION = 20727,
|