@manyos/smileconnect-api 1.45.1 → 1.45.2
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/controller/taskController.js +1 -1
- package/docs/releases.md +6 -0
- package/package.json +1 -1
|
@@ -88,7 +88,7 @@ async function createTask(clientConfig, rootForm, rootRequestId, taskData, creat
|
|
|
88
88
|
|
|
89
89
|
//run afterExecution
|
|
90
90
|
if (scripts && scripts.afterExecution) {
|
|
91
|
-
await scriptController.runScripts(scripts.afterExecution,
|
|
91
|
+
await scriptController.runScripts(scripts.afterExecution, taskData, clientConfig.clientId, globalScriptParams);
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
log.debug('Create Task Result', taskResult);
|
package/docs/releases.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
## API
|
|
4
4
|
|
|
5
|
+
### 1.45.2 - 05.10.21
|
|
6
|
+
Fix issue: Error on AfterExecution Scripts in Tasks
|
|
7
|
+
|
|
5
8
|
### 1.45.1 - 29.09.21
|
|
6
9
|
Fix issue: POST scripts on Ticket Worklogs are not startet
|
|
7
10
|
|
|
@@ -47,6 +50,9 @@ e.g.
|
|
|
47
50
|
|
|
48
51
|
## Event Manager
|
|
49
52
|
|
|
53
|
+
### 1.17.1 - 01.10.21
|
|
54
|
+
Fix issue: TicketNumber3 added to Event Data
|
|
55
|
+
|
|
50
56
|
### 1.17.0 - 17.09.21
|
|
51
57
|
|
|
52
58
|
Add eventdata to Queue for outbound
|