@smartico/public-api 0.0.146 → 0.0.147
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.
|
@@ -29,5 +29,7 @@ interface JackpotDetails {
|
|
|
29
29
|
pot: JackpotPot;
|
|
30
30
|
/** indication if the current user is opted in to the jackpot */
|
|
31
31
|
is_opted_in: boolean;
|
|
32
|
+
/** indicates whether all games are eligible for the jackpot */
|
|
33
|
+
ach_related_game_allow_all: boolean;
|
|
32
34
|
}
|
|
33
35
|
export { JackpotDetails };
|
|
@@ -83,3 +83,11 @@ ___
|
|
|
83
83
|
• **is\_opted\_in**: `boolean`
|
|
84
84
|
|
|
85
85
|
indication if the current user is opted in to the jackpot
|
|
86
|
+
|
|
87
|
+
___
|
|
88
|
+
|
|
89
|
+
### ach\_related\_game\_allow\_all
|
|
90
|
+
|
|
91
|
+
• **ach\_related\_game\_allow\_all**: `boolean`
|
|
92
|
+
|
|
93
|
+
indicates whether all games are eligible for the jackpot
|
package/package.json
CHANGED
|
@@ -30,6 +30,8 @@ interface JackpotDetails {
|
|
|
30
30
|
pot: JackpotPot;
|
|
31
31
|
/** indication if the current user is opted in to the jackpot */
|
|
32
32
|
is_opted_in: boolean;
|
|
33
|
+
/** indicates whether all games are eligible for the jackpot */
|
|
34
|
+
ach_related_game_allow_all: boolean;
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
export { JackpotDetails }
|