@elyx-code/project-logic-tree 0.0.6234 → 0.0.6236

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.
@@ -16,6 +16,9 @@ export interface IDataType_base {
16
16
  parentRelationType?: DataTypeParentChildRelation;
17
17
  like?: boolean;
18
18
  implementationChooseOne?: boolean;
19
+ staticEntities?: boolean;
20
+ interactiveEntities?: boolean;
21
+ actionEntities?: boolean;
19
22
  }
20
23
  export interface IDataType_meta extends IGenericBase {
21
24
  type: EntityType.DataType;
@@ -26,6 +29,9 @@ export interface IDataType_meta extends IGenericBase {
26
29
  parentRelationType: DataTypeParentChildRelation | null;
27
30
  asType: boolean | null;
28
31
  isList: boolean | null;
32
+ staticEntities: boolean | null;
33
+ interactiveEntities: boolean | null;
34
+ actionEntities: boolean | null;
29
35
  }
30
36
  export interface IDataTypeTransfer extends IDataType_meta, IChildEntityTransfer {
31
37
  entity: IDefinitionEntityReference | DataTypeEntityTransferOption | null;