@mtgame/core 0.0.54 → 0.0.56

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.
@@ -6,6 +6,7 @@ export declare class GameUser extends BaseModel {
6
6
  gameId: number;
7
7
  teamUser: TeamUser;
8
8
  tournamentTeamUser: TournamentTeamUser;
9
+ isMvp: boolean;
9
10
  updatedAt: Date;
10
11
  static toFront(data: any): any;
11
12
  static toBack(data: any): any;
@@ -14,6 +14,7 @@ export declare class HockeyStatistic extends BaseStatistic {
14
14
  winLose: boolean;
15
15
  gamesCount: number;
16
16
  wonGamesCount: number;
17
+ loseGamesCount: number;
17
18
  points: number;
18
19
  ppShots: number;
19
20
  ppShotMisses: number;
@@ -60,6 +61,7 @@ export declare class HockeyStatistic extends BaseStatistic {
60
61
  newbie: boolean;
61
62
  get assists(): number;
62
63
  get userMinutes(): string;
64
+ get gamesWonPercent(): number;
63
65
  static toFront(data: any): any;
64
66
  static toBack(data: any): any;
65
67
  }
package/mtgame-core.d.ts CHANGED
@@ -2,4 +2,5 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
+ export { GameBaseApi as ɵb } from './api/game-base-api';
5
6
  export { penaltyTypeField as ɵa } from './models/util';