@mtgame/core 0.2.34 → 0.2.36
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 +8 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/basketball-game-log-types.js +6 -1
- package/esm2015/models/sport.js +4 -1
- package/fesm2015/mtgame-core.js +8 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/basketball-game-log-types.d.ts +5 -0
- package/models/sport.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -798,6 +798,9 @@
|
|
|
798
798
|
Sport.prototype.isBasketball1x1 = function () {
|
|
799
799
|
return this.id === exports.SportTypes.basketball_1x1;
|
|
800
800
|
};
|
|
801
|
+
Sport.prototype.isMediaBasket = function () {
|
|
802
|
+
return this.id === exports.SportTypes.media_basket;
|
|
803
|
+
};
|
|
801
804
|
Sport.prototype.isVolleyball = function () {
|
|
802
805
|
return this.id === exports.SportTypes.volleyball || this.parentId === exports.SportTypes.volleyball;
|
|
803
806
|
};
|
|
@@ -12860,6 +12863,11 @@
|
|
|
12860
12863
|
_a$f[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
|
|
12861
12864
|
_a$f[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
|
|
12862
12865
|
_a$f[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
|
|
12866
|
+
_a$f[exports.BasketballGameLogTypes.dunk_attempt] = 'Данк мимо',
|
|
12867
|
+
_a$f[exports.BasketballGameLogTypes.dunk_made] = 'Данк',
|
|
12868
|
+
_a$f[exports.BasketballGameLogTypes.four_point_attempt] = 'Бросок 4 очка',
|
|
12869
|
+
_a$f[exports.BasketballGameLogTypes.four_point_made] = '4 очка',
|
|
12870
|
+
_a$f[exports.BasketballGameLogTypes.shootout] = 'Булит',
|
|
12863
12871
|
_a$f);
|
|
12864
12872
|
|
|
12865
12873
|
var _a$e;
|