@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.
- package/api/tournament-api.d.ts +1 -0
- package/bundles/mtgame-core.umd.js +3 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/api/tournament-api.js +4 -1
- package/esm5/api/tournament-api.js +4 -1
- package/fesm2015/mtgame-core.js +3 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +3 -0
- package/fesm5/mtgame-core.js.map +1 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -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) {
|