@smartico/public-api 0.0.312 → 0.0.313

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.
@@ -821,7 +821,8 @@ const InboxMessagesTransform = items => {
821
821
  message_guid: item.engagement_uid,
822
822
  read: item.is_read,
823
823
  favorite: item.is_starred,
824
- category_id: item.category_id
824
+ category_id: item.category_id,
825
+ expire_on_dt: item.expire_on_dt
825
826
  };
826
827
  return x;
827
828
  });
@@ -842,6 +843,7 @@ const InboxMessageBodyTransform = item => {
842
843
  }));
843
844
  }
844
845
  x.html_body = (item == null ? void 0 : item.html_body) || null;
846
+ x.custom_data = IntUtils.JsonOrText(item == null ? void 0 : item.custom_data);
845
847
  }
846
848
  return x;
847
849
  };