rez_core 6.5.18 → 6.5.19

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": "6.5.18",
3
+ "version": "6.5.19",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -12,7 +12,7 @@ import { ActionRegistryService } from './service/action-registery.service';
12
12
  import { ScheduleHandlerService } from './service/schedule-handler.service';
13
13
  import { ScheduledWorkflow } from '../workflow-schedule/entities/scheduled-workflow.entity';
14
14
  import { WorkflowExecutionLog } from '../workflow-schedule/entities/workflow-execution-log.entity';
15
- import {EntityMaster} from "../meta/entity/entity-master.entity";
15
+ import { EntityMaster } from "../meta/entity/entity-master.entity";
16
16
  import { ListMasterData } from '../listmaster/entity/list-master.entity';
17
17
  import { ActionCategory } from '../workflow/entity/action-category.entity';
18
18
  import { WorkflowScheduleModule } from '../workflow-schedule/workflow-schedule.module';
@@ -30,6 +30,7 @@ import { WorkflowScheduleModule } from '../workflow-schedule/workflow-schedule.m
30
30
  ]),
31
31
  forwardRef(() => FilterModule),
32
32
  forwardRef(() => EntityModule),
33
+ forwardRef(() => WorkflowScheduleModule), // 👈 Required for WorkflowScheduleService
33
34
  DiscoveryModule, // 👈 enables provider scanning
34
35
  ],
35
36
  providers: [
@@ -51,4 +52,4 @@ import { WorkflowScheduleModule } from '../workflow-schedule/workflow-schedule.m
51
52
  ],
52
53
  controllers: [WorkflowAutomationController],
53
54
  })
54
- export class WorkflowAutomationModule {}
55
+ export class WorkflowAutomationModule { }