overtime-utils 0.2.32 → 0.2.33
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 +77 -0
- package/src/enums/sports.ts +11 -0
package/package.json
CHANGED
|
@@ -2180,4 +2180,81 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
2180
2180
|
opticOddsName: 'San Marino - Campionato',
|
|
2181
2181
|
priority: 196,
|
|
2182
2182
|
},
|
|
2183
|
+
[League.COLOMBIA_PRIMERA_B]: {
|
|
2184
|
+
...SOCCER_DEFAULTS,
|
|
2185
|
+
id: League.COLOMBIA_PRIMERA_B,
|
|
2186
|
+
label: 'Colombia Primera B',
|
|
2187
|
+
opticOddsName: 'Colombia - Primera B',
|
|
2188
|
+
priority: 192,
|
|
2189
|
+
},
|
|
2190
|
+
[League.DENMARK_2ND_DIVISION]: {
|
|
2191
|
+
...SOCCER_DEFAULTS,
|
|
2192
|
+
id: League.DENMARK_2ND_DIVISION,
|
|
2193
|
+
label: 'Denmark 2nd Division',
|
|
2194
|
+
opticOddsName: 'Denmark - 2nd Division',
|
|
2195
|
+
priority: 195,
|
|
2196
|
+
},
|
|
2197
|
+
[League.POLAND_II_LIGA]: {
|
|
2198
|
+
...SOCCER_DEFAULTS,
|
|
2199
|
+
id: League.POLAND_II_LIGA,
|
|
2200
|
+
label: 'Poland II Liga',
|
|
2201
|
+
opticOddsName: 'Poland - II Liga',
|
|
2202
|
+
priority: 193,
|
|
2203
|
+
},
|
|
2204
|
+
[League.SLOVAKIA_2_LIGA]: {
|
|
2205
|
+
...SOCCER_DEFAULTS,
|
|
2206
|
+
id: League.SLOVAKIA_2_LIGA,
|
|
2207
|
+
label: 'Slovakia 2. Liga',
|
|
2208
|
+
opticOddsName: 'Slovakia - 2. Liga',
|
|
2209
|
+
priority: 193,
|
|
2210
|
+
},
|
|
2211
|
+
[League.SWITZERLAND_PROMOTION_LEAGUE]: {
|
|
2212
|
+
...SOCCER_DEFAULTS,
|
|
2213
|
+
id: League.SWITZERLAND_PROMOTION_LEAGUE,
|
|
2214
|
+
label: 'Switzerland Promotion League',
|
|
2215
|
+
opticOddsName: 'Switzerland - Promotion League',
|
|
2216
|
+
priority: 195,
|
|
2217
|
+
},
|
|
2218
|
+
[League.AUSTRALIA_NORTHERN_NSW_NPL]: {
|
|
2219
|
+
...SOCCER_DEFAULTS,
|
|
2220
|
+
id: League.AUSTRALIA_NORTHERN_NSW_NPL,
|
|
2221
|
+
label: 'Australia Northern NSW NPL',
|
|
2222
|
+
opticOddsName: 'Australia - Northern NSW NPL',
|
|
2223
|
+
priority: 197,
|
|
2224
|
+
},
|
|
2225
|
+
[League.AUSTRALIA_QUEENSLAND_NPL]: {
|
|
2226
|
+
...SOCCER_DEFAULTS,
|
|
2227
|
+
id: League.AUSTRALIA_QUEENSLAND_NPL,
|
|
2228
|
+
label: 'Australia Queensland NPL',
|
|
2229
|
+
opticOddsName: 'Australia - Queensland NPL',
|
|
2230
|
+
priority: 197,
|
|
2231
|
+
},
|
|
2232
|
+
[League.AUSTRALIA_QUEENSLAND_PREMIER_LEAGUE]: {
|
|
2233
|
+
...SOCCER_DEFAULTS,
|
|
2234
|
+
id: League.AUSTRALIA_QUEENSLAND_PREMIER_LEAGUE,
|
|
2235
|
+
label: 'Australia Queensland Premier League',
|
|
2236
|
+
opticOddsName: 'Australia - Queensland Premier League',
|
|
2237
|
+
priority: 197,
|
|
2238
|
+
},
|
|
2239
|
+
[League.AUSTRALIA_SOUTH_AUSTRALIA_NPL]: {
|
|
2240
|
+
...SOCCER_DEFAULTS,
|
|
2241
|
+
id: League.AUSTRALIA_SOUTH_AUSTRALIA_NPL,
|
|
2242
|
+
label: 'Australia South Australia NPL',
|
|
2243
|
+
opticOddsName: 'Australia - South Australia NPL',
|
|
2244
|
+
priority: 197,
|
|
2245
|
+
},
|
|
2246
|
+
[League.AUSTRALIA_VICTORIA_NPL]: {
|
|
2247
|
+
...SOCCER_DEFAULTS,
|
|
2248
|
+
id: League.AUSTRALIA_VICTORIA_NPL,
|
|
2249
|
+
label: 'Australia Victoria NPL',
|
|
2250
|
+
opticOddsName: 'Australia - Victoria NPL',
|
|
2251
|
+
priority: 197,
|
|
2252
|
+
},
|
|
2253
|
+
[League.AUSTRALIA_VICTORIA_PREMIER_LEAGUE_1]: {
|
|
2254
|
+
...SOCCER_DEFAULTS,
|
|
2255
|
+
id: League.AUSTRALIA_VICTORIA_PREMIER_LEAGUE_1,
|
|
2256
|
+
label: 'Australia Victoria Premier League 1',
|
|
2257
|
+
opticOddsName: 'Australia - Victoria Premier League 1',
|
|
2258
|
+
priority: 197,
|
|
2259
|
+
},
|
|
2183
2260
|
};
|
package/src/enums/sports.ts
CHANGED
|
@@ -631,6 +631,17 @@ export enum League {
|
|
|
631
631
|
MONTENEGRO_CFL_1 = 20631,
|
|
632
632
|
NEW_ZEALAND_NATIONAL_LEAGUE = 20636,
|
|
633
633
|
SAN_MARINO_CAMPIONATO = 20666,
|
|
634
|
+
COLOMBIA_PRIMERA_B = 20515,
|
|
635
|
+
DENMARK_2ND_DIVISION = 20532,
|
|
636
|
+
POLAND_II_LIGA = 20654,
|
|
637
|
+
SLOVAKIA_2_LIGA = 20677,
|
|
638
|
+
SWITZERLAND_PROMOTION_LEAGUE = 20689,
|
|
639
|
+
AUSTRALIA_NORTHERN_NSW_NPL = 20167,
|
|
640
|
+
AUSTRALIA_QUEENSLAND_NPL = 20169,
|
|
641
|
+
AUSTRALIA_QUEENSLAND_PREMIER_LEAGUE = 20170,
|
|
642
|
+
AUSTRALIA_SOUTH_AUSTRALIA_NPL = 20171,
|
|
643
|
+
AUSTRALIA_VICTORIA_NPL = 20173,
|
|
644
|
+
AUSTRALIA_VICTORIA_PREMIER_LEAGUE_1 = 20174,
|
|
634
645
|
}
|
|
635
646
|
|
|
636
647
|
export enum ScoringType {
|