@betorigami/games 1.18.0 → 1.19.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 +33 -0
- package/dist/index.mjs +604 -494
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -6057,10 +6057,26 @@ 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;
|
|
6064
6080
|
};
|
|
6065
6081
|
declare const gameContext: {
|
|
6066
6082
|
__context__: gameContextType;
|
|
@@ -6082,10 +6098,26 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
6082
6098
|
footerPosition: "ABOVE" | "BELOW";
|
|
6083
6099
|
logoUrl: string | null;
|
|
6084
6100
|
seasonTheme: SeasonTheme;
|
|
6101
|
+
alwaysEnableMaxBetButton: boolean;
|
|
6102
|
+
gcCurrencyIconSvgUrl: string | null;
|
|
6103
|
+
scCurrencyIconSvgUrl: string | null;
|
|
6104
|
+
customMinesBackgroundSvgUrl: string | null;
|
|
6085
6105
|
customMinesGemSvgUrl: string | null;
|
|
6086
6106
|
customMinesBombSvgUrl: string | null;
|
|
6107
|
+
customMinesTileSvgUrl: string | null;
|
|
6108
|
+
customKenoBackgroundSvgUrl: string | null;
|
|
6087
6109
|
customKenoGemSvgUrl: string | null;
|
|
6110
|
+
customKenoNonMatchTileSvgUrl: string | null;
|
|
6111
|
+
customKenoTileSvgUrl: string | null;
|
|
6112
|
+
customKenoSelectedTileSvgUrl: string | null;
|
|
6113
|
+
customRouletteBackgroundSvgUrl: string | null;
|
|
6088
6114
|
roulettePreventOppositeBets: boolean;
|
|
6115
|
+
customDiceBackgroundSvgUrl: string | null;
|
|
6116
|
+
customPlinkoBackgroundSvgUrl: string | null;
|
|
6117
|
+
customPlinkoEdgeColor: string | null;
|
|
6118
|
+
customPlinkoCenterColor: string | null;
|
|
6119
|
+
customBaccaratBackgroundSvgUrl: string | null;
|
|
6120
|
+
customLimboBackgroundSvgUrl: string | null;
|
|
6089
6121
|
private betAmount;
|
|
6090
6122
|
private autobetNumberOfBets;
|
|
6091
6123
|
private hotkeysOpenEnabled;
|
|
@@ -6715,6 +6747,7 @@ export declare class PlinkoGame extends GameComponent {
|
|
|
6715
6747
|
*/
|
|
6716
6748
|
private triggerBinHaptic;
|
|
6717
6749
|
constructor();
|
|
6750
|
+
private get customBinColors();
|
|
6718
6751
|
get binMultipliers(): number[];
|
|
6719
6752
|
private handleBetExecution;
|
|
6720
6753
|
/**
|