@mtgame/core 0.2.3 → 0.2.5

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.
@@ -23,7 +23,10 @@ export declare enum Qualification {
23
23
  goalkeeper_vhl = 18,
24
24
  goalkeeper_khl = 19,
25
25
  beginner = 20,
26
- junior = 21
26
+ junior = 21,
27
+ debutant = 22,
28
+ schoolchild = 23,
29
+ preschool_child = 24
27
30
  }
28
31
  export declare const QualificationLocalization: {
29
32
  1: string;
@@ -47,6 +50,9 @@ export declare const QualificationLocalization: {
47
50
  19: string;
48
51
  20: string;
49
52
  21: string;
53
+ 22: string;
54
+ 23: string;
55
+ 24: string;
50
56
  };
51
57
  export declare class LeaguePlayer extends BaseModel {
52
58
  id: number;
@@ -47,7 +47,7 @@ export * from './league-field-base-value';
47
47
  export * from './league-player-field';
48
48
  export * from './league-player-field-value';
49
49
  export * from './league-team-field';
50
- export * from './league-team-field-value';
50
+ export * from './tournament-team-field-value';
51
51
  export * from './media-item';
52
52
  export * from './notification';
53
53
  export * from './notification-settings';
@@ -1,6 +1,6 @@
1
1
  import { LeagueFieldBaseValue } from './league-field-base-value';
2
2
  import { LeagueTeamField } from './league-team-field';
3
- export declare class LeagueTeamFieldValue extends LeagueFieldBaseValue {
3
+ export declare class TournamentTeamFieldValue extends LeagueFieldBaseValue {
4
4
  leagueTeamFieldId: number;
5
5
  leagueTeamField: LeagueTeamField;
6
6
  static toFront(data: any): any;
@@ -5,7 +5,7 @@ import { Game } from './game';
5
5
  import { Tournament } from './tournament';
6
6
  import { File } from './file';
7
7
  import { TournamentDivision } from './tournament-division';
8
- import { LeagueTeamFieldValue } from './league-team-field-value';
8
+ import { TournamentTeamFieldValue } from './tournament-team-field-value';
9
9
  export declare class TeamAdditionalData {
10
10
  nickname: string;
11
11
  color: string;
@@ -50,7 +50,7 @@ export declare class TournamentTeam extends BaseModel {
50
50
  triesMissed: number;
51
51
  attackBonuses: number;
52
52
  defenseBonuses: number;
53
- fieldValues: LeagueTeamFieldValue[];
53
+ fieldValues: TournamentTeamFieldValue[];
54
54
  get gamesWonPercent(): number;
55
55
  static toFront(data: any): any;
56
56
  static toBack(data: any): any;