@elyx-code/project-logic-tree 0.0.6411 → 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 +21 -9
- package/dist/index.js +11420 -11392
- package/dist/index.umd.cjs +88 -88
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1229,6 +1229,22 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1229
1229
|
};
|
|
1230
1230
|
};
|
|
1231
1231
|
};
|
|
1232
|
+
wait: {
|
|
1233
|
+
id: ExecutionOperations;
|
|
1234
|
+
inputs: {
|
|
1235
|
+
duration: {
|
|
1236
|
+
id: string;
|
|
1237
|
+
dataType: {
|
|
1238
|
+
id: string;
|
|
1239
|
+
};
|
|
1240
|
+
};
|
|
1241
|
+
};
|
|
1242
|
+
outputs: {
|
|
1243
|
+
error: {
|
|
1244
|
+
id: string;
|
|
1245
|
+
};
|
|
1246
|
+
};
|
|
1247
|
+
};
|
|
1232
1248
|
};
|
|
1233
1249
|
loop: {
|
|
1234
1250
|
"list-loop": {
|
|
@@ -1769,7 +1785,7 @@ export declare function checkImplementsBaseEntity(entity: DefinitionEntityState
|
|
|
1769
1785
|
|
|
1770
1786
|
export declare function checkIsBranchDependentButNotDirectlyOnBranch(branchA: CanvasEntityState, branchB: CanvasEntityState): boolean;
|
|
1771
1787
|
|
|
1772
|
-
export declare function checkIsBranchDependentOnBranch(
|
|
1788
|
+
export declare function checkIsBranchDependentOnBranch(descendant: CanvasEntityState, ancestor: CanvasEntityState): boolean;
|
|
1773
1789
|
|
|
1774
1790
|
export declare function checkIsBuiltIn(entity: UserManagedEntityState, project: ProjectState): boolean;
|
|
1775
1791
|
|
|
@@ -5438,6 +5454,8 @@ export declare function getColumnProperties(entity: DefinitionEntityState): Prop
|
|
|
5438
5454
|
|
|
5439
5455
|
export declare function getCommonAncestor(entityA: EntityState, entityB: EntityState): EntityState | null;
|
|
5440
5456
|
|
|
5457
|
+
export declare function getCommonAncestorOfAllCallers(entity: CallableEntityState): CallerEntityState | null;
|
|
5458
|
+
|
|
5441
5459
|
export declare function getCommonChildren(entityA: CanvasEntityState, entityB: CanvasEntityState, seenEntities?: Set<EntityId>): CanvasEntityState[];
|
|
5442
5460
|
|
|
5443
5461
|
export declare function getDatabaseEntities(project: ProjectState): DefinitionEntityState[];
|
|
@@ -7616,6 +7634,8 @@ export declare function getExtendedDefinitionEntity(entity: DefinitionEntityStat
|
|
|
7616
7634
|
|
|
7617
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;
|
|
7618
7636
|
|
|
7637
|
+
export declare function getFirstParentExecutableEntity(entity: EntityState): ExecutableEntityState | null;
|
|
7638
|
+
|
|
7619
7639
|
declare function getFromClauseFromSelectStatement(selectStatement: SelectStmt): FromClause | null;
|
|
7620
7640
|
|
|
7621
7641
|
export declare function getGenerationTargetSchemaBasedOnType(entity: {
|
|
@@ -16671,10 +16691,6 @@ export declare class WaitOperation extends ActionDescriptorState {
|
|
|
16671
16691
|
|
|
16672
16692
|
export declare const waitOperation: IActionDescriptorTransfer;
|
|
16673
16693
|
|
|
16674
|
-
export declare enum WaitOperationInputIds {
|
|
16675
|
-
MillisecondsNumber = "wait-milliseconds-number-argument-declaration"
|
|
16676
|
-
}
|
|
16677
|
-
|
|
16678
16694
|
export declare const waitOperationMillisecondsNumberArgument: IValueDescriptorTransfer;
|
|
16679
16695
|
|
|
16680
16696
|
export declare const waitOperationMillisecondsNumberArgumentRef: IValueDescriptorReference;
|
|
@@ -16685,10 +16701,6 @@ export declare const waitOperationOperationError: IValueDescriptorTransfer;
|
|
|
16685
16701
|
|
|
16686
16702
|
export declare const waitOperationOperationErrorParentRef: IActionDescriptorReference;
|
|
16687
16703
|
|
|
16688
|
-
export declare enum WaitOperationOutputIds {
|
|
16689
|
-
Error = "wait-operation-error-return-delaration"
|
|
16690
|
-
}
|
|
16691
|
-
|
|
16692
16704
|
export declare const waitOperationRef: IActionDescriptorReference;
|
|
16693
16705
|
|
|
16694
16706
|
declare class WhereStatement implements ISearchNode {
|