@elyx-code/project-logic-tree 0.0.6093 → 0.0.6095
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 +8560 -8459
- package/dist/index.umd.cjs +147 -147
- package/dist/tree/state/built-in-base-entity/built-in-base-entity.d.ts +1 -1
- package/dist/tree/state/custom-entity/custom-entity.d.ts +1 -1
- package/dist/tree/state/error.d.ts +1 -0
- package/dist/tree/state/primitive-entity/primitive-entity.d.ts +1 -1
- package/dist/tree/state/property/property.d.ts +1 -0
- package/dist/tree/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,25 +1,6 @@
|
|
|
1
|
-
import { IDataTypeReference, IPropertyReference, IPropertyTransfer,
|
|
1
|
+
import { IDataTypeReference, IPropertyReference, IPropertyTransfer, IBuiltInBaseEntityReference } from '../../..';
|
|
2
2
|
|
|
3
3
|
export declare const persistedBuiltInBaseEntityDatabasePropertyDataTypeRef: IDataTypeReference;
|
|
4
4
|
export declare const persistedBuiltInBaseEntityDatabasePropertyRef: IPropertyReference;
|
|
5
5
|
export declare const persistedBuiltInBaseEntityDatabasePropertyParentRef: IBuiltInBaseEntityReference;
|
|
6
6
|
export declare const persistedBuiltInBaseEntityDatabaseProperty: IPropertyTransfer;
|
|
7
|
-
export declare const persistedBuiltInBaseEntityIdentifierPropertyDataTypeRef: IDataTypeReference;
|
|
8
|
-
export declare const persistedBuiltInBaseEntityIdentifierPropertyRef: IPropertyReference;
|
|
9
|
-
export declare const persistedBuiltInBaseEntityIdentifierPropertyParentRef: IBuiltInBaseEntityReference;
|
|
10
|
-
export declare const persistedBuiltInBaseEntityIdentifierProperty: IPropertyTransfer;
|
|
11
|
-
export declare const persistedBuiltInBaseEntityDeletedAtPropertyDataTypeRef: IDataTypeReference;
|
|
12
|
-
export declare const persistedBuiltInBaseEntityDeletedAtPropertyRef: IPropertyReference;
|
|
13
|
-
export declare const persistedBuiltInBaseEntityDeletedAtPropertyDataType: IDataTypeTransfer;
|
|
14
|
-
export declare const persistedBuiltInBaseEntityDeletedAtPropertyParentRef: IBuiltInBaseEntityReference;
|
|
15
|
-
export declare const persistedBuiltInBaseEntityDeletedAtProperty: IPropertyTransfer;
|
|
16
|
-
export declare const persistedBuiltInBaseEntityCreatedAtPropertyDataTypeRef: IDataTypeReference;
|
|
17
|
-
export declare const persistedBuiltInBaseEntityCreatedAtPropertyRef: IPropertyReference;
|
|
18
|
-
export declare const persistedBuiltInBaseEntityCreatedAtPropertyDataType: IDataTypeTransfer;
|
|
19
|
-
export declare const persistedBuiltInBaseEntityCreatedAtPropertyParentRef: IBuiltInBaseEntityReference;
|
|
20
|
-
export declare const persistedBuiltInBaseEntityCreatedAtProperty: IPropertyTransfer;
|
|
21
|
-
export declare const persistedBuiltInBaseEntityUpdatedAtPropertyDataTypeRef: IDataTypeReference;
|
|
22
|
-
export declare const persistedBuiltInBaseEntityUpdatedAtPropertyRef: IPropertyReference;
|
|
23
|
-
export declare const persistedBuiltInBaseEntityUpdatedAtPropertyDataType: IDataTypeTransfer;
|
|
24
|
-
export declare const persistedBuiltInBaseEntityUpdatedAtPropertyParentRef: IBuiltInBaseEntityReference;
|
|
25
|
-
export declare const persistedBuiltInBaseEntityUpdatedAtProperty: IPropertyTransfer;
|
|
@@ -6,7 +6,7 @@ export declare const animalPrototypeDatabasePropertyParentRef: ICustomEntityRefe
|
|
|
6
6
|
export declare const animalPrototypeDatabaseProperty: IPropertyTransfer;
|
|
7
7
|
export declare const animalNamePropertyRef: IPropertyReference;
|
|
8
8
|
export declare const animalNamePropertyDataType: IDataTypeTransfer;
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const animalNamePropertyParentRef: ICustomEntityReference;
|
|
10
10
|
export declare const animalNameProperty: IPropertyTransfer;
|
|
11
11
|
export declare const mainProjectRefTen: IProjectReference;
|
|
12
12
|
export declare const animalPrototype: ICustomEntityTransfer;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { IDataTypeReference, IPropertyReference, IPropertyTransfer, IDataTypeTransfer, ICustomEntityReference } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const baseTableEntityDatabasePropertyDataTypeRef: IDataTypeReference;
|
|
4
|
+
export declare const baseTableEntityDatabasePropertyRef: IPropertyReference;
|
|
5
|
+
export declare const baseTableEntityIdentifierPropertyDataTypeRef: IDataTypeReference;
|
|
6
|
+
export declare const baseTableEntityIdentifierPropertyRef: IPropertyReference;
|
|
7
|
+
export declare const baseTableEntityIdentifierPropertyParentRef: ICustomEntityReference;
|
|
8
|
+
export declare const baseTableEntityIdentifierProperty: IPropertyTransfer;
|
|
9
|
+
export declare const baseTableEntityDeletedAtPropertyDataTypeRef: IDataTypeReference;
|
|
10
|
+
export declare const baseTableEntityDeletedAtPropertyRef: IPropertyReference;
|
|
11
|
+
export declare const baseTableEntityDeletedAtPropertyDataType: IDataTypeTransfer;
|
|
12
|
+
export declare const baseTableEntityDeletedAtPropertyParentRef: ICustomEntityReference;
|
|
13
|
+
export declare const baseTableEntityDeletedAtProperty: IPropertyTransfer;
|
|
14
|
+
export declare const baseTableEntityCreatedAtPropertyDataTypeRef: IDataTypeReference;
|
|
15
|
+
export declare const baseTableEntityCreatedAtPropertyRef: IPropertyReference;
|
|
16
|
+
export declare const baseTableEntityCreatedAtPropertyDataType: IDataTypeTransfer;
|
|
17
|
+
export declare const baseTableEntityCreatedAtPropertyParentRef: ICustomEntityReference;
|
|
18
|
+
export declare const baseTableEntityCreatedAtProperty: IPropertyTransfer;
|
|
19
|
+
export declare const baseTableEntityUpdatedAtPropertyDataTypeRef: IDataTypeReference;
|
|
20
|
+
export declare const baseTableEntityUpdatedAtPropertyRef: IPropertyReference;
|
|
21
|
+
export declare const baseTableEntityUpdatedAtPropertyDataType: IDataTypeTransfer;
|
|
22
|
+
export declare const baseTableEntityUpdatedAtPropertyParentRef: ICustomEntityReference;
|
|
23
|
+
export declare const baseTableEntityUpdatedAtProperty: IPropertyTransfer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ICustomEntityReference, ICustomEntityTransfer, IDataTypeReference, IDataTypeTransfer, IProjectReference, IPropertyReference, IPropertyTransfer } from '../../..';
|
|
2
|
+
|
|
3
|
+
export declare const plantPrototypeDatabasePropertyRef: IPropertyReference;
|
|
4
|
+
export declare const plantPrototypeDatabasePropertyDataTypeDefaultValueParentRef: IDataTypeReference;
|
|
5
|
+
export declare const plantPrototypeDatabasePropertyParentRef: ICustomEntityReference;
|
|
6
|
+
export declare const plantPrototypeDatabaseProperty: IPropertyTransfer;
|
|
7
|
+
export declare const plantNamePropertyRef: IPropertyReference;
|
|
8
|
+
export declare const plantNamePropertyDataType: IDataTypeTransfer;
|
|
9
|
+
export declare const plantNamePropertyParentRef: ICustomEntityReference;
|
|
10
|
+
export declare const plantNameProperty: IPropertyTransfer;
|
|
11
|
+
export declare const plantPrototypeParentRef: IProjectReference;
|
|
12
|
+
export declare const plantPrototype: ICustomEntityTransfer;
|
|
@@ -3,15 +3,16 @@ import { IBuiltInBaseEntity, ICustomEntity, ICustomEntityReference, IPrimitiveEn
|
|
|
3
3
|
export interface IProperty_base {
|
|
4
4
|
id: EntityId;
|
|
5
5
|
type: EntityType.Property;
|
|
6
|
-
private: boolean;
|
|
7
|
-
abstract: boolean;
|
|
8
|
-
static: boolean;
|
|
9
|
-
required: boolean;
|
|
10
6
|
}
|
|
11
7
|
export interface IProperty_meta extends IProperty_base, IGenericBase {
|
|
12
8
|
type: EntityType.Property;
|
|
13
9
|
index: number;
|
|
14
10
|
hidden: boolean;
|
|
11
|
+
private: boolean;
|
|
12
|
+
abstract: boolean;
|
|
13
|
+
static: boolean;
|
|
14
|
+
required: boolean;
|
|
15
|
+
primary: boolean;
|
|
15
16
|
}
|
|
16
17
|
export interface IPropertyTransfer extends IProperty_meta, IBaseVariableTransfer {
|
|
17
18
|
type: EntityType.Property;
|
|
@@ -20,6 +21,11 @@ export interface IPropertyTransfer extends IProperty_meta, IBaseVariableTransfer
|
|
|
20
21
|
}
|
|
21
22
|
export interface IPropertyGenerationTarget extends IProperty_base, IBaseVariableGenerationTarget {
|
|
22
23
|
type: EntityType.Property;
|
|
24
|
+
private?: boolean;
|
|
25
|
+
abstract?: boolean;
|
|
26
|
+
static?: boolean;
|
|
27
|
+
required?: boolean;
|
|
28
|
+
primary?: boolean;
|
|
23
29
|
implements: EntityId | null;
|
|
24
30
|
parent: EntityId;
|
|
25
31
|
}
|