@elyx-code/project-logic-tree 0.0.6826 → 0.0.6828

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
@@ -12582,6 +12582,7 @@ export declare enum BaseValueDescriptorIds {
12582
12582
  InvalidReference = "invalid-reference",
12583
12583
  InvalidInternalCallParentRelation = "invalid-internal-call-parent-relation",
12584
12584
  InvalidUpdateEntityOperation = "invalid-update-entity-operation",
12585
+ InvalidBuiltInActionDescriptorForInternalCallReference = "invalid-built-in-action-descriptor-for-internal-call-reference",
12585
12586
  NewEntityWouldOverriteExisting = "new-entity-would-overrite-existing",
12586
12587
  InvalidDownstreamPropertyOverride = "invalid-downstream-property-override",
12587
12588
  UnrecognizedProperty = "unrecognized-property",
@@ -15441,7 +15442,8 @@ export declare enum BaseValueDescriptorIds {
15441
15442
  AllStaticAndAbstractDefinitionEntities = "all-static-and-abstract-definition-entities-explanation",
15442
15443
  AllStaticNonAbstractDefinitionEntities = "all-static-non-abstract-definition-entities-explanation",
15443
15444
  AllAbstractNonStaticDefinitionEntities = "all-abstract-non-static-definition-entities-explanation",
15444
- AllInstanciatableDefinitionEntities = "all-instantiatable-definition-entities-explanation"
15445
+ AllInstanciatableDefinitionEntities = "all-instantiatable-definition-entities-explanation",
15446
+ AutoReplacedExistingValueWriterForNewGiven = "auto-replaced-existing-value-writer-for-new-given-explanation"
15445
15447
  }
15446
15448
 
15447
15449
  /** lodash-like get(obj, path, defaultValue) with precise "missing" detection */
@@ -25614,6 +25616,8 @@ export declare enum BaseValueDescriptorIds {
25614
25616
 
25615
25617
  export declare const messagesResponsePropsParentRef: IDefinitionEntityReference;
25616
25618
 
25619
+ export declare const METHOD_IMPLEMENTATION_AND_EXTENSION_AUTO_ENRICHMENT_EXPLANATION = "When a 'function-declaration' entity is added to a 'definition-entity', the system will automatically enrich the function based on the parent definition-entity's implemented and extended entities.\nThis means that if a function is required, the parent 'definition-entity' will have auto-generated it. If a manually added function can fit into a parent, it will be auto-enriched with any required 'implementation' or 'extension' references, and its signature (inputs and output data-type) will be recalculated or constrained based on said extensions and implementations.\nThis means that manually adding an 'extends' or 'implements' field to a new function is not necessary.";
25620
+
25617
25621
  export declare const methodDefaultValue: ILiteralValueTransfer;
25618
25622
 
25619
25623
  export declare const microsoftAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
@@ -30221,6 +30225,8 @@ export declare enum BaseValueDescriptorIds {
30221
30225
  }[];
30222
30226
  };
30223
30227
 
30228
+ export declare function printDefEntityBuiltInFunctionality(entity: DefinitionEntityState): string;
30229
+
30224
30230
  export declare function printEntity(entity: EntityState, options?: IPrintEntityOptions): {
30225
30231
  lines: {
30226
30232
  text: string;
@@ -31329,6 +31335,8 @@ export declare enum BaseValueDescriptorIds {
31329
31335
 
31330
31336
  export declare function resolveSQLMigrationsDiffs(project: ProjectState, lastPublishedProjectState: ProjectState | null, entity: DefinitionEntityState): ISQLMigrationsDiffs;
31331
31337
 
31338
+ export declare function resolveTechnicalBaseEntityName(baseEntities: BaseEntityNames[]): string;
31339
+
31332
31340
  export declare function resolveTerminationEntityValue(entity: TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
31333
31341
 
31334
31342
  export declare function resolveValue(entity: EntityWithValueState | PropertyState | ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
@@ -33630,6 +33638,10 @@ export declare enum BaseValueDescriptorIds {
33630
33638
  */
33631
33639
  export declare function toCamelCase(str: string): string;
33632
33640
 
33641
+ export declare function toCanvasFlatArray(project: ProjectState, changeSet: ChangeSet, options?: YieldOptions & {
33642
+ forceAll?: boolean;
33643
+ }): Promise<CanvasEntityState[]>;
33644
+
33633
33645
  export declare function toEditorContext(extensionsRegistry: ExtensionsRegistry, editor: IEditor): DefaultEditorContext;
33634
33646
 
33635
33647
  export declare function toEntityState(entity: string | EntityState | IGenericReference | Element_2 | ElementTransfer | ElementShallowTransfer | ElementGenerationTarget, project: ProjectState): EntityState | null;