@elyx-code/project-logic-tree 0.0.6191 → 0.0.6193

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.
@@ -73,6 +73,7 @@ export declare class ChangeSet {
73
73
  attemptAutocloseAsync(knownAutoCloseActionName: string, closingEntityId: EntityId): Promise<ChangeSet>;
74
74
  closeAsync(): Promise<ChangeSet>;
75
75
  attemptAutoclose(knownAutoCloseActionName: string, closingEntityId: EntityId): ChangeSet;
76
+ recursiveCaptureUpstreamVersions(): void;
76
77
  close(): ChangeSet;
77
78
  get(entityId: EntityId): UserManagedEntityState | null;
78
79
  remove(entityId: EntityId): ChangeSet;
@@ -109,7 +109,7 @@ export declare class ProjectState extends VersionedState implements IProject, Us
109
109
  closeChangeSet(changeSet: ChangeSet): Promise<{
110
110
  success: boolean;
111
111
  }>;
112
- toLatestChangeSet(project: ProjectState, author: string, timestamp: string, // ISO 8601 format
112
+ toLatestChangeSet(author: string, timestamp: string, // ISO 8601 format
113
113
  self: UserManagedEntityState | null, autoclose?: boolean, autoCloseActionName?: string): ChangeSet;
114
114
  addChangeSet(changeSet: ChangeSet): ChangeSet;
115
115
  discardChangeSet(changeSet: ChangeSet | null): ProjectState;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6191",
3
+ "version": "0.0.6193",
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",