overtime-utils 0.1.71 → 0.1.73
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/package.json
CHANGED
|
@@ -1204,6 +1204,13 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
1204
1204
|
opticOddsName: 'FIFA - Arab Nations Cup',
|
|
1205
1205
|
priority: 100,
|
|
1206
1206
|
},
|
|
1207
|
+
[League.FIFA_INTERCONTINENTAL_CUP]: {
|
|
1208
|
+
...SOCCER_DEFAULTS,
|
|
1209
|
+
id: League.FIFA_INTERCONTINENTAL_CUP,
|
|
1210
|
+
label: 'FIFA Intercontinental Cup',
|
|
1211
|
+
opticOddsName: 'FIFA - Intercontinental Cup',
|
|
1212
|
+
priority: 100,
|
|
1213
|
+
},
|
|
1207
1214
|
[League.CAF_AFRICA_CUP_OF_NATIONS]: {
|
|
1208
1215
|
...SOCCER_DEFAULTS,
|
|
1209
1216
|
id: League.CAF_AFRICA_CUP_OF_NATIONS,
|
package/src/enums/sports.ts
CHANGED