@smartico/public-api 0.0.118 → 0.0.119

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.
@@ -9,6 +9,7 @@ export interface SAWPrizeUI {
9
9
  acknowledge_type: SAWAcknowledgeType;
10
10
  acknowledge_dp?: string;
11
11
  font_size?: number;
12
+ font_size_mobile?: number;
12
13
  sound_type: SAWWinSoundType;
13
14
  icon?: string;
14
15
  replace_name_with_image?: boolean;
@@ -15,8 +15,10 @@ export interface TMiniGamePrize {
15
15
  prize_type: MiniGamePrizeTypeName;
16
16
  /** Numeric value of the prize in case it's pints or spin type */
17
17
  prize_value?: number;
18
- /** Custom font size for the prize */
18
+ /** Custom font size for the prize (desktop) */
19
19
  font_size?: number;
20
+ /** Custom font size for the prize (mobile) */
21
+ font_size_mobile?: number;
20
22
  /** The URL of the icon of the prize */
21
23
  icon?: string;
22
24
  position: number;
package/dist/index.js CHANGED
@@ -304,6 +304,7 @@ var SAWTemplatesTransform = function SAWTemplatesTransform(items) {
304
304
  prize_type: MiniGamePrizeTypeNamed(p.prize_type_id),
305
305
  prize_value: p.prize_value,
306
306
  font_size: p.saw_prize_ui_definition.font_size,
307
+ font_size_mobile: p.saw_prize_ui_definition.font_size_mobile,
307
308
  icon: p.saw_prize_ui_definition.icon,
308
309
  position: p.saw_prize_ui_definition.position,
309
310
  aknowledge_message: p.saw_prize_ui_definition.aknowledge_message,