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.
@@ -5,5 +5,5 @@ export declare class WorkflowAutomationActionEntity extends BaseEntity {
5
5
  action_category_id: number;
6
6
  payload: string;
7
7
  entity_method: string;
8
- actionCategoryName: string;
8
+ actioncategoryname: string;
9
9
  }
@@ -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, "actionCategoryName", void 0);
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.actionCategoryName =
123
- a.actionCategoryName ?? existing.actionCategoryName;
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.actionCategoryName = a.actionCategoryName;
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.actionCategoryName,
198
+ actionCategoryName: a.actioncategoryname,
199
199
  actionPayload: a.payload,
200
200
  name: a.name,
201
201
  status: a.status,