@famgia/omnify-atlas 2.0.31 → 2.0.32
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.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -280,6 +280,7 @@ function diffPropertySnapshots(prev, curr) {
|
|
|
280
280
|
if (prev.onDelete !== curr.onDelete) modifications.push("onDelete");
|
|
281
281
|
if (prev.onUpdate !== curr.onUpdate) modifications.push("onUpdate");
|
|
282
282
|
if (prev.mappedBy !== curr.mappedBy) modifications.push("mappedBy");
|
|
283
|
+
if (JSON.stringify(prev.fields) !== JSON.stringify(curr.fields)) modifications.push("fields");
|
|
283
284
|
return modifications;
|
|
284
285
|
}
|
|
285
286
|
function diffIndexes(prev, curr) {
|