@smartico/public-api 0.0.170 → 0.0.171
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/Jackpots/JackpotPot.d.ts +14 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +10 -0
- package/dist/index.modern.mjs.map +1 -1
- package/docs/interfaces/JackpotPot.md +11 -0
- package/package.json +1 -1
- package/src/Jackpots/JackpotPot.ts +15 -0
package/dist/index.modern.mjs
CHANGED
|
@@ -3019,6 +3019,16 @@ var JackpotContributionType;
|
|
|
3019
3019
|
JackpotContributionType[JackpotContributionType["Percentage"] = 2] = "Percentage";
|
|
3020
3020
|
})(JackpotContributionType || (JackpotContributionType = {}));
|
|
3021
3021
|
|
|
3022
|
+
var JackPotTemparature;
|
|
3023
|
+
(function (JackPotTemparature) {
|
|
3024
|
+
/** cold */
|
|
3025
|
+
JackPotTemparature[JackPotTemparature["COLD"] = 0] = "COLD";
|
|
3026
|
+
/** warm */
|
|
3027
|
+
JackPotTemparature[JackPotTemparature["WARM"] = 1] = "WARM";
|
|
3028
|
+
/** hot */
|
|
3029
|
+
JackPotTemparature[JackPotTemparature["HOT"] = 2] = "HOT";
|
|
3030
|
+
})(JackPotTemparature || (JackPotTemparature = {}));
|
|
3031
|
+
|
|
3022
3032
|
var JackpotType;
|
|
3023
3033
|
(function (JackpotType) {
|
|
3024
3034
|
JackpotType[JackpotType["Main"] = 1] = "Main";
|