@elyx-code/project-logic-tree 0.0.6597 → 0.0.6598
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 +5 -1
- package/dist/index.js +2750 -2706
- package/dist/index.umd.cjs +94 -94
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3718,9 +3718,11 @@ export declare class ChangeSet extends Events {
|
|
|
3718
3718
|
recursiveCaptureUpstreamVersions(): void;
|
|
3719
3719
|
sanitize(): void;
|
|
3720
3720
|
syncDependents(): ChangeSet;
|
|
3721
|
+
beforeCloseAsync(): Promise<void>;
|
|
3721
3722
|
beforeClose(): void;
|
|
3722
3723
|
teardown(): void;
|
|
3723
|
-
emitProjectSideEffects():
|
|
3724
|
+
emitProjectSideEffects(): ChangeSet;
|
|
3725
|
+
emitAsyncProjectSideEffects(): Promise<ChangeSet>;
|
|
3724
3726
|
close(): ChangeSet;
|
|
3725
3727
|
addDependentsToAffected(entity: UserManagedEntityState): void;
|
|
3726
3728
|
get(entityId: EntityId): UserManagedEntityState | null;
|
|
@@ -5274,6 +5276,8 @@ export declare type ElementTransfer = IProjectTransfer | IInstalledProjectTransf
|
|
|
5274
5276
|
|
|
5275
5277
|
export declare type ElementTypesUnion = ProjectTypesUnion | InstalledProjectTypesUnion | DefinitionEntityTypesUnion | GlobalEventTypesUnion | FunctionDeclarationTypesUnion | FunctionCallTypesUnion | PropertyTypesUnion | VariableDeclarationTypesUnion | VariableInstanceTypesUnion | OperationTypesUnion | ConditionTypesUnion | ArgumentDeclarationTypesUnion | InputMapTypesUnion | OutputMapTypesUnion | DataTypeTypesUnion | ReturnStatementTypesUnion | BreakStatementTypesUnion | ContinueStatementTypesUnion | LoopTypesUnion | ActionDescriptorTypesUnion | SearchTypesUnion | PrimitiveEntityTypesUnion | LiteralValueTypesUnion | ValueDescriptorTypesUnion | BuiltInBaseEntityTypesUnion | InternalCallTypesUnion;
|
|
5276
5278
|
|
|
5279
|
+
export declare function emitAsyncProjectSideEffects(changeSet: ChangeSet): Promise<ChangeSet>;
|
|
5280
|
+
|
|
5277
5281
|
export declare function emitProjectSideEffects(changeSet: ChangeSet): ChangeSet;
|
|
5278
5282
|
|
|
5279
5283
|
export declare const emptyCondition: IActionDescriptorTransfer;
|