@mtgame/core 0.2.108 → 0.2.109

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
@@ -29,6 +29,11 @@ export declare enum GameResultTypes {
29
29
  competitor_team_technical_defeat = 4,
30
30
  draw = 5
31
31
  }
32
+ export declare class GameAdditionalData {
33
+ mhlCarousel: boolean;
34
+ static toFront(data: any): any;
35
+ static toBack(data: any): any;
36
+ }
32
37
  export declare class GameTeamAdditionalData {
33
38
  nickname: string;
34
39
  color: string;
@@ -84,6 +89,7 @@ export declare class Game extends BaseModel {
84
89
  media: MediaItem[];
85
90
  tournament: Tournament;
86
91
  tournamentGroup: TournamentGroup;
92
+ additionalData: GameAdditionalData;
87
93
  get basketballGameConfig(): BasketballGameConfig;
88
94
  set basketballGameConfig(value: BasketballGameConfig);
89
95
  get volleyballGameConfig(): VolleyballGameConfig;
@@ -31,7 +31,8 @@ export declare enum HockeyGameLogTypes {
31
31
  steal = 27,
32
32
  loss = 28,
33
33
  sharp_pass = 29,
34
- qualified_for_playoff = 30
34
+ qualified_for_playoff = 30,
35
+ mhl_carousel_segment_end = 31
35
36
  }
36
37
  export declare enum HockeyAdvantageTypes {
37
38
  power_play = 1,