overtime-utils 0.2.13 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overtime-utils",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
4
4
  "description": "",
5
5
  "main": "main.js",
6
6
  "scripts": {
@@ -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
  };
@@ -1874,7 +1874,7 @@ export const COMBINED_POSITIONS_MARKET_TYPES = [
1874
1874
  ...SGP_BUILDER_MARKET_TYPES,
1875
1875
  ];
1876
1876
 
1877
- export const HALFTIME_FULLTIME_MARKET_TYPES = [MarketType.HALFTIME_FULLTIME_GOALS];
1877
+ export const HALFTIME_FULLTIME_MARKET_TYPES = [MarketType.HALFTIME_FULLTIME2];
1878
1878
 
1879
1879
  export const YES_NO_OUTCOME_MARKET_TYPES = new Set<MarketType>([
1880
1880
  ...ONE_SIDE_PLAYER_PROPS_MARKET_TYPES,
@@ -374,6 +374,8 @@ export enum MarketType {
374
374
  TO_QUALIFY_FOR_NEXT_ROUND = 13017,
375
375
  SERIES_HANDICAP = 13018,
376
376
  SERIES_TOTAL = 13019,
377
+ STAGE_OF_ELIMINATION = 13020,
378
+ STAGE_GOALS_TOTAL = 13021,
377
379
 
378
380
  // Spread (handicap) corners
379
381
  SPREAD_CORNERS = 10221,