overtime-utils 0.1.68 → 0.1.69
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.ts +18 -18
package/package.json
CHANGED
|
@@ -3691,26 +3691,26 @@ export const MarketTypeMap: Record<MarketType, MarketTypeInfo> = {
|
|
|
3691
3691
|
[MarketType.HOME_TEAM_TO_WIN_BOTH_HALVES]: {
|
|
3692
3692
|
id: MarketType.HOME_TEAM_TO_WIN_BOTH_HALVES,
|
|
3693
3693
|
key: 'homeTeamToWinBothHalves',
|
|
3694
|
-
name: '
|
|
3694
|
+
name: 'To win both halves',
|
|
3695
3695
|
resultType: ResultType.EXACT_POSITION,
|
|
3696
3696
|
},
|
|
3697
3697
|
[MarketType.AWAY_TEAM_TO_WIN_BOTH_HALVES]: {
|
|
3698
3698
|
id: MarketType.AWAY_TEAM_TO_WIN_BOTH_HALVES,
|
|
3699
3699
|
key: 'awayTeamToWinBothHalves',
|
|
3700
|
-
name: '
|
|
3700
|
+
name: 'To win both halves',
|
|
3701
3701
|
resultType: ResultType.EXACT_POSITION,
|
|
3702
3702
|
},
|
|
3703
3703
|
|
|
3704
3704
|
[MarketType.HOME_TEAM_TO_WIN_EITHER_HALF]: {
|
|
3705
3705
|
id: MarketType.HOME_TEAM_TO_WIN_EITHER_HALF,
|
|
3706
3706
|
key: 'homeTeamToWinEitherHalf',
|
|
3707
|
-
name: '
|
|
3707
|
+
name: 'To win either half',
|
|
3708
3708
|
resultType: ResultType.EXACT_POSITION,
|
|
3709
3709
|
},
|
|
3710
3710
|
[MarketType.AWAY_TEAM_TO_WIN_EITHER_HALF]: {
|
|
3711
3711
|
id: MarketType.AWAY_TEAM_TO_WIN_EITHER_HALF,
|
|
3712
3712
|
key: 'awayTeamToWinEitherHalf',
|
|
3713
|
-
name: '
|
|
3713
|
+
name: 'To win either half',
|
|
3714
3714
|
resultType: ResultType.EXACT_POSITION,
|
|
3715
3715
|
},
|
|
3716
3716
|
|
|
@@ -3724,13 +3724,13 @@ export const MarketTypeMap: Record<MarketType, MarketTypeInfo> = {
|
|
|
3724
3724
|
[MarketType.HOME_TEAM_TO_SCORE_BOTH_HALVES]: {
|
|
3725
3725
|
id: MarketType.HOME_TEAM_TO_SCORE_BOTH_HALVES,
|
|
3726
3726
|
key: 'homeTeamToScoreBothHalves',
|
|
3727
|
-
name: '
|
|
3727
|
+
name: 'To score in both halves',
|
|
3728
3728
|
resultType: ResultType.EXACT_POSITION,
|
|
3729
3729
|
},
|
|
3730
3730
|
[MarketType.AWAY_TEAM_TO_SCORE_BOTH_HALVES]: {
|
|
3731
3731
|
id: MarketType.AWAY_TEAM_TO_SCORE_BOTH_HALVES,
|
|
3732
3732
|
key: 'awayTeamToScoreBothHalves',
|
|
3733
|
-
name: '
|
|
3733
|
+
name: 'To score in both halves',
|
|
3734
3734
|
resultType: ResultType.EXACT_POSITION,
|
|
3735
3735
|
},
|
|
3736
3736
|
|
|
@@ -3762,78 +3762,78 @@ export const MarketTypeMap: Record<MarketType, MarketTypeInfo> = {
|
|
|
3762
3762
|
[MarketType.HOME_TEAM_TOTAL_SHOTS]: {
|
|
3763
3763
|
id: MarketType.HOME_TEAM_TOTAL_SHOTS,
|
|
3764
3764
|
key: 'homeTeamTotalShots',
|
|
3765
|
-
name: '
|
|
3765
|
+
name: 'Total shots',
|
|
3766
3766
|
resultType: ResultType.OVER_UNDER,
|
|
3767
3767
|
},
|
|
3768
3768
|
[MarketType.AWAY_TEAM_TOTAL_SHOTS]: {
|
|
3769
3769
|
id: MarketType.AWAY_TEAM_TOTAL_SHOTS,
|
|
3770
3770
|
key: 'awayTeamTotalShots',
|
|
3771
|
-
name: '
|
|
3771
|
+
name: 'Total shots',
|
|
3772
3772
|
resultType: ResultType.OVER_UNDER,
|
|
3773
3773
|
},
|
|
3774
3774
|
|
|
3775
3775
|
[MarketType.HOME_TEAM_TOTAL_SHOTS_ON_TARGET]: {
|
|
3776
3776
|
id: MarketType.HOME_TEAM_TOTAL_SHOTS_ON_TARGET,
|
|
3777
3777
|
key: 'homeTeamTotalShotsOnTarget',
|
|
3778
|
-
name: '
|
|
3778
|
+
name: 'Total shots on target',
|
|
3779
3779
|
resultType: ResultType.OVER_UNDER,
|
|
3780
3780
|
},
|
|
3781
3781
|
[MarketType.AWAY_TEAM_TOTAL_SHOTS_ON_TARGET]: {
|
|
3782
3782
|
id: MarketType.AWAY_TEAM_TOTAL_SHOTS_ON_TARGET,
|
|
3783
3783
|
key: 'awayTeamTotalShotsOnTarget',
|
|
3784
|
-
name: '
|
|
3784
|
+
name: 'Total shots on target',
|
|
3785
3785
|
resultType: ResultType.OVER_UNDER,
|
|
3786
3786
|
},
|
|
3787
3787
|
|
|
3788
3788
|
[MarketType.HOME_TEAM_TOTAL_BLOCKS]: {
|
|
3789
3789
|
id: MarketType.HOME_TEAM_TOTAL_BLOCKS,
|
|
3790
3790
|
key: 'homeTeamTotalBlocks',
|
|
3791
|
-
name: '
|
|
3791
|
+
name: 'Total blocks',
|
|
3792
3792
|
resultType: ResultType.OVER_UNDER,
|
|
3793
3793
|
},
|
|
3794
3794
|
[MarketType.AWAY_TEAM_TOTAL_BLOCKS]: {
|
|
3795
3795
|
id: MarketType.AWAY_TEAM_TOTAL_BLOCKS,
|
|
3796
3796
|
key: 'awayTeamTotalBlocks',
|
|
3797
|
-
name: '
|
|
3797
|
+
name: 'Total blocks',
|
|
3798
3798
|
resultType: ResultType.OVER_UNDER,
|
|
3799
3799
|
},
|
|
3800
3800
|
|
|
3801
3801
|
[MarketType.HOME_TEAM_TOTAL_STEALS]: {
|
|
3802
3802
|
id: MarketType.HOME_TEAM_TOTAL_STEALS,
|
|
3803
3803
|
key: 'homeTeamTotalSteals',
|
|
3804
|
-
name: '
|
|
3804
|
+
name: 'Total steals',
|
|
3805
3805
|
resultType: ResultType.OVER_UNDER,
|
|
3806
3806
|
},
|
|
3807
3807
|
[MarketType.AWAY_TEAM_TOTAL_STEALS]: {
|
|
3808
3808
|
id: MarketType.AWAY_TEAM_TOTAL_STEALS,
|
|
3809
3809
|
key: 'awayTeamTotalSteals',
|
|
3810
|
-
name: '
|
|
3810
|
+
name: 'Total steals',
|
|
3811
3811
|
resultType: ResultType.OVER_UNDER,
|
|
3812
3812
|
},
|
|
3813
3813
|
|
|
3814
3814
|
[MarketType.HOME_TEAM_TOTAL_ASSISTS]: {
|
|
3815
3815
|
id: MarketType.HOME_TEAM_TOTAL_ASSISTS,
|
|
3816
3816
|
key: 'homeTeamTotalAssists',
|
|
3817
|
-
name: '
|
|
3817
|
+
name: 'Total assists',
|
|
3818
3818
|
resultType: ResultType.OVER_UNDER,
|
|
3819
3819
|
},
|
|
3820
3820
|
[MarketType.AWAY_TEAM_TOTAL_ASSISTS]: {
|
|
3821
3821
|
id: MarketType.AWAY_TEAM_TOTAL_ASSISTS,
|
|
3822
3822
|
key: 'awayTeamTotalAssists',
|
|
3823
|
-
name: '
|
|
3823
|
+
name: 'Total assists',
|
|
3824
3824
|
resultType: ResultType.OVER_UNDER,
|
|
3825
3825
|
},
|
|
3826
3826
|
|
|
3827
3827
|
[MarketType.HOME_TEAM_TOTAL_FAULS]: {
|
|
3828
3828
|
id: MarketType.HOME_TEAM_TOTAL_FAULS,
|
|
3829
3829
|
key: 'homeTeamTotalFauls',
|
|
3830
|
-
name: '
|
|
3830
|
+
name: 'Total fouls',
|
|
3831
3831
|
resultType: ResultType.OVER_UNDER,
|
|
3832
3832
|
},
|
|
3833
3833
|
[MarketType.AWAY_TEAM_TOTAL_FAULS]: {
|
|
3834
3834
|
id: MarketType.AWAY_TEAM_TOTAL_FAULS,
|
|
3835
3835
|
key: 'awayTeamTotalFauls',
|
|
3836
|
-
name: '
|
|
3836
|
+
name: 'Total fouls',
|
|
3837
3837
|
resultType: ResultType.OVER_UNDER,
|
|
3838
3838
|
},
|
|
3839
3839
|
|