@elyx-code/project-logic-tree 0.0.6220 → 0.0.6221

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.
@@ -125,7 +125,7 @@ export declare class PropertyState extends VersionedState implements IProperty,
125
125
  clone(changeSet?: ChangeSet | null, parent?: DefinitionEntityState | null, newId?: string | null, subscribe?: boolean): PropertyState;
126
126
  setDataType(dataType: DataTypeState): PropertyState;
127
127
  removeDataType(): PropertyState;
128
- getDataType(_changeSet?: ChangeSet | null): DataTypeState | null;
128
+ getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
129
129
  getDefaultValue(): LiteralValueState | null;
130
130
  setDefaultValue(value: LiteralValueState): PropertyState;
131
131
  }
@@ -114,7 +114,7 @@ export declare class ValueDescriptorState extends VersionedState implements IVal
114
114
  getErrors(): EntityError[];
115
115
  getShallowErrors(): EntityError[];
116
116
  clone(changeSet?: ChangeSet | null, parent?: ActionDescriptorState | LoopState | SearchState | null, newId?: string | null, subscribe?: boolean): ValueDescriptorState;
117
- getDataType(_changeSet?: ChangeSet | null): DataTypeState | null;
117
+ getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
118
118
  setDataType(dataType: DataTypeState): ValueDescriptorState;
119
119
  getDefaultValue(): LiteralValueState | null;
120
120
  setDefaultValue(defaultValue: LiteralValueState): ValueDescriptorState;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6220",
3
+ "version": "0.0.6221",
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",