rez_core 3.1.208 → 3.1.210

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": "3.1.208",
3
+ "version": "3.1.210",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -0,0 +1,127 @@
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 { ActionCategory } from "./module/workflow/entity/action-category.entity";
43
+ import { ActionDataEntity } from "./module/workflow/entity/action-data.entity";
44
+ import { ActionResourcesMapping } from "./module/workflow/entity/action-resources-mapping.entity";
45
+ import { ActionTemplateMapping } from "./module/workflow/entity/action-template-mapping.entity";
46
+ import { ActionEntity } from "./module/workflow/entity/action.entity";
47
+ import { ActivityLog } from "./module/workflow/entity/activity-log.entity";
48
+ import { CommTemplate } from "./module/workflow/entity/comm-template.entity";
49
+ import { EntityModification } from "./module/workflow/entity/entity-modification.entity";
50
+ import { FormDataEntity } from "./module/workflow/entity/form.entity";
51
+ import { StageActionMapping } from "./module/workflow/entity/stage-action-mapping.entity";
52
+ import { StageGroup } from "./module/workflow/entity/stage-group.entity";
53
+ import { StageMovementData } from "./module/workflow/entity/stage-movement-data.entity";
54
+ import { Stage } from "./module/workflow/entity/stage.entity";
55
+ import { TaskDataEntity } from "./module/workflow/entity/task-data.entity";
56
+ import { TemplateAttach } from "./module/workflow/entity/template-attach-mapper.entity";
57
+ import { WorkFlowData } from "./module/workflow/entity/workflow-data.entity";
58
+ import { WorkflowLevelMappingEntity } from "./module/workflow/entity/workflow-level-mapping.entity";
59
+ import { Workflow } from "./module/workflow/entity/workflow.entity";
60
+
61
+ export const frameworkTables = [
62
+ ActivityLog,
63
+ AttributeMaster,
64
+ DashboardPageData,
65
+ LayoutPreference,
66
+ EntityMaster,
67
+ EntityRelation,
68
+ EntityRelationData,
69
+ EntityTable,
70
+ EntityTableColumn,
71
+ FieldLovMapper,
72
+ FieldMapper,
73
+ IntegrationConfig,
74
+ IntegrationEntityMapper,
75
+ IntegrationSource,
76
+ ListMasterData,
77
+ ListMasterItems,
78
+ Mapper,
79
+ MediaData,
80
+ NotificationData,
81
+ PreferenceMaster,
82
+ SavedFilterDetail,
83
+ SavedFilterMaster,
84
+ UserIntegration,
85
+ ViewMaster
86
+ ]
87
+
88
+ export const workflowTables = [
89
+ ActionEntity,
90
+ ActionCategory,
91
+ ActionDataEntity,
92
+ ActionResourcesMapping,
93
+ ActionTemplateMapping,
94
+ CommTemplate,
95
+ EntityModification,
96
+ FormDataEntity,
97
+ Stage,
98
+ StageActionMapping,
99
+ StageGroup,
100
+ StageMovementData,
101
+ TaskDataEntity,
102
+ TemplateAttach,
103
+ WidgetMaster,
104
+ Workflow,
105
+ WorkflowAutomation,
106
+ WorkflowAutomationActionEntity,
107
+ WorkflowLevelMappingEntity,
108
+ WorkFlowData
109
+ ]
110
+
111
+ export const SSOTables = [
112
+ AppMaster,
113
+ EnterpriseData,
114
+ Role,
115
+ UserData,
116
+ UserSession,
117
+ UserRoleMapping,
118
+ ModuleData,
119
+ ModuleAccess,
120
+ ModuleAction,
121
+ MenuData,
122
+ OrganizationData,
123
+ OrganizationAppMapping,
124
+ Otp,
125
+ HeaderItems,
126
+ HeaderSection
127
+ ]