rez_core 5.0.36 → 5.0.38

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.36",
3
+ "version": "5.0.38",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -17,7 +17,7 @@ import { WorkflowModule } from './module/workflow/workflow.module';
17
17
  import { WorkflowAutomationModule } from './module/workflow-automation/workflow-automation.module';
18
18
  import { MapperModule } from './module/mapper/mapper.module';
19
19
  import { WorkflowScheduleModule } from './module/workflow-schedule/workflow-schedule.module';
20
- import { LinkedAttributes } from './module/linked_attributes/entity/linked_attribute.entity';
20
+ import { LinkedAttributesModule } from './module/linked_attributes/linked_attributes.module';
21
21
 
22
22
  @Global()
23
23
  @Module({})
@@ -46,7 +46,7 @@ export class CoreModule {
46
46
  WorkflowAutomationModule,
47
47
  WorkflowScheduleModule.forRoot({ is_workflow: isWorkflow }),
48
48
  MapperModule,
49
- LinkedAttributes,
49
+ LinkedAttributesModule,
50
50
  ];
51
51
 
52
52
  const exportsArray = [
@@ -64,7 +64,7 @@ export class CoreModule {
64
64
  WorkflowModule,
65
65
  WorkflowAutomationModule,
66
66
  WorkflowScheduleModule.forRoot({ is_workflow: isWorkflow }),
67
- LinkedAttributes,
67
+ LinkedAttributesModule,
68
68
  ];
69
69
 
70
70
  if (isSso) {
@@ -1,131 +1,133 @@
1
- import { DashboardPageData } from "./module/dashboard/entity/dashboard_page_data.entity";
2
- import { WidgetMaster } from "./module/dashboard/entity/widget_master.entity";
3
- import { EnterpriseData } from "./module/enterprise/entity/enterprise.entity";
4
- import { OrganizationAppMapping } from "./module/enterprise/entity/organization-app-mapping.entity";
5
- import { OrganizationData } from "./module/enterprise/entity/organization.entity";
6
- import { SavedFilterDetail } from "./module/filter/entity/saved-filter-detail.entity";
7
- import { SavedFilterMaster } from "./module/filter/entity/saved-filter-master.entity";
8
- import { IntegrationConfig } from "./module/integration/entity/integration-config.entity";
9
- import { IntegrationEntityMapper } from "./module/integration/entity/integration-entity-mapper.entity";
10
- import { IntegrationSource } from "./module/integration/entity/integration-source.entity";
11
- import { UserIntegration } from "./module/integration/entity/user-integration.entity";
12
- import { HeaderItems } from "./module/layout/entity/header-items.entity";
13
- import { HeaderSection } from "./module/layout/entity/header-section.entity";
14
- import { LayoutPreference } from "./module/layout_preference/entity/layout_preference.entity";
15
- import { ListMasterItems } from "./module/listmaster/entity/list-master-items.entity";
16
- import { ListMasterData } from "./module/listmaster/entity/list-master.entity";
17
- import { FieldLovMapper } from "./module/mapper/entity/field-lovs.entity";
18
- import { FieldMapper } from "./module/mapper/entity/field-mapper.entity";
19
- import { Mapper } from "./module/mapper/entity/mapper.entity";
20
- import { AppMaster } from "./module/meta/entity/app-master.entity";
21
- import { AttributeMaster } from "./module/meta/entity/attribute-master.entity";
22
- import { EntityMaster } from "./module/meta/entity/entity-master.entity";
23
- import { EntityRelationData } from "./module/meta/entity/entity-relation-data.entity";
24
- import { EntityRelation } from "./module/meta/entity/entity-relation.entity";
25
- import { EntityTableColumn } from "./module/meta/entity/entity-table-column.entity";
26
- import { EntityTable } from "./module/meta/entity/entity-table.entity";
27
- import { MediaData } from "./module/meta/entity/media-data.entity";
28
- import { PreferenceMaster } from "./module/meta/entity/preference.entity";
29
- import { ViewMaster } from "./module/meta/entity/view-master.entity";
30
- import { MenuData } from "./module/module/entity/menu.entity";
31
- import { ModuleAccess } from "./module/module/entity/module-access.entity";
32
- import { ModuleAction } from "./module/module/entity/module-action.entity";
33
- import { ModuleData } from "./module/module/entity/module.entity";
34
- import { NotificationData } from "./module/notification/entity/notification.entity";
35
- import { Otp } from "./module/notification/entity/otp.entity";
36
- import { Role } from "./module/user/entity/role.entity";
37
- import { UserRoleMapping } from "./module/user/entity/user-role-mapping.entity";
38
- import { UserSession } from "./module/user/entity/user-session.entity";
39
- import { UserData } from "./module/user/entity/user.entity";
40
- import { WorkflowAutomationActionEntity } from "./module/workflow-automation/entity/workflow-automation-action.entity";
41
- import { WorkflowAutomation } from "./module/workflow-automation/entity/workflow-automation.entity";
42
- import { ScheduledWorkflow } from "./module/workflow-schedule/entities/scheduled-workflow.entity";
43
- import { WorkflowExecutionLog } from "./module/workflow-schedule/entities/workflow-execution-log.entity";
44
- import { ActionCategory } from "./module/workflow/entity/action-category.entity";
45
- import { ActionDataEntity } from "./module/workflow/entity/action-data.entity";
46
- import { ActionResourcesMapping } from "./module/workflow/entity/action-resources-mapping.entity";
47
- import { ActionTemplateMapping } from "./module/workflow/entity/action-template-mapping.entity";
48
- import { ActionEntity } from "./module/workflow/entity/action.entity";
49
- import { ActivityLog } from "./module/workflow/entity/activity-log.entity";
50
- import { CommTemplate } from "./module/workflow/entity/comm-template.entity";
51
- import { EntityModification } from "./module/workflow/entity/entity-modification.entity";
52
- import { FormDataEntity } from "./module/workflow/entity/form.entity";
53
- import { StageActionMapping } from "./module/workflow/entity/stage-action-mapping.entity";
54
- import { StageGroup } from "./module/workflow/entity/stage-group.entity";
55
- import { StageMovementData } from "./module/workflow/entity/stage-movement-data.entity";
56
- import { Stage } from "./module/workflow/entity/stage.entity";
57
- import { TaskDataEntity } from "./module/workflow/entity/task-data.entity";
58
- import { TemplateAttach } from "./module/workflow/entity/template-attach-mapper.entity";
59
- import { WorkFlowData } from "./module/workflow/entity/workflow-data.entity";
60
- import { WorkflowLevelMappingEntity } from "./module/workflow/entity/workflow-level-mapping.entity";
61
- import { Workflow } from "./module/workflow/entity/workflow.entity";
1
+ import { DashboardPageData } from './module/dashboard/entity/dashboard_page_data.entity';
2
+ import { WidgetMaster } from './module/dashboard/entity/widget_master.entity';
3
+ import { EnterpriseData } from './module/enterprise/entity/enterprise.entity';
4
+ import { OrganizationAppMapping } from './module/enterprise/entity/organization-app-mapping.entity';
5
+ import { OrganizationData } from './module/enterprise/entity/organization.entity';
6
+ import { SavedFilterDetail } from './module/filter/entity/saved-filter-detail.entity';
7
+ import { SavedFilterMaster } from './module/filter/entity/saved-filter-master.entity';
8
+ import { IntegrationConfig } from './module/integration/entity/integration-config.entity';
9
+ import { IntegrationEntityMapper } from './module/integration/entity/integration-entity-mapper.entity';
10
+ import { IntegrationSource } from './module/integration/entity/integration-source.entity';
11
+ import { UserIntegration } from './module/integration/entity/user-integration.entity';
12
+ import { HeaderItems } from './module/layout/entity/header-items.entity';
13
+ import { HeaderSection } from './module/layout/entity/header-section.entity';
14
+ import { LayoutPreference } from './module/layout_preference/entity/layout_preference.entity';
15
+ import { LinkedAttributes } from './module/linked_attributes/entity/linked_attribute.entity';
16
+ import { ListMasterItems } from './module/listmaster/entity/list-master-items.entity';
17
+ import { ListMasterData } from './module/listmaster/entity/list-master.entity';
18
+ import { FieldLovMapper } from './module/mapper/entity/field-lovs.entity';
19
+ import { FieldMapper } from './module/mapper/entity/field-mapper.entity';
20
+ import { Mapper } from './module/mapper/entity/mapper.entity';
21
+ import { AppMaster } from './module/meta/entity/app-master.entity';
22
+ import { AttributeMaster } from './module/meta/entity/attribute-master.entity';
23
+ import { EntityMaster } from './module/meta/entity/entity-master.entity';
24
+ import { EntityRelationData } from './module/meta/entity/entity-relation-data.entity';
25
+ import { EntityRelation } from './module/meta/entity/entity-relation.entity';
26
+ import { EntityTableColumn } from './module/meta/entity/entity-table-column.entity';
27
+ import { EntityTable } from './module/meta/entity/entity-table.entity';
28
+ import { MediaData } from './module/meta/entity/media-data.entity';
29
+ import { PreferenceMaster } from './module/meta/entity/preference.entity';
30
+ import { ViewMaster } from './module/meta/entity/view-master.entity';
31
+ import { MenuData } from './module/module/entity/menu.entity';
32
+ import { ModuleAccess } from './module/module/entity/module-access.entity';
33
+ import { ModuleAction } from './module/module/entity/module-action.entity';
34
+ import { ModuleData } from './module/module/entity/module.entity';
35
+ import { NotificationData } from './module/notification/entity/notification.entity';
36
+ import { Otp } from './module/notification/entity/otp.entity';
37
+ import { Role } from './module/user/entity/role.entity';
38
+ import { UserRoleMapping } from './module/user/entity/user-role-mapping.entity';
39
+ import { UserSession } from './module/user/entity/user-session.entity';
40
+ import { UserData } from './module/user/entity/user.entity';
41
+ import { WorkflowAutomationActionEntity } from './module/workflow-automation/entity/workflow-automation-action.entity';
42
+ import { WorkflowAutomation } from './module/workflow-automation/entity/workflow-automation.entity';
43
+ import { ScheduledWorkflow } from './module/workflow-schedule/entities/scheduled-workflow.entity';
44
+ import { WorkflowExecutionLog } from './module/workflow-schedule/entities/workflow-execution-log.entity';
45
+ import { ActionCategory } from './module/workflow/entity/action-category.entity';
46
+ import { ActionDataEntity } from './module/workflow/entity/action-data.entity';
47
+ import { ActionResourcesMapping } from './module/workflow/entity/action-resources-mapping.entity';
48
+ import { ActionTemplateMapping } from './module/workflow/entity/action-template-mapping.entity';
49
+ import { ActionEntity } from './module/workflow/entity/action.entity';
50
+ import { ActivityLog } from './module/workflow/entity/activity-log.entity';
51
+ import { CommTemplate } from './module/workflow/entity/comm-template.entity';
52
+ import { EntityModification } from './module/workflow/entity/entity-modification.entity';
53
+ import { FormDataEntity } from './module/workflow/entity/form.entity';
54
+ import { StageActionMapping } from './module/workflow/entity/stage-action-mapping.entity';
55
+ import { StageGroup } from './module/workflow/entity/stage-group.entity';
56
+ import { StageMovementData } from './module/workflow/entity/stage-movement-data.entity';
57
+ import { Stage } from './module/workflow/entity/stage.entity';
58
+ import { TaskDataEntity } from './module/workflow/entity/task-data.entity';
59
+ import { TemplateAttach } from './module/workflow/entity/template-attach-mapper.entity';
60
+ import { WorkFlowData } from './module/workflow/entity/workflow-data.entity';
61
+ import { WorkflowLevelMappingEntity } from './module/workflow/entity/workflow-level-mapping.entity';
62
+ import { Workflow } from './module/workflow/entity/workflow.entity';
62
63
 
63
64
  export const frameworkTables = [
64
- ActivityLog,
65
- AttributeMaster,
66
- DashboardPageData,
67
- LayoutPreference,
68
- EntityMaster,
69
- EntityRelation,
70
- EntityRelationData,
71
- EntityTable,
72
- EntityTableColumn,
73
- FieldLovMapper,
74
- FieldMapper,
75
- IntegrationConfig,
76
- IntegrationEntityMapper,
77
- IntegrationSource,
78
- ListMasterData,
79
- ListMasterItems,
80
- Mapper,
81
- MediaData,
82
- NotificationData,
83
- PreferenceMaster,
84
- SavedFilterDetail,
85
- SavedFilterMaster,
86
- UserIntegration,
87
- ViewMaster
88
- ]
65
+ ActivityLog,
66
+ AttributeMaster,
67
+ DashboardPageData,
68
+ LayoutPreference,
69
+ EntityMaster,
70
+ EntityRelation,
71
+ EntityRelationData,
72
+ EntityTable,
73
+ EntityTableColumn,
74
+ FieldLovMapper,
75
+ FieldMapper,
76
+ IntegrationConfig,
77
+ IntegrationEntityMapper,
78
+ IntegrationSource,
79
+ ListMasterData,
80
+ ListMasterItems,
81
+ Mapper,
82
+ MediaData,
83
+ NotificationData,
84
+ PreferenceMaster,
85
+ SavedFilterDetail,
86
+ SavedFilterMaster,
87
+ UserIntegration,
88
+ ViewMaster,
89
+ LinkedAttributes,
90
+ ];
89
91
 
90
92
  export const workflowTables = [
91
- ActionEntity,
92
- ActionCategory,
93
- ActionDataEntity,
94
- ActionResourcesMapping,
95
- ActionTemplateMapping,
96
- CommTemplate,
97
- EntityModification,
98
- FormDataEntity,
99
- Stage,
100
- StageActionMapping,
101
- StageGroup,
102
- StageMovementData,
103
- TaskDataEntity,
104
- TemplateAttach,
105
- WidgetMaster,
106
- Workflow,
107
- WorkflowAutomation,
108
- WorkflowAutomationActionEntity,
109
- WorkflowLevelMappingEntity,
110
- WorkFlowData,
111
- WorkflowExecutionLog,
112
- ScheduledWorkflow
113
- ]
93
+ ActionEntity,
94
+ ActionCategory,
95
+ ActionDataEntity,
96
+ ActionResourcesMapping,
97
+ ActionTemplateMapping,
98
+ CommTemplate,
99
+ EntityModification,
100
+ FormDataEntity,
101
+ Stage,
102
+ StageActionMapping,
103
+ StageGroup,
104
+ StageMovementData,
105
+ TaskDataEntity,
106
+ TemplateAttach,
107
+ WidgetMaster,
108
+ Workflow,
109
+ WorkflowAutomation,
110
+ WorkflowAutomationActionEntity,
111
+ WorkflowLevelMappingEntity,
112
+ WorkFlowData,
113
+ WorkflowExecutionLog,
114
+ ScheduledWorkflow,
115
+ ];
114
116
 
115
117
  export const SSOTables = [
116
- AppMaster,
117
- EnterpriseData,
118
- Role,
119
- UserData,
120
- UserSession,
121
- UserRoleMapping,
122
- ModuleData,
123
- ModuleAccess,
124
- ModuleAction,
125
- MenuData,
126
- OrganizationData,
127
- OrganizationAppMapping,
128
- Otp,
129
- HeaderItems,
130
- HeaderSection
131
- ]
118
+ AppMaster,
119
+ EnterpriseData,
120
+ Role,
121
+ UserData,
122
+ UserSession,
123
+ UserRoleMapping,
124
+ ModuleData,
125
+ ModuleAccess,
126
+ ModuleAction,
127
+ MenuData,
128
+ OrganizationData,
129
+ OrganizationAppMapping,
130
+ Otp,
131
+ HeaderItems,
132
+ HeaderSection,
133
+ ];