@contentful/experiences-core 1.16.1-dev-20240925T1613-f291cf8.0 → 1.16.1-dev-20240925T1623-e475e62.0

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.
package/dist/index.js CHANGED
@@ -3413,8 +3413,7 @@ const fetchAllEntries = async ({ client, ids, locale, skip = 0, limit = 100, res
3413
3413
  },
3414
3414
  };
3415
3415
  }
3416
- const query = { 'sys.id[in]': ids, locale, limit, skip };
3417
- const { items, includes, total: responseTotal, } = await client.withoutLinkResolution.getEntries({ ...query });
3416
+ const { items, includes, total: responseTotal, } = await client.getEntries({ 'sys.id[in]': ids, locale, limit, skip, include: 2 });
3418
3417
  responseItems.push(...items);
3419
3418
  responseIncludes?.Entry?.push(...(includes?.Entry || []));
3420
3419
  responseIncludes?.Asset?.push(...(includes?.Asset || []));