@elyx-code/project-logic-tree 0.0.6805 → 0.0.6807

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
@@ -12527,7 +12527,8 @@ export declare enum EntityGenerationErrorCode {
12527
12527
  IncompatibleScope = "incompatible-scope",
12528
12528
  InvalidParentUpdate = "invalid-parent-update",
12529
12529
  NonInteractiveEntityReferenced = "non-interactive-entity-referenced",
12530
- InvalidParentRelationType = "invalid-parent-relation-type"
12530
+ InvalidParentRelationType = "invalid-parent-relation-type",
12531
+ CannotImplementExternalIntegrationConnectionDirectly = "cannot-implement-external-integration-connection-directly"
12531
12532
  }
12532
12533
 
12533
12534
  export declare type EntityId = string;
@@ -15264,6 +15265,7 @@ export declare enum GenerationExplanationIds {
15264
15265
  DataTypeEntityFieldOptions = "data-type-entity-field-options-explanation",
15265
15266
  PropertyParentField = "property-parent-field-explanation",
15266
15267
  PropertyParentFieldOptions = "property-parent-field-options-explanation",
15268
+ MethodParentFieldOptions = "method-parent-field-options-explanation",
15267
15269
  AllAvailableValueReaderEntities = "all-available-value-reader-entities-explanation",
15268
15270
  AllAvailableValueWritterEntities = "all-available-value-writter-entities-explanation",
15269
15271
  AvailableValueReadersForGivenWritter = "available-value-readers-for-given-writter-explanation",
@@ -15276,6 +15278,7 @@ export declare enum GenerationExplanationIds {
15276
15278
  AllGlobalEventsActionDescriptors = "all-global-events-action-descriptors-explanation",
15277
15279
  DefinitionEntities = "definition-entities-explanation",
15278
15280
  PropertyImplementationAndExtensionAutoEnrichment = "property-implementation-and-extension-auto-enrichment-explanation",
15281
+ MethodImplementationAndExtensionAutoEnrichment = "method-implementation-and-extension-auto-enrichment-explanation",
15279
15282
  ActualOwnersOfMisplacedProperties = "actual-owners-of-misplaced-properties-explanation",
15280
15283
  EditingProperties = "editing-properties-explanation",
15281
15284
  MutableMetaProperties = "mutable-meta-properties-explanation",
@@ -15310,6 +15313,13 @@ export declare function getAllActionDescriptorsForLoopsListExplanation(project:
15310
15313
 
15311
15314
  export declare function getAllActionDescriptorsForOperationsListExplanation(project: ProjectState): string;
15312
15315
 
15316
+ export declare function getAllAvailableParentsForFunctionDeclarationExplanation(data: IFunctionDeclarationGenerationTarget, project: ProjectState): {
15317
+ explanations: {
15318
+ id: GenerationExplanationIds;
15319
+ message: string;
15320
+ }[];
15321
+ };
15322
+
15313
15323
  /**
15314
15324
  * Returns a human readable explanation of all available parent entities that can own a new property entity.
15315
15325
  * The new data for the property to be created can be used to filter the list of available parents.
@@ -20358,6 +20368,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
20358
20368
  saltBytes?: Bytes;
20359
20369
  }
20360
20370
 
20371
+ export declare function hasMissingValue(self: EntityWithValueState): boolean;
20372
+
20361
20373
  export declare function hexToken(): string;
20362
20374
 
20363
20375
  /** HMAC over data with SHA-256/384/512. */
@@ -22001,6 +22013,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
22001
22013
  indentSize?: number;
22002
22014
  maxDepth?: number;
22003
22015
  onPrefix?: (entity: EntityState) => string;
22016
+ onMissingValue?: (entity: EntityWithValueState, defaultLabel: string) => string;
22004
22017
  }
22005
22018
 
22006
22019
  export declare interface ILoop extends ILoop_meta, IChildEntity, ICalledEntity, IBaseActionCall {
@@ -22853,6 +22866,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
22853
22866
  omitFields?: EntityPrintingFields[];
22854
22867
  onlyFields?: EntityPrintingFields[];
22855
22868
  onPrefix?: (entity: EntityState) => string;
22869
+ onMissingValue?: (entity: EntityWithValueState, defaultLabel: string) => string;
22856
22870
  }
22857
22871
 
22858
22872
  export declare interface IProject extends IProjectTransfer {