@mtgame/core 0.1.20 → 0.1.21

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.
@@ -5137,6 +5137,9 @@ function applyGamesFilters(filters, params) {
5137
5137
  if (filters.query) {
5138
5138
  params = params.set('query', filters.query);
5139
5139
  }
5140
+ if (filters.isPlayoff !== undefined && filters.isPlayoff !== null) {
5141
+ params = params.set('is_playoff', filters.isPlayoff ? '1' : '0');
5142
+ }
5140
5143
  return params;
5141
5144
  }
5142
5145
  function applyStatisticFilters(filters, params) {