@acorex/platform-generator 20.2.4-next.0 → 20.2.4-next.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform-generator",
3
- "version": "20.2.4-next.0",
3
+ "version": "20.2.4-next.1",
4
4
  "dependencies": {
5
5
  "@nx/devkit": "19.2.2",
6
6
  "tslib": "^2.3.0"
@@ -153,7 +153,7 @@ export async function sampleFactory(injector: Injector): Promise<AXPEntity | nul
153
153
  },
154
154
  list: {
155
155
  execute: async (e: any) => {
156
- return await dataService.query({ skip: e.skip, take: e.take, filter: e.filter, sort: e.sort });
156
+ return await dataService.query(e);
157
157
  },
158
158
  type: AXPEntityQueryType.List,
159
159
  },