overtime-utils 0.1.85 → 0.1.87
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/hockey.ts +2 -2
- package/src/constants/sports.ts +2 -1
package/package.json
CHANGED
|
@@ -146,14 +146,14 @@ export const HOCKEY_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
146
146
|
...HOCKEY_DEFAULTS,
|
|
147
147
|
id: League.OLYMPICS_HOCKEY_MEN,
|
|
148
148
|
label: 'Olympics Hockey Men',
|
|
149
|
-
opticOddsName: 'Olympics
|
|
149
|
+
opticOddsName: 'Olympics Hockey Men',
|
|
150
150
|
priority: 522,
|
|
151
151
|
},
|
|
152
152
|
[League.OLYMPICS_HOCKEY_WOMEN]: {
|
|
153
153
|
...HOCKEY_DEFAULTS,
|
|
154
154
|
id: League.OLYMPICS_HOCKEY_WOMEN,
|
|
155
155
|
label: 'Olympics Hockey Women',
|
|
156
|
-
opticOddsName: 'Olympics
|
|
156
|
+
opticOddsName: 'Olympics Hockey Women',
|
|
157
157
|
priority: 523,
|
|
158
158
|
},
|
|
159
159
|
[League.BELARUS_EXTRALIGA]: {
|
package/src/constants/sports.ts
CHANGED
|
@@ -73,7 +73,8 @@ export const INTERNATIONAL_LEAGUES = [
|
|
|
73
73
|
League.OLYMPICS_CURLING_MEN,
|
|
74
74
|
League.OLYMPICS_CURLING_WOMEN,
|
|
75
75
|
League.OLYMPICS_CURLING_MIXED,
|
|
76
|
-
League.INTERNATIONAL_T20_MATCHES
|
|
76
|
+
League.INTERNATIONAL_T20_MATCHES,
|
|
77
|
+
League.ICC_T20_WORLD_CUP
|
|
77
78
|
];
|
|
78
79
|
|
|
79
80
|
export const OLYMPIC_LEAGUES = [
|