@mtgame/core 0.1.70 → 0.1.72

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.
@@ -68,6 +68,8 @@ export declare class FootballStatistic extends BaseModel implements BaseStatisti
68
68
  endGamePenaltyMisses: number;
69
69
  endGamePenaltySaves: number;
70
70
  get userMinutes(): string;
71
+ get penalties(): number;
72
+ get smallPenalties(): number;
71
73
  get tournamentTeamPoints(): number;
72
74
  get tournamentTeamGamesCount(): number;
73
75
  get tournamentTeamWonGamesCount(): number;
@@ -5,6 +5,7 @@ export declare class OrganizationStatistic extends BaseModel {
5
5
  teamsCount: number;
6
6
  gamesCount: number;
7
7
  paidSum: number;
8
+ debtSum: number;
8
9
  static toFront(data: any): any;
9
10
  static toBack(data: any): any;
10
11
  }
@@ -13,6 +13,7 @@ export declare class Organization extends BaseModel {
13
13
  phone: string;
14
14
  email: string;
15
15
  unpaidBillsSum: number;
16
+ unpaidGameBillsSum: number;
16
17
  static toFront(data: any): any;
17
18
  static toBack(data: any): any;
18
19
  }