@elyx-code/project-logic-tree 0.0.7001 → 0.0.7003

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
@@ -104716,7 +104716,7 @@ This is likely an incorrect strategy, either the '${this.type}' entity doesn't n
104716
104716
  i,
104717
104717
  r
104718
104718
  ), c = on(this, a), e = this.toMeta();
104719
- this.name = a.name !== void 0 ? a.name : e.name, this.autogeneration = a.autogeneration !== void 0 ? a.autogeneration : e.autogeneration, this.value = a.value !== void 0 ? a.value : e.value, this.rawString = a.rawString !== void 0 ? a.rawString : e.rawString;
104719
+ this.name = a.name !== void 0 ? a.name : e.name, this.autogeneration = a.autogeneration !== void 0 ? a.autogeneration : e.autogeneration, this.value = a.value !== void 0 ? a.value : e.value, a.rawString !== void 0 ? this.rawString = a.rawString : a.value !== void 0 && typeof a.value == "string" ? this.rawString = a.value : this.rawString = e.rawString;
104720
104720
  const f = i.valueAsTypeSingle !== void 0 ? i.valueAsTypeSingle : this.valueAsTypeSingle ?? null, h = i.valueAsTypeList !== void 0 ? i.valueAsTypeList : this.valueAsTypeList ?? null;
104721
104721
  return (this.name !== fe.String || f !== null || h !== null && h.length > 0) && (this.rawString = null, a.rawString = null), super.baseMetaSync(a, this, r), a.deleted === !0 && !e.deleted ? r == null || r.add(this, W.Removed) : a.deleted === !1 && e.deleted ? r == null || r.add(this, W.Added) : c && (r == null || r.add(this, W.Updated)), r == null || r.attemptAutoclose("meta-sync", this.id), this;
104722
104722
  }
@@ -177408,20 +177408,24 @@ function _Z() {
177408
177408
  ]);
177409
177409
  }
177410
177410
  function zIi() {
177411
- return l0(Object.values(fe));
177411
+ return l0(
177412
+ Object.values(fe)
177413
+ );
177412
177414
  }
177413
177415
  function JIi() {
177414
177416
  return st({
177415
177417
  id: ze(),
177416
177418
  name: zIi(),
177417
177419
  type: at(d.LiteralValue),
177418
- value: _Z().nullable()
177420
+ value: _Z().nullable(),
177421
+ rawString: ze().optional().nullable()
177419
177422
  });
177420
177423
  }
177421
177424
  function YIi() {
177422
177425
  return JIi().merge(
177423
177426
  st({
177424
177427
  value: _Z().nullable().optional(),
177428
+ rawString: ze().optional().nullable(),
177425
177429
  valueAsTypeList: z_(ze()).nullable().optional(),
177426
177430
  valueAsTypeSingle: ze().nullable().optional()
177427
177431
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.7001",
3
+ "version": "0.0.7003",
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",