game_client_logic_deb 1.8.336 → 1.8.339

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.
@@ -516,14 +516,15 @@ export declare namespace games.jass.logic {
516
516
  }
517
517
  export declare namespace games.jass.logic.data.models {
518
518
  class DealerConfig {
519
- constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean);
519
+ constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean);
520
520
  get dealerStrategy(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
521
521
  get isBotsAreHappy(): boolean;
522
522
  get cards(): Nullable<Array<number>>;
523
+ get shuffleCardsPlayerNumber(): Nullable<number>;
523
524
  get shouldDisplayDealerStrategy(): boolean;
524
525
  equals(other: Nullable<any>): boolean;
525
526
  hashCode(): number;
526
- copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
527
+ copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
527
528
  toString(): string;
528
529
  static get Companion(): {
529
530
  getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;