0.19.0 - Web
September 30th, 2025
Features
- 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
},
});