@mtgame/core 0.2.114 → 0.2.116

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.
@@ -97,6 +97,7 @@ export interface StatisticFilters {
97
97
  per_game?: boolean;
98
98
  group_by: StatisticGroupByTypes;
99
99
  only_closed?: boolean;
100
+ check_ignore_game?: boolean;
100
101
  order_by?: string;
101
102
  page?: number;
102
103
  size?: number;
@@ -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,
@@ -8457,6 +8458,9 @@
8457
8458
  if (filters.only_closed !== undefined && filters.only_closed !== null) {
8458
8459
  rawFilters['only_closed'] = filters.only_closed ? '1' : '0';
8459
8460
  }
8461
+ if (filters.check_ignore_game !== undefined && filters.check_ignore_game !== null) {
8462
+ rawFilters['check_ignore_game'] = filters.check_ignore_game ? '1' : '0';
8463
+ }
8460
8464
  return rawFilters;
8461
8465
  }
8462
8466
  function applyStatisticLeadersFilters(filters, params) {