@budibase/server 2.7.29 → 2.7.31
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.062f84ed.js → index.8158a0d4.js} +182 -182
- package/builder/assets/{index.d9b46807.css → index.d6eab42b.css} +1 -1
- package/builder/index.html +2 -2
- package/dist/automation.js +3 -1
- package/dist/automation.js.map +2 -2
- package/dist/index.js +3 -1
- package/dist/index.js.map +2 -2
- package/dist/query.js +3 -1
- package/dist/query.js.map +2 -2
- package/package.json +8 -8
- package/src/sdk/app/datasources/datasources.ts +4 -1
package/dist/query.js
CHANGED
|
@@ -23351,11 +23351,13 @@ function checkDatasourceTypes(schema, config) {
|
|
|
23351
23351
|
async function enrichDatasourceWithValues(datasource2) {
|
|
23352
23352
|
const cloned = (0, import_fp.cloneDeep)(datasource2);
|
|
23353
23353
|
const env = await getEnvironmentVariables2();
|
|
23354
|
+
const { entities, ...clonedWithoutEntities } = cloned;
|
|
23354
23355
|
const processed = (0, import_string_templates.processObjectSync)(
|
|
23355
|
-
|
|
23356
|
+
clonedWithoutEntities,
|
|
23356
23357
|
{ env },
|
|
23357
23358
|
{ onlyFound: true }
|
|
23358
23359
|
);
|
|
23360
|
+
processed.entities = entities;
|
|
23359
23361
|
const definition = await getDefinition(processed.source);
|
|
23360
23362
|
processed.config = checkDatasourceTypes(definition, processed.config);
|
|
23361
23363
|
return {
|