@ronin/compiler 0.12.5 → 0.12.6-corny-ron-1071-experimental-259
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 +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -910,9 +910,9 @@ var transformMetaQuery = (models, dependencyStatements, statementParams, query)
|
|
910
910
|
parentModel: existingModel
|
911
911
|
}).main.statement;
|
912
912
|
});
|
913
|
-
|
914
|
-
statementParts.push(effectStatements.join("; "));
|
915
|
-
|
913
|
+
statementParts.push("BEGIN");
|
914
|
+
statementParts.push(`${effectStatements.join("; ")};`);
|
915
|
+
statementParts.push("END");
|
916
916
|
statement += ` ${statementParts.join(" ")}`;
|
917
917
|
}
|
918
918
|
dependencyStatements.push({ statement, params });
|
@@ -1656,9 +1656,9 @@ var Transaction = class {
|
|
1656
1656
|
}
|
1657
1657
|
}
|
1658
1658
|
if (isMeta && PLURAL_MODEL_ENTITIES_VALUES.includes(newSlug)) {
|
1659
|
-
newValue = Object.entries(newValue).map(([slug, attributes]) => {
|
1659
|
+
newValue = newValue ? Object.entries(newValue).map(([slug, attributes]) => {
|
1660
1660
|
return { slug, ...attributes };
|
1661
|
-
});
|
1661
|
+
}) : [];
|
1662
1662
|
}
|
1663
1663
|
records[usableRowIndex] = setProperty(
|
1664
1664
|
records[usableRowIndex],
|