@mtgame/core 0.2.86 → 0.2.88
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 +17 -1
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/hockey-game-log.js +2 -1
- package/esm2015/models/hockey-game-statistic.js +9 -1
- package/esm2015/models/hockey-statistic.js +9 -2
- package/fesm2015/mtgame-core.js +17 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/hockey-game-log.d.ts +2 -1
- package/models/hockey-game-statistic.d.ts +8 -0
- package/models/hockey-statistic.d.ts +7 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -4682,6 +4682,7 @@
|
|
|
4682
4682
|
HockeyGameLogTypes[HockeyGameLogTypes["steal"] = 27] = "steal";
|
|
4683
4683
|
HockeyGameLogTypes[HockeyGameLogTypes["loss"] = 28] = "loss";
|
|
4684
4684
|
HockeyGameLogTypes[HockeyGameLogTypes["sharp_pass"] = 29] = "sharp_pass";
|
|
4685
|
+
HockeyGameLogTypes[HockeyGameLogTypes["qualified_for_playoff"] = 30] = "qualified_for_playoff";
|
|
4685
4686
|
})(exports.HockeyGameLogTypes || (exports.HockeyGameLogTypes = {}));
|
|
4686
4687
|
exports.HockeyAdvantageTypes = void 0;
|
|
4687
4688
|
(function (HockeyAdvantageTypes) {
|
|
@@ -5017,9 +5018,15 @@
|
|
|
5017
5018
|
block_shots: 'blockShots',
|
|
5018
5019
|
face_off_losses: 'faceOffLosses',
|
|
5019
5020
|
face_off_wins: 'faceOffWins',
|
|
5021
|
+
pp_saves: 'ppSaves',
|
|
5022
|
+
sh_saves: 'shSaves',
|
|
5023
|
+
ev_saves: 'evSaves',
|
|
5020
5024
|
saves: 'saves',
|
|
5021
5025
|
shootout_save: 'shootoutSaves',
|
|
5022
5026
|
after_game_shootout_saves: 'afterGameShootoutSaves',
|
|
5027
|
+
pp_goals_against: 'ppGoalsAgainst',
|
|
5028
|
+
sh_goals_against: 'shGoalsAgainst',
|
|
5029
|
+
ev_goals_against: 'evGoalsAgainst',
|
|
5023
5030
|
goals_against: 'goalsAgainst',
|
|
5024
5031
|
shootout_goals_against: 'shootoutGoalsAgainst',
|
|
5025
5032
|
after_game_shootout_goals_against: 'afterGameShootoutGoalsAgainst',
|
|
@@ -5041,6 +5048,8 @@
|
|
|
5041
5048
|
sh_sharp_passes: 'shSharpPasses',
|
|
5042
5049
|
drawn_fouls: 'drawnFouls',
|
|
5043
5050
|
efficiency: 'efficiency',
|
|
5051
|
+
games_qualified_for_playoff: 'gamesQualifiedForPlayoff',
|
|
5052
|
+
shutout: 'shutout'
|
|
5044
5053
|
},
|
|
5045
5054
|
relation: {
|
|
5046
5055
|
updatedAt: DateTimeField,
|
|
@@ -5163,6 +5172,9 @@
|
|
|
5163
5172
|
face_off_wins: 'faceOffWins',
|
|
5164
5173
|
face_offs: 'faceOffs',
|
|
5165
5174
|
face_off_percent: 'faceOffPercent',
|
|
5175
|
+
pp_saves: 'ppSaves',
|
|
5176
|
+
sh_saves: 'shSaves',
|
|
5177
|
+
ev_saves: 'evSaves',
|
|
5166
5178
|
saves: 'saves',
|
|
5167
5179
|
total_saves: 'totalSaves',
|
|
5168
5180
|
shootout_saves: 'shootoutSaves',
|
|
@@ -5171,6 +5183,9 @@
|
|
|
5171
5183
|
total_shots_against: 'totalShotsAgainst',
|
|
5172
5184
|
saves_percent: 'savesPercent',
|
|
5173
5185
|
total_saves_percent: 'totalSavesPercent',
|
|
5186
|
+
pp_goals_against: 'ppGoalsAgainst',
|
|
5187
|
+
sh_goals_against: 'shGoalsAgainst',
|
|
5188
|
+
ev_goals_against: 'evGoalsAgainst',
|
|
5174
5189
|
goals_against: 'goalsAgainst',
|
|
5175
5190
|
shootout_goals_against: 'shootoutGoalsAgainst',
|
|
5176
5191
|
total_goals_against: 'totalGoalsAgainst',
|
|
@@ -5196,7 +5211,8 @@
|
|
|
5196
5211
|
rank: 'rank',
|
|
5197
5212
|
shutout: 'shutout',
|
|
5198
5213
|
shutout_percent: 'shutoutPercent',
|
|
5199
|
-
mvp_count: 'mvpCount'
|
|
5214
|
+
mvp_count: 'mvpCount',
|
|
5215
|
+
games_qualified_for_playoff: 'gamesQualifiedForPlayoff'
|
|
5200
5216
|
},
|
|
5201
5217
|
relation: {
|
|
5202
5218
|
leaguePlayer: exports.LeaguePlayer,
|