@elyx-code/project-logic-tree 0.0.6737 → 0.0.6739
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.cjs +142 -142
- package/dist/index.d.ts +8 -4
- package/dist/index.js +14132 -14138
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9694,12 +9694,16 @@ export declare function checkIsDetachedBranchShallow(entity: CanvasEntityState):
|
|
|
9694
9694
|
|
|
9695
9695
|
export declare function checkIsEmptyValue(value: LiteralValueType | undefined): boolean;
|
|
9696
9696
|
|
|
9697
|
+
export declare function checkIsExplicitlyEmpty(value: LiteralValueType | undefined): boolean;
|
|
9698
|
+
|
|
9697
9699
|
export declare function checkIsGloballyDeclared(entity: ConditionState | FunctionCallState | OperationState | VariableDeclarationState | VariableInstanceState | FunctionCallState | LoopState | SearchState): boolean;
|
|
9698
9700
|
|
|
9699
9701
|
export declare function checkIsGlobalVariable(entity: VariableDeclarationState): boolean;
|
|
9700
9702
|
|
|
9701
9703
|
export declare function checkIsLiteralValueEmpty(value: LiteralValueState | null): boolean;
|
|
9702
9704
|
|
|
9705
|
+
export declare function checkIsLiteralValueExplicitlyEmpty(value: LiteralValueState | null): boolean;
|
|
9706
|
+
|
|
9703
9707
|
export declare function checkIsMethod(entity: EntityState): boolean;
|
|
9704
9708
|
|
|
9705
9709
|
export declare function checkIsNestedScope(parent: EntityWithLogicScopeState | ProjectState, child: EntityWithLogicScopeState | ProjectState, project: ProjectState): boolean;
|
|
@@ -22698,12 +22702,12 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
22698
22702
|
|
|
22699
22703
|
export declare interface ISearchNodeImplementationModule {
|
|
22700
22704
|
main(_entity: SearchState, _inputs: IDynamicValue[]): Promise<{
|
|
22701
|
-
|
|
22705
|
+
error: string | null;
|
|
22706
|
+
[dataPropertyName: string]: {
|
|
22702
22707
|
[columnName: string]: any;
|
|
22703
22708
|
} | null | {
|
|
22704
22709
|
[columnName: string]: any;
|
|
22705
22710
|
}[];
|
|
22706
|
-
error: string | null;
|
|
22707
22711
|
}>;
|
|
22708
22712
|
}
|
|
22709
22713
|
|
|
@@ -30766,12 +30770,12 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
30766
30770
|
manifest: ExtensionManifest;
|
|
30767
30771
|
module: {
|
|
30768
30772
|
main: (_entity: SearchState, _inputs: IDynamicValue[]) => Promise<{
|
|
30769
|
-
|
|
30773
|
+
error: string | null;
|
|
30774
|
+
[dataPropertyName: string]: {
|
|
30770
30775
|
[columnName: string]: any;
|
|
30771
30776
|
} | null | {
|
|
30772
30777
|
[columnName: string]: any;
|
|
30773
30778
|
}[];
|
|
30774
|
-
error: string | null;
|
|
30775
30779
|
}>;
|
|
30776
30780
|
};
|
|
30777
30781
|
}
|