@mtgame/core 0.2.113 → 0.2.114
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.
|
@@ -8454,6 +8454,9 @@
|
|
|
8454
8454
|
if (filters.is_playoff !== undefined && filters.is_playoff !== null) {
|
|
8455
8455
|
rawFilters['is_playoff'] = filters.is_playoff ? '1' : '0';
|
|
8456
8456
|
}
|
|
8457
|
+
if (filters.only_closed !== undefined && filters.only_closed !== null) {
|
|
8458
|
+
rawFilters['only_closed'] = filters.only_closed ? '1' : '0';
|
|
8459
|
+
}
|
|
8457
8460
|
return rawFilters;
|
|
8458
8461
|
}
|
|
8459
8462
|
function applyStatisticLeadersFilters(filters, params) {
|