@elyx-code/project-logic-tree 0.0.6070 → 0.0.6071

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.
@@ -101,6 +101,7 @@ export declare class ConditionState implements ICondition, UserManagedEntityStat
101
101
  getErrors(): EntityError[];
102
102
  getShallowErrors(): EntityError[];
103
103
  clone(_?: EntryPointEntityState): ConditionState;
104
- syncMissingFixedInputs(): ConditionState;
104
+ removeUnrecognizedInputs(): IChangeSet<ConditionState>;
105
+ syncMissingFixedInputs(): IChangeSet<ConditionState>;
105
106
  }
106
107
  export type ConditionPayloadUnion = ConditionTypesUnion | ConditionState;
@@ -69,7 +69,6 @@ export declare class FunctionCallState implements IFunctionCall, BaseState, User
69
69
  removeCaller(caller: CallerEntityState): FunctionCallState;
70
70
  setParent(parent: EntityWithLogicScopeState | ProjectState): FunctionCallState;
71
71
  initChildren(): FunctionCallState;
72
- initOutputs(): FunctionCallState;
73
72
  subscribe(): FunctionCallState;
74
73
  unsubscribe(): FunctionCallState;
75
74
  sync(data: Partial<IFunctionCall>): FunctionCallState;
@@ -107,5 +106,9 @@ export declare class FunctionCallState implements IFunctionCall, BaseState, User
107
106
  getErrors(): EntityError[];
108
107
  getShallowErrors(): EntityError[];
109
108
  clone(_?: EntryPointEntityState): FunctionCallState;
109
+ removeUnrecognizedInputs(): IChangeSet<FunctionCallState>;
110
+ removeUnrecognizedOutputs(): IChangeSet<FunctionCallState>;
111
+ syncMissingFixedInputs(): IChangeSet<FunctionCallState>;
112
+ syncMissingFixedOutputs(): IChangeSet<FunctionCallState>;
110
113
  }
111
114
  export type FunctionCallPayloadUnion = FunctionCallState | FunctionCallTypesUnion;
@@ -15,6 +15,7 @@ import { VariableInstanceState } from '../variable-instance';
15
15
  import { EntityError, EntityGenerationError } from '../error';
16
16
  import { FunctionCallState } from '../function-call';
17
17
  import { InternalCallState } from '../internal-call';
18
+ import { ReturnDeclarationState } from '../return-declaration';
18
19
 
19
20
  export declare class FunctionDeclarationState implements IFunctionDeclaration, BaseState, UserManagedEntityStateFunctionality, BaseCanvasDraggableState, ChildEntityState, EntityWithLogicScopeClass, EntryPointEntityClass {
20
21
  initialData: IFunctionDeclarationTransfer | IFunctionDeclaration;
@@ -114,5 +115,6 @@ export declare class FunctionDeclarationState implements IFunctionDeclaration, B
114
115
  createInternalCall(parent: VariableState, overrides?: Partial<IInternalCallTransfer>): InternalCallState;
115
116
  addReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
116
117
  removeReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
118
+ getUniqueReturnDeclarations(): ReturnDeclarationState[];
117
119
  }
118
120
  export type FunctionDeclarationPayloadUnion = FunctionDeclarationState | FunctionDeclarationTypesUnion;
@@ -106,7 +106,9 @@ export declare class OperationState implements IOperation, BaseState, UserManage
106
106
  getErrors(): EntityError[];
107
107
  getShallowErrors(): EntityError[];
108
108
  clone(_?: EntryPointEntityState): OperationState;
109
- syncMissingFixedInputs(): OperationState;
110
- syncMissingFixedOutputs(): OperationState;
109
+ removeUnrecognizedInputs(): IChangeSet<OperationState>;
110
+ removeUnrecognizedOutputs(): IChangeSet<OperationState>;
111
+ syncMissingFixedInputs(): IChangeSet<OperationState>;
112
+ syncMissingFixedOutputs(): IChangeSet<OperationState>;
111
113
  }
112
114
  export type OperationPayloadUnion = OperationState | OperationTypesUnion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6070",
3
+ "version": "0.0.6071",
4
4
  "author": "Sergio Herrero",
5
5
  "license": "UNLICENSED",
6
6
  "description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",