@aiconomy/aico-components 0.0.197 → 0.0.202

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.
@@ -13804,10 +13804,11 @@ async function fetchNewsArticles(api, page, size, signal, newsChannels = [], new
13804
13804
  ? 'news'
13805
13805
  : api.accessToken
13806
13806
  ? latestNews
13807
- ? `aico-shops/1/latest-news-resource?allBrands=${allBrands}`
13807
+ ? `aico-shops/1/latest-news-resource`
13808
13808
  : 'aico-shops/1/news-resource'
13809
13809
  : '';
13810
13810
  const queryParams = new URLSearchParams();
13811
+ queryParams.set('allBrands', `${allBrands}`);
13811
13812
  queryParams.set('page[number]', String(page));
13812
13813
  queryParams.set('page[size]', String(size));
13813
13814
  if (api.bearerToken) {