@budibase/server 2.3.18-alpha.13 → 2.3.18-alpha.15
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.5db9630c.js → index.b0911233.js} +352 -351
- package/builder/assets/{index.d4b6aa43.css → index.ca370ee3.css} +2 -2
- package/builder/index.html +2 -2
- package/dist/api/controllers/row/ExternalRequest.js +2 -2
- package/dist/api/controllers/row/internalSearch.js +6 -450
- package/dist/api/controllers/row/utils.js +1 -3
- package/dist/app.js +2 -0
- package/dist/db/index.js +25 -2
- package/dist/db/utils.js +2 -5
- package/dist/db/views/staticViews.js +2 -1
- package/dist/integrations/base/sql.js +2 -2
- package/dist/integrations/googlesheets.js +1 -1
- package/dist/package.json +7 -6
- package/dist/startup.js +3 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/jest.config.ts +1 -0
- package/package.json +8 -7
- package/src/api/controllers/row/ExternalRequest.ts +2 -3
- package/src/api/controllers/row/internalSearch.ts +11 -524
- package/src/api/controllers/row/utils.ts +1 -2
- package/src/app.ts +2 -0
- package/src/db/index.ts +2 -2
- package/src/db/utils.ts +0 -4
- package/src/db/views/staticViews.ts +3 -3
- package/src/integrations/base/sql.ts +2 -2
- package/src/integrations/googlesheets.ts +1 -1
- package/src/startup.ts +4 -1
- package/dist/integrations/base/utils.js +0 -16
- package/src/integrations/base/utils.ts +0 -12
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.3.18-alpha.
|
|
4
|
+
"version": "2.3.18-alpha.14",
|
|
5
5
|
"description": "Budibase Web Server",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"license": "GPL-3.0",
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@apidevtools/swagger-parser": "10.0.3",
|
|
46
|
-
"@budibase/backend-core": "2.3.18-alpha.
|
|
47
|
-
"@budibase/client": "2.3.18-alpha.
|
|
48
|
-
"@budibase/pro": "2.3.18-alpha.
|
|
49
|
-
"@budibase/string-templates": "2.3.18-alpha.
|
|
50
|
-
"@budibase/types": "2.3.18-alpha.
|
|
46
|
+
"@budibase/backend-core": "2.3.18-alpha.14",
|
|
47
|
+
"@budibase/client": "2.3.18-alpha.14",
|
|
48
|
+
"@budibase/pro": "2.3.18-alpha.14",
|
|
49
|
+
"@budibase/string-templates": "2.3.18-alpha.14",
|
|
50
|
+
"@budibase/types": "2.3.18-alpha.14",
|
|
51
51
|
"@bull-board/api": "3.7.0",
|
|
52
52
|
"@bull-board/koa": "3.9.4",
|
|
53
53
|
"@elastic/elasticsearch": "7.10.0",
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
"koa-send": "5.0.0",
|
|
88
88
|
"koa-session": "5.12.0",
|
|
89
89
|
"koa-static": "5.0.0",
|
|
90
|
+
"koa-useragent": "^4.1.0",
|
|
90
91
|
"koa2-ratelimit": "1.1.1",
|
|
91
92
|
"lodash": "4.17.21",
|
|
92
93
|
"memorystream": "0.3.1",
|
package/dist/startup.js
CHANGED
|
@@ -141,6 +141,9 @@ function startup(app, server) {
|
|
|
141
141
|
// get the references to the queue promises, don't await as
|
|
142
142
|
// they will never end, unless the processing stops
|
|
143
143
|
let queuePromises = [];
|
|
144
|
+
// configure events to use the pro audit log write
|
|
145
|
+
// can't integrate directly into backend-core due to cyclic issues
|
|
146
|
+
queuePromises.push(backend_core_1.events.processors.init(pro.sdk.auditLogs.write));
|
|
144
147
|
queuePromises.push(automations.init());
|
|
145
148
|
queuePromises.push(initPro());
|
|
146
149
|
if (app) {
|