@elyx-code/project-logic-tree 0.0.6827 → 0.0.6829
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 +266 -263
- package/dist/index.d.ts +15 -2
- package/dist/index.js +32246 -32079
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9571,7 +9571,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9571
9571
|
VariableDeclarationCannotBeMovedToLowerScopeBecauseInstancesUsage = "variable-declaration-cannot-be-moved-to-lower-scope-because-instances-usage",
|
|
9572
9572
|
CannotChangeScopeBecauseItIsCalledByOtherEntities = "cannot-change-scope-because-it-is-called-by-other-entities",
|
|
9573
9573
|
CannotChangeScopeBecauseItCallsOtherEntities = "cannot-change-scope-because-it-calls-other-entities",
|
|
9574
|
-
CalledByErrorMustBePassThroughCallable = "called-by-error-must-be-pass-through-callable"
|
|
9574
|
+
CalledByErrorMustBePassThroughCallable = "called-by-error-must-be-pass-through-callable",
|
|
9575
|
+
CalledByErrorCannotBeConnectedToEntitiesCalledByOwnSuccessBranch = "called-by-error-cannot-be-connected-to-entities-called-by-own-success-branch"
|
|
9575
9576
|
}
|
|
9576
9577
|
|
|
9577
9578
|
export declare type CanvasEntityDisabledReason = CanvasEntityConnectionDisabledReason | CanvasEntityTestingDisabledReason | CanvasEntityOtherDisabledReason | StateMutationErrorCode;
|
|
@@ -12582,6 +12583,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
12582
12583
|
InvalidReference = "invalid-reference",
|
|
12583
12584
|
InvalidInternalCallParentRelation = "invalid-internal-call-parent-relation",
|
|
12584
12585
|
InvalidUpdateEntityOperation = "invalid-update-entity-operation",
|
|
12586
|
+
InvalidBuiltInActionDescriptorForInternalCallReference = "invalid-built-in-action-descriptor-for-internal-call-reference",
|
|
12585
12587
|
NewEntityWouldOverriteExisting = "new-entity-would-overrite-existing",
|
|
12586
12588
|
InvalidDownstreamPropertyOverride = "invalid-downstream-property-override",
|
|
12587
12589
|
UnrecognizedProperty = "unrecognized-property",
|
|
@@ -15441,7 +15443,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
15441
15443
|
AllStaticAndAbstractDefinitionEntities = "all-static-and-abstract-definition-entities-explanation",
|
|
15442
15444
|
AllStaticNonAbstractDefinitionEntities = "all-static-non-abstract-definition-entities-explanation",
|
|
15443
15445
|
AllAbstractNonStaticDefinitionEntities = "all-abstract-non-static-definition-entities-explanation",
|
|
15444
|
-
AllInstanciatableDefinitionEntities = "all-instantiatable-definition-entities-explanation"
|
|
15446
|
+
AllInstanciatableDefinitionEntities = "all-instantiatable-definition-entities-explanation",
|
|
15447
|
+
AutoReplacedExistingValueWriterForNewGiven = "auto-replaced-existing-value-writer-for-new-given-explanation"
|
|
15445
15448
|
}
|
|
15446
15449
|
|
|
15447
15450
|
/** lodash-like get(obj, path, defaultValue) with precise "missing" detection */
|
|
@@ -25614,6 +25617,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
25614
25617
|
|
|
25615
25618
|
export declare const messagesResponsePropsParentRef: IDefinitionEntityReference;
|
|
25616
25619
|
|
|
25620
|
+
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.";
|
|
25621
|
+
|
|
25617
25622
|
export declare const methodDefaultValue: ILiteralValueTransfer;
|
|
25618
25623
|
|
|
25619
25624
|
export declare const microsoftAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
@@ -30221,6 +30226,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
30221
30226
|
}[];
|
|
30222
30227
|
};
|
|
30223
30228
|
|
|
30229
|
+
export declare function printDefEntityBuiltInFunctionality(entity: DefinitionEntityState): string;
|
|
30230
|
+
|
|
30224
30231
|
export declare function printEntity(entity: EntityState, options?: IPrintEntityOptions): {
|
|
30225
30232
|
lines: {
|
|
30226
30233
|
text: string;
|
|
@@ -31329,6 +31336,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
31329
31336
|
|
|
31330
31337
|
export declare function resolveSQLMigrationsDiffs(project: ProjectState, lastPublishedProjectState: ProjectState | null, entity: DefinitionEntityState): ISQLMigrationsDiffs;
|
|
31331
31338
|
|
|
31339
|
+
export declare function resolveTechnicalBaseEntityName(baseEntities: BaseEntityNames[]): string;
|
|
31340
|
+
|
|
31332
31341
|
export declare function resolveTerminationEntityValue(entity: TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
31333
31342
|
|
|
31334
31343
|
export declare function resolveValue(entity: EntityWithValueState | PropertyState | ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
@@ -33630,6 +33639,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
33630
33639
|
*/
|
|
33631
33640
|
export declare function toCamelCase(str: string): string;
|
|
33632
33641
|
|
|
33642
|
+
export declare function toCanvasFlatArray(project: ProjectState, changeSet: ChangeSet, options?: YieldOptions & {
|
|
33643
|
+
forceAll?: boolean;
|
|
33644
|
+
}): Promise<CanvasEntityState[]>;
|
|
33645
|
+
|
|
33633
33646
|
export declare function toEditorContext(extensionsRegistry: ExtensionsRegistry, editor: IEditor): DefaultEditorContext;
|
|
33634
33647
|
|
|
33635
33648
|
export declare function toEntityState(entity: string | EntityState | IGenericReference | Element_2 | ElementTransfer | ElementShallowTransfer | ElementGenerationTarget, project: ProjectState): EntityState | null;
|