@izara_project/izara-core-library-asynchronous-flow 1.0.46 → 1.0.47

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Sven Mason <thebarbariansven@gmail.com>",
4
4
  "license": "AGPL-3.0-or-later",
5
5
  "homepage": "https://bitbucket.org/izara-core-libraries/izara-core-library-asynchronous-flow#readme",
6
- "version": "1.0.46",
6
+ "version": "1.0.47",
7
7
  "description": "Shared asynchronous flow logic",
8
8
  "type": "module",
9
9
  "main": "index.js",
@@ -194,7 +194,10 @@ export async function createAwaitingMultipleSteps(
194
194
  }
195
195
 
196
196
  return {
197
- awaitingStepId,
197
+ awaitingStepId: createAwaitingStepId(
198
+ awaitingStepId,
199
+ prefix
200
+ ),
198
201
  additionalAttributes: mergedAttributes
199
202
  };
200
203
  }