overtime-utils 0.2.8 → 0.2.9
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 -3
package/package.json
CHANGED
|
@@ -51,9 +51,6 @@ export const WINNER_MARKET_TYPES = [
|
|
|
51
51
|
MarketType.FIRST_10_MINUTES_MONEYLINE,
|
|
52
52
|
MarketType.FIRST_15_MINUTES_MONEYLINE,
|
|
53
53
|
MarketType.FIRST_30_MINUTES_MONEYLINE,
|
|
54
|
-
MarketType.HIGHEST_SCORING_HALF,
|
|
55
|
-
MarketType.HOME_TEAM_HIGHEST_SCORING_HALF,
|
|
56
|
-
MarketType.AWAY_TEAM_HIGHEST_SCORING_HALF,
|
|
57
54
|
|
|
58
55
|
// Dota – most towers destroyed (2-way & 3-way)
|
|
59
56
|
MarketType.FIRST_PERIOD_MOST_TOWERS_DESTROYED_2_WAY,
|
|
@@ -532,6 +529,7 @@ export const HOME_TEAM_TOTAL_MARKET_TYPES = [
|
|
|
532
529
|
MarketType.HOME_TEAM_TOTAL_ASSISTS,
|
|
533
530
|
MarketType.HOME_TEAM_TOTAL_FAULS,
|
|
534
531
|
MarketType.HOME_TEAM_TOTAL_PASSING_ATTEMPTS,
|
|
532
|
+
MarketType.HOME_TEAM_HIGHEST_SCORING_HALF,
|
|
535
533
|
];
|
|
536
534
|
|
|
537
535
|
export const AWAY_TEAM_TOTAL_MARKET_TYPES = [
|
|
@@ -590,6 +588,7 @@ export const AWAY_TEAM_TOTAL_MARKET_TYPES = [
|
|
|
590
588
|
MarketType.AWAY_TEAM_TOTAL_ASSISTS,
|
|
591
589
|
MarketType.AWAY_TEAM_TOTAL_FAULS,
|
|
592
590
|
MarketType.AWAY_TEAM_TOTAL_PASSING_ATTEMPTS,
|
|
591
|
+
MarketType.AWAY_TEAM_HIGHEST_SCORING_HALF,
|
|
593
592
|
];
|
|
594
593
|
|
|
595
594
|
export const TOTAL_ODD_EVEN_MARKET_TYPES = [
|