@elyx-code/project-logic-tree 0.0.6140 → 0.0.6141
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/types/index.d.ts +3 -1
- package/dist/index.js +16356 -15883
- package/dist/index.umd.cjs +199 -199
- package/dist/tree/state/action-descriptor/action-descriptor.d.ts +3 -0
- package/dist/tree/state/argument-declaration/argument-declaration.d.ts +3 -0
- package/dist/tree/state/break-statement/break-statement.d.ts +3 -0
- package/dist/tree/state/condition/condition.d.ts +3 -0
- package/dist/tree/state/continue-statement/continue-statement.d.ts +3 -0
- package/dist/tree/state/data-type/data-type.d.ts +3 -0
- package/dist/tree/state/definition-entity/definition-entity.d.ts +3 -0
- package/dist/tree/state/function-call/function-call.d.ts +3 -0
- package/dist/tree/state/function-declaration/function-declaration.d.ts +3 -0
- package/dist/tree/state/global-event/global-event.d.ts +3 -0
- package/dist/tree/state/input-map/input-map.d.ts +3 -0
- package/dist/tree/state/installed-project/installed-project.d.ts +3 -0
- package/dist/tree/state/internal-call/internal-call.d.ts +3 -0
- package/dist/tree/state/literal-value/literal-value.d.ts +3 -0
- package/dist/tree/state/loop/loop.d.ts +3 -0
- package/dist/tree/state/operation/operation.d.ts +3 -0
- package/dist/tree/state/output-map/output-map.d.ts +3 -0
- package/dist/tree/state/project/project.d.ts +3 -0
- package/dist/tree/state/property/property.d.ts +3 -0
- package/dist/tree/state/return-declaration/return-declaration.d.ts +3 -0
- package/dist/tree/state/return-statement/return-statement.d.ts +3 -0
- package/dist/tree/state/search/search.d.ts +3 -0
- package/dist/tree/state/value-descriptor/value-descriptor.d.ts +3 -0
- package/dist/tree/state/variable-declaration/variable-declaration.d.ts +3 -0
- package/dist/tree/state/variable-instance/variable-instance.d.ts +3 -0
- package/package.json +1 -1
|
@@ -45,6 +45,9 @@ export declare class ActionDescriptorState implements IActionDescriptor, UserMan
|
|
|
45
45
|
autoexecutable: boolean;
|
|
46
46
|
constructor(initialFunctionData: IActionDescriptor | IActionDescriptorTransfer, parentProjectState: ProjectState);
|
|
47
47
|
static repository: IEditableEntityPersistanceRepository;
|
|
48
|
+
static type: EntityType.ActionDescriptor;
|
|
49
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
50
|
+
static PARENT_TYPES: EntityType[];
|
|
48
51
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
49
52
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
50
53
|
static BASE_PROPERTIES: string[];
|
|
@@ -29,6 +29,9 @@ export declare class ArgumentDeclarationState implements IArgumentDeclaration, U
|
|
|
29
29
|
suggestion: boolean;
|
|
30
30
|
constructor(initialArgumentDeclarationData: IArgumentDeclaration | IArgumentDeclarationTransfer, parentProjectState: ProjectState);
|
|
31
31
|
static repository: IEditableEntityPersistanceRepository;
|
|
32
|
+
static type: EntityType.ArgumentDeclaration;
|
|
33
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
34
|
+
static PARENT_TYPES: EntityType[];
|
|
32
35
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
33
36
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
34
37
|
static BASE_PROPERTIES: string[];
|
|
@@ -26,6 +26,9 @@ export declare class BreakStatementState implements IBreakStatement, UserManaged
|
|
|
26
26
|
suggestion: boolean;
|
|
27
27
|
constructor(initialBreakStatementData: IBreakStatement | IBreakStatementTransfer, parentProjectState: ProjectState);
|
|
28
28
|
static repository: IEditableEntityPersistanceRepository;
|
|
29
|
+
static type: EntityType.BreakStatement;
|
|
30
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
31
|
+
static PARENT_TYPES: EntityType[];
|
|
29
32
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
30
33
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
31
34
|
static BASE_PROPERTIES: string[];
|
|
@@ -28,6 +28,9 @@ export declare class ConditionState implements ICondition, UserManagedEntityStat
|
|
|
28
28
|
initialized: boolean;
|
|
29
29
|
constructor(initialConditionData: ICondition | IConditionTransfer, parentProjectState: ProjectState);
|
|
30
30
|
static repository: IEditableEntityPersistanceRepository;
|
|
31
|
+
static type: EntityType.Condition;
|
|
32
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
33
|
+
static PARENT_TYPES: EntityType[];
|
|
31
34
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
32
35
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
33
36
|
static BASE_PROPERTIES: string[];
|
|
@@ -26,6 +26,9 @@ export declare class ContinueStatementState implements IContinueStatement, UserM
|
|
|
26
26
|
suggestion: boolean;
|
|
27
27
|
constructor(initialContinueStatementData: IContinueStatement | IContinueStatementTransfer, parentProjectState: ProjectState);
|
|
28
28
|
static repository: IEditableEntityPersistanceRepository;
|
|
29
|
+
static type: EntityType.ContinueStatement;
|
|
30
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
31
|
+
static PARENT_TYPES: EntityType[];
|
|
29
32
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
30
33
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
31
34
|
static BASE_PROPERTIES: string[];
|
|
@@ -39,6 +39,9 @@ export declare class DataTypeState implements IDataType, UserManagedEntityStateF
|
|
|
39
39
|
initialized: boolean;
|
|
40
40
|
constructor(initialDataTypeData: IDataType | IDataTypeTransfer, parentProjectState: ProjectState);
|
|
41
41
|
static repository: IEditableEntityPersistanceRepository;
|
|
42
|
+
static type: EntityType.DataType;
|
|
43
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
44
|
+
static PARENT_TYPES: EntityType[];
|
|
42
45
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
43
46
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
44
47
|
static BASE_PROPERTIES: string[];
|
|
@@ -35,6 +35,9 @@ export declare class DefinitionEntityState implements BaseState, UserManagedEnti
|
|
|
35
35
|
suggestedMethods: FunctionDeclarationState[];
|
|
36
36
|
constructor(initialEntityData: IDefinitionEntity | IDefinitionEntityTransfer, parentProjectState: ProjectState);
|
|
37
37
|
static repository: IEditableEntityPersistanceRepository;
|
|
38
|
+
static type: EntityType.DefinitionEntity;
|
|
39
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
40
|
+
static PARENT_TYPES: EntityType[];
|
|
38
41
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
39
42
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
40
43
|
static BASE_PROPERTIES: string[];
|
|
@@ -31,6 +31,9 @@ export declare class FunctionCallState implements IFunctionCall, BaseState, User
|
|
|
31
31
|
initialized: boolean;
|
|
32
32
|
constructor(initialFunctionCallData: IFunctionCall | IFunctionCallTransfer, parentProjectState: ProjectState);
|
|
33
33
|
static repository: IEditableEntityPersistanceRepository;
|
|
34
|
+
static type: EntityType.FunctionCall;
|
|
35
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
36
|
+
static PARENT_TYPES: EntityType[];
|
|
34
37
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
35
38
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
36
39
|
static BASE_PROPERTIES: string[];
|
|
@@ -41,6 +41,9 @@ export declare class FunctionDeclarationState implements IFunctionDeclaration, B
|
|
|
41
41
|
suggestion: boolean;
|
|
42
42
|
constructor(initialFunctionData: IFunctionDeclaration | IFunctionDeclarationTransfer, parentProjectState: ProjectState);
|
|
43
43
|
static repository: IEditableEntityPersistanceRepository;
|
|
44
|
+
static type: EntityType.FunctionDeclaration;
|
|
45
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
46
|
+
static PARENT_TYPES: EntityType[];
|
|
44
47
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
45
48
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
46
49
|
static BASE_PROPERTIES: string[];
|
|
@@ -31,6 +31,9 @@ export declare class GlobalEventState implements IGlobalEvent, UserManagedEntity
|
|
|
31
31
|
initialized: boolean;
|
|
32
32
|
constructor(initialEventData: IGlobalEvent | IGlobalEventTransfer, parentProjectState: ProjectState);
|
|
33
33
|
static repository: IEditableEntityPersistanceRepository;
|
|
34
|
+
static type: EntityType.GlobalEvent;
|
|
35
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
36
|
+
static PARENT_TYPES: EntityType[];
|
|
34
37
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
35
38
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
36
39
|
static BASE_PROPERTIES: string[];
|
|
@@ -37,6 +37,9 @@ export declare class InputMapState implements IInputMap, ValueReadingEntityClass
|
|
|
37
37
|
suggestion: boolean;
|
|
38
38
|
constructor(initialVariableInputMapData: IInputMap | IInputMapTransfer, parentProjectState: ProjectState);
|
|
39
39
|
static repository: IEditableEntityPersistanceRepository;
|
|
40
|
+
static type: EntityType.InputMap;
|
|
41
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
42
|
+
static PARENT_TYPES: EntityType[];
|
|
40
43
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
41
44
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
42
45
|
static BASE_PROPERTIES: string[];
|
|
@@ -25,6 +25,9 @@ export declare class InstalledProjectState implements IInstalledProject, UserMan
|
|
|
25
25
|
initialized: boolean;
|
|
26
26
|
constructor(initialInstalledProjectData: IInstalledProject | IInstalledProjectTransfer, parentProjectState: ProjectState);
|
|
27
27
|
static repository: IEditableEntityPersistanceRepository;
|
|
28
|
+
static type: EntityType.InstalledProject;
|
|
29
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
30
|
+
static PARENT_TYPES: EntityType[];
|
|
28
31
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
29
32
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
30
33
|
static BASE_PROPERTIES: string[];
|
|
@@ -31,6 +31,9 @@ export declare class InternalCallState implements IInternalCall, UserManagedEnti
|
|
|
31
31
|
suggestion: boolean;
|
|
32
32
|
constructor(initialOperationData: IInternalCall | IInternalCallTransfer, parentProjectState: ProjectState);
|
|
33
33
|
static repository: IEditableEntityPersistanceRepository;
|
|
34
|
+
static type: EntityType.InternalCall;
|
|
35
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
36
|
+
static PARENT_TYPES: EntityType[];
|
|
34
37
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
35
38
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
36
39
|
static BASE_PROPERTIES: string[];
|
|
@@ -35,6 +35,9 @@ export declare class LiteralValueState implements BaseState, UserManagedEntitySt
|
|
|
35
35
|
standalone: boolean;
|
|
36
36
|
constructor(initialEntityData: ILiteralValue | ILiteralValueTransfer, parentProjectState: ProjectState);
|
|
37
37
|
static repository: IEditableEntityPersistanceRepository;
|
|
38
|
+
static type: EntityType.LiteralValue;
|
|
39
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
40
|
+
static PARENT_TYPES: EntityType[];
|
|
38
41
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
39
42
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
40
43
|
static BASE_PROPERTIES: string[];
|
|
@@ -46,6 +46,9 @@ export declare class LoopState implements ILoop, BaseState, UserManagedEntitySta
|
|
|
46
46
|
initialized: boolean;
|
|
47
47
|
constructor(initialOperationData: ILoop | ILoopTransfer, parentProjectState: ProjectState);
|
|
48
48
|
static repository: IEditableEntityPersistanceRepository;
|
|
49
|
+
static type: EntityType.Loop;
|
|
50
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
51
|
+
static PARENT_TYPES: EntityType[];
|
|
49
52
|
static CURRENT_ITERATION_NUMBER_ARG_NAME: string;
|
|
50
53
|
static CURRENT_VALUE_ARG_NAME: string;
|
|
51
54
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
@@ -31,6 +31,9 @@ export declare class OperationState implements IOperation, BaseState, UserManage
|
|
|
31
31
|
initialized: boolean;
|
|
32
32
|
constructor(initialOperationData: IOperation | IOperationTransfer, parentProjectState: ProjectState);
|
|
33
33
|
static repository: IEditableEntityPersistanceRepository;
|
|
34
|
+
static type: EntityType.Operation;
|
|
35
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
36
|
+
static PARENT_TYPES: EntityType[];
|
|
34
37
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
35
38
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
36
39
|
static BASE_PROPERTIES: string[];
|
|
@@ -30,6 +30,9 @@ export declare class OutputMapState implements IOutputMap, UserManagedEntityStat
|
|
|
30
30
|
suggestion: boolean;
|
|
31
31
|
constructor(initialReturnVariableMapData: IOutputMap | IOutputMapTransfer, parentProjectState: ProjectState);
|
|
32
32
|
static repository: IEditableEntityPersistanceRepository;
|
|
33
|
+
static type: EntityType.OutputMap;
|
|
34
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
35
|
+
static PARENT_TYPES: EntityType[];
|
|
33
36
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
34
37
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
35
38
|
static BASE_PROPERTIES: string[];
|
|
@@ -67,6 +67,9 @@ export declare class ProjectState implements IProject, UserManagedEntityStateFun
|
|
|
67
67
|
static UUID: UUIDModule;
|
|
68
68
|
static injectUUIDModule(module: UUIDModule): void;
|
|
69
69
|
static repository: IEditableEntityPersistanceRepository;
|
|
70
|
+
static type: EntityType.Project;
|
|
71
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
72
|
+
static PARENT_TYPES: EntityType[];
|
|
70
73
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
71
74
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
72
75
|
static BASE_PROPERTIES: string[];
|
|
@@ -34,6 +34,9 @@ export declare class PropertyState implements IProperty, UserManagedEntityStateF
|
|
|
34
34
|
suggestion: boolean;
|
|
35
35
|
constructor(initialPropertyData: IProperty | IPropertyTransfer, parentProjectState: ProjectState);
|
|
36
36
|
static repository: IEditableEntityPersistanceRepository;
|
|
37
|
+
static type: EntityType.Property;
|
|
38
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
39
|
+
static PARENT_TYPES: EntityType[];
|
|
37
40
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
38
41
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
39
42
|
static BASE_PROPERTIES: string[];
|
|
@@ -33,6 +33,9 @@ export declare class ReturnDeclarationState implements IReturnDeclaration, UserM
|
|
|
33
33
|
suggestion: boolean;
|
|
34
34
|
constructor(initialReturnVariableMapData: IReturnDeclaration | IReturnDeclarationTransfer, parentProjectState: ProjectState);
|
|
35
35
|
static repository: IEditableEntityPersistanceRepository;
|
|
36
|
+
static type: EntityType.ReturnDeclaration;
|
|
37
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
38
|
+
static PARENT_TYPES: EntityType[];
|
|
36
39
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
37
40
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
38
41
|
static BASE_PROPERTIES: string[];
|
|
@@ -25,6 +25,9 @@ export declare class ReturnStatementState implements IReturnStatement, UserManag
|
|
|
25
25
|
suggestion: boolean;
|
|
26
26
|
constructor(initialReturnStatementData: IReturnStatement | IReturnStatementTransfer, parentProjectState: ProjectState);
|
|
27
27
|
static repository: IEditableEntityPersistanceRepository;
|
|
28
|
+
static type: EntityType.ReturnStatement;
|
|
29
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
30
|
+
static PARENT_TYPES: EntityType[];
|
|
28
31
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
29
32
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
30
33
|
static BASE_PROPERTIES: string[];
|
|
@@ -34,6 +34,9 @@ export declare class SearchState implements ISearch, BaseState, UserManagedEntit
|
|
|
34
34
|
initialized: boolean;
|
|
35
35
|
constructor(initialFunctionCallData: ISearch | ISearchTransfer, parentProjectState: ProjectState);
|
|
36
36
|
static repository: IEditableEntityPersistanceRepository;
|
|
37
|
+
static type: EntityType.Search;
|
|
38
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
39
|
+
static PARENT_TYPES: EntityType[];
|
|
37
40
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
38
41
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
39
42
|
static BASE_PROPERTIES: string[];
|
|
@@ -28,6 +28,9 @@ export declare class ValueDescriptorState implements IValueDescriptor, UserManag
|
|
|
28
28
|
initialized: boolean;
|
|
29
29
|
constructor(initialVariableDeclarationData: IValueDescriptor | IValueDescriptorTransfer, parentProjectState: ProjectState);
|
|
30
30
|
static repository: IEditableEntityPersistanceRepository;
|
|
31
|
+
static type: EntityType.ValueDescriptor;
|
|
32
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
33
|
+
static PARENT_TYPES: EntityType[];
|
|
31
34
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
32
35
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
33
36
|
static BASE_PROPERTIES: string[];
|
|
@@ -42,6 +42,9 @@ export declare class VariableDeclarationState implements IVariableDeclaration, B
|
|
|
42
42
|
suggestion: boolean;
|
|
43
43
|
constructor(initialVariableDeclarationData: IVariableDeclaration | IVariableDeclarationTransfer, parentProjectState: ProjectState);
|
|
44
44
|
static repository: IEditableEntityPersistanceRepository;
|
|
45
|
+
static type: EntityType.VariableDeclaration;
|
|
46
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
47
|
+
static PARENT_TYPES: EntityType[];
|
|
45
48
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
46
49
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
47
50
|
static BASE_PROPERTIES: string[];
|
|
@@ -37,6 +37,9 @@ export declare class VariableInstanceState implements IVariableInstance, BaseSta
|
|
|
37
37
|
suggestion: boolean;
|
|
38
38
|
constructor(initialVariableDeclarationData: IVariableInstance | IVariableInstanceTransfer, parentProjectState: ProjectState);
|
|
39
39
|
static repository: IEditableEntityPersistanceRepository;
|
|
40
|
+
static type: EntityType.VariableInstance;
|
|
41
|
+
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
42
|
+
static PARENT_TYPES: EntityType[];
|
|
40
43
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
41
44
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
42
45
|
static BASE_PROPERTIES: string[];
|
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.6141",
|
|
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",
|