@smartico/public-api 0.0.102 → 0.0.103
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/MiniGames/SAWTemplateUI.d.ts +1 -0
- package/dist/WSAPI/WSAPITypes.d.ts +3 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -0
- package/dist/index.modern.mjs.map +1 -1
- package/docs/classes/WSAPI.md +26 -26
- package/docs/interfaces/TMiniGameTemplate.md +9 -1
- package/docs/interfaces/TTournamentDetailed.md +2 -2
- package/package.json +1 -1
- package/src/MiniGames/SAWGetTemplatesResponse.ts +1 -0
- package/src/MiniGames/SAWTemplateUI.ts +1 -0
- package/src/WSAPI/WSAPITypes.ts +4 -1
|
@@ -58,8 +58,10 @@ export interface TMiniGameTemplate {
|
|
|
58
58
|
next_available_spin_ts: number;
|
|
59
59
|
/** The message that should be shown to the user when he cannot play the game, server rejected attempt with error code SAWSpinErrorCode.SAW_FAILED_MAX_SPINS_REACHED */
|
|
60
60
|
over_limit_message: string;
|
|
61
|
-
/** The message that should be shown to the user when he cannot play the game because he doesn't have spin attempts
|
|
61
|
+
/** The message that should be shown to the user when he cannot play the game because he doesn't have spin attempts. */
|
|
62
62
|
no_attempts_message: string;
|
|
63
|
+
/** The message that should be shown to the user when he cannot play the game because he doesn't have points. */
|
|
64
|
+
no_points_message: string;
|
|
63
65
|
/** Current jackpont amount, if jackpot is enabled. */
|
|
64
66
|
jackpot_current: number;
|
|
65
67
|
/** The amount that will be added to the jackpot every time when somebody plays the game. Note that the contribution amount is abstract, means that no money or points are deducted from the user balance. */
|
package/dist/index.js
CHANGED
|
@@ -284,6 +284,7 @@ var SAWTemplatesTransform = function SAWTemplatesTransform(items) {
|
|
|
284
284
|
thumbnail: (_r$saw_skin_ui_defini = r.saw_skin_ui_definition) != null && _r$saw_skin_ui_defini.skin_folder ? ((_r$saw_skin_ui_defini2 = r.saw_skin_ui_definition) == null ? void 0 : _r$saw_skin_ui_defini2.skin_folder) + '/ico.png' : "https://libs.smartico.ai/gf/images/saw/" + r.saw_skin_key + "/ico.png",
|
|
285
285
|
over_limit_message: r.saw_template_ui_definition.over_limit_message,
|
|
286
286
|
no_attempts_message: r.saw_template_ui_definition.no_attempts_message,
|
|
287
|
+
no_points_message: r.saw_template_ui_definition.no_points_message,
|
|
287
288
|
jackpot_symbol: r.saw_template_ui_definition.jackpot_symbol,
|
|
288
289
|
saw_game_type: SAWGameTypeNamed(r.saw_game_type_id),
|
|
289
290
|
saw_buyin_type: SAWBuyInTypeNamed(r.saw_buyin_type_id),
|