overtime-utils 0.2.14 → 0.2.15
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/futures.ts +12 -0
- package/src/enums/marketTypes.ts +2 -0
package/package.json
CHANGED
|
@@ -115,4 +115,16 @@ export const FUTURES_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketTypeInfo>
|
|
|
115
115
|
name: 'Series total',
|
|
116
116
|
resultType: ResultType.EXACT_POSITION,
|
|
117
117
|
},
|
|
118
|
+
[MarketType.STAGE_OF_ELIMINATION]: {
|
|
119
|
+
id: MarketType.STAGE_OF_ELIMINATION,
|
|
120
|
+
key: 'stageOfElimination',
|
|
121
|
+
name: 'Stage of elimination',
|
|
122
|
+
resultType: ResultType.EXACT_POSITION,
|
|
123
|
+
},
|
|
124
|
+
[MarketType.STAGE_GOALS_TOTAL]: {
|
|
125
|
+
id: MarketType.STAGE_GOALS_TOTAL,
|
|
126
|
+
key: 'stageGoalsTotal',
|
|
127
|
+
name: 'Group stage total goals',
|
|
128
|
+
resultType: ResultType.EXACT_POSITION,
|
|
129
|
+
},
|
|
118
130
|
};
|
package/src/enums/marketTypes.ts
CHANGED