@mtgame/core 0.1.31 → 0.1.32

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.
@@ -3286,6 +3286,8 @@
3286
3286
  HockeyGameLogTypes[HockeyGameLogTypes["timeout"] = 20] = "timeout";
3287
3287
  HockeyGameLogTypes[HockeyGameLogTypes["penalty_start"] = 21] = "penalty_start";
3288
3288
  HockeyGameLogTypes[HockeyGameLogTypes["penalty_end"] = 22] = "penalty_end";
3289
+ HockeyGameLogTypes[HockeyGameLogTypes["after_game_shootout_attempt"] = 23] = "after_game_shootout_attempt";
3290
+ HockeyGameLogTypes[HockeyGameLogTypes["after_game_shootout_goal"] = 24] = "after_game_shootout_goal";
3289
3291
  })(exports.HockeyGameLogTypes || (exports.HockeyGameLogTypes = {}));
3290
3292
 
3291
3293
  (function (HockeyAdvantageTypes) {
@@ -3332,7 +3334,7 @@
3332
3334
  configurable: true
3333
3335
  });
3334
3336
  HockeyGameLog.prototype.isScoreType = function () {
3335
- return [exports.HockeyGameLogTypes.goal, exports.HockeyGameLogTypes.shootout_goal].indexOf(this.logType) > -1;
3337
+ return [exports.HockeyGameLogTypes.goal, exports.HockeyGameLogTypes.shootout_goal, exports.HockeyGameLogTypes.after_game_shootout_goal].indexOf(this.logType) > -1;
3336
3338
  };
3337
3339
  HockeyGameLog.prototype.isPenaltyType = function () {
3338
3340
  return [
@@ -3534,6 +3536,8 @@
3534
3536
  sh_assists: 'shAssists',
3535
3537
  shootout_attempts: 'shootoutAttempts',
3536
3538
  shootout_goals: 'shootoutGoals',
3539
+ after_game_shootout_attempts: 'afterGameShootoutAttempts',
3540
+ after_game_shootout_goals: 'afterGameShootoutGoals',
3537
3541
  block_shots: 'blockShots',
3538
3542
  face_off_losses: 'faceOffLosses',
3539
3543
  face_off_wins: 'faceOffWins',
@@ -3647,6 +3651,8 @@
3647
3651
  sh_assists: 'shAssists',
3648
3652
  shootout_attempts: 'shootoutAttempts',
3649
3653
  shootout_goals: 'shootoutGoals',
3654
+ after_game_shootout_attempts: 'afterGameShootoutAttempts',
3655
+ after_game_shootout_goals: 'afterGameShootoutGoals',
3650
3656
  block_shots: 'blockShots',
3651
3657
  face_off_losses: 'faceOffLosses',
3652
3658
  face_off_wins: 'faceOffWins',
@@ -8539,6 +8545,8 @@
8539
8545
  _a$2[exports.HockeyGameLogTypes.goal] = 'Гол',
8540
8546
  _a$2[exports.HockeyGameLogTypes.shootout_attempt] = 'Булит промах',
8541
8547
  _a$2[exports.HockeyGameLogTypes.shootout_goal] = 'Булит гол',
8548
+ _a$2[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Булит промах',
8549
+ _a$2[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Булит гол',
8542
8550
  _a$2[exports.HockeyGameLogTypes.assist] = 'Передача',
8543
8551
  _a$2[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
8544
8552
  _a$2[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',