overtime-utils 0.2.27 → 0.2.28

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.27",
3
+ "version": "0.2.28",
4
4
  "description": "",
5
5
  "main": "main.js",
6
6
  "scripts": {
@@ -29,6 +29,14 @@ export const RUGBY_LEAGUES: Partial<Record<League, LeagueInfo>> = {
29
29
  opticOddsName: 'England - Super League',
30
30
  priority: 1202,
31
31
  },
32
+ [League.AUSTRALIA_STATE_OF_ORIGIN]: {
33
+ ...RUGBY_DEFAULTS,
34
+ id: League.AUSTRALIA_STATE_OF_ORIGIN,
35
+ label: 'Australia State of Origin',
36
+ opticOddsSport: OpticOddsSport.RUGBY_LEAGUE,
37
+ opticOddsName: 'Australia - State of Origin',
38
+ priority: 1205,
39
+ },
32
40
  [League.SUPER_RUGBY]: {
33
41
  ...RUGBY_DEFAULTS,
34
42
  id: League.SUPER_RUGBY,
@@ -757,6 +757,20 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
757
757
  opticOddsName: 'UEFA - European Championship U19',
758
758
  priority: 189,
759
759
  },
760
+ [League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19]: {
761
+ ...SOCCER_DEFAULTS,
762
+ id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19,
763
+ label: 'UEFA European Championship Qualifiers Women U19',
764
+ opticOddsName: 'UEFA - European Championship Qualifiers Women U19',
765
+ priority: 190,
766
+ },
767
+ [League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19]: {
768
+ ...SOCCER_DEFAULTS,
769
+ id: League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19,
770
+ label: 'UEFA European Championship Women U19',
771
+ opticOddsName: 'UEFA - European Championship Women U19',
772
+ priority: 190,
773
+ },
760
774
  [League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN]: {
761
775
  ...SOCCER_DEFAULTS,
762
776
  id: League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN,
@@ -54,6 +54,8 @@ export const INTERNATIONAL_LEAGUES = [
54
54
  League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21,
55
55
  League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19,
56
56
  League.UEFA_EUROPEAN_CHAMPIONSHIP_U19,
57
+ League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19,
58
+ League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19,
57
59
  League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN,
58
60
  League.PDC_WORLD_CUP_OF_DARTS,
59
61
  League.PDC_WORLD_GRAND_PRIX,
@@ -186,6 +186,7 @@ export enum League {
186
186
  ENGLAND_SUPER_LEAGUE = 9501,
187
187
  SUPER_RUGBY = 9502,
188
188
  SIX_NATIONS = 9503,
189
+ AUSTRALIA_STATE_OF_ORIGIN = 9504,
189
190
  AFL = 9510,
190
191
  CFL = 9520,
191
192
  UFL = 9521,
@@ -394,6 +395,8 @@ export enum League {
394
395
  UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21 = 20744,
395
396
  UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19 = 20746,
396
397
  UEFA_EUROPEAN_CHAMPIONSHIP_U19 = 20747,
398
+ UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19 = 20754,
399
+ UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19 = 20755,
397
400
  ITALY_KINGS_LEAGUE = 20900,
398
401
  SPAIN_KINGS_LEAGUE = 20901,
399
402
  BRAZIL_KINGS_LEAGUE = 20902,