@elyx-code/project-logic-tree 0.0.6095 → 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.
- package/dist/definitions/built-in-base-entities/entities/persisted/properties.d.ts +11 -1
- package/dist/definitions/built-in-base-entities/ids.d.ts +3 -0
- package/dist/definitions/mock/default-mock/entities/company/properties.d.ts +5 -1
- package/dist/definitions/mock/default-mock/entities/product.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/user.d.ts +4 -0
- package/dist/definitions/types/data-type.d.ts +1 -0
- package/dist/definitions/types/property.d.ts +0 -2
- package/dist/index.js +8388 -8166
- package/dist/index.umd.cjs +132 -132
- package/dist/tree/state/data-type/data-type.d.ts +1 -0
- package/dist/tree/state/property/property.d.ts +0 -1
- package/package.json +1 -1
|
@@ -1,6 +1,16 @@
|
|
|
1
|
-
import { IDataTypeReference, IPropertyReference, IPropertyTransfer, IBuiltInBaseEntityReference } from '../../..';
|
|
1
|
+
import { IDataTypeReference, IPropertyReference, IPropertyTransfer, IDataTypeTransfer, 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 persistedBuiltInBaseEntityPrimaryKeyPropertyNumberDataTypeOptionParentRef: IDataTypeReference;
|
|
8
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyNumberDataTypeOption: IDataTypeTransfer;
|
|
9
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyStringDataTypeOptionParentRef: IDataTypeReference;
|
|
10
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyStringDataTypeOption: IDataTypeTransfer;
|
|
11
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyUUIDDataTypeOptionParentRef: IDataTypeReference;
|
|
12
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyUUIDDataTypeOption: IDataTypeTransfer;
|
|
13
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyRef: IPropertyReference;
|
|
14
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyDataType: IDataTypeTransfer;
|
|
15
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyPropertyParentRef: IBuiltInBaseEntityReference;
|
|
16
|
+
export declare const persistedBuiltInBaseEntityPrimaryKeyProperty: IPropertyTransfer;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ICustomEntityReference, IDataTypeTransfer, IPropertyReference, IPropertyTransfer } from '../../../..';
|
|
1
|
+
import { ICustomEntityReference, IDataTypeReference, IDataTypeTransfer, IPropertyReference, IPropertyTransfer } from '../../../..';
|
|
2
2
|
|
|
3
3
|
export declare const companyNamePropertyRef: IPropertyReference;
|
|
4
4
|
export declare const companyNamePropertyDataType: IDataTypeTransfer;
|
|
@@ -16,3 +16,7 @@ export declare const employeesListPropertyRef: IPropertyReference;
|
|
|
16
16
|
export declare const employeesListPropertyDataType: IDataTypeTransfer;
|
|
17
17
|
export declare const companyPrototypeRefTwo: ICustomEntityReference;
|
|
18
18
|
export declare const employeesListProperty: IPropertyTransfer;
|
|
19
|
+
export declare const companyPrototypePrimaryKeyPropertyDataTypeRef: IDataTypeReference;
|
|
20
|
+
export declare const companyPrototypePrimaryKeyPropertyRef: IPropertyReference;
|
|
21
|
+
export declare const companyPrototypePrimaryKeyPropertyParentRef: ICustomEntityReference;
|
|
22
|
+
export declare const companyPrototypePrimaryKeyProperty: IPropertyTransfer;
|
|
@@ -9,4 +9,8 @@ export declare const productNamePropertyDataType: IDataTypeTransfer;
|
|
|
9
9
|
export declare const productPrototypeRef: ICustomEntityReference;
|
|
10
10
|
export declare const productNameProperty: IPropertyTransfer;
|
|
11
11
|
export declare const mainProjectRefNine: IProjectReference;
|
|
12
|
+
export declare const productPrototypePrimaryKeyPropertyDataTypeRef: IDataTypeReference;
|
|
13
|
+
export declare const productPrototypePrimaryKeyPropertyRef: IPropertyReference;
|
|
14
|
+
export declare const productPrototypePrimaryKeyPropertyParentRef: ICustomEntityReference;
|
|
15
|
+
export declare const productPrototypePrimaryKeyProperty: IPropertyTransfer;
|
|
12
16
|
export declare const productPrototype: ICustomEntityTransfer;
|
|
@@ -5,4 +5,8 @@ export declare const userPrototypeDatabasePropertyRef: IPropertyReference;
|
|
|
5
5
|
export declare const userPrototypeDatabasePropertyParentRef: ICustomEntityReference;
|
|
6
6
|
export declare const userPrototypeDatabaseProperty: IPropertyTransfer;
|
|
7
7
|
export declare const userPrototypeParentRef: IProjectReference;
|
|
8
|
+
export declare const userPrototypePrimaryKeyPropertyDataTypeRef: IDataTypeReference;
|
|
9
|
+
export declare const userPrototypePrimaryKeyPropertyRef: IPropertyReference;
|
|
10
|
+
export declare const userPrototypePrimaryKeyPropertyParentRef: ICustomEntityReference;
|
|
11
|
+
export declare const userPrototypePrimaryKeyProperty: IPropertyTransfer;
|
|
8
12
|
export declare const userPrototype: ICustomEntityTransfer;
|
|
@@ -17,6 +17,7 @@ export interface IDataType_base {
|
|
|
17
17
|
options?: string[];
|
|
18
18
|
parentRelationType?: DataTypeParentChildRelation;
|
|
19
19
|
like?: boolean;
|
|
20
|
+
implementationChooseOne?: boolean;
|
|
20
21
|
}
|
|
21
22
|
export interface IDataType_meta extends IGenericBase, IDataType_base {
|
|
22
23
|
type: EntityType.DataType;
|
|
@@ -12,7 +12,6 @@ export interface IProperty_meta extends IProperty_base, IGenericBase {
|
|
|
12
12
|
abstract: boolean;
|
|
13
13
|
static: boolean;
|
|
14
14
|
required: boolean;
|
|
15
|
-
primary: boolean;
|
|
16
15
|
}
|
|
17
16
|
export interface IPropertyTransfer extends IProperty_meta, IBaseVariableTransfer {
|
|
18
17
|
type: EntityType.Property;
|
|
@@ -25,7 +24,6 @@ export interface IPropertyGenerationTarget extends IProperty_base, IBaseVariable
|
|
|
25
24
|
abstract?: boolean;
|
|
26
25
|
static?: boolean;
|
|
27
26
|
required?: boolean;
|
|
28
|
-
primary?: boolean;
|
|
29
27
|
implements: EntityId | null;
|
|
30
28
|
parent: EntityId;
|
|
31
29
|
}
|