overtime-utils 0.1.62 → 0.1.64
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 +7 -7
- package/src/constants/sports.ts +1 -0
package/package.json
CHANGED
|
@@ -1215,28 +1215,28 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
1215
1215
|
...SOCCER_DEFAULTS,
|
|
1216
1216
|
id: League.FINLAND_YKKOSLIIGA,
|
|
1217
1217
|
label: 'Finland Ykkösliiga',
|
|
1218
|
-
opticOddsName: 'Finland
|
|
1218
|
+
opticOddsName: 'Finland - Ykkosliiga',
|
|
1219
1219
|
priority: 150,
|
|
1220
1220
|
},
|
|
1221
1221
|
[League.SOUTH_KOREA_K_LEAGUE_2]: {
|
|
1222
1222
|
...SOCCER_DEFAULTS,
|
|
1223
1223
|
id: League.SOUTH_KOREA_K_LEAGUE_2,
|
|
1224
|
-
label: '
|
|
1225
|
-
opticOddsName: '
|
|
1224
|
+
label: 'Korea K2 League',
|
|
1225
|
+
opticOddsName: 'Korea - K2 League',
|
|
1226
1226
|
priority: 150,
|
|
1227
1227
|
},
|
|
1228
1228
|
[League.MEXICO_LIGA_DE_EXPANSION]: {
|
|
1229
1229
|
...SOCCER_DEFAULTS,
|
|
1230
1230
|
id: League.MEXICO_LIGA_DE_EXPANSION,
|
|
1231
|
-
label: 'Mexico Liga de Expansion',
|
|
1232
|
-
opticOddsName: 'Mexico - Liga de Expansion',
|
|
1231
|
+
label: 'Mexico Liga de Expansion MX',
|
|
1232
|
+
opticOddsName: 'Mexico - Liga de Expansion MX',
|
|
1233
1233
|
priority: 150,
|
|
1234
1234
|
},
|
|
1235
1235
|
[League.SPAIN_RFEF_PRIMERA]: {
|
|
1236
1236
|
...SOCCER_DEFAULTS,
|
|
1237
1237
|
id: League.SPAIN_RFEF_PRIMERA,
|
|
1238
|
-
label: 'Spain
|
|
1239
|
-
opticOddsName: 'Spain -
|
|
1238
|
+
label: 'Spain Primera Federacion',
|
|
1239
|
+
opticOddsName: 'Spain - Primera Federacion',
|
|
1240
1240
|
priority: 150,
|
|
1241
1241
|
},
|
|
1242
1242
|
[League.SWITZERLAND_CUP]: {
|
package/src/constants/sports.ts
CHANGED