@open-mercato/shared 0.6.8-develop.7030.1.b84302d973 → 0.6.8-develop.7031.1.005201cd70

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.
@@ -1,2 +1,2 @@
1
- [build:shared] found 263 entry points
1
+ [build:shared] found 264 entry points
2
2
  [build:shared] built successfully
@@ -1364,6 +1364,7 @@ function makeCrudRoute(opts) {
1364
1364
  page: page.page || requestedPage,
1365
1365
  pageSize: page.pageSize || requestedPageSize,
1366
1366
  totalPages: Math.ceil(res.total / (Number(page.pageSize) || 1)),
1367
+ ...res.meta?.listCountCapWarning ? { totalIsCapped: true } : {},
1367
1368
  ...res.meta ? { meta: res.meta } : {}
1368
1369
  };
1369
1370
  await opts.hooks?.afterList?.(payload2, { ...ctx, query: validated });