@elyx-code/project-logic-tree 0.0.6436 → 0.0.6439
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 +22 -3
- package/dist/index.js +27751 -27961
- package/dist/index.umd.cjs +235 -235
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1973,7 +1973,8 @@ declare class ColumnRef implements ISearchNode {
|
|
|
1973
1973
|
|
|
1974
1974
|
export declare enum CommonStringValidationErrorCodes {
|
|
1975
1975
|
StringValueMustNotHaveSpaces = "string-value-must-not-have-spaces",
|
|
1976
|
-
StringValueMustNotHaveDashes = "string-value-must-not-have-dashes"
|
|
1976
|
+
StringValueMustNotHaveDashes = "string-value-must-not-have-dashes",
|
|
1977
|
+
MustBeUniqueAmongSameEntities = "must-be-unique-among-same-entities"
|
|
1977
1978
|
}
|
|
1978
1979
|
|
|
1979
1980
|
export declare const COMPARISON_CONDITIONS: {
|
|
@@ -3563,7 +3564,9 @@ export declare enum EntityInstanceErrorCode {
|
|
|
3563
3564
|
VariableHasOutputsAndInternalCall = "variable-has-outputs-and-internal-call",
|
|
3564
3565
|
VariableIsCalledAndHasInternalCall = "variable-is-called-and-has-internal-call",
|
|
3565
3566
|
VariableCallsOthersAndHasInternalCall = "variable-calls-others-and-has-internal-call",
|
|
3566
|
-
MissingRequiredValue = "missing-required-value"
|
|
3567
|
+
MissingRequiredValue = "missing-required-value",
|
|
3568
|
+
LackingReturnStatementOnSomeBranches = "lacking-return-statement-on-some-branches",
|
|
3569
|
+
LastCalledEntityMustBeReturnEntity = "last-called-entity-must-be-return-entity"
|
|
3567
3570
|
}
|
|
3568
3571
|
|
|
3569
3572
|
export declare enum EntityOperations {
|
|
@@ -3786,7 +3789,7 @@ export declare class Execution extends Events {
|
|
|
3786
3789
|
executeSearch(entity: SearchState, inputs: IDynamicValue[], project: ProjectState): Promise<IExecutionResult>;
|
|
3787
3790
|
executeLoop(loop: LoopState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
3788
3791
|
executeFunctionCall(functionCall: FunctionCallState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
3789
|
-
|
|
3792
|
+
executeCondition(condition: ConditionState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
3790
3793
|
executeDetachedFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
3791
3794
|
executeFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult>;
|
|
3792
3795
|
static executeEntryPointEntity(entryPointEntity: EntryPointEntityState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
@@ -14295,6 +14298,18 @@ export declare const READABLE_ENTITY_TYPES: {
|
|
|
14295
14298
|
shortSingular: string;
|
|
14296
14299
|
shortPlural: string;
|
|
14297
14300
|
};
|
|
14301
|
+
"data-type": {
|
|
14302
|
+
singular: string;
|
|
14303
|
+
plural: string;
|
|
14304
|
+
shortSingular: string;
|
|
14305
|
+
shortPlural: string;
|
|
14306
|
+
};
|
|
14307
|
+
"literal-value": {
|
|
14308
|
+
singular: string;
|
|
14309
|
+
plural: string;
|
|
14310
|
+
shortSingular: string;
|
|
14311
|
+
shortPlural: string;
|
|
14312
|
+
};
|
|
14298
14313
|
};
|
|
14299
14314
|
|
|
14300
14315
|
export declare function readValueFromWritter(entity: ValueReadingEntityState, context: IValueResolutionContext): IDynamicValue | null;
|
|
@@ -15624,6 +15639,8 @@ declare function validate_9(self: ActionDescriptorState): EntityError[];
|
|
|
15624
15639
|
|
|
15625
15640
|
export declare function validateArgumentDeclarationName(entity: ArgumentDeclarationState | IArgumentDeclarationGenerationTarget | IArgumentDeclarationShallowTransfer | IArgumentDeclarationTransfer, project: ProjectState): EntityGenerationError[];
|
|
15626
15641
|
|
|
15642
|
+
export declare function validateCallableEntityShouldCallReturnStatement(self: CallableEntityState): EntityError[];
|
|
15643
|
+
|
|
15627
15644
|
export declare function validateCalledByErrorIdInAction(calledByErrorId: EntityId, project: ProjectState, propertyName?: string): EntityGenerationError[];
|
|
15628
15645
|
|
|
15629
15646
|
export declare function validateCalledByIdInAction(calledById: EntityId, project: ProjectState, propertyName?: string): EntityGenerationError[];
|
|
@@ -15679,6 +15696,8 @@ declare function validateDefinitionEntityName_2(self: DefinitionEntityState): En
|
|
|
15679
15696
|
|
|
15680
15697
|
export declare function validateEntryCaller(data: ElementGenerationTarget, callerEntity: CallerEntityState): EntityGenerationError[];
|
|
15681
15698
|
|
|
15699
|
+
export declare function validateEntryPointsTermination(self: EntryPointEntityState): EntityError[];
|
|
15700
|
+
|
|
15682
15701
|
export declare function validateErrorCaller(data: ElementGenerationTarget, callerEntity: CallerEntityState): EntityGenerationError[];
|
|
15683
15702
|
|
|
15684
15703
|
export declare function validateFunctionCallDeclaration(functionDeclarationId: EntityId, project: ProjectState): EntityGenerationError[];
|