@betorigami/games 0.7.20 → 0.7.22

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/dist/index.d.ts CHANGED
@@ -196,6 +196,7 @@ export declare const translations: {
196
196
  fairness: {
197
197
  activeClientSeed: string;
198
198
  enterClientSeed: string;
199
+ saveClientSeed: string;
199
200
  publicKey: string;
200
201
  request: string;
201
202
  proof: string;
@@ -212,6 +213,9 @@ export declare const translations: {
212
213
  provableFairnessUnverified: string;
213
214
  viewOutcome: string;
214
215
  invalidGame: string;
216
+ outcomeVerified: string;
217
+ outcomeNotVerified: string;
218
+ verified: string;
215
219
  };
216
220
  outcomes: {
217
221
  draw: string;
@@ -392,6 +396,7 @@ export declare const translations: {
392
396
  fairness: {
393
397
  activeClientSeed: string;
394
398
  enterClientSeed: string;
399
+ saveClientSeed: string;
395
400
  publicKey: string;
396
401
  request: string;
397
402
  proof: string;
@@ -407,6 +412,9 @@ export declare const translations: {
407
412
  provableFairnessVerified: string;
408
413
  provableFairnessUnverified: string;
409
414
  viewOutcome: string;
415
+ outcomeVerified: string;
416
+ outcomeNotVerified: string;
417
+ verified: string;
410
418
  };
411
419
  outcomes: {
412
420
  draw: string;
@@ -590,6 +598,8 @@ export type gameContextType = {
590
598
  updateAutobetNumberOfBets: (numberOfBets: number) => void;
591
599
  soundController?: SoundController;
592
600
  historyController?: HistoryController;
601
+ lobbyUrl?: string;
602
+ depositUrl?: string;
593
603
  };
594
604
  declare const gameContext: {
595
605
  __context__: gameContextType;
@@ -850,6 +860,7 @@ export declare class KenoGame extends GameComponent {
850
860
  private showResetAnimation;
851
861
  private _kenoManualEl?;
852
862
  private _kenoAutoEl?;
863
+ private getDisplayMultiplier;
853
864
  get isToggleDisabled(): boolean;
854
865
  get areInputsDisabled(): boolean;
855
866
  get kenoApi(): KenoApi | MockKenoApi;