game_client_logic_deb 1.8.144 → 1.8.147

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.
@@ -467,13 +467,14 @@ export declare namespace games.jass.logic.data.models {
467
467
  }
468
468
  export declare namespace games.jass.logic.data.models {
469
469
  class GameSessionAnalytics {
470
- constructor(duration: any/* kotlin.time.Duration */, gamesCount: number, roundsCountTotal: number, playerAnalytics: kotlin.collections.KtList<games.jass.logic.data.models.player.hand.PlayerAnalytics>);
470
+ constructor(duration: any/* kotlin.time.Duration */, gamesCount: number, roundsCountTotal: number, handsCount: number, playerAnalytics: kotlin.collections.KtList<games.jass.logic.data.models.player.hand.PlayerAnalytics>);
471
471
  get duration(): any/* kotlin.time.Duration */;
472
472
  get gamesCount(): number;
473
473
  get roundsCountTotal(): number;
474
+ get handsCount(): number;
474
475
  get playerAnalytics(): kotlin.collections.KtList<games.jass.logic.data.models.player.hand.PlayerAnalytics>;
475
476
  get allCombinationCounts(): Array<games.jass.logic.data.models.CombinationPair>;
476
- copy(duration?: any/* kotlin.time.Duration */, gamesCount?: number, roundsCountTotal?: number, playerAnalytics?: kotlin.collections.KtList<games.jass.logic.data.models.player.hand.PlayerAnalytics>): games.jass.logic.data.models.GameSessionAnalytics;
477
+ copy(duration?: any/* kotlin.time.Duration */, gamesCount?: number, roundsCountTotal?: number, handsCount?: number, playerAnalytics?: kotlin.collections.KtList<games.jass.logic.data.models.player.hand.PlayerAnalytics>): games.jass.logic.data.models.GameSessionAnalytics;
477
478
  toString(): string;
478
479
  hashCode(): number;
479
480
  equals(other: Nullable<any>): boolean;
@@ -1066,7 +1067,6 @@ export declare namespace games.jass.logic.data.models.table.history {
1066
1067
  get roundContractState(): Nullable<games.jass.logic.data.models.player.state.RoundContractState>;
1067
1068
  get roundWinners(): Nullable<Array<string>>;
1068
1069
  get roundContractStateName(): Nullable<string>;
1069
- get isRoundEmpty(): boolean;
1070
1070
  equals(other: Nullable<any>): boolean;
1071
1071
  hashCode(): number;
1072
1072
  toStringShort(): string;