@betorigami/games 2.4.1 → 2.5.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 +17 -0
- package/dist/index.mjs +621 -595
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,19 @@ declare enum Currency {
|
|
|
27
27
|
DOP = "DOP",
|
|
28
28
|
GBP = "GBP",
|
|
29
29
|
CLP = "CLP",
|
|
30
|
+
CHF = "CHF",
|
|
31
|
+
CZK = "CZK",
|
|
32
|
+
HUF = "HUF",
|
|
33
|
+
IDR = "IDR",
|
|
34
|
+
KRW = "KRW",
|
|
35
|
+
KZT = "KZT",
|
|
36
|
+
MYR = "MYR",
|
|
37
|
+
RON = "RON",
|
|
38
|
+
THB = "THB",
|
|
39
|
+
UAH = "UAH",
|
|
40
|
+
UZS = "UZS",
|
|
41
|
+
VND = "VND",
|
|
42
|
+
ZAR = "ZAR",
|
|
30
43
|
GC = "GC",
|
|
31
44
|
SC = "SC"
|
|
32
45
|
}
|
|
@@ -6835,6 +6848,8 @@ export type gameContextType = {
|
|
|
6835
6848
|
customWheelCenterPadding: number | null;
|
|
6836
6849
|
customDiamondsBackgroundSvgUrl: string | null;
|
|
6837
6850
|
customBlackjackBackgroundSvgUrl: string | null;
|
|
6851
|
+
blitzMinPickCount: number | null;
|
|
6852
|
+
blitzMaxPickCount: number | null;
|
|
6838
6853
|
customCardBackSvgUrl: string | null;
|
|
6839
6854
|
customCardRedColor: string | null;
|
|
6840
6855
|
customCardBlackColor: string | null;
|
|
@@ -6897,6 +6912,8 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
6897
6912
|
customWheelCenterPadding: number | null;
|
|
6898
6913
|
customDiamondsBackgroundSvgUrl: string | null;
|
|
6899
6914
|
customBlackjackBackgroundSvgUrl: string | null;
|
|
6915
|
+
blitzMinPickCount: number | null;
|
|
6916
|
+
blitzMaxPickCount: number | null;
|
|
6900
6917
|
customCardBackSvgUrl: string | null;
|
|
6901
6918
|
customCardRedColor: string | null;
|
|
6902
6919
|
customCardBlackColor: string | null;
|