@elyx-code/project-logic-tree 0.0.6094 → 0.0.6096

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.
@@ -27,7 +27,7 @@ export declare class BuiltInBaseEntityState implements BaseState, IBuiltInBaseEn
27
27
  errors: EntityError[];
28
28
  project: ProjectState;
29
29
  constructor(initialEntityData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer, parentProjectState: ProjectState);
30
- get allBaseRelatedPropertiesFromExtendedAndImplementedEntities(): PropertyState[];
30
+ get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
31
31
  get extendedPropertiesFromOriginalParents(): PropertyState[];
32
32
  get implementedPropertiesFromOriginalParents(): PropertyState[];
33
33
  get extendedProperties(): PropertyState[];
@@ -52,7 +52,7 @@ export declare class CustomEntityState implements BaseState, UserManagedEntitySt
52
52
  errors: EntityGenerationError[];
53
53
  modifiedData: ICustomEntityGenerationTarget;
54
54
  };
55
- get allBaseRelatedPropertiesFromExtendedAndImplementedEntities(): PropertyState[];
55
+ get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
56
56
  get extendedPropertiesFromOriginalParents(): PropertyState[];
57
57
  get implementedPropertiesFromOriginalParents(): PropertyState[];
58
58
  get extendedProperties(): PropertyState[];
@@ -30,6 +30,7 @@ export declare class DataTypeState implements IDataType, UserManagedEntityStateF
30
30
  options?: string[];
31
31
  parentRelationType?: DataTypeParentChildRelation;
32
32
  like: boolean;
33
+ implementationChooseOne: boolean;
33
34
  defaultValue: PrimitiveValueState | null;
34
35
  entity: CustomEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | PrimitiveValueState | null;
35
36
  andChildrenGroup: DataTypeState[] | null;
@@ -25,7 +25,7 @@ export declare class PrimitiveEntityState implements BaseState, IPrimitiveEntity
25
25
  errors: EntityError[];
26
26
  project: ProjectState;
27
27
  constructor(initialEntityData: IPrimitiveEntity | IPrimitiveEntityTransfer, parentProjectState: ProjectState);
28
- get allBaseRelatedPropertiesFromExtendedAndImplementedEntities(): PropertyState[];
28
+ get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
29
29
  get extendedPropertiesFromOriginalParents(): PropertyState[];
30
30
  get implementedPropertiesFromOriginalParents(): PropertyState[];
31
31
  get extendedProperties(): PropertyState[];
@@ -23,7 +23,6 @@ export declare class PropertyState implements IProperty, UserManagedEntityStateF
23
23
  required: boolean;
24
24
  readonly type: EntityType.Property;
25
25
  hidden: boolean;
26
- primary: boolean;
27
26
  dataType: DataTypeState | null;
28
27
  implements: PropertyState | null;
29
28
  project: ProjectState;
@@ -80,7 +80,7 @@ export declare function flattenCustomEntityExtensionTypes(entity: CustomEntitySt
80
80
  export declare function flattenCustomEntityExtensions(entity: CustomEntityState): (BuiltInBaseEntityState | CustomEntityState)[];
81
81
  export declare function flattenCustomEntityImplementations(entity: CustomEntityState): (BuiltInBaseEntityState | CustomEntityState)[];
82
82
  export declare function flattenCustomEntityExtensionAndImplementationTypes(entity: CustomEntityState): (BaseEntityNames | EntityType.CustomEntity)[];
83
- export declare function getLowestPersistedEntityImplementation(entity: CustomEntityState): CustomEntityState;
83
+ export declare function getLowestPersistedEntityImplementation(entity: CustomEntityState): CustomEntityState | null;
84
84
  export declare function getExtendedBuiltInEntity(entity: CustomEntityState): BuiltInBaseEntityState | null;
85
85
  export declare function getImplementedBuiltInEntity(entity: CustomEntityState): BuiltInBaseEntityState | null;
86
86
  export declare function getExtendedCustomEntity(entity: CustomEntityState): CustomEntityState | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6094",
3
+ "version": "0.0.6096",
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",