rez_core 5.0.150 → 5.0.151

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.150",
3
+ "version": "5.0.151",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -19,6 +19,7 @@ import { MapperModule } from './module/mapper/mapper.module';
19
19
  import { WorkflowScheduleModule } from './module/workflow-schedule/workflow-schedule.module';
20
20
  import { LinkedAttributesModule } from './module/linked_attributes/linked_attributes.module';
21
21
  import { ExportModule } from './module/export/export.module';
22
+ import { EntityJSONModule } from './module/entity_json/entity_json.module';
22
23
 
23
24
  @Global()
24
25
  @Module({})
@@ -48,7 +49,8 @@ export class CoreModule {
48
49
  WorkflowScheduleModule.forRoot({ is_workflow: isWorkflow }),
49
50
  MapperModule,
50
51
  LinkedAttributesModule,
51
- ExportModule
52
+ ExportModule,
53
+ EntityJSONModule
52
54
  ];
53
55
 
54
56
  const exportsArray = [
@@ -67,7 +69,8 @@ export class CoreModule {
67
69
  WorkflowAutomationModule,
68
70
  WorkflowScheduleModule.forRoot({ is_workflow: isWorkflow }),
69
71
  LinkedAttributesModule,
70
- ExportModule
72
+ ExportModule,
73
+ EntityJSONModule
71
74
  ];
72
75
 
73
76
  if (isSso) {