@elyx-code/project-logic-tree 0.0.6412 → 0.0.6413
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 +10710 -10692
- package/dist/index.umd.cjs +96 -96
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1785,7 +1785,7 @@ export declare function checkImplementsBaseEntity(entity: DefinitionEntityState
|
|
|
1785
1785
|
|
|
1786
1786
|
export declare function checkIsBranchDependentButNotDirectlyOnBranch(branchA: CanvasEntityState, branchB: CanvasEntityState): boolean;
|
|
1787
1787
|
|
|
1788
|
-
export declare function checkIsBranchDependentOnBranch(
|
|
1788
|
+
export declare function checkIsBranchDependentOnBranch(descendant: CanvasEntityState, ancestor: CanvasEntityState): boolean;
|
|
1789
1789
|
|
|
1790
1790
|
export declare function checkIsBuiltIn(entity: UserManagedEntityState, project: ProjectState): boolean;
|
|
1791
1791
|
|
|
@@ -5454,6 +5454,8 @@ export declare function getColumnProperties(entity: DefinitionEntityState): Prop
|
|
|
5454
5454
|
|
|
5455
5455
|
export declare function getCommonAncestor(entityA: EntityState, entityB: EntityState): EntityState | null;
|
|
5456
5456
|
|
|
5457
|
+
export declare function getCommonAncestorOfAllCallers(entity: CallableEntityState): CallerEntityState | null;
|
|
5458
|
+
|
|
5457
5459
|
export declare function getCommonChildren(entityA: CanvasEntityState, entityB: CanvasEntityState, seenEntities?: Set<EntityId>): CanvasEntityState[];
|
|
5458
5460
|
|
|
5459
5461
|
export declare function getDatabaseEntities(project: ProjectState): DefinitionEntityState[];
|
|
@@ -7632,6 +7634,8 @@ export declare function getExtendedDefinitionEntity(entity: DefinitionEntityStat
|
|
|
7632
7634
|
|
|
7633
7635
|
export declare function getFirstNonLoopScopeOwner(entity: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer, project: ProjectState, _initialEntity?: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer | null): EntryPointEntityState | ProjectState | null;
|
|
7634
7636
|
|
|
7637
|
+
export declare function getFirstParentExecutableEntity(entity: EntityState): ExecutableEntityState | null;
|
|
7638
|
+
|
|
7635
7639
|
declare function getFromClauseFromSelectStatement(selectStatement: SelectStmt): FromClause | null;
|
|
7636
7640
|
|
|
7637
7641
|
export declare function getGenerationTargetSchemaBasedOnType(entity: {
|