@elyx-code/project-logic-tree 0.0.6219 → 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.
@@ -103,13 +103,11 @@ export declare class ProjectState extends VersionedState implements IProject, Us
103
103
  errors: EntityGenerationError[];
104
104
  modifiedData: IProjectGenerationTarget;
105
105
  };
106
- closePendingCallbacks(): Promise<void>;
106
+ closePendingChangeSets(): Promise<void>;
107
107
  onCloseChangeSet(callback: (changeSet: ChangeSet) => Promise<{
108
108
  success: boolean;
109
109
  }>): Promise<void>;
110
- closeChangeSet(changeSet: ChangeSet): Promise<{
111
- success: boolean;
112
- }>;
110
+ closeChangeSet(changeSet: ChangeSet): Promise<void>;
113
111
  toLatestChangeSet(author: string, timestamp: string, // ISO 8601 format
114
112
  self: UserManagedEntityState | null, autoclose?: boolean, autoCloseActionName?: string): ChangeSet;
115
113
  addChangeSet(changeSet: ChangeSet): ChangeSet;
@@ -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.6219",
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",