@smartico/public-api 0.0.63 → 0.0.65
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/SAWDoSpinResponse.d.ts +1 -0
- package/dist/MiniGames/SAWTemplate.d.ts +1 -1
- package/dist/WSAPI/WSAPITypes.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/MiniGames/SAWDoSpinResponse.ts +1 -0
- package/src/MiniGames/SAWGetTemplatesResponse.ts +1 -1
- package/src/MiniGames/SAWTemplate.ts +1 -1
- package/src/WSAPI/WSAPITypes.ts +1 -1
|
@@ -18,7 +18,7 @@ export interface SAWTemplate {
|
|
|
18
18
|
maxActiveSpinsAllowed: number;
|
|
19
19
|
maxSpinsCount: number;
|
|
20
20
|
maxSpinsPediodMs: number;
|
|
21
|
-
|
|
21
|
+
next_available_spin_ts: number;
|
|
22
22
|
saw_skin_key: string;
|
|
23
23
|
saw_skin_ui_definition: {
|
|
24
24
|
skin_folder: string;
|
|
@@ -47,7 +47,7 @@ export interface TMiniGameTemplate {
|
|
|
47
47
|
saw_buyin_type: SAWBuyInTypeName;
|
|
48
48
|
buyin_cost_points: number;
|
|
49
49
|
spin_count?: number;
|
|
50
|
-
|
|
50
|
+
next_available_spin_ts: number;
|
|
51
51
|
/** 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 */
|
|
52
52
|
over_limit_message: string;
|
|
53
53
|
/** The message that should be shown to the user when he cannot play the game because he doesn't have spin attempts or points. */
|
package/dist/index.js
CHANGED
|
@@ -289,7 +289,7 @@ var SAWTemplatesTransform = function SAWTemplatesTransform(items) {
|
|
|
289
289
|
jackpot_add_on_attempt: r.jackpot_add_on_attempt,
|
|
290
290
|
jackpot_current: r.jackpot_current,
|
|
291
291
|
spin_count: r.spin_count,
|
|
292
|
-
|
|
292
|
+
next_available_spin_ts: r.next_available_spin_ts,
|
|
293
293
|
prizes: r.prizes.map(function (p) {
|
|
294
294
|
var y = {
|
|
295
295
|
id: p.saw_prize_id,
|