@smartico/public-api 0.0.205 → 0.0.206

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.
@@ -16,4 +16,5 @@ export interface SAWPrize {
16
16
  active_till_ts?: number;
17
17
  relative_period_timezone?: number;
18
18
  is_surcharge?: boolean;
19
+ is_deleted?: boolean;
19
20
  }
@@ -40,6 +40,7 @@ export interface TMiniGamePrize {
40
40
  active_till_ts?: number;
41
41
  relative_period_timezone?: number;
42
42
  is_surcharge?: boolean;
43
+ is_deleted?: boolean;
43
44
  /** The custom data of the mini-game defined by operator in the BackOffice. Can be a JSON object, string or number */
44
45
  custom_data?: any;
45
46
  /** Prize modifiers that will multiply by 2x, 5x or 10x the current total. This will not affect the final Prize Amount that will be awarded. */
package/dist/index.js CHANGED
@@ -434,6 +434,7 @@ var SAWTemplatesTransform = function SAWTemplatesTransform(items) {
434
434
  active_till_ts: p.active_till_ts,
435
435
  relative_period_timezone: p.relative_period_timezone,
436
436
  is_surcharge: p.is_surcharge,
437
+ is_deleted: p.is_deleted,
437
438
  custom_data: IntUtils.JsonOrText(r.saw_template_ui_definition.custom_data),
438
439
  prize_modifiers: p.saw_prize_ui_definition.prize_modifiers,
439
440
  allow_split_decimal: p.saw_prize_ui_definition.allow_split_decimal