import { DashboardPageData } from './module/dashboard/entity/dashboard_page_data.entity'; import { WidgetMaster } from './module/dashboard/entity/widget_master.entity'; import { EnterpriseData } from './module/enterprise/entity/enterprise.entity'; import { OrganizationAppMapping } from './module/enterprise/entity/organization-app-mapping.entity'; import { OrganizationData } from './module/enterprise/entity/organization.entity'; import { SavedFilterDetail } from './module/filter/entity/saved-filter-detail.entity'; import { SavedFilterMaster } from './module/filter/entity/saved-filter-master.entity'; import { IntegrationConfig } from './module/integration/entity/integration-config.entity'; import { IntegrationEntityMapper } from './module/integration/entity/integration-entity-mapper.entity'; import { IntegrationSource } from './module/integration/entity/integration-source.entity'; import { UserIntegration } from './module/integration/entity/user-integration.entity'; import { HeaderItems } from './module/layout/entity/header-items.entity'; import { HeaderSection } from './module/layout/entity/header-section.entity'; import { LayoutPreference } from './module/layout_preference/entity/layout_preference.entity'; import { LinkedAttributes } from './module/linked_attributes/entity/linked_attribute.entity'; import { ListMasterItems } from './module/listmaster/entity/list-master-items.entity'; import { ListMasterData } from './module/listmaster/entity/list-master.entity'; import { FieldLovMapper } from './module/mapper/entity/field-lovs.entity'; import { FieldMapper } from './module/mapper/entity/field-mapper.entity'; import { Mapper } from './module/mapper/entity/mapper.entity'; import { AppMaster } from './module/meta/entity/app-master.entity'; import { AttributeMaster } from './module/meta/entity/attribute-master.entity'; import { EntityMaster } from './module/meta/entity/entity-master.entity'; import { EntityRelationData } from './module/meta/entity/entity-relation-data.entity'; import { EntityRelation } from './module/meta/entity/entity-relation.entity'; import { EntityTableColumn } from './module/meta/entity/entity-table-column.entity'; import { EntityTable } from './module/meta/entity/entity-table.entity'; import { MediaData } from './module/meta/entity/media-data.entity'; import { PreferenceMaster } from './module/meta/entity/preference.entity'; import { ViewMaster } from './module/meta/entity/view-master.entity'; import { MenuData } from './module/module/entity/menu.entity'; import { ModuleAccess } from './module/module/entity/module-access.entity'; import { ModuleAction } from './module/module/entity/module-action.entity'; import { ModuleData } from './module/module/entity/module.entity'; import { NotificationData } from './module/notification/entity/notification.entity'; import { Otp } from './module/notification/entity/otp.entity'; import { Role } from './module/user/entity/role.entity'; import { UserRoleMapping } from './module/user/entity/user-role-mapping.entity'; import { UserSession } from './module/user/entity/user-session.entity'; import { UserData } from './module/user/entity/user.entity'; import { WorkflowAutomationActionEntity } from './module/workflow-automation/entity/workflow-automation-action.entity'; import { WorkflowAutomation } from './module/workflow-automation/entity/workflow-automation.entity'; import { ScheduledWorkflow } from './module/workflow-schedule/entities/scheduled-workflow.entity'; import { WorkflowExecutionLog } from './module/workflow-schedule/entities/workflow-execution-log.entity'; import { ActionCategory } from './module/workflow/entity/action-category.entity'; import { ActionDataEntity } from './module/workflow/entity/action-data.entity'; import { ActionResourcesMapping } from './module/workflow/entity/action-resources-mapping.entity'; import { ActionTemplateMapping } from './module/workflow/entity/action-template-mapping.entity'; import { ActionEntity } from './module/workflow/entity/action.entity'; import { ActivityLog } from './module/workflow/entity/activity-log.entity'; import { CommTemplate } from './module/workflow/entity/comm-template.entity'; import { EntityModification } from './module/workflow/entity/entity-modification.entity'; import { FormDataEntity } from './module/workflow/entity/form.entity'; import { StageActionMapping } from './module/workflow/entity/stage-action-mapping.entity'; import { StageGroup } from './module/workflow/entity/stage-group.entity'; import { StageMovementData } from './module/workflow/entity/stage-movement-data.entity'; import { Stage } from './module/workflow/entity/stage.entity'; import { TaskDataEntity } from './module/workflow/entity/task-data.entity'; import { TemplateAttach } from './module/workflow/entity/template-attach-mapper.entity'; import { WorkFlowData } from './module/workflow/entity/workflow-data.entity'; import { WorkflowLevelMappingEntity } from './module/workflow/entity/workflow-level-mapping.entity'; import { Workflow } from './module/workflow/entity/workflow.entity'; export const frameworkTables = [ ActivityLog, AttributeMaster, DashboardPageData, LayoutPreference, EntityMaster, EntityRelation, EntityRelationData, EntityTable, EntityTableColumn, FieldLovMapper, FieldMapper, IntegrationConfig, IntegrationEntityMapper, IntegrationSource, ListMasterData, ListMasterItems, Mapper, MediaData, NotificationData, PreferenceMaster, SavedFilterDetail, SavedFilterMaster, UserIntegration, ViewMaster, LinkedAttributes, ]; export const workflowTables = [ ActionEntity, ActionCategory, ActionDataEntity, ActionResourcesMapping, ActionTemplateMapping, CommTemplate, EntityModification, FormDataEntity, Stage, StageActionMapping, StageGroup, StageMovementData, TaskDataEntity, TemplateAttach, WidgetMaster, Workflow, WorkflowAutomation, WorkflowAutomationActionEntity, WorkflowLevelMappingEntity, WorkFlowData, WorkflowExecutionLog, ScheduledWorkflow, ]; export const SSOTables = [ AppMaster, EnterpriseData, Role, UserData, UserSession, UserRoleMapping, ModuleData, ModuleAccess, ModuleAction, MenuData, OrganizationData, OrganizationAppMapping, Otp, HeaderItems, HeaderSection, ];