@elyx-code/project-logic-tree 0.0.6421 → 0.0.6422
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 -0
- package/dist/index.js +14770 -14685
- package/dist/index.umd.cjs +142 -142
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4052,6 +4052,8 @@ export declare function flattenVariables(element: CanvasEntityState, seenVariabl
|
|
|
4052
4052
|
|
|
4053
4053
|
export declare function flattenVariableWrites(variable: VariableState, seenVariables?: Set<string>): VariableState[];
|
|
4054
4054
|
|
|
4055
|
+
export declare function flattenWrites(entity: ValueWritingEntityState, seenEntities?: Set<string>): ValueReadingEntityState[];
|
|
4056
|
+
|
|
4055
4057
|
declare const FORBIDDEN_SQL_KEYWORDS: string[];
|
|
4056
4058
|
|
|
4057
4059
|
export declare function fromChangeSetToRecordChangeSet<TSelf extends {
|
|
@@ -6486,6 +6488,11 @@ export declare function getEarliestIndividualCommonCallerAncestor(entityA: Execu
|
|
|
6486
6488
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | 'same-entity' | null;
|
|
6487
6489
|
};
|
|
6488
6490
|
|
|
6491
|
+
export declare function getEarliestSingleCallerAncestorOfValueWriterAndItsValueReaders(entity: VariableDeclarationState | OutputMapState): {
|
|
6492
|
+
ancestor: CallerEntityState | null;
|
|
6493
|
+
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
6494
|
+
};
|
|
6495
|
+
|
|
6489
6496
|
export declare function getEntitiesCreatedSinceInitialization(projectState: ProjectState, preInitDate: string): UserManagedEntityState[];
|
|
6490
6497
|
|
|
6491
6498
|
export declare function getEntitiesToPropagateValuesTo(entity: EntityWithValueState, project: ProjectState, seenInRecursion?: Set<EntityId>): EntityWithValueState[];
|
|
@@ -7750,6 +7757,8 @@ export declare function getParentCanvasEntityFromTransfer(entity: Element_2 | El
|
|
|
7750
7757
|
|
|
7751
7758
|
export declare function getParentEntryPoint(entity: EntityState): EntryPointEntityState | null;
|
|
7752
7759
|
|
|
7760
|
+
export declare function getParentExecutableEntity(entity: EntityState): ExecutableEntityState | null;
|
|
7761
|
+
|
|
7753
7762
|
export declare function getParentPassthroughCallableEntity(entity: EntityState): PassThroughCallableEntityState | null;
|
|
7754
7763
|
|
|
7755
7764
|
export declare function getPassThroughCallableEntityReferenceSchema(): z_2.ZodUnion<[z_2.ZodObject<{
|