@mtgame/core 0.0.13 → 0.0.15

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.
@@ -1623,6 +1623,7 @@
1623
1623
  group: 'group',
1624
1624
  games_count: 'gamesCount',
1625
1625
  won_games_count: 'wonGamesCount',
1626
+ draw_games_count: 'drawGamesCount',
1626
1627
  last_games_count: 'lastGamesCount',
1627
1628
  last_games_won: 'lastGamesWon',
1628
1629
  score_sum: 'scoreSum',
@@ -2438,6 +2439,7 @@
2438
2439
  HockeyGameLogTypes[HockeyGameLogTypes["face_off_lose"] = 17] = "face_off_lose";
2439
2440
  HockeyGameLogTypes[HockeyGameLogTypes["face_off_win"] = 18] = "face_off_win";
2440
2441
  HockeyGameLogTypes[HockeyGameLogTypes["save"] = 19] = "save";
2442
+ HockeyGameLogTypes[HockeyGameLogTypes["timeout"] = 20] = "timeout";
2441
2443
  })(exports.HockeyGameLogTypes || (exports.HockeyGameLogTypes = {}));
2442
2444
 
2443
2445
  (function (HockeyAdvantageTypes) {
@@ -2543,7 +2545,7 @@
2543
2545
  });
2544
2546
  Object.defineProperty(HockeyGameStatistic.prototype, "shots", {
2545
2547
  get: function () {
2546
- return this.ppShots + this.evShots + this.shShots;
2548
+ return this.goals + this.ppShots + this.evShots + this.shShots;
2547
2549
  },
2548
2550
  enumerable: true,
2549
2551
  configurable: true
@@ -5979,7 +5981,7 @@
5979
5981
  _a$2[exports.HockeyGameLogTypes.shootout_goal] = 'Булит гол',
5980
5982
  _a$2[exports.HockeyGameLogTypes.assist] = 'Передача',
5981
5983
  _a$2[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
5982
- _a$2[exports.HockeyGameLogTypes.minor_penalty] = 'Малшый штраф',
5984
+ _a$2[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
5983
5985
  _a$2[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
5984
5986
  _a$2[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
5985
5987
  _a$2[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
@@ -5988,6 +5990,7 @@
5988
5990
  _a$2[exports.HockeyGameLogTypes.face_off_lose] = 'Проирыш в вбрасывании',
5989
5991
  _a$2[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
5990
5992
  _a$2[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
5993
+ _a$2[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
5991
5994
  _a$2);
5992
5995
 
5993
5996
  var _a$3;