@elyx-code/project-logic-tree 0.0.6353 → 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
@@ -1169,6 +1169,14 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
1169
1169
  };
1170
1170
  };
1171
1171
  };
1172
+ empty: {
1173
+ id: StandaloneOperatorTypes;
1174
+ inputs: {
1175
+ leftHand: {
1176
+ id: string;
1177
+ };
1178
+ };
1179
+ };
1172
1180
  };
1173
1181
  "global-event": {
1174
1182
  GLOBAL_EVENT_PROJECT_PUBLICATION_COMPLETED: {
@@ -2652,6 +2660,12 @@ export declare type ElementTypesUnion = ProjectTypesUnion | InstalledProjectType
2652
2660
 
2653
2661
  export declare function emitSideEffects(changeSet: ChangeSet): ChangeSet;
2654
2662
 
2663
+ export declare const emptyCondition: IActionDescriptorTransfer;
2664
+
2665
+ export declare const emptyConditionArgument: IValueDescriptorTransfer;
2666
+
2667
+ export declare const emptyConditionRef: IActionDescriptorReference;
2668
+
2655
2669
  export declare const endpointBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
2656
2670
 
2657
2671
  export declare const endpointBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
@@ -12253,9 +12267,10 @@ export declare class ProjectState extends VersionedState implements IProject, Us
12253
12267
  onDiscardChangeSetCallback: ((changeSet: ChangeSet) => void) | null;
12254
12268
  onRequestActiveValueCallback: ((valueOwner: EntityWithValueState) => LiteralValueState | null) | null;
12255
12269
  constructor(initialData: IProject | IProjectTransfer);
12256
- static sessionAuthor: string;
12257
- static UUID: UUIDModule;
12270
+ private static _UUIDModule;
12271
+ static get UUID(): UUIDModule;
12258
12272
  static injectUUIDModule(module: UUIDModule): void;
12273
+ static sessionAuthor: string;
12259
12274
  static repository: IEditableEntityPersistanceRepository;
12260
12275
  static type: EntityType.Project;
12261
12276
  static USER_MANAGED_PARENT_TYPES: EntityType[];
@@ -14090,7 +14105,7 @@ export declare abstract class UserManagedEntityStateTemplate {
14090
14105
 
14091
14106
  export declare type UUIDAutogenerationOptions = IAutogenerationUniqueUUID;
14092
14107
 
14093
- export declare interface UUIDModule {
14108
+ declare interface UUIDModule {
14094
14109
  isBackup?: boolean;
14095
14110
  uuid: () => string;
14096
14111
  fromUUID: (uuid: string) => string;