@mtgame/core 2.0.22 → 2.0.23

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.
package/models/game.d.ts CHANGED
@@ -12,7 +12,6 @@ import { Playoff } from './playoff';
12
12
  import { TournamentGroup } from './tournament-group';
13
13
  import { RugbyGameConfig } from './rugby-game-config';
14
14
  import { WaterpoloGameConfig } from './waterpolo-game-config';
15
- import { TeamAdditionalData } from './tournament-team';
16
15
  import { Sport } from './sport';
17
16
  import { File } from './file';
18
17
  export declare enum GameStatuses {
@@ -37,11 +36,15 @@ export declare class GameAdditionalData extends BaseModel {
37
36
  competitorTeamBet: number;
38
37
  betLink: string;
39
38
  }
39
+ export declare class GameTeamAdditionalData extends BaseModel {
40
+ nickname: string;
41
+ color: string;
42
+ }
40
43
  export declare class TournamentTeamShort extends BaseModel {
41
44
  id: number;
42
45
  name: string;
43
46
  logo: File;
44
- additionalData: TeamAdditionalData;
47
+ additionalData: GameTeamAdditionalData;
45
48
  }
46
49
  export declare class Game extends BaseModel {
47
50
  private _basketballGameConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtgame/core",
3
- "version": "2.0.22",
3
+ "version": "2.0.23",
4
4
  "dependencies": {
5
5
  "tslib": "^2.2.0",
6
6
  "@sentry/angular": "~7.36.0",