@mtgame/core 0.1.29 → 0.1.30

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.
@@ -16,6 +16,7 @@ export interface BaseStatistic {
16
16
  winLose: WinLoseType;
17
17
  gamesCount: number;
18
18
  wonGamesCount: number;
19
+ tournamentTeamPoints: number;
19
20
  newbie: boolean;
20
21
  rank: number;
21
22
  }
@@ -45,6 +45,7 @@ export declare class BasketballStatistic extends BaseModel implements BaseStatis
45
45
  rank: number;
46
46
  get totalFouls(): number;
47
47
  get gameMinutes(): number;
48
+ get tournamentTeamPoints(): number;
48
49
  static toFront(data: any): any;
49
50
  static toBack(data: any): any;
50
51
  }
@@ -65,6 +65,7 @@ export declare class FootballStatistic extends BaseModel implements BaseStatisti
65
65
  autoGoals: number;
66
66
  autoGoalsAgainst: number;
67
67
  get userMinutes(): string;
68
+ get tournamentTeamPoints(): number;
68
69
  static toFront(data: any): any;
69
70
  static toBack(data: any): any;
70
71
  }
@@ -54,6 +54,7 @@ export declare class HandballStatistic extends BaseModel implements BaseStatisti
54
54
  newbie: boolean;
55
55
  rank: number;
56
56
  get userMinutes(): string;
57
+ get tournamentTeamPoints(): number;
57
58
  static toFront(data: any): any;
58
59
  static toBack(data: any): any;
59
60
  }
@@ -66,6 +66,7 @@ export declare class HockeyStatistic extends BaseModel implements BaseStatistic
66
66
  get assists(): number;
67
67
  get userMinutes(): string;
68
68
  get gamesWonPercent(): number;
69
+ get tournamentTeamPoints(): number;
69
70
  static toFront(data: any): any;
70
71
  static toBack(data: any): any;
71
72
  }
@@ -42,6 +42,7 @@ export declare class VolleyballStatistic extends BaseModel implements BaseStatis
42
42
  serveReceivePercent: number;
43
43
  points: number;
44
44
  faults: number;
45
+ get tournamentTeamPoints(): number;
45
46
  static toFront(data: any): any;
46
47
  static toBack(data: any): any;
47
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtgame/core",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^9.1.11",
6
6
  "@angular/core": "^9.1.11",