@elyx-code/project-logic-tree 0.0.6362 → 0.0.6365

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
@@ -1455,7 +1455,11 @@ export declare type BuiltInElementTransfer = IBuiltInBaseEntityTransfer | IPrimi
1455
1455
 
1456
1456
  export declare type BuiltInElementTypesUnion = BuiltInElement | BuiltInElementTransfer | BuiltInElementShallowTransfer | BuiltInElementGenerationTarget;
1457
1457
 
1458
- export declare type BuiltInMethods = PersistedEntityMethods;
1458
+ export declare enum BuiltInFunctionIds {
1459
+ DeletePersistedEntity = "base-delete-persisted-entity",
1460
+ SavePersistedEntity = "base-save-persisted-entity",
1461
+ AbortExecution = "base-abort-execution"
1462
+ }
1459
1463
 
1460
1464
  export declare type BuiltInSystemEntityState = PrimitiveEntityState | BuiltInBaseEntityState;
1461
1465
 
@@ -12529,12 +12533,6 @@ export declare class PersistedEntity extends BuiltInBaseEntityState {
12529
12533
  constructor(parentProjectState: ProjectState);
12530
12534
  }
12531
12535
 
12532
- export declare enum PersistedEntityMethods {
12533
- DeletePersistedEntity = "base-delete-persisted-entity",
12534
- SavePersistedEntity = "base-save-persisted-entity",
12535
- AbortExecution = "base-abort-execution"
12536
- }
12537
-
12538
12536
  export declare const PLACEHOLDER_VALUE_STORE_CLIENT: IValueStoreClient;
12539
12537
 
12540
12538
  export declare type PlayableEntity = PassThroughCallableEntity | EntryPointEntity;