rez_core 4.0.202 → 4.0.203

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.202",
3
+ "version": "4.0.203",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -18,6 +18,7 @@ import { WorkflowAutomationModule } from './module/workflow-automation/workflow-
18
18
  import { MapperModule } from './module/mapper/mapper.module';
19
19
  import { WorkflowScheduleModule } from './module/workflow-schedule/workflow-schedule.module';
20
20
  import { EntityJSONModule } from './module/entity_json/entity_json.module';
21
+ import { LinkedAttributesModule } from './module/linked_attributes/linked_attributes.module';
21
22
 
22
23
  @Global()
23
24
  @Module({})
@@ -46,7 +47,8 @@ export class CoreModule {
46
47
  WorkflowAutomationModule,
47
48
  WorkflowScheduleModule.forRoot({ is_workflow: isWorkflow }),
48
49
  MapperModule,
49
- EntityJSONModule
50
+ EntityJSONModule,
51
+ LinkedAttributesModule
50
52
  ];
51
53
 
52
54
  const exportsArray = [
@@ -64,7 +66,8 @@ export class CoreModule {
64
66
  WorkflowModule,
65
67
  WorkflowAutomationModule,
66
68
  WorkflowScheduleModule.forRoot({ is_workflow: isWorkflow }),
67
- EntityJSONModule
69
+ EntityJSONModule,
70
+ LinkedAttributesModule
68
71
  ];
69
72
 
70
73
  if (isSso) {
@@ -13,6 +13,7 @@ import { UserIntegration } from "./module/integration/entity/user-integration.en
13
13
  import { HeaderItems } from "./module/layout/entity/header-items.entity";
14
14
  import { HeaderSection } from "./module/layout/entity/header-section.entity";
15
15
  import { LayoutPreference } from "./module/layout_preference/entity/layout_preference.entity";
16
+ import { LinkedAttributes } from "./module/linked_attributes/entity/linked_attribute.entity";
16
17
  import { ListMasterItems } from "./module/listmaster/entity/list-master-items.entity";
17
18
  import { ListMasterData } from "./module/listmaster/entity/list-master.entity";
18
19
  import { FieldLovMapper } from "./module/mapper/entity/field-lovs.entity";
@@ -84,7 +85,8 @@ export const frameworkTables = [
84
85
  SavedFilterMaster,
85
86
  UserIntegration,
86
87
  ViewMaster,
87
- EntityJson
88
+ EntityJson,
89
+ LinkedAttributes
88
90
  ]
89
91
 
90
92
  export const workflowTables = [