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
|
@@ -39,7 +39,7 @@ __decorate([
|
|
|
39
39
|
__decorate([
|
|
40
40
|
(0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
|
|
41
41
|
__metadata("design:type", String)
|
|
42
|
-
], WorkflowAutomationActionEntity.prototype, "
|
|
42
|
+
], WorkflowAutomationActionEntity.prototype, "actioncategoryname", void 0);
|
|
43
43
|
exports.WorkflowAutomationActionEntity = WorkflowAutomationActionEntity = __decorate([
|
|
44
44
|
(0, typeorm_1.Entity)({ name: 'frm_wf_automation_action' }),
|
|
45
45
|
__metadata("design:paramtypes", [])
|
|
@@ -119,8 +119,8 @@ let WorkflowAutomationService = WorkflowAutomationService_1 = class WorkflowAuto
|
|
|
119
119
|
const existing = existingMap.get(a.actionCategory);
|
|
120
120
|
if (existing) {
|
|
121
121
|
existing.payload = a.actionPayload ?? {};
|
|
122
|
-
existing.
|
|
123
|
-
a.actionCategoryName ?? existing.
|
|
122
|
+
existing.actioncategoryname =
|
|
123
|
+
a.actionCategoryName ?? existing.actioncategoryname;
|
|
124
124
|
await this.dataSource
|
|
125
125
|
.getRepository(workflow_automation_action_entity_1.WorkflowAutomationActionEntity)
|
|
126
126
|
.save(existing);
|
|
@@ -131,7 +131,7 @@ let WorkflowAutomationService = WorkflowAutomationService_1 = class WorkflowAuto
|
|
|
131
131
|
actionEntity.entity_type = 'WFAA';
|
|
132
132
|
actionEntity.workflow_automation_id = workflow.id;
|
|
133
133
|
actionEntity.action_category_id = a.actionCategory;
|
|
134
|
-
actionEntity.
|
|
134
|
+
actionEntity.actioncategoryname = a.actionCategoryName;
|
|
135
135
|
actionEntity.payload = a.actionPayload ?? {};
|
|
136
136
|
actionEntity.name = a.name;
|
|
137
137
|
actionEntity.status = a.status;
|
|
@@ -195,7 +195,7 @@ let WorkflowAutomationService = WorkflowAutomationService_1 = class WorkflowAuto
|
|
|
195
195
|
});
|
|
196
196
|
const action = actions.map((a) => ({
|
|
197
197
|
actionCategory: a.action_category_id,
|
|
198
|
-
actionCategoryName: a.
|
|
198
|
+
actionCategoryName: a.actioncategoryname,
|
|
199
199
|
actionPayload: a.payload,
|
|
200
200
|
name: a.name,
|
|
201
201
|
status: a.status,
|