rez_core 5.0.294 → 5.0.295

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": "5.0.294",
3
+ "version": "5.0.295",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -5,6 +5,7 @@
5
5
  import { UserData } from "src/module/user/entity/user.entity";
6
6
 
7
7
  export interface ScheduleJobData {
8
+ id: number;
8
9
  schedule_id: number;
9
10
  workflow_id: number;
10
11
  workflow_name: string;
@@ -368,6 +368,7 @@ export class WorkflowScheduleService {
368
368
  const schedule = await this.getScheduleById(scheduleId);
369
369
 
370
370
  const jobData: ScheduleJobData = {
371
+ id:loggedInUser.id,
371
372
  schedule_id: schedule.id,
372
373
  workflow_id: schedule.workflow_id,
373
374
  workflow_name: schedule.workflow_name,
@@ -520,6 +521,7 @@ export class WorkflowScheduleService {
520
521
  */
521
522
  private async scheduleJob(schedule: ScheduledWorkflow, loggedInUser: UserData): Promise<void> {
522
523
  const jobData: ScheduleJobData = {
524
+ id:loggedInUser.id,
523
525
  schedule_id: schedule.id,
524
526
  workflow_id: schedule.workflow_id,
525
527
  workflow_name: schedule.workflow_name,