overtime-utils 0.1.102 → 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 +14 -0
- package/src/constants/sports.ts +2 -0
- package/src/enums/sports.ts +2 -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,
|
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,
|
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,
|