overtime-utils 0.2.39 → 0.2.40
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/package.json
CHANGED
|
@@ -21,6 +21,12 @@ export const FUTURES_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>
|
|
|
21
21
|
name: 'Cup winner',
|
|
22
22
|
resultType: ResultType.EXACT_POSITION,
|
|
23
23
|
},
|
|
24
|
+
[MarketType.TO_MAKE_PLAYOFFS]: {
|
|
25
|
+
id: MarketType.TO_MAKE_PLAYOFFS,
|
|
26
|
+
key: 'toMakePlayoffs',
|
|
27
|
+
name: 'To make playoffs',
|
|
28
|
+
resultType: ResultType.EXACT_POSITION,
|
|
29
|
+
},
|
|
24
30
|
[MarketType.TO_MAKE_FINAL_FOUR]: {
|
|
25
31
|
id: MarketType.TO_MAKE_FINAL_FOUR,
|
|
26
32
|
key: 'toMakeFinalFour',
|
|
@@ -317,7 +323,9 @@ export const FUTURES_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>
|
|
|
317
323
|
[MarketType.FINAL_EXACTA]: {
|
|
318
324
|
id: MarketType.FINAL_EXACTA,
|
|
319
325
|
key: 'finalExacta',
|
|
320
|
-
|
|
326
|
+
// Both finalists in exact order — the team listed first in an outcome wins the final
|
|
327
|
+
// (e.g. Super Bowl), the second is runner-up. Named for clarity over the "exacta" term.
|
|
328
|
+
name: 'Matchup and winner',
|
|
321
329
|
resultType: ResultType.EXACT_POSITION,
|
|
322
330
|
},
|
|
323
331
|
[MarketType.REGULAR_SEASON_WINS]: {
|
|
@@ -843,6 +843,7 @@ export const FUTURES_MARKET_TYPES = [
|
|
|
843
843
|
MarketType.LEAGUE_WINNER,
|
|
844
844
|
MarketType.MVP,
|
|
845
845
|
MarketType.CUP_WINNER,
|
|
846
|
+
MarketType.TO_MAKE_PLAYOFFS,
|
|
846
847
|
MarketType.TO_MAKE_FINAL_FOUR,
|
|
847
848
|
MarketType.RACE_WINNER,
|
|
848
849
|
MarketType.RACE_PODIUM,
|
|
@@ -959,6 +960,7 @@ export const OTHER_YES_NO_MARKET_TYPES = [
|
|
|
959
960
|
MarketType.GO_THE_DISTANCE,
|
|
960
961
|
MarketType.WILL_FIGHT_END_IN_FIRST_MINUTE,
|
|
961
962
|
MarketType.WILL_POINT_BE_DEDUCTED,
|
|
963
|
+
MarketType.TO_MAKE_PLAYOFFS,
|
|
962
964
|
MarketType.TO_MAKE_FINAL_FOUR,
|
|
963
965
|
MarketType.WILL_THERE_BE_CENTURY,
|
|
964
966
|
MarketType.WILL_THERE_BE_FIFTY,
|