@zeniai/client-epic-state 5.0.36-betaRR01 → 5.0.36-betaRR02
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/lib/esm/view/taskManager/taskDetailView/epics/initializeTaskToLocalStoreEpic.js +1 -0
- package/lib/esm/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.js +1 -0
- package/lib/esm/view/taskManager/taskDetailView/taskDetail.js +1 -0
- package/lib/tsconfig.typecheck.tsbuildinfo +1 -1
- package/lib/view/taskManager/taskDetailView/epics/initializeTaskToLocalStoreEpic.js +1 -0
- package/lib/view/taskManager/taskDetailView/epics/saveTaskDetailEpic.js +1 -0
- package/lib/view/taskManager/taskDetailView/taskDetail.d.ts +1 -0
- package/lib/view/taskManager/taskDetailView/taskDetail.js +1 -0
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ const initializeTaskToLocalStoreEpic = (actions$, state$) => actions$.pipe((0, o
|
|
|
18
18
|
description: task.description,
|
|
19
19
|
status: task.status.code,
|
|
20
20
|
assignee: task.assignees,
|
|
21
|
+
groupAssignees: task.groupAssignees,
|
|
21
22
|
dueDate: task.dueDate,
|
|
22
23
|
priority: task.priority.code,
|
|
23
24
|
tagIds: task.tagIds,
|
|
@@ -102,6 +102,7 @@ const prepareTaskPayload = (state, taskId, taskGroupId) => {
|
|
|
102
102
|
sync_token: syncToken,
|
|
103
103
|
task_group_ids: taskGroupId != null ? [taskGroupId] : [],
|
|
104
104
|
time_spent: (0, formatMinutesToFromHHMM_1.convertHHMMStrToMinutes)(localData.timeSpent),
|
|
105
|
+
group_assignees: localData.groupAssignees,
|
|
105
106
|
...(taskId == null ? { is_private: localData.isPrivate ?? false } : {}),
|
|
106
107
|
};
|
|
107
108
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/client-epic-state",
|
|
3
|
-
"version": "5.0.36-
|
|
3
|
+
"version": "5.0.36-betaRR02",
|
|
4
4
|
"description": "Shared module between Web & Mobile containing required abstractions for state management, async network communication. ",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|