@mtgame/core 0.2.62 → 0.2.64
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/api/tournament-api.d.ts +8 -0
- package/bundles/mtgame-core.umd.js +1 -1
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/api/tournament-api.js +2 -2
- package/fesm2015/mtgame-core.js +1 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/api/tournament-api.d.ts
CHANGED
|
@@ -25,6 +25,10 @@ import { TournamentRound } from '../models/tournament-round';
|
|
|
25
25
|
import { TournamentDivision } from '../models/tournament-division';
|
|
26
26
|
import { UserGender } from '../models/user';
|
|
27
27
|
import { GameUserLimitations } from '../models/game-user-limitation';
|
|
28
|
+
import { GameHockeyPosition } from '../models/hockey-profile';
|
|
29
|
+
import { GameFootballPosition } from '../models/football-profile';
|
|
30
|
+
import { GameHandballPosition } from '../models/handball-profile';
|
|
31
|
+
import { GameWaterpoloPosition } from '../models/waterpolo-profile';
|
|
28
32
|
export interface TournamentGamesFilters {
|
|
29
33
|
tournamentIds?: number[];
|
|
30
34
|
tournamentSeasonId?: number;
|
|
@@ -72,6 +76,10 @@ export interface StatisticFilters {
|
|
|
72
76
|
date_to?: string;
|
|
73
77
|
query?: string;
|
|
74
78
|
gender?: UserGender;
|
|
79
|
+
hockey_position?: GameHockeyPosition;
|
|
80
|
+
football_position?: GameFootballPosition;
|
|
81
|
+
handball_position?: GameHandballPosition;
|
|
82
|
+
waterpolo_position?: GameWaterpoloPosition;
|
|
75
83
|
per_game?: boolean;
|
|
76
84
|
group_by: StatisticGroupByTypes;
|
|
77
85
|
order_by?: string;
|
|
@@ -7827,7 +7827,7 @@
|
|
|
7827
7827
|
try {
|
|
7828
7828
|
for (includes_1 = __values(includes), includes_1_1 = includes_1.next(); !includes_1_1.done; includes_1_1 = includes_1.next()) {
|
|
7829
7829
|
include = includes_1_1.value;
|
|
7830
|
-
params.append('include', include);
|
|
7830
|
+
params = params.append('include', include);
|
|
7831
7831
|
}
|
|
7832
7832
|
}
|
|
7833
7833
|
catch (e_7_1) { e_7 = { error: e_7_1 }; }
|