@elyx-code/project-logic-tree 0.0.6539 → 0.0.6541

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
@@ -164,7 +164,7 @@ export declare class ActionDescriptorState extends UserManagedVersionedState imp
164
164
  removeDataType(changeSet?: ChangeSet | null): ActionDescriptorState;
165
165
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
166
166
  createInternalCall(changeSet: (ChangeSet | null) | undefined, parent: VariableState, overrides?: Partial<IInternalCallTransfer>): InternalCallState;
167
- getUniqueReturnDeclarations(): PropertyState[];
167
+ getUniqueOutputProperties(): PropertyState[];
168
168
  }
169
169
 
170
170
  export declare type ActionDescriptorTypesUnion = IActionDescriptor | IActionDescriptorTransfer | IActionDescriptorShallowTransfer | IActionDescriptorGenerationTarget;
@@ -3468,7 +3468,7 @@ export declare class BuiltInFunctionImplementationAbortExecutionModule extends B
3468
3468
  value: ExecutionTerminationType;
3469
3469
  entity: InternalCallState;
3470
3470
  error: null;
3471
- results: never[];
3471
+ result: null;
3472
3472
  }>;
3473
3473
  };
3474
3474
  }
@@ -3480,7 +3480,7 @@ export declare class BuiltInFunctionImplementationCreatePersistedEntityModule ex
3480
3480
  value: ExecutionTerminationType;
3481
3481
  entity: InternalCallState;
3482
3482
  error: null;
3483
- results: never[];
3483
+ result: null;
3484
3484
  }>;
3485
3485
  };
3486
3486
  }
@@ -3492,7 +3492,7 @@ export declare class BuiltInFunctionImplementationDeletePersistedEntityModule ex
3492
3492
  value: ExecutionTerminationType;
3493
3493
  entity: InternalCallState;
3494
3494
  error: null;
3495
- results: never[];
3495
+ result: null;
3496
3496
  }>;
3497
3497
  };
3498
3498
  }
@@ -3508,7 +3508,7 @@ export declare class BuiltInFunctionImplementationUpdatePersistedEntityModule ex
3508
3508
  value: ExecutionTerminationType;
3509
3509
  entity: InternalCallState;
3510
3510
  error: null;
3511
- results: never[];
3511
+ result: null;
3512
3512
  }>;
3513
3513
  };
3514
3514
  }
@@ -5119,7 +5119,7 @@ export declare type DraggablePassThroughCallableEntityReference = PassThroughCal
5119
5119
 
5120
5120
  export declare type DraggablePassThroughCallableEntityShallowTransfer = DraggablePassThroughCallableEntityWithOutputsShallowTransfer | IConditionShallowTransfer;
5121
5121
 
5122
- export declare type DraggablePassThroughCallableEntityState = OperationState | FunctionCallState | ConditionState | SearchState | VariableState | LoopState;
5122
+ export declare type DraggablePassThroughCallableEntityState = DraggablePassThroughCallableEntityWithOutputsState | ConditionState;
5123
5123
 
5124
5124
  export declare type DraggablePassThroughCallableEntityTransfer = DraggablePassThroughCallableEntityWithOutputsTransfer | IConditionTransfer;
5125
5125
 
@@ -5135,6 +5135,8 @@ export declare type DraggablePassThroughCallableEntityWithOutputsReference = IOp
5135
5135
 
5136
5136
  export declare type DraggablePassThroughCallableEntityWithOutputsShallowTransfer = IOperationShallowTransfer | IFunctionCallShallowTransfer | ISearchShallowTransfer | IVariableDeclarationShallowTransfer | IVariableInstanceShallowTransfer | ILoopShallowTransfer;
5137
5137
 
5138
+ export declare type DraggablePassThroughCallableEntityWithOutputsState = OperationState | FunctionCallState | SearchState | VariableDeclarationState | VariableInstanceState | LoopState;
5139
+
5138
5140
  export declare type DraggablePassThroughCallableEntityWithOutputsTransfer = IOperationTransfer | IFunctionCallTransfer | ISearchTransfer | IVariableDeclarationTransfer | IVariableInstanceTransfer | ILoopTransfer;
5139
5141
 
5140
5142
  export declare type DraggablePassThroughCallableEntityWithOutputsTypesUnion = DraggablePassThroughCallableEntityWithOutputs | DraggablePassThroughCallableEntityWithOutputsTransfer | DraggablePassThroughCallableEntityWithOutputsShallowTransfer | DraggablePassThroughCallableEntityWithOutputsGenerationTarget;
@@ -5730,11 +5732,11 @@ export declare class Execution extends Events {
5730
5732
  executeCondition(condition: ConditionState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
5731
5733
  executeDetachedFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
5732
5734
  executeFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult>;
5733
- static executeEntryPointEntity(entryPointEntity: EntryPointEntityState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
5734
- static executeVariable(varDeclaration: VariableState, input: IDynamicValue): Promise<IExecutionResult>;
5735
- static executeReturnStatement(returnStatement: ReturnStatementState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
5736
- static executeContinueStatement(continueStatement: ContinueStatementState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
5737
- static executeBreakStatement(breakStatement: BreakStatementState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
5735
+ static executeEntryPointEntity(entryPointEntity: EntryPointEntityState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
5736
+ executeReturnStatement(entity: ReturnStatementState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
5737
+ executeContinueStatement(entity: ContinueStatementState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
5738
+ executeBreakStatement(entity: BreakStatementState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
5739
+ executeVariable(entity: VariableState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
5738
5740
  mergeValues(inputs: IDynamicValue[], defaultValues: IDynamicValue[]): IDynamicValue[];
5739
5741
  executeEntity(entity: ExecutableEntityState, inputs?: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult>;
5740
5742
  storeLastExecutionValues(result: IExecutionResult): void;
@@ -7520,7 +7522,7 @@ export declare class FunctionDeclarationState extends UserManagedVersionedState
7520
7522
  createInternalCall(changeSet: (ChangeSet | null) | undefined, parent: VariableState, overrides?: Partial<IInternalCallTransfer>): InternalCallState;
7521
7523
  addReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
7522
7524
  removeReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
7523
- getUniqueReturnDeclarations(): PropertyState[];
7525
+ getUniqueOutputProperties(): PropertyState[];
7524
7526
  removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
7525
7527
  syncInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
7526
7528
  }
@@ -13622,7 +13624,7 @@ export declare interface IExecutionResult {
13622
13624
  value: ExecutionTerminationType;
13623
13625
  entity: TestableEntityState;
13624
13626
  error: IDynamicValue | null;
13625
- results: IDynamicValue[];
13627
+ result: IDynamicValue | null;
13626
13628
  }
13627
13629
 
13628
13630
  export declare type IExtensionContext = IEditorContext | IProjectLogicContext | ICompilerContext;
@@ -14682,7 +14684,7 @@ export declare interface IPrimitiveEnumValueTransfer extends ILiteralValueTransf
14682
14684
 
14683
14685
  export declare interface IPrimitiveExecutionResult {
14684
14686
  value: ExecutionTerminationType;
14685
- results: any[];
14687
+ result: any;
14686
14688
  error: any | null;
14687
14689
  }
14688
14690
 
@@ -17206,7 +17208,7 @@ export declare type PassThroughCallableEntityWithOutputsReference = DraggablePas
17206
17208
 
17207
17209
  export declare type PassThroughCallableEntityWithOutputsShallowTransfer = DraggablePassThroughCallableEntityWithOutputsShallowTransfer | IInternalCallShallowTransfer;
17208
17210
 
17209
- export declare type PassThroughCallableEntityWithOutputsState = OperationState | FunctionCallState | SearchState | VariableState | InternalCallState | LoopState;
17211
+ export declare type PassThroughCallableEntityWithOutputsState = DraggablePassThroughCallableEntityWithOutputsState | InternalCallState;
17210
17212
 
17211
17213
  export declare type PassThroughCallableEntityWithOutputsTransfer = DraggablePassThroughCallableEntityWithOutputsTransfer | IInternalCallTransfer;
17212
17214