@smartico/public-api 0.0.59 → 0.0.61
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/package.json
CHANGED
|
@@ -36,6 +36,7 @@ export const SAWTemplatesTransform = (items: SAWTemplate[]): TMiniGameTemplate[]
|
|
|
36
36
|
buyin_cost_points: r.buyin_cost_points,
|
|
37
37
|
jackpot_add_on_attempt: r.jackpot_add_on_attempt,
|
|
38
38
|
jackpot_current: r.jackpot_current,
|
|
39
|
+
spin_count: r.spin_count,
|
|
39
40
|
|
|
40
41
|
prizes: r.prizes.map( p => {
|
|
41
42
|
const y: TMiniGamePrize = {
|
package/src/SmarticoAPI.ts
CHANGED
|
@@ -402,7 +402,7 @@ class SmarticoAPI {
|
|
|
402
402
|
tournamentInstanceId
|
|
403
403
|
}
|
|
404
404
|
);
|
|
405
|
-
const response = await this.send<GetTournamentInfoResponse>(message, ClassId.
|
|
405
|
+
const response = await this.send<GetTournamentInfoResponse>(message, ClassId.GET_TOURNAMENT_INFO_RESPONSE);
|
|
406
406
|
|
|
407
407
|
if (response.userPosition?.avatar_id) {
|
|
408
408
|
response.userPosition.avatar_url = CoreUtils.avatarUrl(response.userPosition.avatar_id, this.avatarDomain);
|