@o3r/rules-engine 13.2.0-rc.1 → 13.3.0-prerelease.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.
|
@@ -2073,6 +2073,7 @@ class RulesEngineRunnerService {
|
|
|
2073
2073
|
.map((handler) => handler.executeActions(handler.supportingActions
|
|
2074
2074
|
.filter((supportedAction) => actionMaps[supportedAction])
|
|
2075
2075
|
.reduce((acc, supportedAction) => acc.concat(actionMaps[supportedAction]), [])));
|
|
2076
|
+
// eslint-disable-next-line @typescript-eslint/await-thenable -- `executeActions` can return void or Promise<void>
|
|
2076
2077
|
await Promise.all(handling);
|
|
2077
2078
|
}
|
|
2078
2079
|
/**
|