overtime-utils 0.1.69 → 0.1.70
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 +24 -0
package/package.json
CHANGED
|
@@ -5065,6 +5065,18 @@ export const HOME_TEAM_MARKET_TYPES = [
|
|
|
5065
5065
|
MarketType.TOTAL_HOME_TEAM_ODD_EVEN,
|
|
5066
5066
|
MarketType.HOME_TEAM_TO_SCORE,
|
|
5067
5067
|
MarketType.HOME_TEAM_TO_WIN_TO_NIL,
|
|
5068
|
+
|
|
5069
|
+
MarketType.HOME_TEAM_TO_WIN_BOTH_HALVES,
|
|
5070
|
+
MarketType.HOME_TEAM_TO_WIN_EITHER_HALF,
|
|
5071
|
+
MarketType.HOME_TEAM_TO_SCORE_BOTH_HALVES,
|
|
5072
|
+
|
|
5073
|
+
MarketType.HOME_TEAM_TOTAL_SHOTS,
|
|
5074
|
+
MarketType.HOME_TEAM_TOTAL_SHOTS_ON_TARGET,
|
|
5075
|
+
|
|
5076
|
+
MarketType.HOME_TEAM_TOTAL_BLOCKS,
|
|
5077
|
+
MarketType.HOME_TEAM_TOTAL_STEALS,
|
|
5078
|
+
MarketType.HOME_TEAM_TOTAL_ASSISTS,
|
|
5079
|
+
MarketType.HOME_TEAM_TOTAL_FAULS,
|
|
5068
5080
|
];
|
|
5069
5081
|
|
|
5070
5082
|
export const AWAY_TEAM_MARKET_TYPES = [
|
|
@@ -5124,6 +5136,18 @@ export const AWAY_TEAM_MARKET_TYPES = [
|
|
|
5124
5136
|
MarketType.TOTAL_AWAY_TEAM_ODD_EVEN,
|
|
5125
5137
|
MarketType.AWAY_TEAM_TO_SCORE,
|
|
5126
5138
|
MarketType.AWAY_TEAM_TO_WIN_TO_NIL,
|
|
5139
|
+
|
|
5140
|
+
MarketType.AWAY_TEAM_TO_WIN_BOTH_HALVES,
|
|
5141
|
+
MarketType.AWAY_TEAM_TO_WIN_EITHER_HALF,
|
|
5142
|
+
MarketType.AWAY_TEAM_TO_SCORE_BOTH_HALVES,
|
|
5143
|
+
|
|
5144
|
+
MarketType.AWAY_TEAM_TOTAL_SHOTS,
|
|
5145
|
+
MarketType.AWAY_TEAM_TOTAL_SHOTS_ON_TARGET,
|
|
5146
|
+
|
|
5147
|
+
MarketType.AWAY_TEAM_TOTAL_BLOCKS,
|
|
5148
|
+
MarketType.AWAY_TEAM_TOTAL_STEALS,
|
|
5149
|
+
MarketType.AWAY_TEAM_TOTAL_ASSISTS,
|
|
5150
|
+
MarketType.AWAY_TEAM_TOTAL_FAULS,
|
|
5127
5151
|
];
|
|
5128
5152
|
|
|
5129
5153
|
export const SCORE_MARKET_TYPES = [MarketType.FIRST_SCORE, MarketType.LAST_SCORE];
|