@elyx-code/project-logic-tree 0.0.6056 → 0.0.6057
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,5 +101,6 @@ export declare class ConditionState implements ICondition, UserManagedEntityStat
|
|
|
101
101
|
getErrors(): EntityError[];
|
|
102
102
|
getShallowErrors(): EntityError[];
|
|
103
103
|
clone(_?: EntryPointEntityState): ConditionState;
|
|
104
|
+
syncMissingFixedInputs(): ConditionState;
|
|
104
105
|
}
|
|
105
106
|
export type ConditionPayloadUnion = ConditionTypesUnion | ConditionState;
|
|
@@ -106,5 +106,7 @@ 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
111
|
}
|
|
110
112
|
export type OperationPayloadUnion = OperationState | OperationTypesUnion;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6057",
|
|
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",
|