@smartico/public-api 0.0.145 → 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.
- package/dist/Jackpots/JackpotDetails.d.ts +2 -0
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +3 -4
- package/dist/index.modern.mjs.map +1 -1
- package/docs/interfaces/JackpotDetails.md +8 -0
- package/package.json +1 -1
- package/src/Jackpots/JackpotDetails.ts +2 -0
- package/src/MiniGames/SAWGetTemplatesResponse.ts +2 -1
package/dist/index.modern.mjs
CHANGED
|
@@ -321,7 +321,7 @@ const SAWTemplatesTransform = items => {
|
|
|
321
321
|
expose_game_stat_on_api: r.expose_game_stat_on_api,
|
|
322
322
|
next_available_spin_ts: r.next_available_spin_ts,
|
|
323
323
|
prizes: r.prizes.map(p => {
|
|
324
|
-
const y =
|
|
324
|
+
const y = {
|
|
325
325
|
id: p.saw_prize_id,
|
|
326
326
|
name: p.saw_prize_ui_definition.name,
|
|
327
327
|
prize_type: MiniGamePrizeTypeNamed(p.prize_type_id),
|
|
@@ -332,11 +332,10 @@ const SAWTemplatesTransform = items => {
|
|
|
332
332
|
position: p.saw_prize_ui_definition.position,
|
|
333
333
|
aknowledge_message: p.saw_prize_ui_definition.aknowledge_message,
|
|
334
334
|
acknowledge_dp: p.saw_prize_ui_definition.acknowledge_dp,
|
|
335
|
-
acknowledge_action_title: p.saw_prize_ui_definition.acknowledge_action_title
|
|
336
|
-
}, r.expose_game_stat_on_api && {
|
|
335
|
+
acknowledge_action_title: p.saw_prize_ui_definition.acknowledge_action_title,
|
|
337
336
|
pool: p.pool,
|
|
338
337
|
wins_count: p.wins_count
|
|
339
|
-
}
|
|
338
|
+
};
|
|
340
339
|
return y;
|
|
341
340
|
})
|
|
342
341
|
};
|