fansunited-sdk-esm 1.12.0 → 1.13.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.
@@ -1,4 +1,4 @@
1
1
  import ActionValueModel from "./ActionValueModel";
2
2
  export default class ActionsModel {
3
- value: ActionValueModel;
3
+ value: ActionValueModel[];
4
4
  }
@@ -1,5 +1,6 @@
1
1
  import ActionValueModel from "../Actions/ActionValueModel";
2
2
  export default class PointsValueModel extends ActionValueModel {
3
3
  points: number;
4
+ alternative: any;
4
5
  constructor();
5
6
  }
@@ -1,6 +1,8 @@
1
1
  import MarketsConfigModel from "./MarketsConfigModel";
2
+ import SuccessRateScopeModel from "./SuccessRateScopeModel";
2
3
  export default class PredictorConfigModel {
3
4
  enabled: boolean;
4
5
  fullCoverageCompetitions: string[];
5
6
  markets: MarketsConfigModel;
7
+ successRateScopes: SuccessRateScopeModel;
6
8
  }
@@ -0,0 +1,5 @@
1
+ export default class SuccessRateScopeModel {
2
+ competitions: string[];
3
+ teams: string[];
4
+ markets: string[];
5
+ }