@mtgame/core 0.2.115 → 0.2.117
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 +1 -0
- package/bundles/mtgame-core.umd.js +4 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/api/tournament-api.js +4 -1
- package/esm2015/models/game.js +2 -1
- package/fesm2015/mtgame-core.js +4 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/game.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/api/tournament-api.d.ts
CHANGED
|
@@ -2696,6 +2696,7 @@
|
|
|
2696
2696
|
mappingFields: {
|
|
2697
2697
|
id: 'id',
|
|
2698
2698
|
game_ids: 'gameIds',
|
|
2699
|
+
winner_team_id: 'winnerTeamId',
|
|
2699
2700
|
teams: 'teams',
|
|
2700
2701
|
},
|
|
2701
2702
|
relation: {
|
|
@@ -8458,6 +8459,9 @@
|
|
|
8458
8459
|
if (filters.only_closed !== undefined && filters.only_closed !== null) {
|
|
8459
8460
|
rawFilters['only_closed'] = filters.only_closed ? '1' : '0';
|
|
8460
8461
|
}
|
|
8462
|
+
if (filters.check_ignore_game !== undefined && filters.check_ignore_game !== null) {
|
|
8463
|
+
rawFilters['check_ignore_game'] = filters.check_ignore_game ? '1' : '0';
|
|
8464
|
+
}
|
|
8461
8465
|
return rawFilters;
|
|
8462
8466
|
}
|
|
8463
8467
|
function applyStatisticLeadersFilters(filters, params) {
|