overtime-utils 0.2.18 → 0.2.20
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/marketTypes.ts +4 -0
package/package.json
CHANGED
|
@@ -1584,6 +1584,8 @@ export const HOME_TEAM_MARKET_TYPES = [
|
|
|
1584
1584
|
MarketType.HOME_TEAM_TOTAL_FAULS,
|
|
1585
1585
|
MarketType.HOME_TEAM_HIGHEST_SCORING_HALF,
|
|
1586
1586
|
MarketType.HOME_TEAM_TOTAL_PASSING_ATTEMPTS,
|
|
1587
|
+
MarketType.HOME_TEAM_TOTAL_THROW_INS,
|
|
1588
|
+
MarketType.HOME_TEAM_TOTAL_OFFSIDES,
|
|
1587
1589
|
];
|
|
1588
1590
|
|
|
1589
1591
|
export const AWAY_TEAM_MARKET_TYPES = [
|
|
@@ -1657,6 +1659,8 @@ export const AWAY_TEAM_MARKET_TYPES = [
|
|
|
1657
1659
|
MarketType.AWAY_TEAM_TOTAL_FAULS,
|
|
1658
1660
|
MarketType.AWAY_TEAM_HIGHEST_SCORING_HALF,
|
|
1659
1661
|
MarketType.AWAY_TEAM_TOTAL_PASSING_ATTEMPTS,
|
|
1662
|
+
MarketType.AWAY_TEAM_TOTAL_THROW_INS,
|
|
1663
|
+
MarketType.AWAY_TEAM_TOTAL_OFFSIDES,
|
|
1660
1664
|
];
|
|
1661
1665
|
|
|
1662
1666
|
export const SCORE_MARKET_TYPES = [MarketType.FIRST_SCORE, MarketType.LAST_SCORE];
|