overtime-utils 0.2.30 → 0.2.31
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
|
@@ -344,6 +344,24 @@ export const PLAYER_PROPS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketType
|
|
|
344
344
|
tooltipKey: 'longest-rush',
|
|
345
345
|
resultType: ResultType.OVER_UNDER,
|
|
346
346
|
},
|
|
347
|
+
[MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER]: {
|
|
348
|
+
id: MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER,
|
|
349
|
+
key: 'mostPointsPlayer',
|
|
350
|
+
name: 'Most points player',
|
|
351
|
+
resultType: ResultType.OVER_UNDER,
|
|
352
|
+
},
|
|
353
|
+
[MarketType.PLAYER_PROPS_FIRST_BASKET]: {
|
|
354
|
+
id: MarketType.PLAYER_PROPS_FIRST_BASKET,
|
|
355
|
+
key: 'firstBasket',
|
|
356
|
+
name: 'First basket (field goal only)',
|
|
357
|
+
resultType: ResultType.OVER_UNDER,
|
|
358
|
+
},
|
|
359
|
+
[MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT]: {
|
|
360
|
+
id: MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT,
|
|
361
|
+
key: 'firstBasketIncludingFT',
|
|
362
|
+
name: 'First basket incl. FT',
|
|
363
|
+
resultType: ResultType.OVER_UNDER,
|
|
364
|
+
},
|
|
347
365
|
|
|
348
366
|
// Soccer player props
|
|
349
367
|
[MarketType.PLAYER_PROPS_CARD_RECEIVER]: {
|
|
@@ -414,6 +432,12 @@ export const PLAYER_PROPS_MARKET_TYPE_MAP: Partial<Record<MarketType, MarketType
|
|
|
414
432
|
name: 'Double faults',
|
|
415
433
|
resultType: ResultType.OVER_UNDER,
|
|
416
434
|
},
|
|
435
|
+
[MarketType.PLAYER_PROPS_SETS_WON]: {
|
|
436
|
+
id: MarketType.PLAYER_PROPS_SETS_WON,
|
|
437
|
+
key: 'setsWon',
|
|
438
|
+
name: 'Sets won',
|
|
439
|
+
resultType: ResultType.OVER_UNDER,
|
|
440
|
+
},
|
|
417
441
|
|
|
418
442
|
// Cricket player props market types
|
|
419
443
|
[MarketType.PLAYER_PROPS_MAN_OF_THE_MATCH]: {
|
|
@@ -757,6 +757,7 @@ export const PLAYER_PROPS_MARKET_TYPES = [
|
|
|
757
757
|
MarketType.PLAYER_PROPS_ACES,
|
|
758
758
|
MarketType.PLAYER_PROPS_BREAK_POINTS_WON,
|
|
759
759
|
MarketType.PLAYER_PROPS_DOUBLE_FAULTS,
|
|
760
|
+
MarketType.PLAYER_PROPS_SETS_WON,
|
|
760
761
|
MarketType.PLAYER_PROPS_BLOCKED_SHOTS,
|
|
761
762
|
MarketType.PLAYER_PROPS_TURNOVERS,
|
|
762
763
|
MarketType.PLAYER_PROPS_MAN_OF_THE_MATCH,
|
|
@@ -775,6 +776,9 @@ export const PLAYER_PROPS_MARKET_TYPES = [
|
|
|
775
776
|
MarketType.PLAYER_PROPS_THREES_ATTEMPTED,
|
|
776
777
|
MarketType.PLAYER_PROPS_TWO_POINTERS_ATTEMPTED,
|
|
777
778
|
MarketType.PLAYER_PROPS_MADE_TWO_POINTERS,
|
|
779
|
+
MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER,
|
|
780
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET,
|
|
781
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT,
|
|
778
782
|
MarketType.PLAYER_PROPS_KILLS,
|
|
779
783
|
MarketType.PLAYER_PROPS_1ST_MAP_KILLS,
|
|
780
784
|
MarketType.PLAYER_PROPS_2ND_MAP_KILLS,
|
|
@@ -880,6 +884,9 @@ export const ONE_SIDE_PLAYER_PROPS_MARKET_TYPES = [
|
|
|
880
884
|
MarketType.PLAYER_PROPS_TO_SCORE_OR_ASSIST,
|
|
881
885
|
MarketType.FIRST_PERIOD_PLAYER_PROPS_ANYTIME_GOAL_SCORER,
|
|
882
886
|
MarketType.SECOND_PERIOD_PLAYER_PROPS_ANYTIME_GOAL_SCORER,
|
|
887
|
+
MarketType.PLAYER_PROPS_MOST_POINTS_PLAYER,
|
|
888
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET,
|
|
889
|
+
MarketType.PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT,
|
|
883
890
|
];
|
|
884
891
|
|
|
885
892
|
export const ONE_SIDE_EXTENDED_PLAYER_PROPS_MARKET_TYPES = [
|
package/src/enums/marketTypes.ts
CHANGED
|
@@ -248,6 +248,12 @@ export enum MarketType {
|
|
|
248
248
|
PLAYER_PROPS_SAVES = 11301,
|
|
249
249
|
PLAYER_PROPS_TO_SCORE_AND_ASSIST = 11302,
|
|
250
250
|
PLAYER_PROPS_TO_SCORE_OR_ASSIST = 11303,
|
|
251
|
+
// Basketball player props market types
|
|
252
|
+
PLAYER_PROPS_MOST_POINTS_PLAYER = 11304,
|
|
253
|
+
PLAYER_PROPS_FIRST_BASKET = 11305,
|
|
254
|
+
PLAYER_PROPS_FIRST_BASKET_INCLUDING_FT = 11306,
|
|
255
|
+
// Tennis player props market types
|
|
256
|
+
PLAYER_PROPS_SETS_WON = 11307,
|
|
251
257
|
PLAYER_PROPS_FACEOFFS_WON = 11308,
|
|
252
258
|
PLAYER_PROPS_CLEARANCES = 11309,
|
|
253
259
|
PLAYER_PROPS_CROSSES = 11310,
|