@budibase/server 2.7.32 → 2.7.33
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.129184ea.js → index.5e761588.js} +278 -278
- package/builder/index.html +1 -1
- package/dist/automation.js +1 -1
- package/dist/automation.js.map +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/query.js +1 -1
- package/dist/query.js.map +2 -2
- package/package.json +8 -8
- package/src/integrations/mongodb.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/server",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.33",
|
|
5
5
|
"description": "Budibase Web Server",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"license": "GPL-3.0",
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@apidevtools/swagger-parser": "10.0.3",
|
|
49
|
-
"@budibase/backend-core": "2.7.
|
|
50
|
-
"@budibase/client": "2.7.
|
|
51
|
-
"@budibase/pro": "2.7.
|
|
52
|
-
"@budibase/shared-core": "2.7.
|
|
53
|
-
"@budibase/string-templates": "2.7.
|
|
54
|
-
"@budibase/types": "2.7.
|
|
49
|
+
"@budibase/backend-core": "2.7.33",
|
|
50
|
+
"@budibase/client": "2.7.33",
|
|
51
|
+
"@budibase/pro": "2.7.33",
|
|
52
|
+
"@budibase/shared-core": "2.7.33",
|
|
53
|
+
"@budibase/string-templates": "2.7.33",
|
|
54
|
+
"@budibase/types": "2.7.33",
|
|
55
55
|
"@bull-board/api": "3.7.0",
|
|
56
56
|
"@bull-board/koa": "3.9.4",
|
|
57
57
|
"@elastic/elasticsearch": "7.10.0",
|
|
@@ -195,5 +195,5 @@
|
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
},
|
|
198
|
-
"gitHead": "
|
|
198
|
+
"gitHead": "36a5d6ebbe381fd2dc578abade0c4a06dd620740"
|
|
199
199
|
}
|
|
@@ -383,7 +383,7 @@ class MongoIntegration implements IntegrationBase {
|
|
|
383
383
|
createObjectIds(json: any): object {
|
|
384
384
|
const self = this
|
|
385
385
|
function interpolateObjectIds(json: any) {
|
|
386
|
-
for (let field of Object.keys(json)) {
|
|
386
|
+
for (let field of Object.keys(json || {})) {
|
|
387
387
|
if (json[field] instanceof Object) {
|
|
388
388
|
json[field] = self.createObjectIds(json[field])
|
|
389
389
|
}
|