@budibase/server 2.5.6-alpha.17 → 2.5.6-alpha.19
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/builder/assets/{index.386f6ed1.js → index.0cdfc201.js} +213 -213
- package/builder/index.html +1 -1
- package/dist/api/controllers/query/index.js +2 -2
- package/dist/package.json +7 -7
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/api/controllers/query/index.ts +2 -2
package/builder/index.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap"
|
|
10
10
|
rel="stylesheet" />
|
|
11
|
-
<script type="module" crossorigin src="/builder/assets/index.
|
|
11
|
+
<script type="module" crossorigin src="/builder/assets/index.0cdfc201.js"></script>
|
|
12
12
|
<link rel="stylesheet" href="/builder/assets/index.7ec21ee2.css">
|
|
13
13
|
</head>
|
|
14
14
|
|
|
@@ -237,7 +237,7 @@ function execute(ctx, opts = { rowsOnly: false, isAutomation: false }) {
|
|
|
237
237
|
},
|
|
238
238
|
};
|
|
239
239
|
const runFn = () => Runner.run(inputs);
|
|
240
|
-
const { rows, pagination, extra } = yield pro_1.quotas.addQuery(runFn, {
|
|
240
|
+
const { rows, pagination, extra, info } = yield pro_1.quotas.addQuery(runFn, {
|
|
241
241
|
datasourceId: datasource._id,
|
|
242
242
|
});
|
|
243
243
|
// remove the raw from execution incase transformer being used to hide data
|
|
@@ -248,7 +248,7 @@ function execute(ctx, opts = { rowsOnly: false, isAutomation: false }) {
|
|
|
248
248
|
ctx.body = rows;
|
|
249
249
|
}
|
|
250
250
|
else {
|
|
251
|
-
ctx.body = Object.assign({ data: rows, pagination }, extra);
|
|
251
|
+
ctx.body = Object.assign(Object.assign({ data: rows, pagination }, extra), info);
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
catch (err) {
|
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/server",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "2.5.6-alpha.
|
|
4
|
+
"version": "2.5.6-alpha.18",
|
|
5
5
|
"description": "Budibase Web Server",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"license": "GPL-3.0",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@apidevtools/swagger-parser": "10.0.3",
|
|
48
|
-
"@budibase/backend-core": "2.5.6-alpha.
|
|
49
|
-
"@budibase/client": "2.5.6-alpha.
|
|
50
|
-
"@budibase/pro": "2.5.6-alpha.
|
|
51
|
-
"@budibase/shared-core": "2.5.6-alpha.
|
|
52
|
-
"@budibase/string-templates": "2.5.6-alpha.
|
|
53
|
-
"@budibase/types": "2.5.6-alpha.
|
|
48
|
+
"@budibase/backend-core": "2.5.6-alpha.18",
|
|
49
|
+
"@budibase/client": "2.5.6-alpha.18",
|
|
50
|
+
"@budibase/pro": "2.5.6-alpha.18",
|
|
51
|
+
"@budibase/shared-core": "2.5.6-alpha.18",
|
|
52
|
+
"@budibase/string-templates": "2.5.6-alpha.18",
|
|
53
|
+
"@budibase/types": "2.5.6-alpha.18",
|
|
54
54
|
"@bull-board/api": "3.7.0",
|
|
55
55
|
"@bull-board/koa": "3.9.4",
|
|
56
56
|
"@elastic/elasticsearch": "7.10.0",
|