@rendley/sdk 1.9.1 → 1.9.3

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.
package/dist/Engine.d.ts CHANGED
@@ -46,6 +46,9 @@ export declare class Engine {
46
46
  private static instance?;
47
47
  static readonly currentVersion = "0.1.2";
48
48
  static projectVersion: string;
49
+ private static queuedDeserializeData;
50
+ private static isDeserializing;
51
+ private static deserializationPromise?;
49
52
  private display;
50
53
  private timeline;
51
54
  private library;
@@ -69,6 +72,7 @@ export declare class Engine {
69
72
  private getLicenseCredentials;
70
73
  destroy(everything?: boolean): Promise<void>;
71
74
  getProjectId(): string;
75
+ setProjectId(id: string): Promise<void>;
72
76
  getDisplay(): Display;
73
77
  getTimeline(): Timeline;
74
78
  getLibrary(): Library;
@@ -205,6 +209,7 @@ export declare class Engine {
205
209
  viewAutoLayoutOnResize: import("./modules/settings").AutoLayoutMode;
206
210
  } | undefined;
207
211
  };
208
- static deserialize(data: object): Promise<Engine | undefined>;
212
+ private static _deserializationPromiseAction;
213
+ static deserialize(data: object): Promise<void | Engine>;
209
214
  }
210
215
  export {};