@elyx-code/project-logic-tree 0.0.6091 → 0.0.6094
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.
- package/dist/definitions/built-in-base-entities/entities/index.d.ts +0 -1
- package/dist/definitions/built-in-base-entities/entities/persisted/properties.d.ts +1 -20
- package/dist/definitions/built-in-base-entities/ids.d.ts +0 -3
- package/dist/definitions/mock/default-mock/entities/animal.d.ts +1 -1
- package/dist/definitions/mock/default-mock/entities/base-table/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/base-table/ids.d.ts +2 -0
- package/dist/definitions/mock/default-mock/entities/base-table/index.d.ts +2 -0
- package/dist/definitions/mock/default-mock/entities/base-table/properties.d.ts +23 -0
- package/dist/definitions/mock/default-mock/entities/plant.d.ts +12 -0
- package/dist/definitions/types/property.d.ts +10 -4
- package/dist/index.js +7503 -7352
- package/dist/index.umd.cjs +147 -147
- package/dist/tree/state/error.d.ts +1 -0
- package/dist/tree/state/property/property.d.ts +1 -0
- package/dist/tree/state/search/search.d.ts +1 -0
- package/dist/tree/state/search/search.test.d.ts +1 -0
- package/package.json +1 -1
|
@@ -69,6 +69,7 @@ export declare enum EntityGenerationErrorCode {
|
|
|
69
69
|
InvalidParentRelationType = "invalid-parent-relation-type"
|
|
70
70
|
}
|
|
71
71
|
export declare enum EntityInstanceErrorCode {
|
|
72
|
+
NoPrimaryKeyProperty = "no-primary-key-property",
|
|
72
73
|
ScopeWithoutLogic = "scope-without-logic",
|
|
73
74
|
ExtendingAbstractEntity = "extending-abstract-entity",
|
|
74
75
|
ImplementingNonAbstractEntity = "implementing-non-abstract-entity",
|
|
@@ -23,6 +23,7 @@ export declare class PropertyState implements IProperty, UserManagedEntityStateF
|
|
|
23
23
|
required: boolean;
|
|
24
24
|
readonly type: EntityType.Property;
|
|
25
25
|
hidden: boolean;
|
|
26
|
+
primary: boolean;
|
|
26
27
|
dataType: DataTypeState | null;
|
|
27
28
|
implements: PropertyState | null;
|
|
28
29
|
project: ProjectState;
|
|
@@ -111,5 +111,6 @@ export declare class SearchState implements ISearch, BaseState, UserManagedEntit
|
|
|
111
111
|
getErrors(): EntityError[];
|
|
112
112
|
getShallowErrors(): EntityError[];
|
|
113
113
|
clone(_?: EntryPointEntityState): SearchState;
|
|
114
|
+
syncInputMaps(): IChangeSet<SearchState>;
|
|
114
115
|
}
|
|
115
116
|
export type SearchPayloadUnion = SearchState | SearchTypesUnion;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6094",
|
|
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",
|