@moostjs/event-wf 0.4.12 → 0.4.13

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 CHANGED
@@ -73,6 +73,7 @@ class MoostWf {
73
73
  callControllerMethod: () => undefined,
74
74
  logErrors: this.debug,
75
75
  targetPath: '',
76
+ handlerType: 'WF_FLOW',
76
77
  })();
77
78
  }
78
79
  onInit(moost) {
@@ -120,6 +121,7 @@ class MoostWf {
120
121
  resolveArgs: opts.resolveArgs,
121
122
  manualUnscope: true,
122
123
  targetPath,
124
+ handlerType: handler.type,
123
125
  });
124
126
  if (handler.type === 'WF_STEP') {
125
127
  this.wfApp.step(targetPath, {
package/dist/index.mjs CHANGED
@@ -72,6 +72,7 @@ class MoostWf {
72
72
  callControllerMethod: () => undefined,
73
73
  logErrors: this.debug,
74
74
  targetPath: '',
75
+ handlerType: 'WF_FLOW',
75
76
  })();
76
77
  }
77
78
  onInit(moost) {
@@ -119,6 +120,7 @@ class MoostWf {
119
120
  resolveArgs: opts.resolveArgs,
120
121
  manualUnscope: true,
121
122
  targetPath,
123
+ handlerType: handler.type,
122
124
  });
123
125
  if (handler.type === 'WF_STEP') {
124
126
  this.wfApp.step(targetPath, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moostjs/event-wf",
3
- "version": "0.4.12",
3
+ "version": "0.4.13",
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.4.12",
41
- "wooks": "^0.5.10",
42
- "@wooksjs/event-core": "^0.5.10",
43
- "@wooksjs/event-wf": "^0.5.10",
40
+ "moost": "0.4.13",
41
+ "wooks": "^0.5.11",
42
+ "@wooksjs/event-core": "^0.5.11",
43
+ "@wooksjs/event-wf": "^0.5.11",
44
44
  "@prostojs/infact": "^0.2.3",
45
45
  "@prostojs/mate": "^0.3.2",
46
46
  "@prostojs/wf": "^0.0.18"