overtime-utils 0.2.42 → 0.2.43
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
|
@@ -296,6 +296,24 @@ export const PLAYER_PROPS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketType
|
|
|
296
296
|
name: 'Walks allowed',
|
|
297
297
|
resultType: ResultType.OVER_UNDER,
|
|
298
298
|
},
|
|
299
|
+
[MarketType.PLAYER_PROPS_HITS_RUNS_STOLEN_BASES]: {
|
|
300
|
+
id: MarketType.PLAYER_PROPS_HITS_RUNS_STOLEN_BASES,
|
|
301
|
+
key: 'hitsRunsStolenBases',
|
|
302
|
+
name: 'Hits + Runs + Stolen bases',
|
|
303
|
+
resultType: ResultType.OVER_UNDER,
|
|
304
|
+
},
|
|
305
|
+
[MarketType.PLAYER_PROPS_HITS_STOLEN_BASES]: {
|
|
306
|
+
id: MarketType.PLAYER_PROPS_HITS_STOLEN_BASES,
|
|
307
|
+
key: 'hitsStolenBases',
|
|
308
|
+
name: 'Hits + Stolen bases',
|
|
309
|
+
resultType: ResultType.OVER_UNDER,
|
|
310
|
+
},
|
|
311
|
+
[MarketType.PLAYER_PROPS_HITS_WALKS_STOLEN_BASES]: {
|
|
312
|
+
id: MarketType.PLAYER_PROPS_HITS_WALKS_STOLEN_BASES,
|
|
313
|
+
key: 'hitsWalksStolenBases',
|
|
314
|
+
name: 'Hits + Walks + Stolen bases',
|
|
315
|
+
resultType: ResultType.OVER_UNDER,
|
|
316
|
+
},
|
|
299
317
|
// Basketball player props
|
|
300
318
|
[MarketType.PLAYER_PROPS_POINTS_ASSISTS]: {
|
|
301
319
|
id: MarketType.PLAYER_PROPS_POINTS_ASSISTS,
|
|
@@ -741,6 +741,9 @@ export const PLAYER_PROPS_MARKET_TYPES = [
|
|
|
741
741
|
MarketType.PLAYER_PROPS_STOLEN_BASES,
|
|
742
742
|
MarketType.PLAYER_PROPS_RUNS,
|
|
743
743
|
MarketType.PLAYER_PROPS_WALKS,
|
|
744
|
+
MarketType.PLAYER_PROPS_HITS_RUNS_STOLEN_BASES,
|
|
745
|
+
MarketType.PLAYER_PROPS_HITS_STOLEN_BASES,
|
|
746
|
+
MarketType.PLAYER_PROPS_HITS_WALKS_STOLEN_BASES,
|
|
744
747
|
MarketType.PLAYER_PROPS_POINTS_ASSISTS,
|
|
745
748
|
MarketType.PLAYER_PROPS_POINTS_REBOUNDS,
|
|
746
749
|
MarketType.PLAYER_PROPS_POINTS_REBOUNDS_ASSISTS,
|
package/src/enums/marketTypes.ts
CHANGED
|
@@ -273,6 +273,10 @@ export enum MarketType {
|
|
|
273
273
|
SECOND_PERIOD_PLAYER_PROPS_SHOTS = 11323,
|
|
274
274
|
FIRST_PERIOD_PLAYER_PROPS_SHOTS_ON_TARGET = 11324,
|
|
275
275
|
SECOND_PERIOD_PLAYER_PROPS_SHOTS_ON_TARGET = 11325,
|
|
276
|
+
// Baseball player props market types
|
|
277
|
+
PLAYER_PROPS_HITS_RUNS_STOLEN_BASES = 11326,
|
|
278
|
+
PLAYER_PROPS_HITS_STOLEN_BASES = 11327,
|
|
279
|
+
PLAYER_PROPS_HITS_WALKS_STOLEN_BASES = 11328,
|
|
276
280
|
|
|
277
281
|
PLAYER_PROPS_OUTS = 11213,
|
|
278
282
|
PLAYER_PROPS_RBIS = 11214,
|