@elyx-code/project-logic-tree 0.0.6468 → 0.0.6470

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 CHANGED
@@ -1907,7 +1907,7 @@ export declare function checkIsBuiltIn(entity: UserManagedEntityState, project:
1907
1907
 
1908
1908
  export declare function checkIsCallableEntityReachable(entity: CallableEntityState): {
1909
1909
  reachable: boolean;
1910
- entryPoint: EntryPointEntityState;
1910
+ entryPoint: EntryPointEntityState | null;
1911
1911
  blocks: {
1912
1912
  blockedByCaller: CallerEntityState;
1913
1913
  blockedByCalling: TerminationState;
@@ -10660,6 +10660,8 @@ declare namespace inputMapValidation {
10660
10660
  }
10661
10661
  export { inputMapValidation }
10662
10662
 
10663
+ export declare function inputOrOutputShouldBePartOfFinalVariableObjectValue(entity: InputMapState | OutputMapState): boolean;
10664
+
10663
10665
  export declare type InstalledProjectPayloadUnion = InstalledProjectState | InstalledProjectTypesUnion;
10664
10666
 
10665
10667
  export declare class InstalledProjectState extends VersionedState implements IInstalledProject, UserManagedEntityStateTemplate, BaseState, BaseCanvasDraggableState, ChildEntityBaseClass {