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

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
@@ -15446,7 +15446,8 @@ export declare enum BaseValueDescriptorIds {
15446
15446
  AllStaticNonAbstractDefinitionEntities = "all-static-non-abstract-definition-entities-explanation",
15447
15447
  AllAbstractNonStaticDefinitionEntities = "all-abstract-non-static-definition-entities-explanation",
15448
15448
  AllInstanciatableDefinitionEntities = "all-instantiatable-definition-entities-explanation",
15449
- AutoReplacedExistingValueWriterForNewGiven = "auto-replaced-existing-value-writer-for-new-given-explanation"
15449
+ AutoReplacedExistingValueWriterForNewGiven = "auto-replaced-existing-value-writer-for-new-given-explanation",
15450
+ AutoResolvedCalledByBasedOnValueWriter = "auto-resolved-calledBy-based-on-value-writer-explanation"
15450
15451
  }
15451
15452
 
15452
15453
  /** lodash-like get(obj, path, defaultValue) with precise "missing" detection */
@@ -34355,7 +34356,13 @@ export declare enum BaseValueDescriptorIds {
34355
34356
 
34356
34357
  export declare function validateReachability(self: PassThroughCallableEntityState): EntityError[];
34357
34358
 
34358
- export declare function validateReadsValueInActionPayload(readsValue: EntityId, project: ProjectState): EntityGenerationError[];
34359
+ export declare function validateReadsValueInActionPayload(readsValue: EntityId, project: ProjectState): {
34360
+ errors: EntityGenerationError[];
34361
+ explanations: {
34362
+ id: GenerationExplanationIds;
34363
+ message: string;
34364
+ }[];
34365
+ };
34359
34366
 
34360
34367
  export declare function validateReferenceObject(reference: Reference): EntityGenerationError[];
34361
34368