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/dist/core.module.js +3 -3
- package/dist/core.module.js.map +1 -1
- package/dist/table.config.d.ts +39 -38
- package/dist/table.config.js +5 -3
- package/dist/table.config.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/core.module.ts +3 -3
- package/src/table.config.ts +127 -125
package/package.json
CHANGED
package/src/core.module.ts
CHANGED
|
@@ -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 {
|
|
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
|
-
|
|
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
|
-
|
|
67
|
+
LinkedAttributesModule,
|
|
68
68
|
];
|
|
69
69
|
|
|
70
70
|
if (isSso) {
|
package/src/table.config.ts
CHANGED
|
@@ -1,131 +1,133 @@
|
|
|
1
|
-
import { DashboardPageData } from
|
|
2
|
-
import { WidgetMaster } from
|
|
3
|
-
import { EnterpriseData } from
|
|
4
|
-
import { OrganizationAppMapping } from
|
|
5
|
-
import { OrganizationData } from
|
|
6
|
-
import { SavedFilterDetail } from
|
|
7
|
-
import { SavedFilterMaster } from
|
|
8
|
-
import { IntegrationConfig } from
|
|
9
|
-
import { IntegrationEntityMapper } from
|
|
10
|
-
import { IntegrationSource } from
|
|
11
|
-
import { UserIntegration } from
|
|
12
|
-
import { HeaderItems } from
|
|
13
|
-
import { HeaderSection } from
|
|
14
|
-
import { LayoutPreference } from
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
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
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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
|
+
];
|