rez_core 4.0.12 → 4.0.15
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/service/workflow-automation.service.d.ts +1 -0
- package/dist/module/workflow-automation/service/workflow-automation.service.js +2 -0
- package/dist/module/workflow-automation/service/workflow-automation.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/workflow-automation/service/workflow-automation.service.ts +2 -0
package/package.json
CHANGED
|
@@ -232,6 +232,7 @@ export class WorkflowAutomationService extends EntityServiceImpl {
|
|
|
232
232
|
actionEntity.actionCategoryName = a.actionCategoryName;
|
|
233
233
|
actionEntity.payload = a.actionPayload ?? {};
|
|
234
234
|
actionEntity.name = a.name;
|
|
235
|
+
actionEntity.status = a.status;
|
|
235
236
|
|
|
236
237
|
await this.dataSource
|
|
237
238
|
.getRepository(WorkflowAutomationActionEntity)
|
|
@@ -329,6 +330,7 @@ export class WorkflowAutomationService extends EntityServiceImpl {
|
|
|
329
330
|
actionCategoryName: a.actionCategoryName,
|
|
330
331
|
actionPayload: a.payload,
|
|
331
332
|
name: a.name,
|
|
333
|
+
status: a.status,
|
|
332
334
|
}));
|
|
333
335
|
|
|
334
336
|
// 5. Final response
|