overtime-utils 0.2.36 → 0.2.37
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 +19 -0
package/package.json
CHANGED
|
@@ -869,6 +869,25 @@ export const FUTURES_MARKET_TYPES = [
|
|
|
869
869
|
MarketType.PRESIDENTIAL_DEMOCRATIC_NOMINEE,
|
|
870
870
|
MarketType.VICE_PRESIDENTIAL_DEMOCRATIC_NOMINEE,
|
|
871
871
|
MarketType.UK_GENERAL_ELECTION_MOST_SEATS,
|
|
872
|
+
// League-position futures (relegation / promotion / top-N finish)
|
|
873
|
+
MarketType.TEAM_TO_BE_RELEGATED,
|
|
874
|
+
MarketType.AVOID_RELEGATION,
|
|
875
|
+
MarketType.WINNER_RUNNER_UP,
|
|
876
|
+
MarketType.TOP_2_FINISHER,
|
|
877
|
+
MarketType.TOP_3_FINISHER,
|
|
878
|
+
MarketType.TOP_4_FINISHER,
|
|
879
|
+
MarketType.TOP_5_FINISHER,
|
|
880
|
+
MarketType.TOP_6_FINISHER,
|
|
881
|
+
MarketType.TOP_7_FINISHER,
|
|
882
|
+
MarketType.TOP_8_FINISHER,
|
|
883
|
+
MarketType.TOP_9_FINISHER,
|
|
884
|
+
MarketType.TOP_10_FINISHER,
|
|
885
|
+
MarketType.TOP_11_FINISHER,
|
|
886
|
+
MarketType.TOP_12_FINISHER,
|
|
887
|
+
MarketType.TOP_13_FINISHER,
|
|
888
|
+
MarketType.TOP_14_FINISHER,
|
|
889
|
+
MarketType.TOP_15_FINISHER,
|
|
890
|
+
MarketType.TEAMS_TO_BE_PROMOTED,
|
|
872
891
|
];
|
|
873
892
|
|
|
874
893
|
export const ONE_SIDE_PLAYER_PROPS_MARKET_TYPES = [
|