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

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
@@ -9391,6 +9391,7 @@ export declare class InfrastructureResource implements IInfrastructureResource {
9391
9391
  provider: CloudProviders;
9392
9392
  resourceId: string;
9393
9393
  details: InfrastructureResourceDetails | null;
9394
+ name: string | null;
9394
9395
  status: InfrastructureResourceStatus;
9395
9396
  constructor(publicationRun: PublicationRun, resourceType: InfrastructureResourceType, provider: CloudProviders);
9396
9397
  setDetails(details: InfrastructureResourceDetails): void;
@@ -12267,9 +12268,10 @@ export declare class ProjectState extends VersionedState implements IProject, Us
12267
12268
  onDiscardChangeSetCallback: ((changeSet: ChangeSet) => void) | null;
12268
12269
  onRequestActiveValueCallback: ((valueOwner: EntityWithValueState) => LiteralValueState | null) | null;
12269
12270
  constructor(initialData: IProject | IProjectTransfer);
12270
- static sessionAuthor: string;
12271
- static UUID: UUIDModule;
12271
+ private static _UUIDModule;
12272
+ static get UUID(): UUIDModule;
12272
12273
  static injectUUIDModule(module: UUIDModule): void;
12274
+ static sessionAuthor: string;
12273
12275
  static repository: IEditableEntityPersistanceRepository;
12274
12276
  static type: EntityType.Project;
12275
12277
  static USER_MANAGED_PARENT_TYPES: EntityType[];
@@ -14104,7 +14106,7 @@ export declare abstract class UserManagedEntityStateTemplate {
14104
14106
 
14105
14107
  export declare type UUIDAutogenerationOptions = IAutogenerationUniqueUUID;
14106
14108
 
14107
- export declare interface UUIDModule {
14109
+ declare interface UUIDModule {
14108
14110
  isBackup?: boolean;
14109
14111
  uuid: () => string;
14110
14112
  fromUUID: (uuid: string) => string;