@elyx-code/project-logic-tree 0.0.6145 → 0.0.6146

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.
@@ -159,7 +159,10 @@ export declare function getAllBuiltInEntityIds(): EntityId[];
159
159
  export declare function flattenEntity(entity: Element | ElementTransfer | ElementShallowTransfer | Reference, seenEntities?: Set<EntityId>, options?: {
160
160
  ignoreBuiltInBaseEntities?: boolean;
161
161
  }): (Element | ElementTransfer | ElementShallowTransfer)[];
162
- export declare function getUpstreamDependencyIds(element: Element | ElementTransfer | ElementShallowTransfer, allKnownEntities: Record<EntityId, Element | ElementTransfer | ElementShallowTransfer>): Set<EntityId>;
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>;
163
166
  export declare function getEntityArgumentDeclarations(entity: ExecutableEntityState): (ArgumentDeclarationState | ValueDescriptorState)[];
164
167
  export declare function getUsedArgFromDeclaration(argumentDeclaration: ArgumentDeclarationState, entity: ConditionState | FunctionCallState | OperationState): InputMapState | null;
165
168
  export declare function getEntityInputMaps(entity: DraggablePassThroughCallableEntityState): InputMapState[];
@@ -5,6 +5,7 @@ export declare function isPromise(obj: any): obj is Promise<any>;
5
5
  export declare class Traverser {
6
6
  order: EntityId[];
7
7
  flatRecord: Record<EntityId, Element | ElementTransfer | EntityState | ElementShallowTransfer>;
8
+ allBuiltInEntityIds: string[];
8
9
  private onGoingVisits;
9
10
  constructor(root: Element | ElementTransfer | EntityState | ElementShallowTransfer);
10
11
  flatten(entity: Element | ElementTransfer | EntityState | ElementShallowTransfer): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6145",
3
+ "version": "0.0.6146",
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",