@elyx-code/project-logic-tree 0.0.6428 → 0.0.6429

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
@@ -8779,6 +8779,11 @@ export { globalEventValidation }
8779
8779
 
8780
8780
  export declare function groupCallsBasedOnParallelizableExecution(calls: DraggableCallableEntityState[]): DraggableCallableEntityState[][];
8781
8781
 
8782
+ export declare enum GroupOperatorTypes {
8783
+ And = "and",
8784
+ Or = "or"
8785
+ }
8786
+
8782
8787
  export declare function handleAfterEntityImplementationSideEffects(implemented: DefinitionEntityState, changeSet: ChangeSet | null): IChangeSet<DefinitionEntityState>;
8783
8788
 
8784
8789
  export declare function handleBeforeEntityImplementationSideEffects(self: DefinitionEntityState | BuiltInBaseEntityState, changeSet: ChangeSet | null): {
@@ -13175,7 +13180,7 @@ declare namespace operationValidation {
13175
13180
  }
13176
13181
  export { operationValidation }
13177
13182
 
13178
- export declare type OperatorTypes = ComparisonOperatorTypes | StandaloneOperatorTypes;
13183
+ export declare type OperatorTypes = GroupOperatorTypes | ComparisonOperatorTypes | StandaloneOperatorTypes;
13179
13184
 
13180
13185
  export declare function orderEntitiesForTraversal(entities: (Element_2 | ElementTransfer | EntityState | ElementShallowTransfer)[]): (Element_2 | ElementTransfer | EntityState | ElementShallowTransfer)[];
13181
13186