@betorigami/games 1.19.0 → 1.20.1
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 +19 -0
- package/dist/index.mjs +476 -455
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6076,7 +6076,16 @@ export type gameContextType = {
|
|
|
6076
6076
|
customPlinkoEdgeColor: string | null;
|
|
6077
6077
|
customPlinkoCenterColor: string | null;
|
|
6078
6078
|
customBaccaratBackgroundSvgUrl: string | null;
|
|
6079
|
+
baccaratPreventOppositeBets: boolean;
|
|
6079
6080
|
customLimboBackgroundSvgUrl: string | null;
|
|
6081
|
+
customWheelCenterSvgUrl: string | null;
|
|
6082
|
+
customWheelCenterPadding: number | null;
|
|
6083
|
+
customFooterLobbySvgUrl: string | null;
|
|
6084
|
+
customFooterVolumeSvgUrl: string | null;
|
|
6085
|
+
customFooterGameInfoSvgUrl: string | null;
|
|
6086
|
+
customFooterInstantBetSvgUrl: string | null;
|
|
6087
|
+
customFooterHotkeysSvgUrl: string | null;
|
|
6088
|
+
customFooterProvablyFairSvgUrl: string | null;
|
|
6080
6089
|
};
|
|
6081
6090
|
declare const gameContext: {
|
|
6082
6091
|
__context__: gameContextType;
|
|
@@ -6112,12 +6121,22 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
6112
6121
|
customKenoSelectedTileSvgUrl: string | null;
|
|
6113
6122
|
customRouletteBackgroundSvgUrl: string | null;
|
|
6114
6123
|
roulettePreventOppositeBets: boolean;
|
|
6124
|
+
rouletteDefaultInstantBet: boolean;
|
|
6115
6125
|
customDiceBackgroundSvgUrl: string | null;
|
|
6116
6126
|
customPlinkoBackgroundSvgUrl: string | null;
|
|
6117
6127
|
customPlinkoEdgeColor: string | null;
|
|
6118
6128
|
customPlinkoCenterColor: string | null;
|
|
6119
6129
|
customBaccaratBackgroundSvgUrl: string | null;
|
|
6130
|
+
baccaratPreventOppositeBets: boolean;
|
|
6120
6131
|
customLimboBackgroundSvgUrl: string | null;
|
|
6132
|
+
customWheelCenterSvgUrl: string | null;
|
|
6133
|
+
customWheelCenterPadding: number | null;
|
|
6134
|
+
customFooterLobbySvgUrl: string | null;
|
|
6135
|
+
customFooterVolumeSvgUrl: string | null;
|
|
6136
|
+
customFooterGameInfoSvgUrl: string | null;
|
|
6137
|
+
customFooterInstantBetSvgUrl: string | null;
|
|
6138
|
+
customFooterHotkeysSvgUrl: string | null;
|
|
6139
|
+
customFooterProvablyFairSvgUrl: string | null;
|
|
6121
6140
|
private betAmount;
|
|
6122
6141
|
private autobetNumberOfBets;
|
|
6123
6142
|
private hotkeysOpenEnabled;
|