@o3r/rules-engine 13.0.0-next.0 → 13.0.0-next.2

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.
@@ -2029,13 +2029,10 @@ class RulesEngineRunnerService {
2029
2029
  constructor(store, logger, engineConfig) {
2030
2030
  this.store = store;
2031
2031
  this.logger = logger;
2032
+ /** List of action handlers */
2033
+ this.actionHandlers = new Set();
2032
2034
  /** Observable of component linked to the component */
2033
2035
  this.linkedComponents$ = new BehaviorSubject({});
2034
- /**
2035
- * List of action handlers
2036
- * @deprecated will become protected in Otter v13, instead use {@link registerActionHandlers}
2037
- */
2038
- this.actionHandlers = new Set();
2039
2036
  this.enabled = !engineConfig?.dryRun;
2040
2037
  this.engine = new RulesEngine({
2041
2038
  debugger: engineConfig?.debug ? new EngineDebugger({ eventsStackLimit: engineConfig?.debugEventsStackLimit }) : undefined,