overtime-utils 0.2.3 → 0.2.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overtime-utils",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "",
5
5
  "main": "main.js",
6
6
  "scripts": {
@@ -107,12 +107,12 @@ export const FUTURES_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>
107
107
  id: MarketType.SERIES_HANDICAP,
108
108
  key: 'seriesHandicap',
109
109
  name: 'Series handicap',
110
- resultType: ResultType.SPREAD,
110
+ resultType: ResultType.EXACT_POSITION,
111
111
  },
112
112
  [MarketType.SERIES_TOTAL]: {
113
113
  id: MarketType.SERIES_TOTAL,
114
114
  key: 'seriesTotal',
115
115
  name: 'Series total',
116
- resultType: ResultType.OVER_UNDER,
116
+ resultType: ResultType.EXACT_POSITION,
117
117
  },
118
118
  };