rez_core 4.0.187 → 4.0.188

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": "4.0.187",
3
+ "version": "4.0.188",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -12,6 +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 { WorkflowScheduleModule } from '../workflow-schedule/workflow-schedule.module';
15
16
 
16
17
  @Module({
17
18
  imports: [
@@ -23,7 +24,8 @@ import { WorkflowExecutionLog } from '../workflow-schedule/entities/workflow-exe
23
24
  ]),
24
25
  FilterModule,
25
26
  forwardRef(() => EntityModule),
26
- DiscoveryModule, // 👈 enables provider scanning
27
+ DiscoveryModule,
28
+ WorkflowScheduleModule
27
29
  ],
28
30
  providers: [
29
31
  WorkflowAutomationEngineService,