@mtgame/core 0.2.23 → 0.2.25

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.
@@ -9,6 +9,7 @@ export declare class League extends BaseModel {
9
9
  contactPhone: string;
10
10
  name: string;
11
11
  alias: string;
12
+ domain: string;
12
13
  sport: Sport;
13
14
  description: string;
14
15
  socialLinks: string[];
@@ -28,4 +29,5 @@ export declare class League extends BaseModel {
28
29
  get youtubeLink(): string;
29
30
  get telegramLink(): string;
30
31
  get tiktokLink(): string;
32
+ getRuDomain(): boolean;
31
33
  }
@@ -5,6 +5,7 @@ import { TournamentDisqualification } from './tournament-disqualification';
5
5
  import { LeaguePlayer } from './league-player';
6
6
  export declare class TournamentTeamUser extends BaseModel {
7
7
  id: number;
8
+ active: boolean;
8
9
  tournamentTeam: TournamentTeam;
9
10
  teamUser: TeamUser;
10
11
  disqualified: boolean;