rez_core 2.2.136 → 2.2.138

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": "2.2.136",
3
+ "version": "2.2.138",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -55,4 +55,7 @@ export class EntityTableColumn extends BaseEntity {
55
55
 
56
56
  @Column({ name: 'align', nullable: true })
57
57
  align: string;
58
+
59
+ @Column({ name: 'size', nullable: true })
60
+ size: number;
58
61
  }
@@ -51,6 +51,7 @@ export class EmailService {
51
51
  })
52
52
  .then(() => {
53
53
  console.log(`Email sent to ${email}`);
54
+ return;
54
55
  })
55
56
  .catch((err) => {
56
57
  console.error(`Failed to send email to ${email}`, err);
@@ -88,7 +88,7 @@ export class StageRepository {
88
88
  g.id as stage_group_id, g.name as stage_group_name, g.workflow_id,
89
89
  s.*
90
90
  FROM cr_wf_stage_group g
91
- INNER JOIN cr_wf_stage s ON s.stage_group_id = g.id
91
+ LEFT JOIN cr_wf_stage s ON s.stage_group_id = g.id
92
92
  WHERE g.workflow_id = ? AND g.organization_id = ?
93
93
  ORDER BY g.id, s.id
94
94
  `,