@elyx-code/project-logic-tree 0.0.6730 → 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 +22 -5
- package/dist/index.js +24596 -24415
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9493,7 +9493,10 @@ export declare enum CanvasEntityOtherDisabledReason {
|
|
|
9493
9493
|
Suggestion = "suggestion",
|
|
9494
9494
|
CanvasGloballyDisabled = "canvas-globally-disabled",
|
|
9495
9495
|
CannotInteractWithInputInVariableWithInternalCalls = "cannot-interact-with-input-in-variable-with-internal-calls",
|
|
9496
|
-
CannotInteractWithOutputInVariableWithInternalCalls = "cannot-interact-with-output-in-variable-with-internal-calls"
|
|
9496
|
+
CannotInteractWithOutputInVariableWithInternalCalls = "cannot-interact-with-output-in-variable-with-internal-calls",
|
|
9497
|
+
PropertyIsConstantItsValueCantBeReset = "property-is-constant-its-value-cant-be-reset",
|
|
9498
|
+
CannotWriteValueOfGlobalVariableDeclaration = "cannot-write-value-of-global-variable-declaration",
|
|
9499
|
+
CannotReSetValueOfConstantVariable = "cannot-reset-value-of-constant-variable"
|
|
9497
9500
|
}
|
|
9498
9501
|
|
|
9499
9502
|
export declare type CanvasEntityState = InstalledProjectState | DefinitionEntityState | FunctionDeclarationState | GlobalEventState | VariableState | ConditionState | OperationState | FunctionCallState | ReturnStatementState | ContinueStatementState | BreakStatementState | LoopState | SearchState;
|
|
@@ -12405,7 +12408,11 @@ export declare enum EntityInstanceErrorCode {
|
|
|
12405
12408
|
VariableCallsOthersAndHasInternalCall = "variable-calls-others-and-has-internal-call",
|
|
12406
12409
|
MissingRequiredValue = "missing-required-value",
|
|
12407
12410
|
LackingReturnStatementOnSomeBranches = "lacking-return-statement-on-some-branches",
|
|
12408
|
-
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"
|
|
12409
12416
|
}
|
|
12410
12417
|
|
|
12411
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;
|
|
@@ -21858,7 +21865,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
21858
21865
|
declare namespace inputMapValidation {
|
|
21859
21866
|
export {
|
|
21860
21867
|
validateAsync_17 as validateAsync,
|
|
21861
|
-
validate_17 as validate
|
|
21868
|
+
validate_17 as validate,
|
|
21869
|
+
validateConstantValueOverride_2 as validateConstantValueOverride
|
|
21862
21870
|
}
|
|
21863
21871
|
}
|
|
21864
21872
|
export { inputMapValidation }
|
|
@@ -31876,7 +31884,11 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31876
31884
|
GlobalVariableDeclarationCannnotCatchError = "global-variable-declaration-cannot-catch-error",
|
|
31877
31885
|
GlobalVariableDeclarationCannotReadValue = "global-variable-declaration-cannot-read-value",
|
|
31878
31886
|
GlobalVariableDeclarationCannotBeCalled = "global-variable-declaration-cannot-be-called",
|
|
31879
|
-
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"
|
|
31880
31892
|
}
|
|
31881
31893
|
|
|
31882
31894
|
export declare const STATIC_PROPERTY_HEIGHT = 49;
|
|
@@ -33285,6 +33297,10 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
33285
33297
|
|
|
33286
33298
|
export declare function validateConditionEntityDeclaration(conditionDeclarationId: EntityId, project: ProjectState): EntityGenerationError[];
|
|
33287
33299
|
|
|
33300
|
+
declare function validateConstantValueOverride(self: VariableInstanceState): EntityError[];
|
|
33301
|
+
|
|
33302
|
+
declare function validateConstantValueOverride_2(self: InputMapState): EntityError[];
|
|
33303
|
+
|
|
33288
33304
|
export declare const validateDataOperation: IActionDescriptorTransfer;
|
|
33289
33305
|
|
|
33290
33306
|
export declare const validateDataOperationDataToValidateArgument: IValueDescriptorTransfer;
|
|
@@ -34445,7 +34461,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
34445
34461
|
declare namespace variableInstanceValidation {
|
|
34446
34462
|
export {
|
|
34447
34463
|
validateAsync_6 as validateAsync,
|
|
34448
|
-
validate_6 as validate
|
|
34464
|
+
validate_6 as validate,
|
|
34465
|
+
validateConstantValueOverride
|
|
34449
34466
|
}
|
|
34450
34467
|
}
|
|
34451
34468
|
export { variableInstanceValidation }
|