@contentful/experiences-core 1.12.0-dev-20240816T2200-8ea4d09.0 → 1.12.1-prerelease-20240821T2336-6c0f14a.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 +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -3311,7 +3311,7 @@ const fetchAllEntries = async ({ client, ids, locale, skip = 0, limit = 100, res
|
|
|
3311
3311
|
};
|
|
3312
3312
|
}
|
|
3313
3313
|
const query = { 'sys.id[in]': ids, locale, limit, skip };
|
|
3314
|
-
const { items, includes, total: responseTotal
|
|
3314
|
+
const { items, includes, total: responseTotal } = await client.getEntries({ ...query });
|
|
3315
3315
|
responseItems.push(...items);
|
|
3316
3316
|
responseIncludes?.Entry?.push(...(includes?.Entry || []));
|
|
3317
3317
|
responseIncludes?.Asset?.push(...(includes?.Asset || []));
|