@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.
@@ -7,4 +7,5 @@ export interface SAWDoSpinResponse extends ProtocolResponse {
7
7
  saw_prize_id: number;
8
8
  first_spin_in_period: number;
9
9
  visitor_win_uuid?: string;
10
+ next_available_spin_ts: number;
10
11
  }
@@ -18,7 +18,7 @@ export interface SAWTemplate {
18
18
  maxActiveSpinsAllowed: number;
19
19
  maxSpinsCount: number;
20
20
  maxSpinsPediodMs: number;
21
- next_availabe_spin_ts: number;
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
- next_availabe_spin_ts: number;
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
- next_availabe_spin_ts: r.next_availabe_spin_ts,
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,