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.
- package/index.js +5 -6
- package/package.json +2 -4
- package/types/aggregation/index.d.mts +38 -1
- package/types/crudlify/index.d.mts +9 -5
- package/types/crudlify/lib/eventhooks.d.mts +1 -0
- package/types/crudlify/lib/query/q2m/index.d.mts +7 -0
- package/types/crudlify/lib/query/q2m/q2m.d.mts +1 -0
- package/types/crudlify/lib/schema/json-schema/index.d.mts +1 -0
- package/types/crudlify/lib/schema/yup/index.d.mts +2 -1
- package/types/crudlify/lib/schema/zod/index.d.mts +1 -0
- package/types/index.d.ts +1373 -126
- package/types/webserver.d.mts +2 -1
- package/types/workflow/engine.d.mts +5 -40
- package/types/workflow/index.d.mts +1 -5
- package/workflow/engine.mjs +362 -109
- package/workflow/index.mjs +2 -14
package/workflow/index.mjs
CHANGED
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import
|
|
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
|
|
4
|
+
export default Workflow;
|