codehooks-js 1.3.7 → 1.3.9

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.
@@ -1,16 +1,4 @@
1
- import StepsEngine, { setCollectionName, setQueuePrefix, Steps } from './engine.mjs';
2
-
3
- // Re-export the static methods
4
- export const StepsConfig = {
5
- setCollectionName,
6
- setQueuePrefix
7
- };
8
-
9
- // Re-export the configure method
10
- export const configure = StepsEngine.configure;
11
-
12
- // Re-export the workflow instance
13
- export { Steps };
1
+ import Workflow from './engine.mjs';
14
2
 
15
3
  // Export the engine as default
16
- export default StepsEngine;
4
+ export default Workflow;