@things-factory/worklist 6.1.18 → 6.1.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/worklist",
3
- "version": "6.1.18",
3
+ "version": "6.1.19",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -38,5 +38,5 @@
38
38
  "@things-factory/shell": "^6.1.18",
39
39
  "moment-timezone": "^0.5.40"
40
40
  },
41
- "gitHead": "595020c9d80be29ad8dfe02301be007ae659abc5"
41
+ "gitHead": "d56b51a132127d71b057c8c7c82b6d189cf84ac6"
42
42
  }
@@ -12,7 +12,7 @@ export async function updateActivityInstanceState(id: string, context: ResolverC
12
12
 
13
13
  var activityInstance = await tx.getRepository(ActivityInstance).findOne({
14
14
  where: { id },
15
- relations: ['domain', 'activity', 'assigneeRole', 'supervisoryRole', 'updater', 'creator', 'starter', 'terminator']
15
+ relations: ['domain', 'activity', 'activityThreads', 'assigneeRole', 'supervisoryRole', 'updater', 'creator', 'starter', 'terminator']
16
16
  })
17
17
 
18
18
  activityInstance.transaction = 'thread' /* activity thread에 의해서 변경된 것임을 의미 */