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

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.
@@ -78,5 +78,6 @@ export declare class BuiltInBaseEntityState implements BaseState, IBuiltInBaseEn
78
78
  deleted: [];
79
79
  };
80
80
  };
81
+ getAllInteractiveMethods(): FunctionDeclarationState[];
81
82
  }
82
83
  export type BuiltInBaseEntityPayloadUnion = BuiltInBaseEntityState | BuiltInBaseEntityTypesUnion;
@@ -125,5 +125,6 @@ export declare class CustomEntityState implements BaseState, UserManagedEntitySt
125
125
  deleted: [];
126
126
  };
127
127
  };
128
+ getAllInteractiveMethods(): FunctionDeclarationState[];
128
129
  }
129
130
  export type CustomEntityPayloadUnion = CustomEntityState | CustomEntityTypesUnion;
@@ -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 {};
@@ -58,5 +58,6 @@ export declare class PrimitiveEntityState implements BaseState, IPrimitiveEntity
58
58
  getErrors(): EntityError[];
59
59
  getShallowErrors(): EntityError[];
60
60
  clone(): PrimitiveEntityState;
61
+ getAllInteractiveMethods(): FunctionDeclarationState[];
61
62
  }
62
63
  export type PrimitiveEntityPayloadUnion = PrimitiveEntityState | PrimitiveEntityTypesUnion;
@@ -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.5996",
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",