fansunited-sdk-esm 1.18.4 → 1.19.0
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.
|
@@ -32,6 +32,7 @@ export default class PredictorFacade {
|
|
|
32
32
|
*/
|
|
33
33
|
getMatchSummary: (matchId: string, disableCache: boolean) => Promise<MatchSummaryModel>;
|
|
34
34
|
getMarketSummary: (matchId: string, market: MarketEnum, playerId?: string, disableCache?: boolean) => Promise<any>;
|
|
35
|
+
private getMatchSummaryBase;
|
|
35
36
|
getConfig: () => Promise<FeaturesConfigModels>;
|
|
36
37
|
deleteFootballPrediction: (predictionId: string) => Promise<boolean>;
|
|
37
38
|
getMyPredictions: (filters?: PredictionsFilters) => Promise<PaginationModel>;
|
|
@@ -37,7 +37,7 @@ export default class PredictorService {
|
|
|
37
37
|
* @returns Market that fits response model
|
|
38
38
|
*/
|
|
39
39
|
convertMarketForResponseModel: (market: any, target: number) => string;
|
|
40
|
-
getMarketSummary: (matchSummary: MatchSummaryModel, market: MarketEnum, playerId?: string) => any
|
|
40
|
+
getMarketSummary: (matchSummary: MatchSummaryModel, market: MarketEnum, playerId?: string) => Promise<any>;
|
|
41
41
|
remapCompetitionsFromConfig: (config: FeaturesConfigModels) => Promise<FeaturesConfigModels>;
|
|
42
42
|
/**
|
|
43
43
|
* Verifying parameter games for array or object type.
|