@elyx-code/project-logic-tree 0.0.6894 → 0.0.6895

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 CHANGED
@@ -104963,7 +104963,7 @@ const ET = class ET extends W_ {
104963
104963
  const i = {};
104964
104964
  return this.properties.forEach((r) => {
104965
104965
  var e;
104966
- if (!zA(r))
104966
+ if (!zA(r) || !r.defaultValue)
104967
104967
  return;
104968
104968
  const a = le(r, this.project), c = r.codeName || Fc(r, this.project) || Ns(rr(a));
104969
104969
  i[c] = ((e = r.getDefaultValue()) == null ? void 0 : e.value) || null;
@@ -187075,7 +187075,7 @@ Alternatively you can update the parent data-type entity with 'update' action to
187075
187075
  const i = {};
187076
187076
  return this.properties.forEach((r) => {
187077
187077
  var e;
187078
- if (!zA(r))
187078
+ if (!zA(r) || !r.defaultValue)
187079
187079
  return;
187080
187080
  const a = le(r, this.project), c = r.codeName || Fc(r, this.project) || Ns(rr(a));
187081
187081
  i[c] = ((e = r.getDefaultValue()) == null ? void 0 : e.value) || null;
@@ -187091,7 +187091,7 @@ Alternatively you can update the parent data-type entity with 'update' action to
187091
187091
  r,
187092
187092
  !0
187093
187093
  )) == null ? void 0 : f.value;
187094
- i[c] = (e == null ? void 0 : e.value) || null;
187094
+ e && (i[c] = (e == null ? void 0 : e.value) || null);
187095
187095
  }), i;
187096
187096
  }
187097
187097
  setAdditionalPropertiesDataType(i, r = this.project.addChangeSet(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6894",
3
+ "version": "0.0.6895",
4
4
  "author": "Sergio Herrero",
5
5
  "license": "UNLICENSED",
6
6
  "description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",