@betorigami/games 0.7.45 → 0.7.47
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 +2 -4
- package/dist/index.mjs +359 -358
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3658,6 +3658,7 @@ export type gameContextType = {
|
|
|
3658
3658
|
maxPayout: number;
|
|
3659
3659
|
minBet: number;
|
|
3660
3660
|
maxBet: number;
|
|
3661
|
+
footerPosition: "ABOVE" | "BELOW";
|
|
3661
3662
|
};
|
|
3662
3663
|
declare const gameContext: {
|
|
3663
3664
|
__context__: gameContextType;
|
|
@@ -3670,13 +3671,12 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
3670
3671
|
baseUrl: string;
|
|
3671
3672
|
authToken: string;
|
|
3672
3673
|
origamiGame: OrigamiGame;
|
|
3673
|
-
themeUrl: string | undefined;
|
|
3674
|
-
private _theme;
|
|
3675
3674
|
lobbyUrl: string;
|
|
3676
3675
|
depositUrl: string | undefined;
|
|
3677
3676
|
maxPayout: number;
|
|
3678
3677
|
minBet: number;
|
|
3679
3678
|
maxBet: number;
|
|
3679
|
+
footerPosition: "ABOVE" | "BELOW";
|
|
3680
3680
|
private betAmount;
|
|
3681
3681
|
private autobetNumberOfBets;
|
|
3682
3682
|
private hotkeysOpenEnabled;
|
|
@@ -3694,8 +3694,6 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
3694
3694
|
firstUpdated(_changed: PropertyValues): Promise<void>;
|
|
3695
3695
|
disconnectedCallback(): void;
|
|
3696
3696
|
updated(changedProperties: PropertyValues): void;
|
|
3697
|
-
private loadAndApplyTheme;
|
|
3698
|
-
private applyThemeToChild;
|
|
3699
3697
|
get gameData(): gameContextType;
|
|
3700
3698
|
private updateProviderValue;
|
|
3701
3699
|
private fetchBalance;
|