game_client_logic_deb 1.8.439 → 1.8.441

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.
@@ -739,15 +739,16 @@ export declare namespace games.jass.logic {
739
739
  }
740
740
  export declare namespace games.jass.logic.data.models {
741
741
  class DealerConfig {
742
- constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean);
742
+ constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardsInCycle?: number, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean);
743
743
  get dealerStrategy(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
744
+ get cardsInCycle(): number;
744
745
  get isBotsAreHappy(): boolean;
745
746
  get cards(): Nullable<Array<number>>;
746
747
  get shuffleCardsPlayerNumber(): Nullable<number>;
747
748
  get shouldDisplayDealerStrategy(): boolean;
748
749
  equals(other: Nullable<any>): boolean;
749
750
  hashCode(): number;
750
- 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;
751
+ copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardsInCycle?: number, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
751
752
  toString(): string;
752
753
  }
753
754
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -978,13 +979,14 @@ export declare namespace games.jass.logic.data.models.config {
978
979
  }
979
980
  export declare namespace games.jass.logic.data.models.dealer {
980
981
  class RandomData {
981
- constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>);
982
+ constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, cardsInCycle: Nullable<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>);
982
983
  get signature(): Nullable<string>;
983
984
  get id(): string;
984
985
  get indexes(): kotlin.collections.KtList<number>;
986
+ get cardsInCycle(): Nullable<number>;
985
987
  get provider(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
986
988
  get cardDeck(): kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>;
987
- copy(signature?: Nullable<string>, id?: string, indexes?: kotlin.collections.KtList<number>, provider?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck?: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>): games.jass.logic.data.models.dealer.RandomData;
989
+ copy(signature?: Nullable<string>, id?: string, indexes?: kotlin.collections.KtList<number>, cardsInCycle?: Nullable<number>, provider?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck?: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>): games.jass.logic.data.models.dealer.RandomData;
988
990
  toString(): string;
989
991
  hashCode(): number;
990
992
  equals(other: Nullable<any>): boolean;