overtime-utils 0.1.102 → 0.2.1
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 +5 -4
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
|
@@ -31,8 +31,11 @@ export enum OpticOddsSport {
|
|
|
31
31
|
BASKETBALL = 'Basketball',
|
|
32
32
|
BOXING = 'Boxing',
|
|
33
33
|
CRICKET = 'Cricket',
|
|
34
|
+
CURLING = 'Curling',
|
|
34
35
|
CYCLING = 'Cycling',
|
|
35
36
|
DARTS = 'Darts',
|
|
37
|
+
EBASKETALL = `eBasketball`,
|
|
38
|
+
EFOOTBALL = `eFootball`,
|
|
36
39
|
ESPORTS = 'eSports',
|
|
37
40
|
FOOTBALL = 'Football',
|
|
38
41
|
GOLF = 'Golf',
|
|
@@ -54,10 +57,6 @@ export enum OpticOddsSport {
|
|
|
54
57
|
VOLLEYBALL = 'Volleyball',
|
|
55
58
|
WATER_POLO = 'Water Polo',
|
|
56
59
|
WRESTLING = 'Wrestling',
|
|
57
|
-
CURLING = 'Curling',
|
|
58
|
-
EFOOTBALL = `eFootball`,
|
|
59
|
-
EBASKETALL = `eBasket`,
|
|
60
|
-
ESOCCER = `eSoccer`,
|
|
61
60
|
}
|
|
62
61
|
|
|
63
62
|
export enum League {
|
|
@@ -392,6 +391,8 @@ export enum League {
|
|
|
392
391
|
UEFA_EUROPEAN_CHAMPIONSHIP_U21 = 20712,
|
|
393
392
|
UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN = 20713,
|
|
394
393
|
UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21 = 20744,
|
|
394
|
+
UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19 = 20746,
|
|
395
|
+
UEFA_EUROPEAN_CHAMPIONSHIP_U19 = 20747,
|
|
395
396
|
ITALY_KINGS_LEAGUE = 20900,
|
|
396
397
|
SPAIN_KINGS_LEAGUE = 20901,
|
|
397
398
|
BRAZIL_KINGS_LEAGUE = 20902,
|