@elyx-code/project-logic-tree 0.0.6059 → 0.0.6060

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.
@@ -1,6 +1,7 @@
1
1
  import { ActionDescriptorState, CustomEntityState, DataTypeState, InputMapState, OperationState, OutputMapState, ProjectState } from '../../../state';
2
2
 
3
3
  export declare class ValidateDataOperation extends ActionDescriptorState {
4
+ readonly autoexecutable = true;
4
5
  constructor(parentProjectState: ProjectState);
5
6
  getEntityToMatchInputMap(operation: OperationState): InputMapState | null;
6
7
  getDataToValidateInputMap(operation: OperationState): InputMapState | null;
@@ -34,6 +34,7 @@ export declare class ActionDescriptorState implements IActionDescriptor, UserMan
34
34
  errors: EntityError[];
35
35
  project: ProjectState;
36
36
  initialized: boolean;
37
+ autoexecutable: boolean;
37
38
  constructor(initialFunctionData: IActionDescriptor | IActionDescriptorTransfer, parentProjectState: ProjectState);
38
39
  static MUTABLE_BASE_PROPERTIES: string[];
39
40
  static INMUTABLE_BASE_PROPERTIES: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6059",
3
+ "version": "0.0.6060",
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",