@elyx-code/project-logic-tree 0.0.6343 → 0.0.6344

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8789,7 +8789,7 @@ export declare interface IEditableEntityPersistanceRepository extends IReadOnlyE
8789
8789
  APILoadVersion<T extends Array<any> = any[]>(entityId: EntityId, versionIdOrBeforeEqualDate: EntityVersion | Date, ...otherArgs: T): Promise<ElementShallowTransfer | null>;
8790
8790
  }
8791
8791
 
8792
- export declare interface IEditor<Options extends object = {}> extends IUndoableInterface, IValueResolutionContext {
8792
+ export declare interface IEditor extends IUndoableInterface, IValueResolutionContext {
8793
8793
  ready: boolean;
8794
8794
  hasLoadedLogic: boolean;
8795
8795
  destroyed: boolean;
@@ -8809,7 +8809,6 @@ export declare interface IEditor<Options extends object = {}> extends IUndoableI
8809
8809
  onLogicLoadingCompleteCallback: null | ((chunk: any) => void);
8810
8810
  onRenderedCallback: null | (() => void);
8811
8811
  onProjectSetupErrorCallback: null | ((error: any) => void);
8812
- constructor(projectId: EntityId, socket: IWebsocketsClient | null, events: Events | null, options?: Options): IEditor;
8813
8812
  get execution(): Execution | null;
8814
8813
  get project(): ProjectState;
8815
8814
  get lastExecutionResults(): EfimeralValueStore;
@@ -8834,7 +8833,7 @@ export declare interface IEditor<Options extends object = {}> extends IUndoableI
8834
8833
  handlePersistChangeSetMessage(message: PersistChangeSetEntityActionRequestPayload): void;
8835
8834
  getLogic(options?: {
8836
8835
  mockLogic?: ProjectState;
8837
- }): Promise<void>;
8836
+ }): Promise<ProjectState | null>;
8838
8837
  undo(): Promise<void>;
8839
8838
  redo(): Promise<void>;
8840
8839
  injectLocalImplementationOfSearchExecution(): void;
@@ -10502,7 +10501,6 @@ export declare interface ITest extends Execution {
10502
10501
  entitiesRelatedToExecution: TestableEntityState[];
10503
10502
  validation: IDynamicValue[];
10504
10503
  persistExecutionValues: boolean;
10505
- constructor(project: IEditor, entryPoint: DraggablePlayableEntityState): ITest;
10506
10504
  initExecutionValueStores(): void;
10507
10505
  pause(): Promise<void>;
10508
10506
  stop(): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6343",
3
+ "version": "0.0.6344",
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",