@budibase/server 2.7.31 → 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.8158a0d4.js → index.5e761588.js} +73 -73
- package/builder/index.html +1 -1
- package/dist/automation.js +2 -1
- package/dist/automation.js.map +2 -2
- package/dist/index.js +8 -1
- package/dist/index.js.map +3 -3
- package/dist/query.js +1 -1
- package/dist/query.js.map +2 -2
- package/package.json +8 -8
- package/src/api/controllers/table/external.ts +11 -0
- package/src/integrations/mongodb.ts +1 -1
package/dist/query.js
CHANGED
|
@@ -14979,7 +14979,7 @@ var MongoIntegration = class {
|
|
|
14979
14979
|
const self = this;
|
|
14980
14980
|
function interpolateObjectIds(json2) {
|
|
14981
14981
|
var _a;
|
|
14982
|
-
for (let field of Object.keys(json2)) {
|
|
14982
|
+
for (let field of Object.keys(json2 || {})) {
|
|
14983
14983
|
if (json2[field] instanceof Object) {
|
|
14984
14984
|
json2[field] = self.createObjectIds(json2[field]);
|
|
14985
14985
|
}
|