@smartico/public-api 0.0.112 → 0.0.114

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.
@@ -5,6 +5,7 @@ export interface SAWDoSpinResponse extends ProtocolResponse {
5
5
  errMsg?: string;
6
6
  request_id: string;
7
7
  saw_prize_id: number;
8
+ jackpot_amount?: number;
8
9
  first_spin_in_period: number;
9
10
  visitor_win_uuid?: string;
10
11
  }
@@ -12,4 +12,5 @@ export interface SAWPrizeUI {
12
12
  icon?: string;
13
13
  replace_name_with_image?: boolean;
14
14
  acknowledge_action_title?: string;
15
+ custom_win_sound?: string;
15
16
  }
@@ -2,7 +2,8 @@ export declare enum SAWWinSoundType {
2
2
  Disappointing = 1,
3
3
  Positive = 2,
4
4
  HighlyPositive = 3,
5
- NoSound = 4
5
+ NoSound = 4,
6
+ Custom = 5
6
7
  }
7
8
  export declare const SAWWinSoundFiles: {
8
9
  4: any;
package/dist/index.js CHANGED
@@ -343,6 +343,7 @@ exports.SAWWinSoundType = void 0;
343
343
  SAWWinSoundType[SAWWinSoundType["Positive"] = 2] = "Positive";
344
344
  SAWWinSoundType[SAWWinSoundType["HighlyPositive"] = 3] = "HighlyPositive";
345
345
  SAWWinSoundType[SAWWinSoundType["NoSound"] = 4] = "NoSound";
346
+ SAWWinSoundType[SAWWinSoundType["Custom"] = 5] = "Custom";
346
347
  })(exports.SAWWinSoundType || (exports.SAWWinSoundType = {}));
347
348
  var SAWWinSoundFiles = (_SAWWinSoundFiles = {}, _SAWWinSoundFiles[exports.SAWWinSoundType.NoSound] = null, _SAWWinSoundFiles[exports.SAWWinSoundType.Disappointing] = "saw-disappointed.m4a", _SAWWinSoundFiles[exports.SAWWinSoundType.Positive] = "saw-positive.m4a", _SAWWinSoundFiles[exports.SAWWinSoundType.HighlyPositive] = "saw-highly-positive.m4a", _SAWWinSoundFiles);
348
349