@elyx-code/project-logic-tree 0.0.6834 → 0.0.6836

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
@@ -12604,7 +12604,8 @@ export declare enum BaseValueDescriptorIds {
12604
12604
  InvalidParentUpdate = "invalid-parent-update",
12605
12605
  NonInteractiveEntityReferenced = "non-interactive-entity-referenced",
12606
12606
  InvalidParentRelationType = "invalid-parent-relation-type",
12607
- CannotImplementExternalIntegrationConnectionDirectly = "cannot-implement-external-integration-connection-directly"
12607
+ CannotImplementExternalIntegrationConnectionDirectly = "cannot-implement-external-integration-connection-directly",
12608
+ IncompatibleReaderAndWriter = "incompatible-reader-and-writer"
12608
12609
  }
12609
12610
 
12610
12611
  export declare type EntityId = string;
@@ -12656,7 +12657,10 @@ export declare enum BaseValueDescriptorIds {
12656
12657
  ValueReadingOverridesConstantProperty = "value-reading-overrides-constant-property",
12657
12658
  DefaultValueOverridesConstantProperty = "default-value-overrides-constant-property",
12658
12659
  ValueReadingOverridesConstantVariable = "value-reading-overrides-constant-variable",
12659
- DefaultValueOverridesConstantVariable = "default-value-overrides-constant-variable"
12660
+ DefaultValueOverridesConstantVariable = "default-value-overrides-constant-variable",
12661
+ CalledBeforeDeclaration = "called-before-declaration",
12662
+ CalledInParallelBranchToDeclaration = "called-in-parallel-branch-to-declaration",
12663
+ HigherScopeThanDeclaration = "higher-scope-than-declaration"
12660
12664
  }
12661
12665
 
12662
12666
  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;
@@ -22857,7 +22861,8 @@ export declare enum BaseValueDescriptorIds {
22857
22861
  export {
22858
22862
  validateAsync_19 as validateAsync,
22859
22863
  validate_19 as validate,
22860
- validateParentRelation
22864
+ validateParentRelation,
22865
+ validateCallAfterDeclaration_2 as validateCallAfterDeclaration
22861
22866
  }
22862
22867
  }
22863
22868
  export { internalCallValidation }
@@ -23506,6 +23511,8 @@ export declare enum BaseValueDescriptorIds {
23506
23511
 
23507
23512
  export declare function isUUID(uuid: string): boolean;
23508
23513
 
23514
+ export declare function isUUIDv4(uuid: unknown): uuid is string;
23515
+
23509
23516
  export declare function isValid(input: ISODateString | string): boolean;
23510
23517
 
23511
23518
  declare interface ITable {
@@ -32780,7 +32787,10 @@ export declare enum BaseValueDescriptorIds {
32780
32787
  CannotSuccessCallItself = "cannot-success-call-itself",
32781
32788
  CannotErrorCallItself = "cannot-error-call-itself",
32782
32789
  CannotEntryCallItself = "cannot-entry-call-itself",
32783
- CannotValueWriteItself = "cannot-value-write-itself"
32790
+ CannotValueWriteItself = "cannot-value-write-itself",
32791
+ CannotBeCalledBeforeDeclaration = "cannot-be-called-before-declaration",
32792
+ CannotBeCalledInParallelBranchToDeclaration = "cannot-be-called-in-parallel-branch-to-declaration",
32793
+ CannotBeHigherScopeThanDeclaration = "cannot-be-higher-scope-than-declaration"
32784
32794
  }
32785
32795
 
32786
32796
  export declare const STATIC_PROPERTY_HEIGHT = 49;
@@ -34171,6 +34181,10 @@ export declare enum BaseValueDescriptorIds {
34171
34181
 
34172
34182
  export declare function validateCallableEntityShouldCallReturnStatement(self: CallableEntityState): EntityError[];
34173
34183
 
34184
+ declare function validateCallAfterDeclaration(self: VariableInstanceState): EntityError[];
34185
+
34186
+ declare function validateCallAfterDeclaration_2(self: InternalCallState): EntityError[];
34187
+
34174
34188
  export declare function validateCalledByErrorIdInAction(calledByErrorId: EntityId, project: ProjectState, propertyName?: string): {
34175
34189
  errors: EntityGenerationError[];
34176
34190
  explanations: {
@@ -35471,7 +35485,8 @@ export declare enum BaseValueDescriptorIds {
35471
35485
  export {
35472
35486
  validateAsync_6 as validateAsync,
35473
35487
  validate_6 as validate,
35474
- validateConstantValueOverride
35488
+ validateConstantValueOverride,
35489
+ validateCallAfterDeclaration
35475
35490
  }
35476
35491
  }
35477
35492
  export { variableInstanceValidation }