rez_core 3.1.27 → 3.1.29
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/controller/action.controller.d.ts +1 -0
- package/dist/module/workflow/entity/action-data.entity.d.ts +1 -0
- package/dist/module/workflow/entity/action-data.entity.js +4 -0
- package/dist/module/workflow/entity/action-data.entity.js.map +1 -1
- package/dist/module/workflow/repository/action.repository.d.ts +1 -0
- package/dist/module/workflow/repository/action.repository.js +2 -0
- package/dist/module/workflow/repository/action.repository.js.map +1 -1
- package/dist/module/workflow/service/action.service.d.ts +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/workflow/entity/action-data.entity.ts +3 -0
- package/src/module/workflow/repository/action.repository.ts +2 -0
package/package.json
CHANGED
|
@@ -199,6 +199,7 @@ export class ActionRepository {
|
|
|
199
199
|
'a.reason_code AS action_reason_code',
|
|
200
200
|
'a.default_reason_code AS default_reason_code',
|
|
201
201
|
'a.default_value AS default_value',
|
|
202
|
+
'a.mode AS mode',
|
|
202
203
|
'a.action_category AS action_category_id',
|
|
203
204
|
'ac.reason_code AS category_reason_code',
|
|
204
205
|
'ac.modalName AS modalName',
|
|
@@ -254,6 +255,7 @@ export class ActionRepository {
|
|
|
254
255
|
label: row.action_name,
|
|
255
256
|
modalName: row.modalName,
|
|
256
257
|
logo: row.logo,
|
|
258
|
+
mode: row.mode,
|
|
257
259
|
name: row.action_category_name,
|
|
258
260
|
reason_code,
|
|
259
261
|
default_reason_code: row.default_reason_code,
|