@mtgame/core 0.2.87 → 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 +13 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/hockey-game-statistic.js +8 -1
- package/esm2015/models/hockey-statistic.js +7 -1
- package/fesm2015/mtgame-core.js +13 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/hockey-game-statistic.d.ts +7 -0
- package/models/hockey-statistic.d.ts +6 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -5018,9 +5018,15 @@
|
|
|
5018
5018
|
block_shots: 'blockShots',
|
|
5019
5019
|
face_off_losses: 'faceOffLosses',
|
|
5020
5020
|
face_off_wins: 'faceOffWins',
|
|
5021
|
+
pp_saves: 'ppSaves',
|
|
5022
|
+
sh_saves: 'shSaves',
|
|
5023
|
+
ev_saves: 'evSaves',
|
|
5021
5024
|
saves: 'saves',
|
|
5022
5025
|
shootout_save: 'shootoutSaves',
|
|
5023
5026
|
after_game_shootout_saves: 'afterGameShootoutSaves',
|
|
5027
|
+
pp_goals_against: 'ppGoalsAgainst',
|
|
5028
|
+
sh_goals_against: 'shGoalsAgainst',
|
|
5029
|
+
ev_goals_against: 'evGoalsAgainst',
|
|
5024
5030
|
goals_against: 'goalsAgainst',
|
|
5025
5031
|
shootout_goals_against: 'shootoutGoalsAgainst',
|
|
5026
5032
|
after_game_shootout_goals_against: 'afterGameShootoutGoalsAgainst',
|
|
@@ -5043,6 +5049,7 @@
|
|
|
5043
5049
|
drawn_fouls: 'drawnFouls',
|
|
5044
5050
|
efficiency: 'efficiency',
|
|
5045
5051
|
games_qualified_for_playoff: 'gamesQualifiedForPlayoff',
|
|
5052
|
+
shutout: 'shutout'
|
|
5046
5053
|
},
|
|
5047
5054
|
relation: {
|
|
5048
5055
|
updatedAt: DateTimeField,
|
|
@@ -5165,6 +5172,9 @@
|
|
|
5165
5172
|
face_off_wins: 'faceOffWins',
|
|
5166
5173
|
face_offs: 'faceOffs',
|
|
5167
5174
|
face_off_percent: 'faceOffPercent',
|
|
5175
|
+
pp_saves: 'ppSaves',
|
|
5176
|
+
sh_saves: 'shSaves',
|
|
5177
|
+
ev_saves: 'evSaves',
|
|
5168
5178
|
saves: 'saves',
|
|
5169
5179
|
total_saves: 'totalSaves',
|
|
5170
5180
|
shootout_saves: 'shootoutSaves',
|
|
@@ -5173,6 +5183,9 @@
|
|
|
5173
5183
|
total_shots_against: 'totalShotsAgainst',
|
|
5174
5184
|
saves_percent: 'savesPercent',
|
|
5175
5185
|
total_saves_percent: 'totalSavesPercent',
|
|
5186
|
+
pp_goals_against: 'ppGoalsAgainst',
|
|
5187
|
+
sh_goals_against: 'shGoalsAgainst',
|
|
5188
|
+
ev_goals_against: 'evGoalsAgainst',
|
|
5176
5189
|
goals_against: 'goalsAgainst',
|
|
5177
5190
|
shootout_goals_against: 'shootoutGoalsAgainst',
|
|
5178
5191
|
total_goals_against: 'totalGoalsAgainst',
|