@elyx-code/project-logic-tree 0.0.6271 → 0.0.6273
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.
|
@@ -57,6 +57,7 @@ export declare class ChangeSet {
|
|
|
57
57
|
project: ProjectState;
|
|
58
58
|
constructor(project: ProjectState, author: string, timestamp: string, // ISO 8601 format
|
|
59
59
|
self: UserManagedEntityState | null, autoclose?: boolean, autoCloseActionName?: string);
|
|
60
|
+
get index(): number | null;
|
|
60
61
|
get isEmpty(): boolean;
|
|
61
62
|
get isValid(): boolean;
|
|
62
63
|
get list(): UserManagedEntityState[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EntityId, EntityType, IProject, IDefinitionEntity, IFunctionDeclaration, IGlobalEvent, Element, IProjectTransfer, IGenericReference, ElementTransfer, Reference, IProjectReference,
|
|
1
|
+
import { EntityId, EntityType, IProject, IDefinitionEntity, IFunctionDeclaration, IGlobalEvent, Element, IProjectTransfer, IGenericReference, ElementTransfer, Reference, IProjectReference, IProjectShallowTransfer, ElementShallowTransfer, ElementGenerationTarget, IProjectGenerationTarget, ProjectTypesUnion, EntityVersion, IProject_meta } from '../../../definitions';
|
|
2
2
|
import { ZodError } from 'zod';
|
|
3
3
|
import { BaseState, IEntityPersistanceOptions, IEditableEntityPersistanceRepository, UserManagedEntityStateTemplate, IEntityJSONCloneOptions, IEntityRecursionOptions } from '../base';
|
|
4
4
|
import { FunctionDeclarationState } from '../function-declaration';
|
|
@@ -228,7 +228,6 @@ export declare class ProjectState extends CombinedVersionedEvents implements IPr
|
|
|
228
228
|
clone(): ProjectState;
|
|
229
229
|
getDefinitionEntity(id: EntityId): DefinitionEntityState | null;
|
|
230
230
|
addDefinitionEntity(entity: DefinitionEntityState): DefinitionEntityState;
|
|
231
|
-
addFunctionDeclarationFromTransfer(func: IFunctionDeclarationTransfer): FunctionDeclarationState;
|
|
232
231
|
addFunctionDeclaration(func: FunctionDeclarationState): FunctionDeclarationState;
|
|
233
232
|
addFunctionCall(func: FunctionCallState): FunctionCallState;
|
|
234
233
|
addVariableDeclaration(variable: VariableDeclarationState): VariableDeclarationState;
|
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.6273",
|
|
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",
|