@moostjs/event-wf 0.3.43 → 0.4.0
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/dist/index.cjs +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ interface TWfHandlerMeta {
|
|
|
15
15
|
declare class MoostWf<T = any, IR = any> implements TMoostAdapter<TWfHandlerMeta> {
|
|
16
16
|
protected opts?: WooksWf<T, IR> | TWooksWfOptions | undefined;
|
|
17
17
|
private readonly debug?;
|
|
18
|
+
readonly name = "workflow";
|
|
18
19
|
protected wfApp: WooksWf<T, IR>;
|
|
19
20
|
constructor(opts?: WooksWf<T, IR> | TWooksWfOptions | undefined, debug?: boolean | undefined);
|
|
20
21
|
onNotFound(): Promise<unknown>;
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moostjs/event-wf",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "@moostjs/event-wf",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"moost": "0.
|
|
41
|
-
"wooks": "^0.
|
|
42
|
-
"@wooksjs/event-core": "^0.
|
|
43
|
-
"@wooksjs/event-wf": "^0.
|
|
40
|
+
"moost": "0.4.0",
|
|
41
|
+
"wooks": "^0.5.0",
|
|
42
|
+
"@wooksjs/event-core": "^0.5.0",
|
|
43
|
+
"@wooksjs/event-wf": "^0.5.0",
|
|
44
44
|
"@prostojs/infact": "^0.2.3",
|
|
45
45
|
"@prostojs/mate": "^0.3.2",
|
|
46
46
|
"@prostojs/wf": "^0.0.18"
|