overtime-utils 0.2.10 → 0.2.11
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 +2 -0
package/package.json
CHANGED
|
@@ -1569,6 +1569,7 @@ export const HOME_TEAM_MARKET_TYPES = [
|
|
|
1569
1569
|
MarketType.HOME_TEAM_TOTAL_ASSISTS,
|
|
1570
1570
|
MarketType.HOME_TEAM_TOTAL_FAULS,
|
|
1571
1571
|
MarketType.HOME_TEAM_HIGHEST_SCORING_HALF,
|
|
1572
|
+
MarketType.HOME_TEAM_TOTAL_PASSING_ATTEMPTS,
|
|
1572
1573
|
];
|
|
1573
1574
|
|
|
1574
1575
|
export const AWAY_TEAM_MARKET_TYPES = [
|
|
@@ -1641,6 +1642,7 @@ export const AWAY_TEAM_MARKET_TYPES = [
|
|
|
1641
1642
|
MarketType.AWAY_TEAM_TOTAL_ASSISTS,
|
|
1642
1643
|
MarketType.AWAY_TEAM_TOTAL_FAULS,
|
|
1643
1644
|
MarketType.AWAY_TEAM_HIGHEST_SCORING_HALF,
|
|
1645
|
+
MarketType.AWAY_TEAM_TOTAL_PASSING_ATTEMPTS,
|
|
1644
1646
|
];
|
|
1645
1647
|
|
|
1646
1648
|
export const SCORE_MARKET_TYPES = [MarketType.FIRST_SCORE, MarketType.LAST_SCORE];
|