@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/builder/index.html
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
<link href="/builder/fonts/source-sans-pro/600.css" rel="stylesheet" />
|
|
10
10
|
<link href="/builder/fonts/source-sans-pro/700.css" rel="stylesheet" />
|
|
11
11
|
<link href="/builder/fonts/remixicon.css" rel="stylesheet" />
|
|
12
|
-
<script type="module" crossorigin src="/builder/assets/index.
|
|
13
|
-
<link rel="stylesheet" href="/builder/assets/index.
|
|
12
|
+
<script type="module" crossorigin src="/builder/assets/index.8158a0d4.js"></script>
|
|
13
|
+
<link rel="stylesheet" href="/builder/assets/index.d6eab42b.css">
|
|
14
14
|
</head>
|
|
15
15
|
|
|
16
16
|
<body id="app">
|
package/dist/automation.js
CHANGED
|
@@ -25241,11 +25241,13 @@ function checkDatasourceTypes(schema, config) {
|
|
|
25241
25241
|
async function enrichDatasourceWithValues(datasource2) {
|
|
25242
25242
|
const cloned = (0, import_fp.cloneDeep)(datasource2);
|
|
25243
25243
|
const env = await getEnvironmentVariables2();
|
|
25244
|
+
const { entities, ...clonedWithoutEntities } = cloned;
|
|
25244
25245
|
const processed = (0, import_string_templates.processObjectSync)(
|
|
25245
|
-
|
|
25246
|
+
clonedWithoutEntities,
|
|
25246
25247
|
{ env },
|
|
25247
25248
|
{ onlyFound: true }
|
|
25248
25249
|
);
|
|
25250
|
+
processed.entities = entities;
|
|
25249
25251
|
const definition26 = await getDefinition(processed.source);
|
|
25250
25252
|
processed.config = checkDatasourceTypes(definition26, processed.config);
|
|
25251
25253
|
return {
|