rez_core 4.0.153 → 4.0.155
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/module/workflow-automation/entity/workflow-automation-action.entity.d.ts +1 -1
- package/dist/module/workflow-automation/entity/workflow-automation-action.entity.js +1 -1
- package/dist/module/workflow-automation/service/workflow-automation.service.js +4 -4
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +1 -1
- package/src/module/workflow-automation/service/workflow-automation.service.ts +4 -4
package/package.json
CHANGED
|
@@ -217,8 +217,8 @@ export class WorkflowAutomationService extends EntityServiceImpl {
|
|
|
217
217
|
if (existing) {
|
|
218
218
|
// update
|
|
219
219
|
existing.payload = a.actionPayload ?? {};
|
|
220
|
-
existing.
|
|
221
|
-
a.actionCategoryName ?? existing.
|
|
220
|
+
existing.actioncategoryname =
|
|
221
|
+
a.actionCategoryName ?? existing.actioncategoryname;
|
|
222
222
|
await this.dataSource
|
|
223
223
|
.getRepository(WorkflowAutomationActionEntity)
|
|
224
224
|
.save(existing);
|
|
@@ -229,7 +229,7 @@ export class WorkflowAutomationService extends EntityServiceImpl {
|
|
|
229
229
|
actionEntity.entity_type = 'WFAA';
|
|
230
230
|
actionEntity.workflow_automation_id = workflow.id;
|
|
231
231
|
actionEntity.action_category_id = a.actionCategory;
|
|
232
|
-
actionEntity.
|
|
232
|
+
actionEntity.actioncategoryname = a.actionCategoryName;
|
|
233
233
|
actionEntity.payload = a.actionPayload ?? {};
|
|
234
234
|
actionEntity.name = a.name;
|
|
235
235
|
actionEntity.status = a.status;
|
|
@@ -327,7 +327,7 @@ export class WorkflowAutomationService extends EntityServiceImpl {
|
|
|
327
327
|
|
|
328
328
|
const action = actions.map((a) => ({
|
|
329
329
|
actionCategory: a.action_category_id,
|
|
330
|
-
actionCategoryName: a.
|
|
330
|
+
actionCategoryName: a.actioncategoryname,
|
|
331
331
|
actionPayload: a.payload,
|
|
332
332
|
name: a.name,
|
|
333
333
|
status: a.status,
|