@elyx-code/project-logic-tree 0.0.6731 → 0.0.6732
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 +191 -191
- package/dist/index.d.ts +18 -4
- package/dist/index.js +24595 -24414
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12408,7 +12408,11 @@ export declare enum EntityInstanceErrorCode {
|
|
|
12408
12408
|
VariableCallsOthersAndHasInternalCall = "variable-calls-others-and-has-internal-call",
|
|
12409
12409
|
MissingRequiredValue = "missing-required-value",
|
|
12410
12410
|
LackingReturnStatementOnSomeBranches = "lacking-return-statement-on-some-branches",
|
|
12411
|
-
LastCalledEntityMustBeReturnEntity = "last-called-entity-must-be-return-entity"
|
|
12411
|
+
LastCalledEntityMustBeReturnEntity = "last-called-entity-must-be-return-entity",
|
|
12412
|
+
ValueReadingOverridesConstantProperty = "value-reading-overrides-constant-property",
|
|
12413
|
+
DefaultValueOverridesConstantProperty = "default-value-overrides-constant-property",
|
|
12414
|
+
ValueReadingOverridesConstantVariable = "value-reading-overrides-constant-variable",
|
|
12415
|
+
DefaultValueOverridesConstantVariable = "default-value-overrides-constant-variable"
|
|
12412
12416
|
}
|
|
12413
12417
|
|
|
12414
12418
|
export declare type EntityPayloadUnion = BuiltInBaseEntityPayloadUnion | ProjectPayloadUnion | InstalledProjectPayloadUnion | DefinitionEntityPayloadUnion | FunctionDeclarationPayloadUnion | GlobalEventPayloadUnion | VariableDeclarationPayloadUnion | VariableInstancePayloadUnion | InputMapPayloadUnion | OutputMapPayloadUnion | ConditionPayloadUnion | OperationPayloadUnion | FunctionCallPayloadUnion | ArgumentDeclarationPayloadUnion | PrimitiveEntityPayloadUnion | DataTypePayloadUnion | PropertyPayloadUnion | ActionDescriptorPayloadUnion | ReturnStatementPayloadUnion | ContinueStatementPayloadUnion | BreakStatementPayloadUnion | LoopPayloadUnion | SearchPayloadUnion | ValueDescriptorPayloadUnion | InternalCallPayloadUnion | LiteralValuePayloadUnion;
|
|
@@ -21861,7 +21865,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
21861
21865
|
declare namespace inputMapValidation {
|
|
21862
21866
|
export {
|
|
21863
21867
|
validateAsync_17 as validateAsync,
|
|
21864
|
-
validate_17 as validate
|
|
21868
|
+
validate_17 as validate,
|
|
21869
|
+
validateConstantValueOverride_2 as validateConstantValueOverride
|
|
21865
21870
|
}
|
|
21866
21871
|
}
|
|
21867
21872
|
export { inputMapValidation }
|
|
@@ -31879,7 +31884,11 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31879
31884
|
GlobalVariableDeclarationCannnotCatchError = "global-variable-declaration-cannot-catch-error",
|
|
31880
31885
|
GlobalVariableDeclarationCannotReadValue = "global-variable-declaration-cannot-read-value",
|
|
31881
31886
|
GlobalVariableDeclarationCannotBeCalled = "global-variable-declaration-cannot-be-called",
|
|
31882
|
-
GlobalVariableDeclarationCannotCallFromError = "global-variable-declaration-cannot-call-from-error"
|
|
31887
|
+
GlobalVariableDeclarationCannotCallFromError = "global-variable-declaration-cannot-call-from-error",
|
|
31888
|
+
ValueReadingOverridesConstantProperty = "value-reading-overrides-constant-property",
|
|
31889
|
+
DefaultValueOverridesConstantProperty = "default-value-overrides-constant-property",
|
|
31890
|
+
ValueReadingOverridesConstantVariable = "value-reading-overrides-constant-variable",
|
|
31891
|
+
DefaultValueOverridesConstantVariable = "default-value-overrides-constant-variable"
|
|
31883
31892
|
}
|
|
31884
31893
|
|
|
31885
31894
|
export declare const STATIC_PROPERTY_HEIGHT = 49;
|
|
@@ -33288,6 +33297,10 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
33288
33297
|
|
|
33289
33298
|
export declare function validateConditionEntityDeclaration(conditionDeclarationId: EntityId, project: ProjectState): EntityGenerationError[];
|
|
33290
33299
|
|
|
33300
|
+
declare function validateConstantValueOverride(self: VariableInstanceState): EntityError[];
|
|
33301
|
+
|
|
33302
|
+
declare function validateConstantValueOverride_2(self: InputMapState): EntityError[];
|
|
33303
|
+
|
|
33291
33304
|
export declare const validateDataOperation: IActionDescriptorTransfer;
|
|
33292
33305
|
|
|
33293
33306
|
export declare const validateDataOperationDataToValidateArgument: IValueDescriptorTransfer;
|
|
@@ -34448,7 +34461,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
34448
34461
|
declare namespace variableInstanceValidation {
|
|
34449
34462
|
export {
|
|
34450
34463
|
validateAsync_6 as validateAsync,
|
|
34451
|
-
validate_6 as validate
|
|
34464
|
+
validate_6 as validate,
|
|
34465
|
+
validateConstantValueOverride
|
|
34452
34466
|
}
|
|
34453
34467
|
}
|
|
34454
34468
|
export { variableInstanceValidation }
|