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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "4.0.153",
3
+ "version": "4.0.155",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -22,5 +22,5 @@ export class WorkflowAutomationActionEntity extends BaseEntity {
22
22
  entity_method: string;
23
23
 
24
24
  @Column({ type: 'varchar', nullable: true })
25
- actionCategoryName: string;
25
+ actioncategoryname: string;
26
26
  }
@@ -217,8 +217,8 @@ export class WorkflowAutomationService extends EntityServiceImpl {
217
217
  if (existing) {
218
218
  // update
219
219
  existing.payload = a.actionPayload ?? {};
220
- existing.actionCategoryName =
221
- a.actionCategoryName ?? existing.actionCategoryName;
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.actionCategoryName = a.actionCategoryName;
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.actionCategoryName,
330
+ actionCategoryName: a.actioncategoryname,
331
331
  actionPayload: a.payload,
332
332
  name: a.name,
333
333
  status: a.status,