@elyx-code/project-logic-tree 0.0.5994 → 0.0.5995

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.
@@ -92,6 +92,8 @@ export declare enum EntityInstanceErrorCode {
92
92
  WritingToIncompatibleType = "writing-to-incompatible-type",
93
93
  InvalidPropertiesCombination = "invalid-properties-combination",
94
94
  DisconnectedCallableEntity = "disconnected-callable-entity",
95
+ VariableReadsValueAndInternalCall = "variable-reads-value-and-internal-call",
96
+ VariableWritesValuesAndInternalCall = "variable-writes-values-and-internal-call",
95
97
  VariableHasInputsAndInternalCall = "variable-has-inputs-and-internal-calls",
96
98
  VariableHasOutputsAndInternalCall = "variable-has-outputs-and-internal-call",
97
99
  VariableIsCalledAndHasInternalCall = "variable-is-called-and-has-internal-call",
@@ -0,0 +1 @@
1
+ export {};
@@ -126,5 +126,9 @@ export declare class VariableDeclarationState implements IVariableDeclaration, B
126
126
  setDataType(dataType: DataTypeState): VariableDeclarationState;
127
127
  removeDataType(): VariableDeclarationState;
128
128
  getDataType(): DataTypeState | null;
129
+ getUnusedInputs(): VariableInputMapState[];
130
+ getUnusedOutputs(): VariableOutputMapState[];
131
+ getUsedInputs(): VariableInputMapState[];
132
+ getUsedOutputs(): VariableOutputMapState[];
129
133
  }
130
134
  export type VariableDeclarationPayloadUnion = VariableDeclarationTypesUnion | VariableDeclarationState;
@@ -122,5 +122,9 @@ export declare class VariableInstanceState implements IVariableInstance, BaseSta
122
122
  generateUnusedInputs(): VariableInputMapState[];
123
123
  generateUnusedOutputs(): VariableOutputMapState[];
124
124
  getDataType(): DataTypeState | null;
125
+ getUnusedInputs(): VariableInputMapState[];
126
+ getUnusedOutputs(): VariableOutputMapState[];
127
+ getUsedInputs(): VariableInputMapState[];
128
+ getUsedOutputs(): VariableOutputMapState[];
125
129
  }
126
130
  export type VariableInstancePayloadUnion = VariableInstanceTypesUnion | VariableInstanceState;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.5994",
3
+ "version": "0.0.5995",
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",