@smartico/public-api 0.0.103 → 0.0.104
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 +0 -1
- package/dist/WSAPI/WSAPITypes.d.ts +1 -3
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +0 -1
- package/dist/index.modern.mjs.map +1 -1
- package/docs/interfaces/TMiniGameTemplate.md +1 -9
- package/package.json +1 -1
- package/src/MiniGames/SAWGetTemplatesResponse.ts +0 -1
- package/src/MiniGames/SAWTemplateUI.ts +0 -1
- package/src/WSAPI/WSAPITypes.ts +1 -4
|
@@ -88,15 +88,7 @@ ___
|
|
|
88
88
|
|
|
89
89
|
• **no\_attempts\_message**: `string`
|
|
90
90
|
|
|
91
|
-
The message that should be shown to the user when he cannot play the game because he doesn't have spin attempts.
|
|
92
|
-
|
|
93
|
-
___
|
|
94
|
-
|
|
95
|
-
### no\_points\_message
|
|
96
|
-
|
|
97
|
-
• **no\_points\_message**: `string`
|
|
98
|
-
|
|
99
|
-
The message that should be shown to the user when he cannot play the game because he doesn't have points.
|
|
91
|
+
The message that should be shown to the user when he cannot play the game because he doesn't have spin attempts or points.
|
|
100
92
|
|
|
101
93
|
___
|
|
102
94
|
|
package/package.json
CHANGED
|
@@ -31,7 +31,6 @@ export const SAWTemplatesTransform = (items: SAWTemplate[]): TMiniGameTemplate[]
|
|
|
31
31
|
,
|
|
32
32
|
over_limit_message: r.saw_template_ui_definition.over_limit_message,
|
|
33
33
|
no_attempts_message: r.saw_template_ui_definition.no_attempts_message,
|
|
34
|
-
no_points_message: r.saw_template_ui_definition.no_points_message,
|
|
35
34
|
jackpot_symbol: r.saw_template_ui_definition.jackpot_symbol,
|
|
36
35
|
saw_game_type: SAWGameTypeNamed(r.saw_game_type_id),
|
|
37
36
|
saw_buyin_type: SAWBuyInTypeNamed(r.saw_buyin_type_id),
|
package/src/WSAPI/WSAPITypes.ts
CHANGED
|
@@ -72,12 +72,9 @@ export interface TMiniGameTemplate {
|
|
|
72
72
|
|
|
73
73
|
/** 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 */
|
|
74
74
|
over_limit_message: string;
|
|
75
|
-
/** The message that should be shown to the user when he cannot play the game because he doesn't have spin attempts. */
|
|
75
|
+
/** The message that should be shown to the user when he cannot play the game because he doesn't have spin attempts or points. */
|
|
76
76
|
no_attempts_message: string;
|
|
77
77
|
|
|
78
|
-
/** The message that should be shown to the user when he cannot play the game because he doesn't have points. */
|
|
79
|
-
no_points_message: string;
|
|
80
|
-
|
|
81
78
|
/** Current jackpont amount, if jackpot is enabled. */
|
|
82
79
|
jackpot_current: number;
|
|
83
80
|
/** 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. */
|