simple-strapi 1.0.0-alpha.19 → 1.0.0-alpha.20

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.
Files changed (2) hide show
  1. package/dist/client.js +1 -0
  2. package/package.json +1 -1
package/dist/client.js CHANGED
@@ -210,6 +210,7 @@ class Client {
210
210
  }
211
211
  const fetchPage = async (page = 1, acc = []) => {
212
212
  params.pagination = { page, pageSize: 100 };
213
+ params.filters = options.filters;
213
214
  if (pagination)
214
215
  params.pagination = { ...params.pagination, ...pagination };
215
216
  const requestURL = Client.getRequestURL({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simple-strapi",
3
- "version": "1.0.0-alpha.19",
3
+ "version": "1.0.0-alpha.20",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",