GuidesAPI ReferenceRelease Notes
HomeLog InHome
Release Notes

0.19.0 - Web

Features

  1. Recommendation data source - new data source type ("recommendations")
    For example -
const forYouDataSource = BlazeSDK.DataSourceBuilder().recommendations({
  recommendations: {
    forYou: {
			anyLabelFilter: ['test'], // Only labels to show
      promotedLabels: ['featured'], // Order these labels on top
    },
  });
  
const trendingDataSource = BlazeSDK.DataSourceBuilder().recommendations({
  recommendations: {
    trending: {
			anyLabelFilter: ['test'], // Only labels to show
    },
 });