@mtgame/core 0.1.23 → 0.1.24

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.
@@ -26,7 +26,8 @@ export declare enum FootballGameLogTypes {
26
26
  loss = 22,
27
27
  steal = 23,
28
28
  out = 24,
29
- timeout = 25
29
+ timeout = 25,
30
+ auto_goal = 26
30
31
  }
31
32
  export declare class FootballGameLog extends BaseModel implements GameLogBase {
32
33
  id: number;
@@ -32,6 +32,8 @@ export declare class FootballGameStatistic extends BaseModel implements GameStat
32
32
  gameTime: number;
33
33
  plusMinus: number;
34
34
  updatedAt: Date;
35
+ autoGoals: number;
36
+ autoGoalsAgainst: number;
35
37
  get id(): number;
36
38
  get shots(): number;
37
39
  get totalGoals(): number;
@@ -60,6 +60,8 @@ export declare class FootballStatistic extends BaseModel implements BaseStatisti
60
60
  freeKicks: number;
61
61
  newbie: boolean;
62
62
  rank: number;
63
+ autoGoals: number;
64
+ autoGoalsAgainst: number;
63
65
  get userMinutes(): string;
64
66
  static toFront(data: any): any;
65
67
  static toBack(data: any): any;