@elyx-code/project-logic-tree 0.0.6729 → 0.0.6731

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.d.ts CHANGED
@@ -9493,7 +9493,10 @@ export declare enum CanvasEntityOtherDisabledReason {
9493
9493
  Suggestion = "suggestion",
9494
9494
  CanvasGloballyDisabled = "canvas-globally-disabled",
9495
9495
  CannotInteractWithInputInVariableWithInternalCalls = "cannot-interact-with-input-in-variable-with-internal-calls",
9496
- CannotInteractWithOutputInVariableWithInternalCalls = "cannot-interact-with-output-in-variable-with-internal-calls"
9496
+ CannotInteractWithOutputInVariableWithInternalCalls = "cannot-interact-with-output-in-variable-with-internal-calls",
9497
+ PropertyIsConstantItsValueCantBeReset = "property-is-constant-its-value-cant-be-reset",
9498
+ CannotWriteValueOfGlobalVariableDeclaration = "cannot-write-value-of-global-variable-declaration",
9499
+ CannotReSetValueOfConstantVariable = "cannot-reset-value-of-constant-variable"
9497
9500
  }
9498
9501
 
9499
9502
  export declare type CanvasEntityState = InstalledProjectState | DefinitionEntityState | FunctionDeclarationState | GlobalEventState | VariableState | ConditionState | OperationState | FunctionCallState | ReturnStatementState | ContinueStatementState | BreakStatementState | LoopState | SearchState;
package/dist/index.js CHANGED
@@ -123856,7 +123856,7 @@ var Bj = /* @__PURE__ */ ((o) => (o.NotPartOfOngoingTest = "not-part-of-ongoing-
123856
123856
  const jki = Object.values(
123857
123857
  Bj
123858
123858
  );
123859
- var kj = /* @__PURE__ */ ((o) => (o.Suggestion = "suggestion", o.CanvasGloballyDisabled = "canvas-globally-disabled", o.CannotInteractWithInputInVariableWithInternalCalls = "cannot-interact-with-input-in-variable-with-internal-calls", o.CannotInteractWithOutputInVariableWithInternalCalls = "cannot-interact-with-output-in-variable-with-internal-calls", o))(kj || {});
123859
+ var kj = /* @__PURE__ */ ((o) => (o.Suggestion = "suggestion", o.CanvasGloballyDisabled = "canvas-globally-disabled", o.CannotInteractWithInputInVariableWithInternalCalls = "cannot-interact-with-input-in-variable-with-internal-calls", o.CannotInteractWithOutputInVariableWithInternalCalls = "cannot-interact-with-output-in-variable-with-internal-calls", o.PropertyIsConstantItsValueCantBeReset = "property-is-constant-its-value-cant-be-reset", o.CannotWriteValueOfGlobalVariableDeclaration = "cannot-write-value-of-global-variable-declaration", o.CannotReSetValueOfConstantVariable = "cannot-reset-value-of-constant-variable", o))(kj || {});
123860
123860
  const Kki = Object.values(
123861
123861
  kj
123862
123862
  );
@@ -179524,7 +179524,7 @@ function C3(o) {
179524
179524
  return o == null || o === "";
179525
179525
  }
179526
179526
  function $r(o) {
179527
- return o ? o.valueAsType ? !1 : C3(o.value) : !0;
179527
+ return o != null && o.valueAsType ? !1 : C3(o == null ? void 0 : o.value);
179528
179528
  }
179529
179529
  function nEi(o, p) {
179530
179530
  if (o === p || !o && !p)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6729",
3
+ "version": "0.0.6731",
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",