@elyx-code/project-logic-tree 0.0.6597 → 0.0.6599
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 +9 -2
- package/dist/index.js +2752 -2707
- package/dist/index.umd.cjs +94 -94
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3713,14 +3713,19 @@ export declare class ChangeSet extends Events {
|
|
|
3713
3713
|
discardOrphans(): void;
|
|
3714
3714
|
captureAllChangesInVersionInstances(): void;
|
|
3715
3715
|
attemptAutocloseAsync(knownAutoCloseActionName: string, closingEntityId: EntityId): Promise<ChangeSet>;
|
|
3716
|
-
closeAsync(
|
|
3716
|
+
closeAsync(options?: {
|
|
3717
|
+
awaitBeforeClose?: boolean;
|
|
3718
|
+
awaitExtenalClosing?: boolean;
|
|
3719
|
+
}): Promise<ChangeSet>;
|
|
3717
3720
|
attemptAutoclose(knownAutoCloseActionName: string, closingEntityId: EntityId): ChangeSet;
|
|
3718
3721
|
recursiveCaptureUpstreamVersions(): void;
|
|
3719
3722
|
sanitize(): void;
|
|
3720
3723
|
syncDependents(): ChangeSet;
|
|
3724
|
+
beforeCloseAsync(): Promise<void>;
|
|
3721
3725
|
beforeClose(): void;
|
|
3722
3726
|
teardown(): void;
|
|
3723
|
-
emitProjectSideEffects():
|
|
3727
|
+
emitProjectSideEffects(): ChangeSet;
|
|
3728
|
+
emitAsyncProjectSideEffects(): Promise<ChangeSet>;
|
|
3724
3729
|
close(): ChangeSet;
|
|
3725
3730
|
addDependentsToAffected(entity: UserManagedEntityState): void;
|
|
3726
3731
|
get(entityId: EntityId): UserManagedEntityState | null;
|
|
@@ -5274,6 +5279,8 @@ export declare type ElementTransfer = IProjectTransfer | IInstalledProjectTransf
|
|
|
5274
5279
|
|
|
5275
5280
|
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
5281
|
|
|
5282
|
+
export declare function emitAsyncProjectSideEffects(changeSet: ChangeSet): Promise<ChangeSet>;
|
|
5283
|
+
|
|
5277
5284
|
export declare function emitProjectSideEffects(changeSet: ChangeSet): ChangeSet;
|
|
5278
5285
|
|
|
5279
5286
|
export declare const emptyCondition: IActionDescriptorTransfer;
|