overtime-utils 0.2.30 → 0.2.32
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/.claude/settings.local.json +12 -0
- package/main.js +1 -1
- package/package.json +1 -1
- package/src/constants/leagues/soccer.ts +518 -0
- package/src/constants/marketTypes/playerProps.ts +24 -0
- package/src/constants/marketTypes/tennis.ts +50 -50
- package/src/constants/marketTypes.ts +7 -0
- package/src/enums/marketTypes.ts +6 -0
- package/src/enums/sports.ts +76 -0
package/package.json
CHANGED
|
@@ -1662,4 +1662,522 @@ export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
|
1662
1662
|
opticOddsName: 'Morocco - Botola Pro 2',
|
|
1663
1663
|
priority: 150,
|
|
1664
1664
|
},
|
|
1665
|
+
[League.POLAND_I_LIGA]: {
|
|
1666
|
+
...SOCCER_DEFAULTS,
|
|
1667
|
+
id: League.POLAND_I_LIGA,
|
|
1668
|
+
label: 'Poland I Liga',
|
|
1669
|
+
opticOddsName: 'Poland - I Liga',
|
|
1670
|
+
priority: 182,
|
|
1671
|
+
},
|
|
1672
|
+
[League.ECUADOR_SERIE_B]: {
|
|
1673
|
+
...SOCCER_DEFAULTS,
|
|
1674
|
+
id: League.ECUADOR_SERIE_B,
|
|
1675
|
+
label: 'Ecuador Serie B',
|
|
1676
|
+
opticOddsName: 'Ecuador - Serie B',
|
|
1677
|
+
priority: 192,
|
|
1678
|
+
},
|
|
1679
|
+
[League.COLOMBIA_CUP]: {
|
|
1680
|
+
...SOCCER_DEFAULTS,
|
|
1681
|
+
id: League.COLOMBIA_CUP,
|
|
1682
|
+
label: 'Colombia Cup',
|
|
1683
|
+
opticOddsName: 'Colombia - Cup',
|
|
1684
|
+
priority: 185,
|
|
1685
|
+
},
|
|
1686
|
+
[League.EL_SALVADOR_PRIMERA]: {
|
|
1687
|
+
...SOCCER_DEFAULTS,
|
|
1688
|
+
id: League.EL_SALVADOR_PRIMERA,
|
|
1689
|
+
label: 'El Salvador Primera Division',
|
|
1690
|
+
opticOddsName: 'El Salvador - Primera Division',
|
|
1691
|
+
priority: 190,
|
|
1692
|
+
},
|
|
1693
|
+
[League.BRAZIL_BRASILEIRO_U20]: {
|
|
1694
|
+
...SOCCER_DEFAULTS,
|
|
1695
|
+
id: League.BRAZIL_BRASILEIRO_U20,
|
|
1696
|
+
label: 'Brazil Brasileiro U20',
|
|
1697
|
+
opticOddsName: 'Brazil - Brasileiro U20',
|
|
1698
|
+
priority: 196,
|
|
1699
|
+
},
|
|
1700
|
+
[League.NIGERIA_PREMIER_LEAGUE]: {
|
|
1701
|
+
...SOCCER_DEFAULTS,
|
|
1702
|
+
id: League.NIGERIA_PREMIER_LEAGUE,
|
|
1703
|
+
label: 'Nigeria Premier League',
|
|
1704
|
+
opticOddsName: 'Nigeria - Premier League',
|
|
1705
|
+
priority: 190,
|
|
1706
|
+
},
|
|
1707
|
+
[League.GHANA_PREMIER_LEAGUE]: {
|
|
1708
|
+
...SOCCER_DEFAULTS,
|
|
1709
|
+
id: League.GHANA_PREMIER_LEAGUE,
|
|
1710
|
+
label: 'Ghana Premier League',
|
|
1711
|
+
opticOddsName: 'Ghana - Premier League',
|
|
1712
|
+
priority: 190,
|
|
1713
|
+
},
|
|
1714
|
+
[League.IVORY_COAST_LIGUE_1]: {
|
|
1715
|
+
...SOCCER_DEFAULTS,
|
|
1716
|
+
id: League.IVORY_COAST_LIGUE_1,
|
|
1717
|
+
label: 'Ivory Coast Ligue 1',
|
|
1718
|
+
opticOddsName: 'Ivory Coast - Ligue 1',
|
|
1719
|
+
priority: 190,
|
|
1720
|
+
},
|
|
1721
|
+
[League.CAMEROON_ELITE_ONE]: {
|
|
1722
|
+
...SOCCER_DEFAULTS,
|
|
1723
|
+
id: League.CAMEROON_ELITE_ONE,
|
|
1724
|
+
label: 'Cameroon Elite One',
|
|
1725
|
+
opticOddsName: 'Cameroon - Elite One',
|
|
1726
|
+
priority: 190,
|
|
1727
|
+
},
|
|
1728
|
+
[League.SENEGAL_LIGUE_1]: {
|
|
1729
|
+
...SOCCER_DEFAULTS,
|
|
1730
|
+
id: League.SENEGAL_LIGUE_1,
|
|
1731
|
+
label: 'Senegal Ligue 1',
|
|
1732
|
+
opticOddsName: 'Senegal - Ligue 1',
|
|
1733
|
+
priority: 190,
|
|
1734
|
+
},
|
|
1735
|
+
[League.TUNISIA_LEAGUE_1]: {
|
|
1736
|
+
...SOCCER_DEFAULTS,
|
|
1737
|
+
id: League.TUNISIA_LEAGUE_1,
|
|
1738
|
+
label: 'Tunisia League 1',
|
|
1739
|
+
opticOddsName: 'Tunisia - League 1',
|
|
1740
|
+
priority: 190,
|
|
1741
|
+
},
|
|
1742
|
+
[League.IRAN_PRO_LEAGUE]: {
|
|
1743
|
+
...SOCCER_DEFAULTS,
|
|
1744
|
+
id: League.IRAN_PRO_LEAGUE,
|
|
1745
|
+
label: 'Iran Pro League',
|
|
1746
|
+
opticOddsName: 'Iran - Pro League',
|
|
1747
|
+
priority: 190,
|
|
1748
|
+
},
|
|
1749
|
+
[League.ZAMBIA_SUPER_LEAGUE]: {
|
|
1750
|
+
...SOCCER_DEFAULTS,
|
|
1751
|
+
id: League.ZAMBIA_SUPER_LEAGUE,
|
|
1752
|
+
label: 'Zambia Super League',
|
|
1753
|
+
opticOddsName: 'Zambia - Super League',
|
|
1754
|
+
priority: 190,
|
|
1755
|
+
},
|
|
1756
|
+
[League.TANZANIA_PREMIER_LEAGUE]: {
|
|
1757
|
+
...SOCCER_DEFAULTS,
|
|
1758
|
+
id: League.TANZANIA_PREMIER_LEAGUE,
|
|
1759
|
+
label: 'Tanzania Premier League',
|
|
1760
|
+
opticOddsName: 'Tanzania - Premier League',
|
|
1761
|
+
priority: 190,
|
|
1762
|
+
},
|
|
1763
|
+
[League.UGANDA_PREMIER_LEAGUE]: {
|
|
1764
|
+
...SOCCER_DEFAULTS,
|
|
1765
|
+
id: League.UGANDA_PREMIER_LEAGUE,
|
|
1766
|
+
label: 'Uganda Premier League',
|
|
1767
|
+
opticOddsName: 'Uganda - Premier League',
|
|
1768
|
+
priority: 190,
|
|
1769
|
+
},
|
|
1770
|
+
[League.BURKINA_FASO_PREMIER_LEAGUE]: {
|
|
1771
|
+
...SOCCER_DEFAULTS,
|
|
1772
|
+
id: League.BURKINA_FASO_PREMIER_LEAGUE,
|
|
1773
|
+
label: 'Burkina Faso Premier League',
|
|
1774
|
+
opticOddsName: 'Burkina Faso - Premier League',
|
|
1775
|
+
priority: 190,
|
|
1776
|
+
},
|
|
1777
|
+
[League.HONDURAS_LIGA_NACIONAL]: {
|
|
1778
|
+
...SOCCER_DEFAULTS,
|
|
1779
|
+
id: League.HONDURAS_LIGA_NACIONAL,
|
|
1780
|
+
label: 'Honduras Liga Nacional',
|
|
1781
|
+
opticOddsName: 'Honduras - Liga Nacional',
|
|
1782
|
+
priority: 190,
|
|
1783
|
+
},
|
|
1784
|
+
[League.KUWAIT_PREMIER_LEAGUE]: {
|
|
1785
|
+
...SOCCER_DEFAULTS,
|
|
1786
|
+
id: League.KUWAIT_PREMIER_LEAGUE,
|
|
1787
|
+
label: 'Kuwait Premier League',
|
|
1788
|
+
opticOddsName: 'Kuwait - Premier League',
|
|
1789
|
+
priority: 190,
|
|
1790
|
+
},
|
|
1791
|
+
[League.OMAN_PRO_LEAGUE]: {
|
|
1792
|
+
...SOCCER_DEFAULTS,
|
|
1793
|
+
id: League.OMAN_PRO_LEAGUE,
|
|
1794
|
+
label: 'Oman Pro League',
|
|
1795
|
+
opticOddsName: 'Oman - Pro League',
|
|
1796
|
+
priority: 190,
|
|
1797
|
+
},
|
|
1798
|
+
[League.JORDAN_PRO_LEAGUE]: {
|
|
1799
|
+
...SOCCER_DEFAULTS,
|
|
1800
|
+
id: League.JORDAN_PRO_LEAGUE,
|
|
1801
|
+
label: 'Jordan Pro League',
|
|
1802
|
+
opticOddsName: 'Jordan - Pro League',
|
|
1803
|
+
priority: 190,
|
|
1804
|
+
},
|
|
1805
|
+
[League.LEBANON_PREMIER_LEAGUE]: {
|
|
1806
|
+
...SOCCER_DEFAULTS,
|
|
1807
|
+
id: League.LEBANON_PREMIER_LEAGUE,
|
|
1808
|
+
label: 'Lebanon Premier League',
|
|
1809
|
+
opticOddsName: 'Lebanon - Premier League',
|
|
1810
|
+
priority: 190,
|
|
1811
|
+
},
|
|
1812
|
+
[League.MALI_LEAGUE_ONE]: {
|
|
1813
|
+
...SOCCER_DEFAULTS,
|
|
1814
|
+
id: League.MALI_LEAGUE_ONE,
|
|
1815
|
+
label: 'Mali League One',
|
|
1816
|
+
opticOddsName: 'Mali - League One',
|
|
1817
|
+
priority: 190,
|
|
1818
|
+
},
|
|
1819
|
+
[League.MOLDOVA_SUPER_LIGA]: {
|
|
1820
|
+
...SOCCER_DEFAULTS,
|
|
1821
|
+
id: League.MOLDOVA_SUPER_LIGA,
|
|
1822
|
+
label: 'Moldova Super Liga',
|
|
1823
|
+
opticOddsName: 'Moldova - Super Liga',
|
|
1824
|
+
priority: 190,
|
|
1825
|
+
},
|
|
1826
|
+
[League.RWANDA_PREMIER_LEAGUE]: {
|
|
1827
|
+
...SOCCER_DEFAULTS,
|
|
1828
|
+
id: League.RWANDA_PREMIER_LEAGUE,
|
|
1829
|
+
label: 'Rwanda Premier League',
|
|
1830
|
+
opticOddsName: 'Rwanda - Premier League',
|
|
1831
|
+
priority: 190,
|
|
1832
|
+
},
|
|
1833
|
+
[League.MOZAMBIQUE_MOCAMBOLA]: {
|
|
1834
|
+
...SOCCER_DEFAULTS,
|
|
1835
|
+
id: League.MOZAMBIQUE_MOCAMBOLA,
|
|
1836
|
+
label: 'Mozambique Mocambola',
|
|
1837
|
+
opticOddsName: 'Mozambique - Mocambola',
|
|
1838
|
+
priority: 190,
|
|
1839
|
+
},
|
|
1840
|
+
[League.ANGOLA_GIRABOLA]: {
|
|
1841
|
+
...SOCCER_DEFAULTS,
|
|
1842
|
+
id: League.ANGOLA_GIRABOLA,
|
|
1843
|
+
label: 'Angola Girabola',
|
|
1844
|
+
opticOddsName: 'Angola - Girabola',
|
|
1845
|
+
priority: 196,
|
|
1846
|
+
},
|
|
1847
|
+
[League.ARUBA_DIVISION_DI_HONOR]: {
|
|
1848
|
+
...SOCCER_DEFAULTS,
|
|
1849
|
+
id: League.ARUBA_DIVISION_DI_HONOR,
|
|
1850
|
+
label: 'Aruba Division di Honor',
|
|
1851
|
+
opticOddsName: 'Aruba - Division di Honor',
|
|
1852
|
+
priority: 196,
|
|
1853
|
+
},
|
|
1854
|
+
[League.BANGLADESH_PREMIER_LEAGUE]: {
|
|
1855
|
+
...SOCCER_DEFAULTS,
|
|
1856
|
+
id: League.BANGLADESH_PREMIER_LEAGUE,
|
|
1857
|
+
label: 'Bangladesh Premier League',
|
|
1858
|
+
opticOddsName: 'Bangladesh - Premier League',
|
|
1859
|
+
priority: 196,
|
|
1860
|
+
},
|
|
1861
|
+
[League.BARBADOS_PREMIER_LEAGUE]: {
|
|
1862
|
+
...SOCCER_DEFAULTS,
|
|
1863
|
+
id: League.BARBADOS_PREMIER_LEAGUE,
|
|
1864
|
+
label: 'Barbados Premier League',
|
|
1865
|
+
opticOddsName: 'Barbados - Premier League',
|
|
1866
|
+
priority: 196,
|
|
1867
|
+
},
|
|
1868
|
+
[League.BENIN_LIGUE_1]: {
|
|
1869
|
+
...SOCCER_DEFAULTS,
|
|
1870
|
+
id: League.BENIN_LIGUE_1,
|
|
1871
|
+
label: 'Benin Ligue 1',
|
|
1872
|
+
opticOddsName: 'Benin - Ligue 1',
|
|
1873
|
+
priority: 196,
|
|
1874
|
+
},
|
|
1875
|
+
[League.BHUTAN_PREMIER_LEAGUE]: {
|
|
1876
|
+
...SOCCER_DEFAULTS,
|
|
1877
|
+
id: League.BHUTAN_PREMIER_LEAGUE,
|
|
1878
|
+
label: 'Bhutan Premier League',
|
|
1879
|
+
opticOddsName: 'Bhutan - Premier League',
|
|
1880
|
+
priority: 196,
|
|
1881
|
+
},
|
|
1882
|
+
[League.BOTSWANA_PREMIER_LEAGUE]: {
|
|
1883
|
+
...SOCCER_DEFAULTS,
|
|
1884
|
+
id: League.BOTSWANA_PREMIER_LEAGUE,
|
|
1885
|
+
label: 'Botswana Premier League',
|
|
1886
|
+
opticOddsName: 'Botswana - Premier League',
|
|
1887
|
+
priority: 196,
|
|
1888
|
+
},
|
|
1889
|
+
[League.BURUNDI_PRIMUS_LEAGUE]: {
|
|
1890
|
+
...SOCCER_DEFAULTS,
|
|
1891
|
+
id: League.BURUNDI_PRIMUS_LEAGUE,
|
|
1892
|
+
label: 'Burundi Primus League',
|
|
1893
|
+
opticOddsName: 'Burundi - Primus League',
|
|
1894
|
+
priority: 196,
|
|
1895
|
+
},
|
|
1896
|
+
[League.CAMBODIA_PREMIER_LEAGUE]: {
|
|
1897
|
+
...SOCCER_DEFAULTS,
|
|
1898
|
+
id: League.CAMBODIA_PREMIER_LEAGUE,
|
|
1899
|
+
label: 'Cambodia Premier League',
|
|
1900
|
+
opticOddsName: 'Cambodia - Premier League',
|
|
1901
|
+
priority: 196,
|
|
1902
|
+
},
|
|
1903
|
+
[League.CHAD_PREMIER_LEAGUE]: {
|
|
1904
|
+
...SOCCER_DEFAULTS,
|
|
1905
|
+
id: League.CHAD_PREMIER_LEAGUE,
|
|
1906
|
+
label: 'Chad Premier League',
|
|
1907
|
+
opticOddsName: 'Chad - Premier League',
|
|
1908
|
+
priority: 196,
|
|
1909
|
+
},
|
|
1910
|
+
[League.DOMINICAN_REPUBLIC_LDF]: {
|
|
1911
|
+
...SOCCER_DEFAULTS,
|
|
1912
|
+
id: League.DOMINICAN_REPUBLIC_LDF,
|
|
1913
|
+
label: 'Dominican Republic LDF',
|
|
1914
|
+
opticOddsName: 'Dominican Republic - LDF',
|
|
1915
|
+
priority: 196,
|
|
1916
|
+
},
|
|
1917
|
+
[League.DOMINICA_PREMIER_LEAGUE]: {
|
|
1918
|
+
...SOCCER_DEFAULTS,
|
|
1919
|
+
id: League.DOMINICA_PREMIER_LEAGUE,
|
|
1920
|
+
label: 'Dominica Premier League',
|
|
1921
|
+
opticOddsName: 'Dominica - Premier League',
|
|
1922
|
+
priority: 196,
|
|
1923
|
+
},
|
|
1924
|
+
[League.FIJI_PREMIER_LEAGUE]: {
|
|
1925
|
+
...SOCCER_DEFAULTS,
|
|
1926
|
+
id: League.FIJI_PREMIER_LEAGUE,
|
|
1927
|
+
label: 'Fiji Premier League',
|
|
1928
|
+
opticOddsName: 'Fiji - Premier League',
|
|
1929
|
+
priority: 196,
|
|
1930
|
+
},
|
|
1931
|
+
[League.GAMBIA_GFA_LEAGUE]: {
|
|
1932
|
+
...SOCCER_DEFAULTS,
|
|
1933
|
+
id: League.GAMBIA_GFA_LEAGUE,
|
|
1934
|
+
label: 'Gambia GFA League',
|
|
1935
|
+
opticOddsName: 'Gambia - GFA League',
|
|
1936
|
+
priority: 196,
|
|
1937
|
+
},
|
|
1938
|
+
[League.KYRGYZSTAN_PREMIER_LEAGUE]: {
|
|
1939
|
+
...SOCCER_DEFAULTS,
|
|
1940
|
+
id: League.KYRGYZSTAN_PREMIER_LEAGUE,
|
|
1941
|
+
label: 'Kyrgyzstan Premier League',
|
|
1942
|
+
opticOddsName: 'Kyrgyzstan - Premier League',
|
|
1943
|
+
priority: 196,
|
|
1944
|
+
},
|
|
1945
|
+
[League.MACAO_ELITE_LEAGUE]: {
|
|
1946
|
+
...SOCCER_DEFAULTS,
|
|
1947
|
+
id: League.MACAO_ELITE_LEAGUE,
|
|
1948
|
+
label: 'Macao Elite League',
|
|
1949
|
+
opticOddsName: 'Macao - Elite League',
|
|
1950
|
+
priority: 196,
|
|
1951
|
+
},
|
|
1952
|
+
[League.MALAWI_SUPER_LEAGUE]: {
|
|
1953
|
+
...SOCCER_DEFAULTS,
|
|
1954
|
+
id: League.MALAWI_SUPER_LEAGUE,
|
|
1955
|
+
label: 'Malawi Super League',
|
|
1956
|
+
opticOddsName: 'Malawi - Super League',
|
|
1957
|
+
priority: 196,
|
|
1958
|
+
},
|
|
1959
|
+
[League.MAURITANIA_LIGUE_1]: {
|
|
1960
|
+
...SOCCER_DEFAULTS,
|
|
1961
|
+
id: League.MAURITANIA_LIGUE_1,
|
|
1962
|
+
label: 'Mauritania Ligue 1',
|
|
1963
|
+
opticOddsName: 'Mauritania - Ligue 1',
|
|
1964
|
+
priority: 196,
|
|
1965
|
+
},
|
|
1966
|
+
[League.MYANMAR_NATIONAL_LEAGUE]: {
|
|
1967
|
+
...SOCCER_DEFAULTS,
|
|
1968
|
+
id: League.MYANMAR_NATIONAL_LEAGUE,
|
|
1969
|
+
label: 'Myanmar National League',
|
|
1970
|
+
opticOddsName: 'Myanmar - National League',
|
|
1971
|
+
priority: 196,
|
|
1972
|
+
},
|
|
1973
|
+
[League.NICARAGUA_PRIMERA_DIVISION]: {
|
|
1974
|
+
...SOCCER_DEFAULTS,
|
|
1975
|
+
id: League.NICARAGUA_PRIMERA_DIVISION,
|
|
1976
|
+
label: 'Nicaragua Primera Division',
|
|
1977
|
+
opticOddsName: 'Nicaragua - Primera Division',
|
|
1978
|
+
priority: 196,
|
|
1979
|
+
},
|
|
1980
|
+
[League.PHILIPPINES_PFL]: {
|
|
1981
|
+
...SOCCER_DEFAULTS,
|
|
1982
|
+
id: League.PHILIPPINES_PFL,
|
|
1983
|
+
label: 'Philippines PFL',
|
|
1984
|
+
opticOddsName: 'Philippines - PFL',
|
|
1985
|
+
priority: 196,
|
|
1986
|
+
},
|
|
1987
|
+
[League.PUERTO_RICO_LPR_PRO]: {
|
|
1988
|
+
...SOCCER_DEFAULTS,
|
|
1989
|
+
id: League.PUERTO_RICO_LPR_PRO,
|
|
1990
|
+
label: 'Puerto Rico LPR Pro',
|
|
1991
|
+
opticOddsName: 'Puerto Rico - LPR Pro',
|
|
1992
|
+
priority: 196,
|
|
1993
|
+
},
|
|
1994
|
+
[League.SIERRA_LEONE_PREMIER_LEAGUE]: {
|
|
1995
|
+
...SOCCER_DEFAULTS,
|
|
1996
|
+
id: League.SIERRA_LEONE_PREMIER_LEAGUE,
|
|
1997
|
+
label: 'Sierra Leone Premier League',
|
|
1998
|
+
opticOddsName: 'Sierra Leone - Premier League',
|
|
1999
|
+
priority: 196,
|
|
2000
|
+
},
|
|
2001
|
+
[League.SYRIA_PREMIER_LEAGUE]: {
|
|
2002
|
+
...SOCCER_DEFAULTS,
|
|
2003
|
+
id: League.SYRIA_PREMIER_LEAGUE,
|
|
2004
|
+
label: 'Syria Premier League',
|
|
2005
|
+
opticOddsName: 'Syria - Premier League',
|
|
2006
|
+
priority: 196,
|
|
2007
|
+
},
|
|
2008
|
+
[League.TAIWAN_PREMIER_LEAGUE]: {
|
|
2009
|
+
...SOCCER_DEFAULTS,
|
|
2010
|
+
id: League.TAIWAN_PREMIER_LEAGUE,
|
|
2011
|
+
label: 'Taiwan Premier League',
|
|
2012
|
+
opticOddsName: 'Taiwan - Premier League',
|
|
2013
|
+
priority: 196,
|
|
2014
|
+
},
|
|
2015
|
+
[League.TOGO_LIGUE_1]: {
|
|
2016
|
+
...SOCCER_DEFAULTS,
|
|
2017
|
+
id: League.TOGO_LIGUE_1,
|
|
2018
|
+
label: 'Togo Ligue 1',
|
|
2019
|
+
opticOddsName: 'Togo - Ligue 1',
|
|
2020
|
+
priority: 196,
|
|
2021
|
+
},
|
|
2022
|
+
[League.TRINIDAD_AND_TOBAGO_PREMIER_LEAGUE]: {
|
|
2023
|
+
...SOCCER_DEFAULTS,
|
|
2024
|
+
id: League.TRINIDAD_AND_TOBAGO_PREMIER_LEAGUE,
|
|
2025
|
+
label: 'Trinidad and Tobago Premier League',
|
|
2026
|
+
opticOddsName: 'Trinidad and Tobago - Premier League',
|
|
2027
|
+
priority: 196,
|
|
2028
|
+
},
|
|
2029
|
+
[League.ALBANIA_KATEGORIA_SUPERIORE]: {
|
|
2030
|
+
...SOCCER_DEFAULTS,
|
|
2031
|
+
id: League.ALBANIA_KATEGORIA_SUPERIORE,
|
|
2032
|
+
label: 'Albania Kategoria Superiore',
|
|
2033
|
+
opticOddsName: 'Albania - Kategoria Superiore',
|
|
2034
|
+
priority: 190,
|
|
2035
|
+
},
|
|
2036
|
+
[League.ARMENIA_PREMIER_LEAGUE]: {
|
|
2037
|
+
...SOCCER_DEFAULTS,
|
|
2038
|
+
id: League.ARMENIA_PREMIER_LEAGUE,
|
|
2039
|
+
label: 'Armenia Premier League',
|
|
2040
|
+
opticOddsName: 'Armenia - Premier League',
|
|
2041
|
+
priority: 190,
|
|
2042
|
+
},
|
|
2043
|
+
[League.AZERBAIJAN_PREMIER_LEAGUE]: {
|
|
2044
|
+
...SOCCER_DEFAULTS,
|
|
2045
|
+
id: League.AZERBAIJAN_PREMIER_LEAGUE,
|
|
2046
|
+
label: 'Azerbaijan Premier League',
|
|
2047
|
+
opticOddsName: 'Azerbaijan - Premier League',
|
|
2048
|
+
priority: 190,
|
|
2049
|
+
},
|
|
2050
|
+
[League.BAHRAIN_PREMIER_LEAGUE]: {
|
|
2051
|
+
...SOCCER_DEFAULTS,
|
|
2052
|
+
id: League.BAHRAIN_PREMIER_LEAGUE,
|
|
2053
|
+
label: 'Bahrain Premier League',
|
|
2054
|
+
opticOddsName: 'Bahrain - Premier League',
|
|
2055
|
+
priority: 190,
|
|
2056
|
+
},
|
|
2057
|
+
[League.BOSNIA_AND_HERZEGOVINA_PREMIER_LEAGUE]: {
|
|
2058
|
+
...SOCCER_DEFAULTS,
|
|
2059
|
+
id: League.BOSNIA_AND_HERZEGOVINA_PREMIER_LEAGUE,
|
|
2060
|
+
label: 'Bosnia and Herzegovina Premier League',
|
|
2061
|
+
opticOddsName: 'Bosnia and Herzegovina - Premier League',
|
|
2062
|
+
priority: 190,
|
|
2063
|
+
},
|
|
2064
|
+
[League.ETHIOPIA_PREMIER_LEAGUE]: {
|
|
2065
|
+
...SOCCER_DEFAULTS,
|
|
2066
|
+
id: League.ETHIOPIA_PREMIER_LEAGUE,
|
|
2067
|
+
label: 'Ethiopia Premier League',
|
|
2068
|
+
opticOddsName: 'Ethiopia - Premier League',
|
|
2069
|
+
priority: 190,
|
|
2070
|
+
},
|
|
2071
|
+
[League.GUATEMALA_LIGA_NACIONAL]: {
|
|
2072
|
+
...SOCCER_DEFAULTS,
|
|
2073
|
+
id: League.GUATEMALA_LIGA_NACIONAL,
|
|
2074
|
+
label: 'Guatemala Liga Nacional',
|
|
2075
|
+
opticOddsName: 'Guatemala - Liga Nacional',
|
|
2076
|
+
priority: 190,
|
|
2077
|
+
},
|
|
2078
|
+
[League.IRAQ_STARS_LEAGUE]: {
|
|
2079
|
+
...SOCCER_DEFAULTS,
|
|
2080
|
+
id: League.IRAQ_STARS_LEAGUE,
|
|
2081
|
+
label: 'Iraq Stars League',
|
|
2082
|
+
opticOddsName: 'Iraq - Stars League',
|
|
2083
|
+
priority: 190,
|
|
2084
|
+
},
|
|
2085
|
+
[League.JAMAICA_PREMIER_LEAGUE]: {
|
|
2086
|
+
...SOCCER_DEFAULTS,
|
|
2087
|
+
id: League.JAMAICA_PREMIER_LEAGUE,
|
|
2088
|
+
label: 'Jamaica Premier League',
|
|
2089
|
+
opticOddsName: 'Jamaica - Premier League',
|
|
2090
|
+
priority: 190,
|
|
2091
|
+
},
|
|
2092
|
+
[League.KENYA_PREMIER_LEAGUE]: {
|
|
2093
|
+
...SOCCER_DEFAULTS,
|
|
2094
|
+
id: League.KENYA_PREMIER_LEAGUE,
|
|
2095
|
+
label: 'Kenya Premier League',
|
|
2096
|
+
opticOddsName: 'Kenya - Premier League',
|
|
2097
|
+
priority: 190,
|
|
2098
|
+
},
|
|
2099
|
+
[League.KOSOVO_SUPERLIGA]: {
|
|
2100
|
+
...SOCCER_DEFAULTS,
|
|
2101
|
+
id: League.KOSOVO_SUPERLIGA,
|
|
2102
|
+
label: 'Kosovo Superliga',
|
|
2103
|
+
opticOddsName: 'Kosovo - Superliga',
|
|
2104
|
+
priority: 190,
|
|
2105
|
+
},
|
|
2106
|
+
[League.NORTH_MACEDONIA_FIRST_LEAGUE]: {
|
|
2107
|
+
...SOCCER_DEFAULTS,
|
|
2108
|
+
id: League.NORTH_MACEDONIA_FIRST_LEAGUE,
|
|
2109
|
+
label: 'North Macedonia First League',
|
|
2110
|
+
opticOddsName: 'North Macedonia - First League',
|
|
2111
|
+
priority: 190,
|
|
2112
|
+
},
|
|
2113
|
+
[League.PANAMA_LIGA_PANAMENA]: {
|
|
2114
|
+
...SOCCER_DEFAULTS,
|
|
2115
|
+
id: League.PANAMA_LIGA_PANAMENA,
|
|
2116
|
+
label: 'Panama Liga Panamena',
|
|
2117
|
+
opticOddsName: 'Panama - Liga Panamena',
|
|
2118
|
+
priority: 190,
|
|
2119
|
+
},
|
|
2120
|
+
[League.ZIMBABWE_PREMIER_LEAGUE]: {
|
|
2121
|
+
...SOCCER_DEFAULTS,
|
|
2122
|
+
id: League.ZIMBABWE_PREMIER_LEAGUE,
|
|
2123
|
+
label: 'Zimbabwe Premier League',
|
|
2124
|
+
opticOddsName: 'Zimbabwe - Premier League',
|
|
2125
|
+
priority: 190,
|
|
2126
|
+
},
|
|
2127
|
+
[League.UZBEKISTAN_PROFESSIONAL_LEAGUE]: {
|
|
2128
|
+
...SOCCER_DEFAULTS,
|
|
2129
|
+
id: League.UZBEKISTAN_PROFESSIONAL_LEAGUE,
|
|
2130
|
+
label: 'Uzbekistan Professional League',
|
|
2131
|
+
opticOddsName: 'Uzbekistan - Professional League',
|
|
2132
|
+
priority: 190,
|
|
2133
|
+
},
|
|
2134
|
+
[League.ANDORRA_PRIMERA_DIVISIO]: {
|
|
2135
|
+
...SOCCER_DEFAULTS,
|
|
2136
|
+
id: League.ANDORRA_PRIMERA_DIVISIO,
|
|
2137
|
+
label: 'Andorra Primera Divisio',
|
|
2138
|
+
opticOddsName: 'Andorra - Primera Divisio',
|
|
2139
|
+
priority: 196,
|
|
2140
|
+
},
|
|
2141
|
+
[League.FAROE_ISLANDS_PREMIER_LEAGUE]: {
|
|
2142
|
+
...SOCCER_DEFAULTS,
|
|
2143
|
+
id: League.FAROE_ISLANDS_PREMIER_LEAGUE,
|
|
2144
|
+
label: 'Faroe Islands Premier League',
|
|
2145
|
+
opticOddsName: 'Faroe Islands - Premier League',
|
|
2146
|
+
priority: 196,
|
|
2147
|
+
},
|
|
2148
|
+
[League.GIBRALTAR_FOOTBALL_LEAGUE]: {
|
|
2149
|
+
...SOCCER_DEFAULTS,
|
|
2150
|
+
id: League.GIBRALTAR_FOOTBALL_LEAGUE,
|
|
2151
|
+
label: 'Gibraltar Football League',
|
|
2152
|
+
opticOddsName: 'Gibraltar - Football League',
|
|
2153
|
+
priority: 196,
|
|
2154
|
+
},
|
|
2155
|
+
[League.MONGOLIA_PREMIER_LEAGUE]: {
|
|
2156
|
+
...SOCCER_DEFAULTS,
|
|
2157
|
+
id: League.MONGOLIA_PREMIER_LEAGUE,
|
|
2158
|
+
label: 'Mongolia Premier League',
|
|
2159
|
+
opticOddsName: 'Mongolia - Premier League',
|
|
2160
|
+
priority: 196,
|
|
2161
|
+
},
|
|
2162
|
+
[League.MONTENEGRO_CFL_1]: {
|
|
2163
|
+
...SOCCER_DEFAULTS,
|
|
2164
|
+
id: League.MONTENEGRO_CFL_1,
|
|
2165
|
+
label: 'Montenegro CFL 1',
|
|
2166
|
+
opticOddsName: 'Montenegro - CFL 1',
|
|
2167
|
+
priority: 196,
|
|
2168
|
+
},
|
|
2169
|
+
[League.NEW_ZEALAND_NATIONAL_LEAGUE]: {
|
|
2170
|
+
...SOCCER_DEFAULTS,
|
|
2171
|
+
id: League.NEW_ZEALAND_NATIONAL_LEAGUE,
|
|
2172
|
+
label: 'New Zealand National League',
|
|
2173
|
+
opticOddsName: 'New Zealand - National League',
|
|
2174
|
+
priority: 196,
|
|
2175
|
+
},
|
|
2176
|
+
[League.SAN_MARINO_CAMPIONATO]: {
|
|
2177
|
+
...SOCCER_DEFAULTS,
|
|
2178
|
+
id: League.SAN_MARINO_CAMPIONATO,
|
|
2179
|
+
label: 'San Marino Campionato',
|
|
2180
|
+
opticOddsName: 'San Marino - Campionato',
|
|
2181
|
+
priority: 196,
|
|
2182
|
+
},
|
|
1665
2183
|
};
|
|
@@ -344,6 +344,24 @@ export const PLAYER_PROPS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketType
|
|
|
344
344
|
tooltipKey: 'longest-rush',
|
|
345
345
|
resultType: ResultType.OVER_UNDER,
|
|
346
346
|
},
|
|
347
|
+
[MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER]: {
|
|
348
|
+
id: MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER,
|
|
349
|
+
key: 'mostPointsPlayer',
|
|
350
|
+
name: 'Most points player',
|
|
351
|
+
resultType: ResultType.OVER_UNDER,
|
|
352
|
+
},
|
|
353
|
+
[MarketType.PLAYER_PROPS_FIRST_BASKET]: {
|
|
354
|
+
id: MarketType.PLAYER_PROPS_FIRST_BASKET,
|
|
355
|
+
key: 'firstBasket',
|
|
356
|
+
name: 'First basket (field goal only)',
|
|
357
|
+
resultType: ResultType.OVER_UNDER,
|
|
358
|
+
},
|
|
359
|
+
[MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT]: {
|
|
360
|
+
id: MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT,
|
|
361
|
+
key: 'firstBasketIncludingFT',
|
|
362
|
+
name: 'First basket incl. FT',
|
|
363
|
+
resultType: ResultType.OVER_UNDER,
|
|
364
|
+
},
|
|
347
365
|
|
|
348
366
|
// Soccer player props
|
|
349
367
|
[MarketType.PLAYER_PROPS_CARD_RECEIVER]: {
|
|
@@ -414,6 +432,12 @@ export const PLAYER_PROPS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketType
|
|
|
414
432
|
name: 'Double faults',
|
|
415
433
|
resultType: ResultType.OVER_UNDER,
|
|
416
434
|
},
|
|
435
|
+
[MarketType.PLAYER_PROPS_SETS_WON]: {
|
|
436
|
+
id: MarketType.PLAYER_PROPS_SETS_WON,
|
|
437
|
+
key: 'setsWon',
|
|
438
|
+
name: 'Sets won',
|
|
439
|
+
resultType: ResultType.OVER_UNDER,
|
|
440
|
+
},
|
|
417
441
|
|
|
418
442
|
// Cricket player props market types
|
|
419
443
|
[MarketType.PLAYER_PROPS_MAN_OF_THE_MATCH]: {
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
import { MarketType, ResultType } from '../../enums/marketTypes';
|
|
2
|
-
import { MarketTypeInfo } from '../../types/marketTypes';
|
|
3
|
-
|
|
4
|
-
export const TENNIS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>> = {
|
|
5
|
-
// Any set to nil
|
|
6
|
-
[MarketType.ANY_SET_TO_NIL]: {
|
|
7
|
-
id: MarketType.ANY_SET_TO_NIL,
|
|
8
|
-
key: 'anySetToNil',
|
|
9
|
-
name: 'Any set to nil',
|
|
10
|
-
resultType: ResultType.EXACT_POSITION,
|
|
11
|
-
},
|
|
12
|
-
// Will there be a tiebreak
|
|
13
|
-
[MarketType.WILL_THERE_BE_TIEBREAK]: {
|
|
14
|
-
id: MarketType.WILL_THERE_BE_TIEBREAK,
|
|
15
|
-
key: 'thereBeTiebreak',
|
|
16
|
-
name: 'Will there be a tiebreak',
|
|
17
|
-
resultType: ResultType.EXACT_POSITION,
|
|
18
|
-
},
|
|
19
|
-
// Will there be a tiebreak - per set
|
|
20
|
-
[MarketType.WILL_THERE_BE_TIEBREAK_FIRST_SET]: {
|
|
21
|
-
id: MarketType.WILL_THERE_BE_TIEBREAK_FIRST_SET,
|
|
22
|
-
key: 'willThereBeTiebreakFirstSet',
|
|
23
|
-
name: 'Will there be a tiebreak in the 1st set',
|
|
24
|
-
resultType: ResultType.EXACT_POSITION,
|
|
25
|
-
},
|
|
26
|
-
[MarketType.WILL_THERE_BE_TIEBREAK_SECOND_SET]: {
|
|
27
|
-
id: MarketType.WILL_THERE_BE_TIEBREAK_SECOND_SET,
|
|
28
|
-
key: 'willThereBeTiebreakSecondSet',
|
|
29
|
-
name: 'Will there be a tiebreak in the 2nd set',
|
|
30
|
-
resultType: ResultType.EXACT_POSITION,
|
|
31
|
-
},
|
|
32
|
-
[MarketType.WILL_THERE_BE_TIEBREAK_THIRD_SET]: {
|
|
33
|
-
id: MarketType.WILL_THERE_BE_TIEBREAK_THIRD_SET,
|
|
34
|
-
key: 'willThereBeTiebreakThirdSet',
|
|
35
|
-
name: 'Will there be a tiebreak in the 3rd set',
|
|
36
|
-
resultType: ResultType.EXACT_POSITION,
|
|
37
|
-
},
|
|
38
|
-
[MarketType.WILL_THERE_BE_TIEBREAK_FOURTH_SET]: {
|
|
39
|
-
id: MarketType.WILL_THERE_BE_TIEBREAK_FOURTH_SET,
|
|
40
|
-
key: 'willThereBeTiebreakFourthSet',
|
|
41
|
-
name: 'Will there be a tiebreak in the 4th set',
|
|
42
|
-
resultType: ResultType.EXACT_POSITION,
|
|
43
|
-
},
|
|
44
|
-
[MarketType.WILL_THERE_BE_TIEBREAK_FIFTH_SET]: {
|
|
45
|
-
id: MarketType.WILL_THERE_BE_TIEBREAK_FIFTH_SET,
|
|
46
|
-
key: 'willThereBeTiebreakFifthSet',
|
|
47
|
-
name: 'Will there be a tiebreak in the 5th set',
|
|
48
|
-
resultType: ResultType.EXACT_POSITION,
|
|
49
|
-
},
|
|
50
|
-
};
|
|
1
|
+
import { MarketType, ResultType } from '../../enums/marketTypes';
|
|
2
|
+
import { MarketTypeInfo } from '../../types/marketTypes';
|
|
3
|
+
|
|
4
|
+
export const TENNIS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>> = {
|
|
5
|
+
// Any set to nil
|
|
6
|
+
[MarketType.ANY_SET_TO_NIL]: {
|
|
7
|
+
id: MarketType.ANY_SET_TO_NIL,
|
|
8
|
+
key: 'anySetToNil',
|
|
9
|
+
name: 'Any set to nil',
|
|
10
|
+
resultType: ResultType.EXACT_POSITION,
|
|
11
|
+
},
|
|
12
|
+
// Will there be a tiebreak
|
|
13
|
+
[MarketType.WILL_THERE_BE_TIEBREAK]: {
|
|
14
|
+
id: MarketType.WILL_THERE_BE_TIEBREAK,
|
|
15
|
+
key: 'thereBeTiebreak',
|
|
16
|
+
name: 'Will there be a tiebreak',
|
|
17
|
+
resultType: ResultType.EXACT_POSITION,
|
|
18
|
+
},
|
|
19
|
+
// Will there be a tiebreak - per set
|
|
20
|
+
[MarketType.WILL_THERE_BE_TIEBREAK_FIRST_SET]: {
|
|
21
|
+
id: MarketType.WILL_THERE_BE_TIEBREAK_FIRST_SET,
|
|
22
|
+
key: 'willThereBeTiebreakFirstSet',
|
|
23
|
+
name: 'Will there be a tiebreak in the 1st set',
|
|
24
|
+
resultType: ResultType.EXACT_POSITION,
|
|
25
|
+
},
|
|
26
|
+
[MarketType.WILL_THERE_BE_TIEBREAK_SECOND_SET]: {
|
|
27
|
+
id: MarketType.WILL_THERE_BE_TIEBREAK_SECOND_SET,
|
|
28
|
+
key: 'willThereBeTiebreakSecondSet',
|
|
29
|
+
name: 'Will there be a tiebreak in the 2nd set',
|
|
30
|
+
resultType: ResultType.EXACT_POSITION,
|
|
31
|
+
},
|
|
32
|
+
[MarketType.WILL_THERE_BE_TIEBREAK_THIRD_SET]: {
|
|
33
|
+
id: MarketType.WILL_THERE_BE_TIEBREAK_THIRD_SET,
|
|
34
|
+
key: 'willThereBeTiebreakThirdSet',
|
|
35
|
+
name: 'Will there be a tiebreak in the 3rd set',
|
|
36
|
+
resultType: ResultType.EXACT_POSITION,
|
|
37
|
+
},
|
|
38
|
+
[MarketType.WILL_THERE_BE_TIEBREAK_FOURTH_SET]: {
|
|
39
|
+
id: MarketType.WILL_THERE_BE_TIEBREAK_FOURTH_SET,
|
|
40
|
+
key: 'willThereBeTiebreakFourthSet',
|
|
41
|
+
name: 'Will there be a tiebreak in the 4th set',
|
|
42
|
+
resultType: ResultType.EXACT_POSITION,
|
|
43
|
+
},
|
|
44
|
+
[MarketType.WILL_THERE_BE_TIEBREAK_FIFTH_SET]: {
|
|
45
|
+
id: MarketType.WILL_THERE_BE_TIEBREAK_FIFTH_SET,
|
|
46
|
+
key: 'willThereBeTiebreakFifthSet',
|
|
47
|
+
name: 'Will there be a tiebreak in the 5th set',
|
|
48
|
+
resultType: ResultType.EXACT_POSITION,
|
|
49
|
+
},
|
|
50
|
+
};
|
|
@@ -757,6 +757,7 @@ export const PLAYER_PROPS_MARKET_TYPES = [
|
|
|
757
757
|
MarketType.PLAYER_PROPS_ACES,
|
|
758
758
|
MarketType.PLAYER_PROPS_BREAK_POINTS_WON,
|
|
759
759
|
MarketType.PLAYER_PROPS_DOUBLE_FAULTS,
|
|
760
|
+
MarketType.PLAYER_PROPS_SETS_WON,
|
|
760
761
|
MarketType.PLAYER_PROPS_BLOCKED_SHOTS,
|
|
761
762
|
MarketType.PLAYER_PROPS_TURNOVERS,
|
|
762
763
|
MarketType.PLAYER_PROPS_MAN_OF_THE_MATCH,
|
|
@@ -775,6 +776,9 @@ export const PLAYER_PROPS_MARKET_TYPES = [
|
|
|
775
776
|
MarketType.PLAYER_PROPS_THREES_ATTEMPTED,
|
|
776
777
|
MarketType.PLAYER_PROPS_TWO_POINTERS_ATTEMPTED,
|
|
777
778
|
MarketType.PLAYER_PROPS_MADE_TWO_POINTERS,
|
|
779
|
+
MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER,
|
|
780
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET,
|
|
781
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT,
|
|
778
782
|
MarketType.PLAYER_PROPS_KILLS,
|
|
779
783
|
MarketType.PLAYER_PROPS_1ST_MAP_KILLS,
|
|
780
784
|
MarketType.PLAYER_PROPS_2ND_MAP_KILLS,
|
|
@@ -880,6 +884,9 @@ export const ONE_SIDE_PLAYER_PROPS_MARKET_TYPES = [
|
|
|
880
884
|
MarketType.PLAYER_PROPS_TO_SCORE_OR_ASSIST,
|
|
881
885
|
MarketType.FIRST_PERIOD_PLAYER_PROPS_ANYTIME_GOAL_SCORER,
|
|
882
886
|
MarketType.SECOND_PERIOD_PLAYER_PROPS_ANYTIME_GOAL_SCORER,
|
|
887
|
+
MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER,
|
|
888
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET,
|
|
889
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT,
|
|
883
890
|
];
|
|
884
891
|
|
|
885
892
|
export const ONE_SIDE_EXTENDED_PLAYER_PROPS_MARKET_TYPES = [
|