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

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;
@@ -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;
@@ -22,6 +22,7 @@ export declare class PropertyState implements IProperty, UserManagedEntityStateF
22
22
  static: boolean;
23
23
  required: boolean;
24
24
  readonly type: EntityType.Property;
25
+ hidden: boolean;
25
26
  dataType: DataTypeState | null;
26
27
  implements: PropertyState | null;
27
28
  project: ProjectState;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.5995",
3
+ "version": "0.0.5997",
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",