@mtgame/core 0.2.113 → 0.2.115
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/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
|
@@ -2668,6 +2668,7 @@
|
|
|
2668
2668
|
tournament_team: 'tournamentTeam',
|
|
2669
2669
|
score: 'score',
|
|
2670
2670
|
score_by_period: 'scoreByPeriod',
|
|
2671
|
+
game_ids: 'gameIds',
|
|
2671
2672
|
},
|
|
2672
2673
|
relation: {
|
|
2673
2674
|
team: exports.Team,
|
|
@@ -8454,6 +8455,9 @@
|
|
|
8454
8455
|
if (filters.is_playoff !== undefined && filters.is_playoff !== null) {
|
|
8455
8456
|
rawFilters['is_playoff'] = filters.is_playoff ? '1' : '0';
|
|
8456
8457
|
}
|
|
8458
|
+
if (filters.only_closed !== undefined && filters.only_closed !== null) {
|
|
8459
|
+
rawFilters['only_closed'] = filters.only_closed ? '1' : '0';
|
|
8460
|
+
}
|
|
8457
8461
|
return rawFilters;
|
|
8458
8462
|
}
|
|
8459
8463
|
function applyStatisticLeadersFilters(filters, params) {
|