fansunited-sdk-esm 1.6.0 → 1.6.1
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/Core/Namespaces/Predictor/Models/Fixtures/Markets/BothTeamsFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/CornersFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/DoubleChanceFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/HalfTimeFullTimeFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/OneXTwoFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/OverCornersFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/OverGoalsFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/PenaltyMatchFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/PlayerFixtureModel.d.ts +1 -0
- package/Core/Namespaces/Predictor/Models/Fixtures/Markets/RedCardFixtureModel.d.ts +1 -0
- package/index.js +8 -8
- package/index.js.map +2 -2
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ import FixturesModel from "../FixturesModel";
|
|
|
5
5
|
export default class DoubleChanceFixtureModel implements FixturesModel {
|
|
6
6
|
matchId: string;
|
|
7
7
|
market: MarketEnum;
|
|
8
|
+
matchType: string;
|
|
8
9
|
prediction: ValueDoubleChance;
|
|
9
10
|
constructor(matchId: string, value: DoubleChanceEnum);
|
|
10
11
|
}
|
|
@@ -5,6 +5,7 @@ import FixturesModel from "../FixturesModel";
|
|
|
5
5
|
export default class HalfTimeFullTimeFixtureModel implements FixturesModel {
|
|
6
6
|
matchId: string;
|
|
7
7
|
market: MarketEnum;
|
|
8
|
+
matchType: string;
|
|
8
9
|
prediction: ValueHalfTimeFullTime;
|
|
9
10
|
constructor(matchId: string, value: HalfTimeFullTimeEnum);
|
|
10
11
|
}
|
|
@@ -5,6 +5,7 @@ import { OneXTwoEnum } from "../../../Enums/ValueEnums";
|
|
|
5
5
|
export default class OneXTwoFixtureModel implements FixturesModel {
|
|
6
6
|
matchId: string;
|
|
7
7
|
market: MarketEnum;
|
|
8
|
+
matchType: string;
|
|
8
9
|
prediction: ValueOneXTwo;
|
|
9
10
|
constructor(matchId: string, market: MarketEnum, value: OneXTwoEnum);
|
|
10
11
|
}
|
|
@@ -4,6 +4,7 @@ import FixturesModel from "../FixturesModel";
|
|
|
4
4
|
export default class OverCornersFixtureModel implements FixturesModel {
|
|
5
5
|
matchId: string;
|
|
6
6
|
market: MarketEnum;
|
|
7
|
+
matchType: string;
|
|
7
8
|
prediction: ValueBoolean;
|
|
8
9
|
constructor(matchId: string, market: MarketEnum, value: boolean);
|
|
9
10
|
}
|
|
@@ -4,6 +4,7 @@ import FixturesModel from "../FixturesModel";
|
|
|
4
4
|
export default class OverGoalsFixtureModel implements FixturesModel {
|
|
5
5
|
matchId: string;
|
|
6
6
|
market: MarketEnum;
|
|
7
|
+
matchType: string;
|
|
7
8
|
prediction: ValueBoolean;
|
|
8
9
|
constructor(matchId: string, market: MarketEnum, value: boolean);
|
|
9
10
|
}
|
|
@@ -4,6 +4,7 @@ import FixturesModel from "../FixturesModel";
|
|
|
4
4
|
export default class PlayerFixtureModel implements FixturesModel {
|
|
5
5
|
matchId: string;
|
|
6
6
|
market: MarketEnum;
|
|
7
|
+
matchType: string;
|
|
7
8
|
prediction: ValueAndPlayerId;
|
|
8
9
|
constructor(matchId: string, market: MarketEnum, value: boolean, playerId: string);
|
|
9
10
|
}
|