@elyx-code/project-logic-tree 0.0.6480 → 0.0.6482

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
@@ -3870,6 +3870,7 @@ export declare class Execution extends Events {
3870
3870
  onRemoveFromSkippedListCallback: null | ((entity: TestableEntityState) => void);
3871
3871
  onAddEntityCallback: null | ((entity: TestableEntityState) => void);
3872
3872
  onRemoveEntityCallback: null | ((entity: TestableEntityState) => void);
3873
+ onAbortExecutionCallback: null | ((entity: TestableEntityState) => void);
3873
3874
  constructor(project: ProjectState, entities: TestableEntityState[], entryPoint: TestableEntityState, parentExecution?: Execution | null, parentContext?: IExecutionInstanceParentContext);
3874
3875
  get valueResolutionContext(): IValueResolutionContext;
3875
3876
  skip(entity: TestableEntityState): void;
@@ -3904,10 +3905,13 @@ export declare class Execution extends Events {
3904
3905
  hasExecuted(entity: TestableEntityState): boolean;
3905
3906
  hasEntityWithId(id: string): boolean;
3906
3907
  onAddToSkippedList(callback: (entity: TestableEntityState) => void): void;
3908
+ onAbortExecution(callback: (entity: TestableEntityState) => void): void;
3907
3909
  onAddEntity(callback: (entity: TestableEntityState) => void): void;
3908
3910
  onRemoveFromSkippedList(callback: (entity: TestableEntityState) => void): void;
3909
3911
  onRemoveEntity(callback: (entity: TestableEntityState) => void): void;
3910
3912
  addToExecutingList(entity: TestableEntityState): void;
3913
+ addToScheduledList(entity: TestableEntityState): void;
3914
+ removeFromScheduledList(entity: TestableEntityState): void;
3911
3915
  removeFromExecutingList(entity: TestableEntityState): void;
3912
3916
  removeFromAlreadyExecutedList(entity: TestableEntityState): void;
3913
3917
  removeFromSkippedList(entity: TestableEntityState): void;
@@ -15892,9 +15896,9 @@ export declare const validateDataOperationOutputEntityDeclarationParentRef: IAct
15892
15896
 
15893
15897
  export declare function validateDefinitionEntityName(entity: DefinitionEntityState | IDefinitionEntityGenerationTarget | IDefinitionEntityShallowTransfer | IDefinitionEntityTransfer, project: ProjectState): EntityGenerationError[];
15894
15898
 
15895
- declare function validateDefinitionEntityName_2(self: DefinitionEntityState): EntityError[];
15899
+ declare function validateDefinitionEntityName_2(self: DefinitionEntityState, newName?: string): EntityError[];
15896
15900
 
15897
- export declare function validateEntityName(self: EntityWithNamesState, toCodeNameTransformers?: ((name: string) => string)[], otherRelevantEntitiesInNameSpace?: EntityWithNamesState[]): EntityError[];
15901
+ export declare function validateEntityName(self: EntityWithNamesState, toCodeNameTransformers?: ((name: string) => string)[], otherRelevantEntitiesInNameSpace?: EntityWithNamesState[], newName?: string | null): EntityError[];
15898
15902
 
15899
15903
  export declare function validateEntryCaller(data: ElementGenerationTarget, callerEntity: CallerEntityState): EntityGenerationError[];
15900
15904
 
@@ -15906,7 +15910,7 @@ export declare function validateFunctionCallDeclaration(functionDeclarationId: E
15906
15910
 
15907
15911
  export declare function validateFunctionDeclarationName(entity: FunctionDeclarationState | IFunctionDeclarationGenerationTarget | IFunctionDeclarationShallowTransfer | IFunctionDeclarationTransfer, project: ProjectState): EntityGenerationError[];
15908
15912
 
15909
- declare function validateFunctionDeclarationName_2(self: FunctionDeclarationState): EntityError[];
15913
+ declare function validateFunctionDeclarationName_2(self: FunctionDeclarationState, newName?: string): EntityError[];
15910
15914
 
15911
15915
  export declare function validateGeneratedEntityParentIsNotBuiltInEntity(data: ElementGenerationTarget, project: ProjectState): EntityGenerationError[];
15912
15916
 
@@ -15937,7 +15941,7 @@ export declare function validateOperationEntityDeclaration(operationDeclarationI
15937
15941
 
15938
15942
  declare function validateParentRelation(self: InternalCallState): EntityError[];
15939
15943
 
15940
- declare function validatePropertyEntityName(self: PropertyState): EntityError[];
15944
+ declare function validatePropertyEntityName(self: PropertyState, newName?: string): EntityError[];
15941
15945
 
15942
15946
  export declare function validatePropertyName(entity: PropertyState | IPropertyGenerationTarget | IPropertyShallowTransfer | IPropertyTransfer, project: ProjectState): EntityGenerationError[];
15943
15947
 
@@ -15980,7 +15984,7 @@ export declare function validateValueWritter(data: ElementGenerationTarget, valu
15980
15984
 
15981
15985
  export declare function validateVariableDeclarationName(entity: VariableDeclarationState | IVariableDeclarationGenerationTarget | IVariableDeclarationShallowTransfer | IVariableDeclarationTransfer, project: ProjectState): EntityGenerationError[];
15982
15986
 
15983
- declare function validateVariableDeclarationName_2(self: VariableDeclarationState): EntityError[];
15987
+ declare function validateVariableDeclarationName_2(self: VariableDeclarationState, newName?: string): EntityError[];
15984
15988
 
15985
15989
  export declare function validateVariableInternalCallUse(self: VariableState): EntityError[];
15986
15990