@ronin/compiler 0.17.4-corny-ron-1099-experimental-384 → 0.17.4-leo-ron-1099-experimental-385
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/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2019,8 +2019,9 @@ var transformMetaQuery = (models, dependencyStatements, statementParams, query,
|
|
2019
2019
|
newSlug,
|
2020
2020
|
Object.getOwnPropertyDescriptor(targetEntities, slug)
|
2021
2021
|
);
|
2022
|
+
Object.assign(targetEntities[newSlug], entityValue);
|
2022
2023
|
delete targetEntities[slug];
|
2023
|
-
const value = prepareStatementValue(statementParams,
|
2024
|
+
const value = prepareStatementValue(statementParams, targetEntities[newSlug]);
|
2024
2025
|
json = `json_insert(json_remove(${field}, '$.${slug}'), '$.${newSlug}', ${value})`;
|
2025
2026
|
} else {
|
2026
2027
|
Object.assign(targetEntities[slug], jsonValue);
|
package/package.json
CHANGED