overtime-utils 0.2.43 → 0.2.44

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overtime-utils",
3
- "version": "0.2.43",
3
+ "version": "0.2.44",
4
4
  "description": "",
5
5
  "main": "main.js",
6
6
  "scripts": {
@@ -2404,4 +2404,81 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
2404
2404
  opticOddsName: 'USA - USL League One',
2405
2405
  priority: 192,
2406
2406
  },
2407
+ [League.ENGLAND_ISTHMIAN_PREMIER_LEAGUE]: {
2408
+ ...SOCCER_DEFAULTS,
2409
+ id: League.ENGLAND_ISTHMIAN_PREMIER_LEAGUE,
2410
+ label: 'England Isthmian Premier League',
2411
+ opticOddsName: 'England - Isthmian Premier League',
2412
+ priority: 195,
2413
+ },
2414
+ [League.ENGLAND_NORTHERN_PREMIER_LEAGUE]: {
2415
+ ...SOCCER_DEFAULTS,
2416
+ id: League.ENGLAND_NORTHERN_PREMIER_LEAGUE,
2417
+ label: 'England Northern Premier League',
2418
+ opticOddsName: 'England - Northern Premier League',
2419
+ priority: 195,
2420
+ },
2421
+ [League.ENGLAND_SOUTHERN_PREMIER_LEAGUE]: {
2422
+ ...SOCCER_DEFAULTS,
2423
+ id: League.ENGLAND_SOUTHERN_PREMIER_LEAGUE,
2424
+ label: 'England Southern Premier League',
2425
+ opticOddsName: 'England - Southern Premier League',
2426
+ priority: 195,
2427
+ },
2428
+ [League.ENGLAND_PROFESSIONAL_DEVELOPMENT_LEAGUE_U21]: {
2429
+ ...SOCCER_DEFAULTS,
2430
+ id: League.ENGLAND_PROFESSIONAL_DEVELOPMENT_LEAGUE_U21,
2431
+ label: 'England Professional Development League U21',
2432
+ opticOddsName: 'England - Professional Development League U21',
2433
+ priority: 197,
2434
+ },
2435
+ [League.ITALY_PRIMAVERA_U20]: {
2436
+ ...SOCCER_DEFAULTS,
2437
+ id: League.ITALY_PRIMAVERA_U20,
2438
+ label: 'Italy Primavera U20',
2439
+ opticOddsName: 'Italy - Primavera U20',
2440
+ priority: 197,
2441
+ },
2442
+ [League.PORTUGAL_LIGA_REVELACAO_U23]: {
2443
+ ...SOCCER_DEFAULTS,
2444
+ id: League.PORTUGAL_LIGA_REVELACAO_U23,
2445
+ label: 'Portugal Liga Revelacao U23',
2446
+ opticOddsName: 'Portugal - Liga Revelacao U23',
2447
+ priority: 197,
2448
+ },
2449
+ [League.AUSTRALIA_NSW_NPL]: {
2450
+ ...SOCCER_DEFAULTS,
2451
+ id: League.AUSTRALIA_NSW_NPL,
2452
+ label: 'Australia NSW NPL',
2453
+ opticOddsName: 'Australia - NSW NPL',
2454
+ priority: 197,
2455
+ },
2456
+ [League.EGYPT_SECOND_DIVISION]: {
2457
+ ...SOCCER_DEFAULTS,
2458
+ id: League.EGYPT_SECOND_DIVISION,
2459
+ label: 'Egypt Second Division',
2460
+ opticOddsName: 'Egypt - Second Division',
2461
+ priority: 193,
2462
+ },
2463
+ [League.ICELAND_BESTA_DEILD_WOMEN]: {
2464
+ ...SOCCER_DEFAULTS,
2465
+ id: League.ICELAND_BESTA_DEILD_WOMEN,
2466
+ label: 'Iceland Besta Deild Women',
2467
+ opticOddsName: 'Iceland - Besta Deild Women',
2468
+ priority: 197,
2469
+ },
2470
+ [League.SLOVAKIA_SLOVENSKY_POHAR]: {
2471
+ ...SOCCER_DEFAULTS,
2472
+ id: League.SLOVAKIA_SLOVENSKY_POHAR,
2473
+ label: 'Slovakia Slovensky Pohar',
2474
+ opticOddsName: 'Slovakia - Slovensky Pohar',
2475
+ priority: 185,
2476
+ },
2477
+ [League.ASEAN_CHAMPIONSHIP]: {
2478
+ ...SOCCER_DEFAULTS,
2479
+ id: League.ASEAN_CHAMPIONSHIP,
2480
+ label: 'ASEAN Championship',
2481
+ opticOddsName: 'ASEAN - Championship',
2482
+ priority: 187,
2483
+ },
2407
2484
  };
@@ -95,6 +95,7 @@ export const INTERNATIONAL_LEAGUES = [
95
95
  League.WAFF_CHAMPIONSHIP_WOMEN,
96
96
  League.KINGS_LEAGUE_WORLD_CUP,
97
97
  League.INTERNATIONAL_KINGS_CUP,
98
+ League.ASEAN_CHAMPIONSHIP,
98
99
  ];
99
100
 
100
101
  export const OLYMPIC_LEAGUES = [
@@ -670,6 +670,17 @@ export enum League {
670
670
  SCOTLAND_LEAGUE_ONE = 20670,
671
671
  SCOTLAND_LEAGUE_TWO = 20671,
672
672
  USA_USL_LEAGUE_ONE = 20703,
673
+ ENGLAND_ISTHMIAN_PREMIER_LEAGUE = 21090,
674
+ ENGLAND_NORTHERN_PREMIER_LEAGUE = 21091,
675
+ ENGLAND_SOUTHERN_PREMIER_LEAGUE = 21092,
676
+ ENGLAND_PROFESSIONAL_DEVELOPMENT_LEAGUE_U21 = 21436,
677
+ ITALY_PRIMAVERA_U20 = 21450,
678
+ PORTUGAL_LIGA_REVELACAO_U23 = 21459,
679
+ AUSTRALIA_NSW_NPL = 20168,
680
+ EGYPT_SECOND_DIVISION = 20539,
681
+ ICELAND_BESTA_DEILD_WOMEN = 21237,
682
+ SLOVAKIA_SLOVENSKY_POHAR = 20679,
683
+ ASEAN_CHAMPIONSHIP = 21010,
673
684
  JAPAN_B1_LEAGUE = 20207,
674
685
  MEXICO_LNBP = 21355,
675
686
  PHILIPPINES_GOVERNORS_CUP = 21411,