@elyx-code/project-logic-tree 0.0.6148 → 0.0.6149
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.
|
@@ -67,7 +67,10 @@ export declare function flattenProjectElements(project: ProjectState): EntitySta
|
|
|
67
67
|
export declare function findReferenceToSelfInList(element: EntityState, elements: EntityState[]): EntityState[];
|
|
68
68
|
export declare function findReferencesToSelfInProject(element: EntityState): EntityState[];
|
|
69
69
|
export declare function enrichFromKnownEntities(entity: ElementTransfer | Element | ElementShallowTransfer | IGenericReference | EntityId, allKnownEntities: Record<EntityId, Element | ElementTransfer | ElementShallowTransfer>): Element | ElementTransfer | ElementShallowTransfer | null;
|
|
70
|
-
export declare function getReferencedIds(entity: ElementTransfer | Element | ElementShallowTransfer | EntityState, allKnownEntities?: Record<EntityId, Element | ElementTransfer | ElementShallowTransfer
|
|
70
|
+
export declare function getReferencedIds(entity: ElementTransfer | Element | ElementShallowTransfer | EntityState, allKnownEntities?: Record<EntityId, Element | ElementTransfer | ElementShallowTransfer>, options?: {
|
|
71
|
+
ignoreBuiltInBaseEntities?: boolean;
|
|
72
|
+
allBuiltInEntityIds?: EntityId[];
|
|
73
|
+
}): {
|
|
71
74
|
upstream: Record<EntityId, EntityId>;
|
|
72
75
|
downstream: Record<EntityId, EntityId>;
|
|
73
76
|
};
|
|
@@ -159,10 +162,6 @@ export declare function getAllBuiltInEntityIds(): EntityId[];
|
|
|
159
162
|
export declare function flattenEntity(entity: Element | ElementTransfer | ElementShallowTransfer | Reference, seenEntities?: Set<EntityId>, options?: {
|
|
160
163
|
ignoreBuiltInBaseEntities?: boolean;
|
|
161
164
|
}): (Element | ElementTransfer | ElementShallowTransfer)[];
|
|
162
|
-
export declare function getUpstreamDependencyIds(element: Element | ElementTransfer | ElementShallowTransfer, allKnownEntities: Record<EntityId, Element | ElementTransfer | ElementShallowTransfer>, options?: {
|
|
163
|
-
ignoreBuiltInBaseEntities?: boolean;
|
|
164
|
-
allBuiltInEntityIds?: EntityId[];
|
|
165
|
-
}): Set<EntityId>;
|
|
166
165
|
export declare function getEntityArgumentDeclarations(entity: ExecutableEntityState): (ArgumentDeclarationState | ValueDescriptorState)[];
|
|
167
166
|
export declare function getUsedArgFromDeclaration(argumentDeclaration: ArgumentDeclarationState, entity: ConditionState | FunctionCallState | OperationState): InputMapState | null;
|
|
168
167
|
export declare function getEntityInputMaps(entity: DraggablePassThroughCallableEntityState): InputMapState[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6149",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|