@elyx-code/project-logic-tree 0.0.6379 → 0.0.6380
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 +6 -0
- package/dist/index.js +12735 -12624
- package/dist/index.umd.cjs +112 -112
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4245,6 +4245,10 @@ export declare function getBaseSchemaBasedOnType(entity: {
|
|
|
4245
4245
|
|
|
4246
4246
|
export declare function getBuiltInEntityOwner(entity: EntityState): EntityState | null;
|
|
4247
4247
|
|
|
4248
|
+
export declare function getCallableEntitiesDerivedFromInternalCalls(entity: VariableState): CallableEntityState[];
|
|
4249
|
+
|
|
4250
|
+
export declare function getCallableEntitiesDerivedFromWrites(valueWrittingEntity: ValueWritingEntityState): CallableEntityState[];
|
|
4251
|
+
|
|
4248
4252
|
export declare function getCallableEntityReferenceSchema(): z_2.ZodUnion<[z_2.ZodUnion<[z_2.ZodObject<{
|
|
4249
4253
|
id: z_2.ZodString;
|
|
4250
4254
|
type: z_2.ZodLiteral<import("../../..").EntityType.GenericReference>;
|
|
@@ -7725,6 +7729,8 @@ export declare function getReferencedIds(entity: ElementTransfer | Element_2 | E
|
|
|
7725
7729
|
|
|
7726
7730
|
export declare function getReferenceEntityId(reference: string | IGenericReference | EntityState | Element_2 | ElementShallowTransfer | ElementTransfer | ElementGenerationTarget | null): string | null;
|
|
7727
7731
|
|
|
7732
|
+
export declare function getRelatedCallableElementsOnTheRight(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean): CallableEntityState[];
|
|
7733
|
+
|
|
7728
7734
|
export declare function getRelatedCanvasElementsOnTheLeft(entity: CanvasEntityState): CanvasEntityState[];
|
|
7729
7735
|
|
|
7730
7736
|
export declare function getRelatedCanvasElementsOnTheLeftFromTransfer(entity: DraggableElement | DraggableElementTransfer | DraggableElementShallowTransfer, allKnownEntities: Record<EntityId, Element_2 | ElementTransfer | ElementShallowTransfer>): (DraggableElement | DraggableElementTransfer | DraggableElementShallowTransfer)[];
|