@smartico/public-api 0.0.186 → 0.0.188

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.
@@ -403,13 +403,15 @@ const SAWTemplatesTransform = items => {
403
403
  acknowledge_action_title: p.saw_prize_ui_definition.acknowledge_action_title,
404
404
  acknowledge_dp_additional: p.saw_prize_ui_definition.acknowledge_dp_additional,
405
405
  acknowledge_action_title_additional: p.saw_prize_ui_definition.acknowledge_action_title_additional,
406
+ out_of_stock_message: p.saw_prize_ui_definition.out_of_stock_message,
406
407
  pool: p.pool,
407
408
  pool_initial: p.pool_initial,
408
409
  wins_count: p.wins_count,
409
410
  weekdays: p.weekdays,
410
411
  active_from_ts: p.active_from_ts,
411
412
  active_till_ts: p.active_till_ts,
412
- relative_period_timezone: p.relative_period_timezone
413
+ relative_period_timezone: p.relative_period_timezone,
414
+ is_surcharge: p.is_surcharge
413
415
  };
414
416
  return y;
415
417
  })
@@ -778,7 +780,8 @@ const StoreItemTransform = items => {
778
780
  type: StoreItemTypeNamed(r.itemTypeId),
779
781
  can_buy: r.canBuy,
780
782
  category_ids: (_r$categoryIds = r.categoryIds) != null ? _r$categoryIds : [],
781
- pool: r.shopPool
783
+ pool: r.shopPool,
784
+ custom_data: IntUtils.JsonOrText(r.itemPublicMeta.custom_data)
782
785
  };
783
786
  return x;
784
787
  });