@elyx-code/project-logic-tree 0.0.6629 → 0.0.6631
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.d.ts +16 -0
- package/dist/index.js +449 -443
- package/dist/index.umd.cjs +29 -29
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -19907,6 +19907,21 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
19907
19907
|
rootAction?: boolean;
|
|
19908
19908
|
}
|
|
19909
19909
|
|
|
19910
|
+
export declare interface IChangeSetStorageFormat {
|
|
19911
|
+
id: string;
|
|
19912
|
+
author: string;
|
|
19913
|
+
timestamp: string;
|
|
19914
|
+
dirty: boolean;
|
|
19915
|
+
project: string;
|
|
19916
|
+
version: string;
|
|
19917
|
+
previousVersion: string;
|
|
19918
|
+
branch: string;
|
|
19919
|
+
added: Record<EntityId, UserManagedElementShallowTransfer>;
|
|
19920
|
+
updated: Record<EntityId, UserManagedElementShallowTransfer>;
|
|
19921
|
+
removed: Record<EntityId, UserManagedElementShallowTransfer>;
|
|
19922
|
+
affected: EntityId[];
|
|
19923
|
+
}
|
|
19924
|
+
|
|
19910
19925
|
export declare interface IChannelConnections {
|
|
19911
19926
|
channel: string;
|
|
19912
19927
|
connections: {
|
|
@@ -28570,6 +28585,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
28570
28585
|
PROJECT_INITIALIZED = "project-initialized",
|
|
28571
28586
|
BEFORE_CHANGE_SET_CLOSE_BEFORE_SIDE_EFFECTS = "before-change-set-close-before-side-effects",
|
|
28572
28587
|
BEFORE_CHANGE_SET_CLOSE_AFTER_SIDE_EFFECTS = "before-change-set-close-after-side-effects",
|
|
28588
|
+
CHANGE_SET_CLOSED_BEFORE_PERSIST = "change-set-closed-before-persist",
|
|
28573
28589
|
CHANGE_SET_PERSISTED = "change-set-persisted",
|
|
28574
28590
|
BEFORE_CHANGE_SET_PERSIST = "before-change-set-persist",
|
|
28575
28591
|
EXPLICIT_DEFINITION_ENTITY_ADDED = "explicit-definition-entity-added",
|