@elyx-code/project-logic-tree 0.0.6166 → 0.0.6167
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/index.js +4929 -4789
- package/dist/index.umd.cjs +185 -185
- package/dist/tree/state/change-set.d.ts +11 -0
- package/package.json +1 -1
|
@@ -59,8 +59,19 @@ export declare class ChangeSet {
|
|
|
59
59
|
self: UserManagedEntityState | null, autoclose?: boolean, autoCloseActionName?: string);
|
|
60
60
|
get isEmpty(): boolean;
|
|
61
61
|
get isValid(): boolean;
|
|
62
|
+
get list(): UserManagedEntityState[];
|
|
63
|
+
get listAdded(): UserManagedEntityState[];
|
|
64
|
+
get listUpdated(): UserManagedEntityState[];
|
|
65
|
+
get listRemoved(): UserManagedEntityState[];
|
|
66
|
+
get addedIds(): EntityId[];
|
|
67
|
+
get updatedIds(): EntityId[];
|
|
68
|
+
get removedIds(): EntityId[];
|
|
69
|
+
get affectedIds(): EntityId[];
|
|
70
|
+
discardOrphans(): void;
|
|
62
71
|
attemptAutoclose(knownAutoCloseActionName: string, closingEntityId: EntityId): ChangeSet;
|
|
63
72
|
close(): ChangeSet;
|
|
73
|
+
get(entityId: EntityId): UserManagedEntityState | null;
|
|
74
|
+
remove(entityId: EntityId): ChangeSet;
|
|
64
75
|
add(entity: UserManagedEntityState, changeType: ChangeSetEntityChangeType): ChangeSet;
|
|
65
76
|
toJSON(): IRecordChangeSet<UserManagedElementShallowTransfer | null, UserManagedElementShallowTransfer>;
|
|
66
77
|
has(entityId: EntityId): boolean;
|
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.6167",
|
|
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",
|