@betorigami/games 1.4.11 → 1.4.13
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 +3 -2
- package/dist/index.mjs +152 -151
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -3726,6 +3726,7 @@ export type gameContextType = {
|
|
|
3726
3726
|
currencyDecimals: number;
|
|
3727
3727
|
showCurrencyAsText: boolean;
|
|
3728
3728
|
balance: number;
|
|
3729
|
+
scale: number;
|
|
3729
3730
|
baseUrl: string;
|
|
3730
3731
|
authToken: string;
|
|
3731
3732
|
publicKey: string;
|
|
@@ -3760,7 +3761,6 @@ declare const gameContext: {
|
|
|
3760
3761
|
};
|
|
3761
3762
|
export declare class GameProviderWrapper extends OrigamiElement {
|
|
3762
3763
|
currency: Currency;
|
|
3763
|
-
showCurrencyAsText: boolean;
|
|
3764
3764
|
balance: number;
|
|
3765
3765
|
currencyDecimals: number;
|
|
3766
3766
|
baseUrl: string;
|
|
@@ -3772,7 +3772,7 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
3772
3772
|
minBet: number | null;
|
|
3773
3773
|
maxBet: number | null;
|
|
3774
3774
|
edge: number;
|
|
3775
|
-
|
|
3775
|
+
showCurrencyAsText: boolean;
|
|
3776
3776
|
footerPosition: "ABOVE" | "BELOW";
|
|
3777
3777
|
logoUrl: string | null;
|
|
3778
3778
|
private betAmount;
|
|
@@ -3784,6 +3784,7 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
3784
3784
|
private mainWidth;
|
|
3785
3785
|
private publicKey;
|
|
3786
3786
|
private scale;
|
|
3787
|
+
aspectRatio: number;
|
|
3787
3788
|
language: Language;
|
|
3788
3789
|
private _soundController;
|
|
3789
3790
|
private _historyController;
|