livevegas-ui-kit 1.0.233 → 1.0.235

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.
@@ -122,6 +122,20 @@ export interface IPlayer {
122
122
  winType?: number | null;
123
123
  winOnBonus?: number | null;
124
124
  }
125
+ export interface IWins {
126
+ betReferenceId?: number;
127
+ betAmount?: number;
128
+ winAmount?: number;
129
+ anteWinAmount?: number;
130
+ bonusWinAmount?: number;
131
+ callWinAmount?: number;
132
+ playerId?: number;
133
+ connectionId?: string;
134
+ details?: unknown;
135
+ coeficient?: number;
136
+ boxIndex?: number;
137
+ winType?: number;
138
+ }
125
139
  export interface IBoxes {
126
140
  bets: IBets[];
127
141
  gameCurrencyId?: null;
@@ -138,7 +152,7 @@ export interface IBoxes {
138
152
  rebuy?: IRebuy;
139
153
  minInsuranceAmount?: number;
140
154
  maxInsuranceAmount?: number;
141
- wins?: unknown[];
155
+ wins?: IWins[];
142
156
  continusWin?: number | null;
143
157
  winType?: unknown;
144
158
  initialDealerCards?: ICard[] | null;
@@ -383,5 +397,5 @@ export declare function getSuit(index: number): Suit;
383
397
  export declare function findCardsWinCombination(cardsData: CardData[]): number[];
384
398
  export declare function findAllCardsInCombinations(cardsData: CardData[]): number[];
385
399
  export declare function findCardsAndNameOfWinCombination(cardsData: CardData[]): CombinationAnalyzeResult;
386
- export declare function findAllCardsAndNamesOfCombinations(cardsData: CardData[]): CombinationAnalyzeResult;
400
+ export declare function findAllCardsAndNamesOfCombinations(cardsData: CardData[], isDealer?: boolean): CombinationAnalyzeResult;
387
401
  export {};