@smartico/public-api 0.0.232 → 0.0.233

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.232",
3
+ "version": "0.0.233",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -74,7 +74,7 @@ export const SAWTemplatesTransform = (items: SAWTemplate[]): TMiniGameTemplate[]
74
74
  custom_data: IntUtils.JsonOrText(p.saw_prize_ui_definition?.custom_data),
75
75
  prize_modifiers: p.saw_prize_ui_definition.prize_modifiers,
76
76
  allow_split_decimal: p.saw_prize_ui_definition.allow_split_decimal,
77
- hide_prize_from_history: p.saw_prize_ui_definition.hide_prize_from_history
77
+ hide_prize_from_history: p.saw_prize_ui_definition.hide_prize_from_history,
78
78
  };
79
79
  return y;
80
80
  }),
@@ -25,6 +25,5 @@ export interface SAWPrizeUI {
25
25
  prize_modifiers?: PrizeModifiers[]; // treasure hunt specific
26
26
  allow_split_decimal?: boolean; // treasure hunt specific
27
27
  hide_prize_from_history?: boolean;
28
-
29
-
28
+ hide_prize_till_won?: boolean;
30
29
  }
@@ -74,7 +74,7 @@ export interface TMiniGamePrize {
74
74
  /** When enabled, you can split prize value by decimal values */
75
75
  allow_split_decimal?: boolean;
76
76
  /** When enabled, you can hide prize from prize history */
77
- hide_prize_from_history?:boolean;
77
+ hide_prize_from_history?: boolean;
78
78
  }
79
79
 
80
80
  /**