@betorigami/games 1.18.1 → 1.20.0
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 +45 -0
- package/dist/index.mjs +984 -852
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6057,10 +6057,32 @@ export type gameContextType = {
|
|
|
6057
6057
|
edge: SupportedEdgePercentages;
|
|
6058
6058
|
footerPosition: "ABOVE" | "BELOW";
|
|
6059
6059
|
logoUrl: string | null;
|
|
6060
|
+
alwaysEnableMaxBetButton: boolean;
|
|
6061
|
+
gcCurrencyIconSvgUrl: string | null;
|
|
6062
|
+
scCurrencyIconSvgUrl: string | null;
|
|
6063
|
+
customMinesBackgroundSvgUrl: string | null;
|
|
6060
6064
|
customMinesGemSvgUrl: string | null;
|
|
6061
6065
|
customMinesBombSvgUrl: string | null;
|
|
6066
|
+
customMinesTileSvgUrl: string | null;
|
|
6067
|
+
customKenoBackgroundSvgUrl: string | null;
|
|
6062
6068
|
customKenoGemSvgUrl: string | null;
|
|
6069
|
+
customKenoNonMatchTileSvgUrl: string | null;
|
|
6070
|
+
customKenoTileSvgUrl: string | null;
|
|
6071
|
+
customKenoSelectedTileSvgUrl: string | null;
|
|
6072
|
+
customRouletteBackgroundSvgUrl: string | null;
|
|
6063
6073
|
roulettePreventOppositeBets: boolean;
|
|
6074
|
+
customDiceBackgroundSvgUrl: string | null;
|
|
6075
|
+
customPlinkoBackgroundSvgUrl: string | null;
|
|
6076
|
+
customPlinkoEdgeColor: string | null;
|
|
6077
|
+
customPlinkoCenterColor: string | null;
|
|
6078
|
+
customBaccaratBackgroundSvgUrl: string | null;
|
|
6079
|
+
customLimboBackgroundSvgUrl: string | null;
|
|
6080
|
+
customFooterLobbySvgUrl: string | null;
|
|
6081
|
+
customFooterVolumeSvgUrl: string | null;
|
|
6082
|
+
customFooterGameInfoSvgUrl: string | null;
|
|
6083
|
+
customFooterInstantBetSvgUrl: string | null;
|
|
6084
|
+
customFooterHotkeysSvgUrl: string | null;
|
|
6085
|
+
customFooterProvablyFairSvgUrl: string | null;
|
|
6064
6086
|
};
|
|
6065
6087
|
declare const gameContext: {
|
|
6066
6088
|
__context__: gameContextType;
|
|
@@ -6082,10 +6104,32 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
6082
6104
|
footerPosition: "ABOVE" | "BELOW";
|
|
6083
6105
|
logoUrl: string | null;
|
|
6084
6106
|
seasonTheme: SeasonTheme;
|
|
6107
|
+
alwaysEnableMaxBetButton: boolean;
|
|
6108
|
+
gcCurrencyIconSvgUrl: string | null;
|
|
6109
|
+
scCurrencyIconSvgUrl: string | null;
|
|
6110
|
+
customMinesBackgroundSvgUrl: string | null;
|
|
6085
6111
|
customMinesGemSvgUrl: string | null;
|
|
6086
6112
|
customMinesBombSvgUrl: string | null;
|
|
6113
|
+
customMinesTileSvgUrl: string | null;
|
|
6114
|
+
customKenoBackgroundSvgUrl: string | null;
|
|
6087
6115
|
customKenoGemSvgUrl: string | null;
|
|
6116
|
+
customKenoNonMatchTileSvgUrl: string | null;
|
|
6117
|
+
customKenoTileSvgUrl: string | null;
|
|
6118
|
+
customKenoSelectedTileSvgUrl: string | null;
|
|
6119
|
+
customRouletteBackgroundSvgUrl: string | null;
|
|
6088
6120
|
roulettePreventOppositeBets: boolean;
|
|
6121
|
+
customDiceBackgroundSvgUrl: string | null;
|
|
6122
|
+
customPlinkoBackgroundSvgUrl: string | null;
|
|
6123
|
+
customPlinkoEdgeColor: string | null;
|
|
6124
|
+
customPlinkoCenterColor: string | null;
|
|
6125
|
+
customBaccaratBackgroundSvgUrl: string | null;
|
|
6126
|
+
customLimboBackgroundSvgUrl: string | null;
|
|
6127
|
+
customFooterLobbySvgUrl: string | null;
|
|
6128
|
+
customFooterVolumeSvgUrl: string | null;
|
|
6129
|
+
customFooterGameInfoSvgUrl: string | null;
|
|
6130
|
+
customFooterInstantBetSvgUrl: string | null;
|
|
6131
|
+
customFooterHotkeysSvgUrl: string | null;
|
|
6132
|
+
customFooterProvablyFairSvgUrl: string | null;
|
|
6089
6133
|
private betAmount;
|
|
6090
6134
|
private autobetNumberOfBets;
|
|
6091
6135
|
private hotkeysOpenEnabled;
|
|
@@ -6715,6 +6759,7 @@ export declare class PlinkoGame extends GameComponent {
|
|
|
6715
6759
|
*/
|
|
6716
6760
|
private triggerBinHaptic;
|
|
6717
6761
|
constructor();
|
|
6762
|
+
private get customBinColors();
|
|
6718
6763
|
get binMultipliers(): number[];
|
|
6719
6764
|
private handleBetExecution;
|
|
6720
6765
|
/**
|