owl-cli 6.186.0 → 6.187.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.
@@ -92,6 +92,7 @@ function getExportConfig(spec, key) {
92
92
  function getRows(modelService, spec) {
93
93
 
94
94
  var meta = spec['#meta'];
95
+ var maxRows = Number(meta.maxRows) || 10000;
95
96
  var isPublic = meta && meta.isPublic;
96
97
  var tableId = 'owl_' + spec._t;
97
98
  var ctx = JSON.parse(env);
@@ -124,7 +125,7 @@ function getRows(modelService, spec) {
124
125
 
125
126
  delete searchArgs.recycleBin;
126
127
 
127
- var pageSize = 10000;
128
+ var pageSize = Number(maxRows);
128
129
  var from = 0;
129
130
  var sort = {
130
131
  owl_modifyTime: {order: "desc"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "owl-cli",
3
- "version": "6.186.0",
3
+ "version": "6.187.0",
4
4
  "main": "index.js",
5
5
  "preferGlobal": true,
6
6
  "bin": {