@elyx-code/project-logic-tree 0.0.6305 → 0.0.6307
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 -4
- package/dist/index.js +12388 -12408
- package/dist/index.umd.cjs +194 -194
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1217,6 +1217,7 @@ export declare class ChangeSet {
|
|
|
1217
1217
|
timestamp: string;
|
|
1218
1218
|
open: boolean;
|
|
1219
1219
|
dirty: boolean;
|
|
1220
|
+
startedClose: boolean;
|
|
1220
1221
|
type: ChangeSetChangeCaptureType;
|
|
1221
1222
|
autoclose: boolean;
|
|
1222
1223
|
autoCloseActionName: string;
|
|
@@ -1242,6 +1243,7 @@ export declare class ChangeSet {
|
|
|
1242
1243
|
attemptAutoclose(knownAutoCloseActionName: string, closingEntityId: EntityId): ChangeSet;
|
|
1243
1244
|
recursiveCaptureUpstreamVersions(): void;
|
|
1244
1245
|
sanitize(): void;
|
|
1246
|
+
syncDependents(): ChangeSet;
|
|
1245
1247
|
beforeClose(): void;
|
|
1246
1248
|
emitSideEffects(): void;
|
|
1247
1249
|
close(): ChangeSet;
|
|
@@ -1301,6 +1303,8 @@ export declare function checkIsBranchDependentButNotDirectlyOnBranch(branchA: Ca
|
|
|
1301
1303
|
|
|
1302
1304
|
export declare function checkIsBranchDependentOnBranch(branchA: CanvasEntityState, branchB: CanvasEntityState): boolean;
|
|
1303
1305
|
|
|
1306
|
+
export declare function checkIsBuiltIn(entity: UserManagedEntityState, project: ProjectState): boolean;
|
|
1307
|
+
|
|
1304
1308
|
export declare function checkIsCallableEntityReachable(entity: CallableEntityState): {
|
|
1305
1309
|
reachable: boolean;
|
|
1306
1310
|
entryPoint: EntryPointEntityState;
|
|
@@ -11695,9 +11699,9 @@ export declare class ProjectState extends CombinedVersionedEvents implements IPr
|
|
|
11695
11699
|
export declare enum ProjectStateEvents {
|
|
11696
11700
|
PROJECT_INITIALIZED = "project-initialized",
|
|
11697
11701
|
CHANGE_SET_CLOSED = "change-set-closed",
|
|
11698
|
-
|
|
11699
|
-
|
|
11700
|
-
|
|
11702
|
+
EXPLICIT_DEFINITION_ENTITY_ADDED = "explicit-definition-entity-added",
|
|
11703
|
+
EXPLICIT_DEFINITION_ENTITY_REMOVED = "explicit-definition-entity-removed",
|
|
11704
|
+
EXPLICIT_DEFINITION_ENTITY_UPDATED = "explicit-definition-entity-updated",
|
|
11701
11705
|
PERSISTED_DEFINITION_ENTITY_ADDED = "persisted-definition-entity-added",
|
|
11702
11706
|
PERSISTED_DEFINITION_ENTITY_REMOVED = "persisted-definition-entity-removed",
|
|
11703
11707
|
PERSISTED_DEFINITION_ENTITY_UPDATED = "persisted-definition-entity-updated",
|
|
@@ -14062,7 +14066,8 @@ export declare const VARIABLE_TYPES: EntityType[];
|
|
|
14062
14066
|
|
|
14063
14067
|
export declare enum VariableDeclarationDependencyField {
|
|
14064
14068
|
Parent = "parent",
|
|
14065
|
-
DataTypeEntity = "data-type-entity"
|
|
14069
|
+
DataTypeEntity = "variable-data-type-entity",
|
|
14070
|
+
DataType = "variable-data-type"
|
|
14066
14071
|
}
|
|
14067
14072
|
|
|
14068
14073
|
export declare type VariableDeclarationPayloadUnion = VariableDeclarationTypesUnion | VariableDeclarationState;
|