@elyx-code/project-logic-tree 0.0.6354 → 0.0.6355

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/index.d.ts CHANGED
@@ -12267,9 +12267,10 @@ export declare class ProjectState extends VersionedState implements IProject, Us
12267
12267
  onDiscardChangeSetCallback: ((changeSet: ChangeSet) => void) | null;
12268
12268
  onRequestActiveValueCallback: ((valueOwner: EntityWithValueState) => LiteralValueState | null) | null;
12269
12269
  constructor(initialData: IProject | IProjectTransfer);
12270
- static sessionAuthor: string;
12271
- static UUID: UUIDModule;
12270
+ private static _UUIDModule;
12271
+ static get UUID(): UUIDModule;
12272
12272
  static injectUUIDModule(module: UUIDModule): void;
12273
+ static sessionAuthor: string;
12273
12274
  static repository: IEditableEntityPersistanceRepository;
12274
12275
  static type: EntityType.Project;
12275
12276
  static USER_MANAGED_PARENT_TYPES: EntityType[];
@@ -14104,7 +14105,7 @@ export declare abstract class UserManagedEntityStateTemplate {
14104
14105
 
14105
14106
  export declare type UUIDAutogenerationOptions = IAutogenerationUniqueUUID;
14106
14107
 
14107
- export declare interface UUIDModule {
14108
+ declare interface UUIDModule {
14108
14109
  isBackup?: boolean;
14109
14110
  uuid: () => string;
14110
14111
  fromUUID: (uuid: string) => string;