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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "3.1.27",
3
+ "version": "3.1.29",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -49,4 +49,7 @@ export class ActionDataEntity extends BaseEntity {
49
49
 
50
50
  @Column({ type: 'int', nullable: true })
51
51
  dependent_action_id: number;
52
+
53
+ @Column({ type: 'varchar', nullable: true })
54
+ mode: string;
52
55
  }
@@ -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,