rez_core 6.6.6 → 7.0.0
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/.claude/settings.local.json +26 -0
- package/.idea/250218_nodejs_core.iml +9 -0
- package/.idea/codeStyles/Project.xml +59 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +6 -0
- package/.idea/vcs.xml +6 -0
- package/.prettierrc +3 -3
- package/README.md +99 -99
- package/dist/app.controller.js.map +1 -1
- package/dist/app.module.js +7 -3
- package/dist/app.module.js.map +1 -1
- package/dist/constant/attribute.constant.d.ts +8 -0
- package/dist/constant/attribute.constant.js +14 -0
- package/dist/constant/attribute.constant.js.map +1 -0
- package/dist/constant/db-data-type.constant.d.ts +33 -0
- package/dist/constant/db-data-type.constant.js +119 -0
- package/dist/constant/db-data-type.constant.js.map +1 -0
- package/dist/constant/entity.constant.d.ts +4 -0
- package/dist/constant/entity.constant.js +9 -0
- package/dist/constant/entity.constant.js.map +1 -0
- package/dist/constant/status.constant.d.ts +4 -0
- package/dist/constant/status.constant.js +9 -0
- package/dist/constant/status.constant.js.map +1 -0
- package/dist/core.module.js +66 -38
- package/dist/core.module.js.map +1 -1
- package/dist/module/app_master/app-master.module.d.ts +2 -0
- package/dist/module/app_master/app-master.module.js +28 -0
- package/dist/module/app_master/app-master.module.js.map +1 -0
- package/dist/module/{meta → app_master}/controller/app-master.controller.d.ts +1 -0
- package/dist/module/{meta → app_master}/controller/app-master.controller.js +20 -1
- package/dist/module/app_master/controller/app-master.controller.js.map +1 -0
- package/dist/module/app_master/entity/app-master.entity.d.ts +17 -0
- package/dist/module/{meta → app_master}/entity/app-master.entity.js +30 -12
- package/dist/module/app_master/entity/app-master.entity.js.map +1 -0
- package/dist/module/{meta → app_master}/repository/app-master.repository.d.ts +4 -2
- package/dist/module/{meta → app_master}/repository/app-master.repository.js +17 -4
- package/dist/module/app_master/repository/app-master.repository.js.map +1 -0
- package/dist/module/{meta → app_master}/service/app-master.service.d.ts +7 -3
- package/dist/module/{meta → app_master}/service/app-master.service.js +12 -5
- package/dist/module/app_master/service/app-master.service.js.map +1 -0
- package/dist/module/auth/auth.module.d.ts +6 -1
- package/dist/module/auth/auth.module.js +28 -1
- package/dist/module/auth/auth.module.js.map +1 -1
- package/dist/module/auth/guards/role.guard.js +3 -3
- package/dist/module/auth/strategies/jwt.strategy.d.ts +6 -2
- package/dist/module/auth/strategies/jwt.strategy.js +18 -4
- package/dist/module/auth/strategies/jwt.strategy.js.map +1 -1
- package/dist/module/dashboard/controller/dashboard.controller.d.ts +6 -6
- package/dist/module/dashboard/dashboard.module.js +1 -1
- package/dist/module/dashboard/dashboard.module.js.map +1 -1
- package/dist/module/dashboard/entity/dashboard_page_data.entity.d.ts +0 -1
- package/dist/module/dashboard/entity/dashboard_page_data.entity.js +1 -6
- package/dist/module/dashboard/entity/dashboard_page_data.entity.js.map +1 -1
- package/dist/module/dashboard/entity/widget_master.entity.d.ts +0 -1
- package/dist/module/dashboard/entity/widget_master.entity.js +1 -6
- package/dist/module/dashboard/entity/widget_master.entity.js.map +1 -1
- package/dist/module/dashboard/service/dashboard.service.d.ts +6 -6
- package/dist/module/dashboard/service/dashboard.service.js +1 -2
- package/dist/module/dashboard/service/dashboard.service.js.map +1 -1
- package/dist/module/eav/controller/eav.controller.d.ts +21 -0
- package/dist/module/eav/controller/eav.controller.js +127 -0
- package/dist/module/eav/controller/eav.controller.js.map +1 -0
- package/dist/module/eav/dto/eav-operation.dto.d.ts +20 -0
- package/dist/module/eav/dto/eav-operation.dto.js +75 -0
- package/dist/module/eav/dto/eav-operation.dto.js.map +1 -0
- package/dist/module/eav/eav.module.d.ts +2 -0
- package/dist/module/eav/eav.module.js +84 -0
- package/dist/module/eav/eav.module.js.map +1 -0
- package/dist/module/eav/entity/eav-boolean.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-boolean.entity.js +48 -0
- package/dist/module/eav/entity/eav-boolean.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-date.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-date.entity.js +48 -0
- package/dist/module/eav/entity/eav-date.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-decimal.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-decimal.entity.js +48 -0
- package/dist/module/eav/entity/eav-decimal.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-int.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-int.entity.js +48 -0
- package/dist/module/eav/entity/eav-int.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-json.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-json.entity.js +48 -0
- package/dist/module/eav/entity/eav-json.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-text.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-text.entity.js +48 -0
- package/dist/module/eav/entity/eav-text.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-time.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-time.entity.js +48 -0
- package/dist/module/eav/entity/eav-time.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-timestamp.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-timestamp.entity.js +48 -0
- package/dist/module/eav/entity/eav-timestamp.entity.js.map +1 -0
- package/dist/module/eav/entity/eav-varchar.entity.d.ts +9 -0
- package/dist/module/eav/entity/eav-varchar.entity.js +48 -0
- package/dist/module/eav/entity/eav-varchar.entity.js.map +1 -0
- package/dist/module/eav/interface/eav-strategy.interface.d.ts +8 -0
- package/dist/module/eav/interface/eav-strategy.interface.js +3 -0
- package/dist/module/eav/interface/eav-strategy.interface.js.map +1 -0
- package/dist/module/eav/repository/eav-boolean.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-boolean.repository.js +57 -0
- package/dist/module/eav/repository/eav-boolean.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-date.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-date.repository.js +57 -0
- package/dist/module/eav/repository/eav-date.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-decimal.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-decimal.repository.js +57 -0
- package/dist/module/eav/repository/eav-decimal.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-int.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-int.repository.js +57 -0
- package/dist/module/eav/repository/eav-int.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-json.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-json.repository.js +57 -0
- package/dist/module/eav/repository/eav-json.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-text.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-text.repository.js +57 -0
- package/dist/module/eav/repository/eav-text.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-time.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-time.repository.js +57 -0
- package/dist/module/eav/repository/eav-time.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-timestamp.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-timestamp.repository.js +57 -0
- package/dist/module/eav/repository/eav-timestamp.repository.js.map +1 -0
- package/dist/module/eav/repository/eav-varchar.repository.d.ts +13 -0
- package/dist/module/eav/repository/eav-varchar.repository.js +57 -0
- package/dist/module/eav/repository/eav-varchar.repository.js.map +1 -0
- package/dist/module/eav/service/eav-boolean.service.d.ts +12 -0
- package/dist/module/eav/service/eav-boolean.service.js +59 -0
- package/dist/module/eav/service/eav-boolean.service.js.map +1 -0
- package/dist/module/eav/service/eav-date.service.d.ts +12 -0
- package/dist/module/eav/service/eav-date.service.js +59 -0
- package/dist/module/eav/service/eav-date.service.js.map +1 -0
- package/dist/module/eav/service/eav-decimal.service.d.ts +12 -0
- package/dist/module/eav/service/eav-decimal.service.js +59 -0
- package/dist/module/eav/service/eav-decimal.service.js.map +1 -0
- package/dist/module/eav/service/eav-factory.service.d.ts +26 -0
- package/dist/module/eav/service/eav-factory.service.js +81 -0
- package/dist/module/eav/service/eav-factory.service.js.map +1 -0
- package/dist/module/eav/service/eav-int.service.d.ts +12 -0
- package/dist/module/eav/service/eav-int.service.js +59 -0
- package/dist/module/eav/service/eav-int.service.js.map +1 -0
- package/dist/module/eav/service/eav-json.service.d.ts +12 -0
- package/dist/module/eav/service/eav-json.service.js +59 -0
- package/dist/module/eav/service/eav-json.service.js.map +1 -0
- package/dist/module/eav/service/eav-text.service.d.ts +12 -0
- package/dist/module/eav/service/eav-text.service.js +59 -0
- package/dist/module/eav/service/eav-text.service.js.map +1 -0
- package/dist/module/eav/service/eav-time.service.d.ts +12 -0
- package/dist/module/eav/service/eav-time.service.js +59 -0
- package/dist/module/eav/service/eav-time.service.js.map +1 -0
- package/dist/module/eav/service/eav-timestamp.service.d.ts +12 -0
- package/dist/module/eav/service/eav-timestamp.service.js +59 -0
- package/dist/module/eav/service/eav-timestamp.service.js.map +1 -0
- package/dist/module/eav/service/eav-varchar.service.d.ts +12 -0
- package/dist/module/eav/service/eav-varchar.service.js +59 -0
- package/dist/module/eav/service/eav-varchar.service.js.map +1 -0
- package/dist/module/eav/service/eav.service.d.ts +14 -0
- package/dist/module/eav/service/eav.service.js +65 -0
- package/dist/module/eav/service/eav.service.js.map +1 -0
- package/dist/module/enterprise/controller/enterprise.controller.d.ts +12 -0
- package/dist/module/enterprise/controller/enterprise.controller.js +57 -0
- package/dist/module/enterprise/controller/enterprise.controller.js.map +1 -0
- package/dist/module/enterprise/controller/meta.controller.d.ts +9 -0
- package/dist/module/enterprise/controller/meta.controller.js +43 -0
- package/dist/module/enterprise/controller/meta.controller.js.map +1 -0
- package/dist/module/enterprise/controller/organization.controller.d.ts +12 -4
- package/dist/module/enterprise/controller/organization.controller.js +68 -8
- package/dist/module/enterprise/controller/organization.controller.js.map +1 -1
- package/dist/module/enterprise/enterprise.module.js +10 -15
- package/dist/module/enterprise/enterprise.module.js.map +1 -1
- package/dist/module/enterprise/entity/enterprise.entity.d.ts +1 -3
- package/dist/module/enterprise/entity/enterprise.entity.js +4 -12
- package/dist/module/enterprise/entity/enterprise.entity.js.map +1 -1
- package/dist/module/enterprise/entity/organization-app-mapping.entity.d.ts +6 -1
- package/dist/module/enterprise/entity/organization-app-mapping.entity.js +21 -4
- package/dist/module/enterprise/entity/organization-app-mapping.entity.js.map +1 -1
- package/dist/module/enterprise/entity/organization.entity.d.ts +3 -17
- package/dist/module/enterprise/entity/organization.entity.js +11 -73
- package/dist/module/enterprise/entity/organization.entity.js.map +1 -1
- package/dist/module/enterprise/repository/enterprise.repository.d.ts +4 -2
- package/dist/module/enterprise/repository/enterprise.repository.js +19 -4
- package/dist/module/enterprise/repository/enterprise.repository.js.map +1 -1
- package/dist/module/enterprise/repository/school.repository.js +8 -8
- package/dist/module/enterprise/repository/school.repository.js.map +1 -1
- package/dist/module/enterprise/service/brand-profile.service.d.ts +0 -0
- package/dist/module/enterprise/service/brand-profile.service.js +1 -0
- package/dist/module/enterprise/service/brand-profile.service.js.map +1 -0
- package/dist/module/enterprise/service/brand.service.d.ts +0 -3
- package/dist/module/enterprise/service/brand.service.js +0 -17
- package/dist/module/enterprise/service/brand.service.js.map +1 -1
- package/dist/module/enterprise/service/enterprise.service.d.ts +2 -2
- package/dist/module/enterprise/service/enterprise.service.js +6 -4
- package/dist/module/enterprise/service/enterprise.service.js.map +1 -1
- package/dist/module/enterprise/service/organization.service.d.ts +13 -5
- package/dist/module/enterprise/service/organization.service.js +177 -29
- package/dist/module/enterprise/service/organization.service.js.map +1 -1
- package/dist/module/enterprise/service/populate-meta.service.d.ts +9 -0
- package/dist/module/{meta → enterprise}/service/populate-meta.service.js +24 -43
- package/dist/module/enterprise/service/populate-meta.service.js.map +1 -0
- package/dist/module/enterprise/service/school.service.d.ts +0 -0
- package/dist/module/enterprise/service/school.service.js +1 -0
- package/dist/module/enterprise/service/school.service.js.map +1 -0
- package/dist/module/entity_json/controller/entity_json.controller.d.ts +2 -5
- package/dist/module/entity_json/controller/entity_json.controller.js +7 -21
- package/dist/module/entity_json/controller/entity_json.controller.js.map +1 -1
- package/dist/module/entity_json/service/entity_json.service.d.ts +10 -2
- package/dist/module/entity_json/service/entity_json.service.js +102 -95
- package/dist/module/entity_json/service/entity_json.service.js.map +1 -1
- package/dist/module/export/service/export.service.js +5 -0
- package/dist/module/export/service/export.service.js.map +1 -1
- package/dist/module/filter/controller/filter.controller.d.ts +1 -12
- package/dist/module/filter/controller/filter.controller.js +3 -2
- package/dist/module/filter/controller/filter.controller.js.map +1 -1
- package/dist/module/filter/dto/filter-request.dto.d.ts +1 -0
- package/dist/module/filter/entity/saved-filter-detail.entity.d.ts +0 -1
- package/dist/module/filter/entity/saved-filter-detail.entity.js +1 -7
- package/dist/module/filter/entity/saved-filter-detail.entity.js.map +1 -1
- package/dist/module/filter/entity/saved-filter-master.entity.d.ts +0 -1
- package/dist/module/filter/entity/saved-filter-master.entity.js +1 -7
- package/dist/module/filter/entity/saved-filter-master.entity.js.map +1 -1
- package/dist/module/filter/filter.module.js +2 -11
- package/dist/module/filter/filter.module.js.map +1 -1
- package/dist/module/filter/repository/saved-filter.repository.js +2 -4
- package/dist/module/filter/repository/saved-filter.repository.js.map +1 -1
- package/dist/module/filter/service/filter.service.d.ts +5 -38
- package/dist/module/filter/service/filter.service.js +134 -88
- package/dist/module/filter/service/filter.service.js.map +1 -1
- package/dist/module/filter/service/saved-filter.service.d.ts +2 -3
- package/dist/module/filter/service/saved-filter.service.js +18 -15
- package/dist/module/filter/service/saved-filter.service.js.map +1 -1
- package/dist/module/integration/examples/usage.example.js +9 -9
- package/dist/module/integration/service/integration.service.d.ts +1 -6
- package/dist/module/integration/service/integration.service.js +4 -18
- package/dist/module/integration/service/integration.service.js.map +1 -1
- package/dist/module/integration/service/oauth.service.js +0 -2
- package/dist/module/integration/service/oauth.service.js.map +1 -1
- package/dist/module/integration/service/wrapper.service.js +0 -1
- package/dist/module/integration/service/wrapper.service.js.map +1 -1
- package/dist/module/integration/strategies/email/gmail-api.strategy.js +7 -23
- package/dist/module/integration/strategies/email/gmail-api.strategy.js.map +1 -1
- package/dist/module/integration/strategies/email/sendgrid-api.strategy.js +5 -8
- package/dist/module/integration/strategies/email/sendgrid-api.strategy.js.map +1 -1
- package/dist/module/layout/controller/layout.controller.d.ts +1 -3
- package/dist/module/layout/controller/layout.controller.js +3 -7
- package/dist/module/layout/controller/layout.controller.js.map +1 -1
- package/dist/module/layout/entity/header-items.entity.js +1 -1
- package/dist/module/layout/entity/header-section.entity.d.ts +0 -2
- package/dist/module/layout/entity/header-section.entity.js +1 -9
- package/dist/module/layout/entity/header-section.entity.js.map +1 -1
- package/dist/module/layout/layout.module.js +1 -2
- package/dist/module/layout/layout.module.js.map +1 -1
- package/dist/module/layout/repository/header-section.repository.d.ts +0 -1
- package/dist/module/layout/repository/header-section.repository.js +0 -5
- package/dist/module/layout/repository/header-section.repository.js.map +1 -1
- package/dist/module/layout/service/header-section.service.d.ts +1 -1
- package/dist/module/layout/service/header-section.service.js +1 -1
- package/dist/module/layout/service/header-section.service.js.map +1 -1
- package/dist/module/linked_attributes/controller/linked_attributes.controller.d.ts +1 -0
- package/dist/module/linked_attributes/service/linked_attributes.service.d.ts +2 -2
- package/dist/module/linked_attributes/service/linked_attributes.service.js +3 -4
- package/dist/module/linked_attributes/service/linked_attributes.service.js.map +1 -1
- package/dist/module/listmaster/controller/list-master.controller.d.ts +0 -1
- package/dist/module/listmaster/controller/list-master.controller.js +0 -19
- package/dist/module/listmaster/controller/list-master.controller.js.map +1 -1
- package/dist/module/listmaster/entity/list-master-items.entity.d.ts +0 -4
- package/dist/module/listmaster/entity/list-master-items.entity.js +2 -20
- package/dist/module/listmaster/entity/list-master-items.entity.js.map +1 -1
- package/dist/module/listmaster/entity/list-master.entity.d.ts +1 -4
- package/dist/module/listmaster/entity/list-master.entity.js +5 -19
- package/dist/module/listmaster/entity/list-master.entity.js.map +1 -1
- package/dist/module/listmaster/repository/list-master-items.repository.d.ts +2 -2
- package/dist/module/listmaster/repository/list-master-items.repository.js +68 -25
- package/dist/module/listmaster/repository/list-master-items.repository.js.map +1 -1
- package/dist/module/listmaster/service/list-master-item.service.js +129 -48
- package/dist/module/listmaster/service/list-master-item.service.js.map +1 -1
- package/dist/module/listmaster/service/list-master.service.d.ts +16 -12
- package/dist/module/listmaster/service/list-master.service.js +228 -135
- package/dist/module/listmaster/service/list-master.service.js.map +1 -1
- package/dist/module/mapper/entity/field-lovs.entity.d.ts +0 -1
- package/dist/module/mapper/entity/field-lovs.entity.js +1 -6
- package/dist/module/mapper/entity/field-lovs.entity.js.map +1 -1
- package/dist/module/mapper/entity/field-mapper.entity.d.ts +0 -1
- package/dist/module/mapper/entity/field-mapper.entity.js +1 -6
- package/dist/module/mapper/entity/field-mapper.entity.js.map +1 -1
- package/dist/module/mapper/entity/mapper.entity.d.ts +0 -2
- package/dist/module/mapper/entity/mapper.entity.js +1 -10
- package/dist/module/mapper/entity/mapper.entity.js.map +1 -1
- package/dist/module/mapper/service/field-mapper.service.js +0 -1
- package/dist/module/mapper/service/field-mapper.service.js.map +1 -1
- package/dist/module/master/controller/master.controller.d.ts +1 -3
- package/dist/module/master/controller/master.controller.js +4 -6
- package/dist/module/master/controller/master.controller.js.map +1 -1
- package/dist/module/master/service/master.service.d.ts +1 -1
- package/dist/module/master/service/master.service.js +30 -44
- package/dist/module/master/service/master.service.js.map +1 -1
- package/dist/module/meta/controller/attribute-master.controller.d.ts +3 -8
- package/dist/module/meta/controller/attribute-master.controller.js +5 -19
- package/dist/module/meta/controller/attribute-master.controller.js.map +1 -1
- package/dist/module/meta/controller/entity-dynamic.controller.js +6 -3
- package/dist/module/meta/controller/entity-dynamic.controller.js.map +1 -1
- package/dist/module/meta/controller/entity-master.controller.js +1 -0
- package/dist/module/meta/controller/entity-master.controller.js.map +1 -1
- package/dist/module/meta/controller/entity.controller.js +3 -3
- package/dist/module/meta/controller/entity.controller.js.map +1 -1
- package/dist/module/meta/controller/entity.public.controller.js +1 -0
- package/dist/module/meta/controller/entity.public.controller.js.map +1 -1
- package/dist/module/meta/controller/media.controller.d.ts +0 -6
- package/dist/module/meta/controller/media.controller.js +0 -27
- package/dist/module/meta/controller/media.controller.js.map +1 -1
- package/dist/module/meta/controller/meta.controller.d.ts +1 -6
- package/dist/module/meta/controller/meta.controller.js +2 -19
- package/dist/module/meta/controller/meta.controller.js.map +1 -1
- package/dist/module/meta/entity/attribute-master.entity.d.ts +12 -14
- package/dist/module/meta/entity/attribute-master.entity.js +41 -77
- package/dist/module/meta/entity/attribute-master.entity.js.map +1 -1
- package/dist/module/meta/entity/base-entity.entity.d.ts +6 -7
- package/dist/module/meta/entity/base-entity.entity.js +24 -47
- package/dist/module/meta/entity/base-entity.entity.js.map +1 -1
- package/dist/module/meta/entity/dynamic.entity.d.ts +3 -0
- package/dist/module/meta/entity/dynamic.entity.js +18 -0
- package/dist/module/meta/entity/dynamic.entity.js.map +1 -0
- package/dist/module/meta/entity/entity-master.entity.d.ts +6 -9
- package/dist/module/meta/entity/entity-master.entity.js +21 -66
- package/dist/module/meta/entity/entity-master.entity.js.map +1 -1
- package/dist/module/meta/entity/entity-relation-data.entity.d.ts +0 -1
- package/dist/module/meta/entity/entity-relation-data.entity.js +1 -7
- package/dist/module/meta/entity/entity-relation-data.entity.js.map +1 -1
- package/dist/module/meta/entity/entity-relation.entity.d.ts +0 -1
- package/dist/module/meta/entity/entity-relation.entity.js +1 -7
- package/dist/module/meta/entity/entity-relation.entity.js.map +1 -1
- package/dist/module/meta/entity/entity-table-column.entity.d.ts +0 -1
- package/dist/module/meta/entity/entity-table-column.entity.js +1 -7
- package/dist/module/meta/entity/entity-table-column.entity.js.map +1 -1
- package/dist/module/meta/entity/entity-table.entity.d.ts +0 -1
- package/dist/module/meta/entity/entity-table.entity.js +1 -7
- package/dist/module/meta/entity/entity-table.entity.js.map +1 -1
- package/dist/module/meta/entity/media-data.entity.d.ts +0 -2
- package/dist/module/meta/entity/media-data.entity.js +0 -8
- package/dist/module/meta/entity/media-data.entity.js.map +1 -1
- package/dist/module/meta/entity/preference.entity.d.ts +0 -1
- package/dist/module/meta/entity/preference.entity.js +1 -7
- package/dist/module/meta/entity/preference.entity.js.map +1 -1
- package/dist/module/meta/entity/view-master.entity.d.ts +0 -1
- package/dist/module/meta/entity/view-master.entity.js +1 -7
- package/dist/module/meta/entity/view-master.entity.js.map +1 -1
- package/dist/module/meta/entity.module.js +11 -19
- package/dist/module/meta/entity.module.js.map +1 -1
- package/dist/module/meta/repository/attribute-master.repository.d.ts +8 -2
- package/dist/module/meta/repository/attribute-master.repository.js +41 -15
- package/dist/module/meta/repository/attribute-master.repository.js.map +1 -1
- package/dist/module/meta/repository/entity-master.repository.js +1 -1
- package/dist/module/meta/repository/entity-master.repository.js.map +1 -1
- package/dist/module/meta/repository/entity-relation.repository.d.ts +1 -0
- package/dist/module/meta/repository/entity-relation.repository.js +10 -0
- package/dist/module/meta/repository/entity-relation.repository.js.map +1 -1
- package/dist/module/meta/service/attribute-master.service.d.ts +6 -6
- package/dist/module/meta/service/attribute-master.service.js +74 -49
- package/dist/module/meta/service/attribute-master.service.js.map +1 -1
- package/dist/module/meta/service/entity-dynamic.service.d.ts +12 -13
- package/dist/module/meta/service/entity-dynamic.service.js +215 -80
- package/dist/module/meta/service/entity-dynamic.service.js.map +1 -1
- package/dist/module/meta/service/entity-master.service.d.ts +10 -1
- package/dist/module/meta/service/entity-master.service.js +80 -3
- package/dist/module/meta/service/entity-master.service.js.map +1 -1
- package/dist/module/meta/service/entity-relation.service.d.ts +6 -5
- package/dist/module/meta/service/entity-relation.service.js +7 -10
- package/dist/module/meta/service/entity-relation.service.js.map +1 -1
- package/dist/module/meta/service/entity-service-impl.service.d.ts +3 -3
- package/dist/module/meta/service/entity-service-impl.service.js +14 -18
- package/dist/module/meta/service/entity-service-impl.service.js.map +1 -1
- package/dist/module/meta/service/entity-table.service.d.ts +4 -5
- package/dist/module/meta/service/entity-table.service.js +24 -45
- package/dist/module/meta/service/entity-table.service.js.map +1 -1
- package/dist/module/meta/service/entity-validation.service.d.ts +1 -3
- package/dist/module/meta/service/entity-validation.service.js +5 -34
- package/dist/module/meta/service/entity-validation.service.js.map +1 -1
- package/dist/module/meta/service/entity.service.d.ts +1 -1
- package/dist/module/meta/service/media-data.service.d.ts +0 -4
- package/dist/module/meta/service/media-data.service.js +0 -129
- package/dist/module/meta/service/media-data.service.js.map +1 -1
- package/dist/module/meta/service/resolver.service.d.ts +1 -1
- package/dist/module/meta/service/resolver.service.js +55 -95
- package/dist/module/meta/service/resolver.service.js.map +1 -1
- package/dist/module/module/controller/menu.controller.d.ts +6 -1
- package/dist/module/module/controller/menu.controller.js +20 -2
- package/dist/module/module/controller/menu.controller.js.map +1 -1
- package/dist/module/module/controller/module-access.controller.d.ts +3 -4
- package/dist/module/module/controller/module-access.controller.js +13 -8
- package/dist/module/module/controller/module-access.controller.js.map +1 -1
- package/dist/module/module/entity/menu.entity.d.ts +6 -3
- package/dist/module/module/entity/menu.entity.js +19 -10
- package/dist/module/module/entity/menu.entity.js.map +1 -1
- package/dist/module/module/entity/module-access.entity.d.ts +15 -1
- package/dist/module/module/entity/module-access.entity.js +49 -3
- package/dist/module/module/entity/module-access.entity.js.map +1 -1
- package/dist/module/module/entity/module-action.entity.d.ts +4 -2
- package/dist/module/module/entity/module-action.entity.js +11 -6
- package/dist/module/module/entity/module-action.entity.js.map +1 -1
- package/dist/module/module/entity/module.entity.d.ts +3 -5
- package/dist/module/module/entity/module.entity.js +8 -18
- package/dist/module/module/entity/module.entity.js.map +1 -1
- package/dist/module/module/module.module.d.ts +1 -1
- package/dist/module/module/module.module.js +7 -7
- package/dist/module/module/module.module.js.map +1 -1
- package/dist/module/module/repository/menu.repository.d.ts +3 -3
- package/dist/module/module/repository/menu.repository.js +40 -29
- package/dist/module/module/repository/menu.repository.js.map +1 -1
- package/dist/module/module/repository/module-access.repository.d.ts +6 -6
- package/dist/module/module/repository/module-access.repository.js +100 -50
- package/dist/module/module/repository/module-access.repository.js.map +1 -1
- package/dist/module/module/service/menu.service.d.ts +2 -4
- package/dist/module/module/service/menu.service.js +7 -10
- package/dist/module/module/service/menu.service.js.map +1 -1
- package/dist/module/module/service/module-access.service.d.ts +7 -10
- package/dist/module/module/service/module-access.service.js +22 -24
- package/dist/module/module/service/module-access.service.js.map +1 -1
- package/dist/module/module/service/module-import.service.d.ts +18 -0
- package/dist/module/module/service/module-import.service.js +203 -0
- package/dist/module/module/service/module-import.service.js.map +1 -0
- package/dist/module/notification/entity/notification.entity.d.ts +17 -2
- package/dist/module/notification/entity/notification.entity.js +68 -2
- package/dist/module/notification/entity/notification.entity.js.map +1 -1
- package/dist/module/notification/notification.module.js +3 -6
- package/dist/module/notification/notification.module.js.map +1 -1
- package/dist/module/notification/service/email.service.d.ts +1 -0
- package/dist/module/notification/service/email.service.js +14 -0
- package/dist/module/notification/service/email.service.js.map +1 -1
- package/dist/module/notification/service/notification.service.d.ts +1 -5
- package/dist/module/notification/service/notification.service.js +41 -31
- package/dist/module/notification/service/notification.service.js.map +1 -1
- package/dist/module/notification/service/otp.service.d.ts +2 -2
- package/dist/module/notification/service/otp.service.js +4 -5
- package/dist/module/notification/service/otp.service.js.map +1 -1
- package/dist/module/preference_master/entity/preference.entity.d.ts +9 -0
- package/dist/module/preference_master/entity/preference.entity.js +48 -0
- package/dist/module/preference_master/entity/preference.entity.js.map +1 -0
- package/dist/module/preference_master/preference.service.d.ts +8 -0
- package/dist/module/preference_master/preference.service.js +31 -0
- package/dist/module/preference_master/preference.service.js.map +1 -0
- package/dist/module/preference_master/repo/preference.repository.d.ts +8 -0
- package/dist/module/preference_master/repo/preference.repository.js +48 -0
- package/dist/module/preference_master/repo/preference.repository.js.map +1 -0
- package/dist/module/user/controller/login.controller.d.ts +1 -3
- package/dist/module/user/controller/login.controller.js +20 -24
- package/dist/module/user/controller/login.controller.js.map +1 -1
- package/dist/module/user/controller/user.controller.d.ts +0 -2
- package/dist/module/user/controller/user.controller.js +0 -13
- package/dist/module/user/controller/user.controller.js.map +1 -1
- package/dist/module/user/dto/create-user.dto.d.ts +6 -3
- package/dist/module/user/dto/create-user.dto.js +17 -11
- package/dist/module/user/dto/create-user.dto.js.map +1 -1
- package/dist/module/user/entity/role.entity.d.ts +18 -6
- package/dist/module/user/entity/role.entity.js +64 -19
- package/dist/module/user/entity/role.entity.js.map +1 -1
- package/dist/module/user/entity/user-role-mapping.entity.d.ts +10 -0
- package/dist/module/user/entity/user-role-mapping.entity.js +33 -1
- package/dist/module/user/entity/user-role-mapping.entity.js.map +1 -1
- package/dist/module/user/entity/user-session.entity.d.ts +0 -2
- package/dist/module/user/entity/user-session.entity.js +2 -20
- package/dist/module/user/entity/user-session.entity.js.map +1 -1
- package/dist/module/user/entity/user.entity.d.ts +17 -5
- package/dist/module/user/entity/user.entity.js +61 -15
- package/dist/module/user/entity/user.entity.js.map +1 -1
- package/dist/module/user/repository/role.repository.d.ts +7 -2
- package/dist/module/user/repository/role.repository.js +23 -8
- package/dist/module/user/repository/role.repository.js.map +1 -1
- package/dist/module/user/repository/user-role-mapping.repository.d.ts +1 -0
- package/dist/module/user/repository/user-role-mapping.repository.js +3 -0
- package/dist/module/user/repository/user-role-mapping.repository.js.map +1 -1
- package/dist/module/user/repository/user.repository.d.ts +5 -2
- package/dist/module/user/repository/user.repository.js +26 -7
- package/dist/module/user/repository/user.repository.js.map +1 -1
- package/dist/module/user/repository/userSession.repository.d.ts +1 -0
- package/dist/module/user/repository/userSession.repository.js +3 -0
- package/dist/module/user/repository/userSession.repository.js.map +1 -1
- package/dist/module/user/service/login.service.d.ts +3 -5
- package/dist/module/user/service/login.service.js +43 -42
- package/dist/module/user/service/login.service.js.map +1 -1
- package/dist/module/user/service/role.service.d.ts +24 -11
- package/dist/module/user/service/role.service.js +54 -41
- package/dist/module/user/service/role.service.js.map +1 -1
- package/dist/module/user/service/user-role-mapping.service.d.ts +5 -0
- package/dist/module/user/service/user-role-mapping.service.js +9 -0
- package/dist/module/user/service/user-role-mapping.service.js.map +1 -1
- package/dist/module/user/service/user-session.service.d.ts +3 -4
- package/dist/module/user/service/user-session.service.js +10 -12
- package/dist/module/user/service/user-session.service.js.map +1 -1
- package/dist/module/user/service/user.service.d.ts +33 -22
- package/dist/module/user/service/user.service.js +66 -58
- package/dist/module/user/service/user.service.js.map +1 -1
- package/dist/module/user/user.module.js +2 -7
- package/dist/module/user/user.module.js.map +1 -1
- package/dist/module/workflow/controller/activity-log.controller.d.ts +5 -6
- package/dist/module/workflow/entity/action-category.entity.d.ts +0 -1
- package/dist/module/workflow/entity/action-category.entity.js +1 -7
- package/dist/module/workflow/entity/action-category.entity.js.map +1 -1
- package/dist/module/workflow/entity/action-data.entity.d.ts +0 -1
- package/dist/module/workflow/entity/action-data.entity.js +1 -6
- package/dist/module/workflow/entity/action-data.entity.js.map +1 -1
- package/dist/module/workflow/entity/action-resources-mapping.entity.d.ts +0 -1
- package/dist/module/workflow/entity/action-resources-mapping.entity.js +1 -7
- package/dist/module/workflow/entity/action-resources-mapping.entity.js.map +1 -1
- package/dist/module/workflow/entity/action-template-mapping.entity.d.ts +0 -1
- package/dist/module/workflow/entity/action-template-mapping.entity.js +1 -7
- package/dist/module/workflow/entity/action-template-mapping.entity.js.map +1 -1
- package/dist/module/workflow/entity/action.entity.d.ts +0 -1
- package/dist/module/workflow/entity/action.entity.js +1 -7
- package/dist/module/workflow/entity/action.entity.js.map +1 -1
- package/dist/module/workflow/entity/activity-log.entity.d.ts +0 -1
- package/dist/module/workflow/entity/activity-log.entity.js +1 -6
- package/dist/module/workflow/entity/activity-log.entity.js.map +1 -1
- package/dist/module/workflow/entity/comm-template.entity.d.ts +0 -1
- package/dist/module/workflow/entity/comm-template.entity.js +1 -7
- package/dist/module/workflow/entity/comm-template.entity.js.map +1 -1
- package/dist/module/workflow/entity/entity-modification.entity.d.ts +0 -1
- package/dist/module/workflow/entity/entity-modification.entity.js +1 -7
- package/dist/module/workflow/entity/entity-modification.entity.js.map +1 -1
- package/dist/module/workflow/entity/form.entity.d.ts +0 -1
- package/dist/module/workflow/entity/form.entity.js +1 -6
- package/dist/module/workflow/entity/form.entity.js.map +1 -1
- package/dist/module/workflow/entity/stage-action-mapping.entity.d.ts +0 -1
- package/dist/module/workflow/entity/stage-action-mapping.entity.js +1 -7
- package/dist/module/workflow/entity/stage-action-mapping.entity.js.map +1 -1
- package/dist/module/workflow/entity/stage-group.entity.d.ts +0 -1
- package/dist/module/workflow/entity/stage-group.entity.js +1 -7
- package/dist/module/workflow/entity/stage-group.entity.js.map +1 -1
- package/dist/module/workflow/entity/stage-movement-data.entity.d.ts +0 -1
- package/dist/module/workflow/entity/stage-movement-data.entity.js +1 -7
- package/dist/module/workflow/entity/stage-movement-data.entity.js.map +1 -1
- package/dist/module/workflow/entity/stage.entity.d.ts +0 -1
- package/dist/module/workflow/entity/stage.entity.js +1 -7
- package/dist/module/workflow/entity/stage.entity.js.map +1 -1
- package/dist/module/workflow/entity/task-data.entity.d.ts +0 -1
- package/dist/module/workflow/entity/task-data.entity.js +1 -6
- package/dist/module/workflow/entity/task-data.entity.js.map +1 -1
- package/dist/module/workflow/entity/workflow-data.entity.d.ts +0 -1
- package/dist/module/workflow/entity/workflow-data.entity.js +1 -10
- package/dist/module/workflow/entity/workflow-data.entity.js.map +1 -1
- package/dist/module/workflow/entity/workflow.entity.d.ts +0 -1
- package/dist/module/workflow/entity/workflow.entity.js +1 -7
- package/dist/module/workflow/entity/workflow.entity.js.map +1 -1
- package/dist/module/workflow/repository/action-data.repository.d.ts +1 -1
- package/dist/module/workflow/repository/action-data.repository.js +9 -17
- package/dist/module/workflow/repository/action-data.repository.js.map +1 -1
- package/dist/module/workflow/repository/action.repository.d.ts +1 -1
- package/dist/module/workflow/repository/action.repository.js +12 -12
- package/dist/module/workflow/repository/action.repository.js.map +1 -1
- package/dist/module/workflow/repository/activity-log.repository.d.ts +5 -6
- package/dist/module/workflow/repository/comm-template.repository.js +2 -2
- package/dist/module/workflow/repository/comm-template.repository.js.map +1 -1
- package/dist/module/workflow/repository/form-master.repository.d.ts +1 -1
- package/dist/module/workflow/repository/form-master.repository.js +2 -2
- package/dist/module/workflow/repository/form-master.repository.js.map +1 -1
- package/dist/module/workflow/repository/stage-group.repository.d.ts +6 -6
- package/dist/module/workflow/repository/stage.repository.d.ts +5 -6
- package/dist/module/workflow/repository/stage.repository.js +8 -8
- package/dist/module/workflow/repository/task.repository.js +5 -5
- package/dist/module/workflow/repository/task.repository.js.map +1 -1
- package/dist/module/workflow/repository/workflow.repository.js +1 -1
- package/dist/module/workflow/repository/workflow.repository.js.map +1 -1
- package/dist/module/workflow/service/action-data.service.js +1 -2
- package/dist/module/workflow/service/action-data.service.js.map +1 -1
- package/dist/module/workflow/service/action-template-mapping.service.js +2 -2
- package/dist/module/workflow/service/action.service.js +15 -17
- package/dist/module/workflow/service/action.service.js.map +1 -1
- package/dist/module/workflow/service/activity-log.service.d.ts +5 -6
- package/dist/module/workflow/service/comm-template.service.js +0 -2
- package/dist/module/workflow/service/comm-template.service.js.map +1 -1
- package/dist/module/workflow/service/entity-modification.service.js +2 -3
- package/dist/module/workflow/service/entity-modification.service.js.map +1 -1
- package/dist/module/workflow/service/form-master.service.js +2 -2
- package/dist/module/workflow/service/form-master.service.js.map +1 -1
- package/dist/module/workflow/service/populate-workflow.service.d.ts +1 -1
- package/dist/module/workflow/service/populate-workflow.service.js +1 -6
- package/dist/module/workflow/service/populate-workflow.service.js.map +1 -1
- package/dist/module/workflow/service/task.service.js +10 -13
- package/dist/module/workflow/service/task.service.js.map +1 -1
- package/dist/module/workflow/service/workflow-meta.service.js +2 -7
- package/dist/module/workflow/service/workflow-meta.service.js.map +1 -1
- package/dist/module/workflow/service/workflow.service.js +2 -2
- package/dist/module/workflow/service/workflow.service.js.map +1 -1
- package/dist/module/workflow/workflow.module.js +2 -0
- package/dist/module/workflow/workflow.module.js.map +1 -1
- package/dist/module/workflow-automation/entity/workflow-automation.entity.d.ts +1 -3
- package/dist/module/workflow-automation/entity/workflow-automation.entity.js +1 -9
- package/dist/module/workflow-automation/entity/workflow-automation.entity.js.map +1 -1
- package/dist/module/workflow-automation/service/schedule-handler.service.js +11 -12
- package/dist/module/workflow-automation/service/schedule-handler.service.js.map +1 -1
- package/dist/module/workflow-automation/service/workflow-automation.service.d.ts +7 -9
- package/dist/module/workflow-automation/service/workflow-automation.service.js +18 -15
- package/dist/module/workflow-automation/service/workflow-automation.service.js.map +1 -1
- package/dist/module/workflow-automation/workflow-automation.module.js +3 -1
- package/dist/module/workflow-automation/workflow-automation.module.js.map +1 -1
- package/dist/module/workflow-schedule/interfaces/schedule-job-data.interface.d.ts +1 -2
- package/dist/module/workflow-schedule/processors/schedule.processor.js +5 -9
- package/dist/module/workflow-schedule/processors/schedule.processor.js.map +1 -1
- package/dist/module/workflow-schedule/service/workflow-schedule.service.js +4 -13
- package/dist/module/workflow-schedule/service/workflow-schedule.service.js.map +1 -1
- package/dist/table.config.d.ts +4 -12
- package/dist/table.config.js +21 -3
- package/dist/table.config.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/service/reflection-helper.service.js +2 -2
- package/docs/modules/event-driven-integration-design.md +91 -91
- package/docs/modules/integration.md +250 -250
- package/eslint.config.mjs +34 -34
- package/nest-cli.json +14 -14
- package/package.json +128 -125
- package/server.log +850 -0
- package/src/app.controller.ts +12 -13
- package/src/app.module.ts +72 -68
- package/src/app.service.ts +8 -8
- package/src/config/bull.config.ts +69 -69
- package/src/config/config.module.ts +17 -17
- package/src/config/database.config.ts +48 -48
- package/src/constant/attribute.constant.ts +9 -0
- package/src/constant/db-data-type.constant.ts +160 -0
- package/src/constant/entity.constant.ts +4 -0
- package/src/constant/global.constant.ts +67 -67
- package/src/constant/status.constant.ts +4 -0
- package/src/core.module.ts +111 -94
- package/src/decorators/roles.decorator.ts +7 -7
- package/src/dtos/response.dto.ts +6 -6
- package/src/dtos/response.ts +5 -5
- package/src/index.ts +1 -1
- package/src/module/app_master/app-master.module.ts +15 -0
- package/src/module/{meta → app_master}/controller/app-master.controller.ts +56 -38
- package/src/module/{meta → app_master}/entity/app-master.entity.ts +50 -37
- package/src/module/app_master/repository/app-master.repository.ts +38 -0
- package/src/module/{meta → app_master}/service/app-master.service.ts +48 -37
- package/src/module/auth/auth.module.ts +77 -49
- package/src/module/auth/controller/auth.controller.ts +28 -28
- package/src/module/auth/guards/google-auth.guard.ts +9 -9
- package/src/module/auth/guards/jwt.guard.ts +22 -22
- package/src/module/auth/guards/role.guard.ts +68 -68
- package/src/module/auth/services/auth.service.ts +56 -56
- package/src/module/auth/services/jwt.service.ts +11 -11
- package/src/module/auth/strategies/google.strategy.ts +54 -54
- package/src/module/auth/strategies/jwt.strategy.ts +64 -58
- package/src/module/auth/strategies/local.strategy.ts +13 -13
- package/src/module/dashboard/controller/dashboard.controller.ts +38 -38
- package/src/module/dashboard/dashboard.module.ts +21 -21
- package/src/module/dashboard/entity/dashboard_page_data.entity.ts +23 -27
- package/src/module/dashboard/entity/widget_master.entity.ts +15 -18
- package/src/module/dashboard/repository/dashboard.repository.ts +49 -49
- package/src/module/dashboard/service/dashboard.service.ts +71 -72
- package/src/module/eav/EAV_USAGE_GUIDE.md +351 -0
- package/src/module/eav/controller/eav.controller.ts +119 -0
- package/src/module/eav/dto/eav-operation.dto.ts +62 -0
- package/src/module/eav/eav.module.ts +80 -0
- package/src/module/eav/entity/eav-boolean.entity.ts +26 -0
- package/src/module/eav/entity/eav-date.entity.ts +25 -0
- package/src/module/eav/entity/eav-decimal.entity.ts +25 -0
- package/src/module/eav/entity/eav-int.entity.ts +25 -0
- package/src/module/eav/entity/eav-json.entity.ts +25 -0
- package/src/module/eav/entity/eav-text.entity.ts +25 -0
- package/src/module/eav/entity/eav-time.entity.ts +25 -0
- package/src/module/eav/entity/eav-timestamp.entity.ts +25 -0
- package/src/module/eav/entity/eav-varchar.entity.ts +25 -0
- package/src/module/eav/interface/eav-strategy.interface.ts +32 -0
- package/src/module/eav/repository/eav-boolean.repository.ts +67 -0
- package/src/module/eav/repository/eav-date.repository.ts +67 -0
- package/src/module/eav/repository/eav-decimal.repository.ts +67 -0
- package/src/module/eav/repository/eav-int.repository.ts +67 -0
- package/src/module/eav/repository/eav-json.repository.ts +67 -0
- package/src/module/eav/repository/eav-text.repository.ts +67 -0
- package/src/module/eav/repository/eav-time.repository.ts +67 -0
- package/src/module/eav/repository/eav-timestamp.repository.ts +67 -0
- package/src/module/eav/repository/eav-varchar.repository.ts +67 -0
- package/src/module/eav/service/eav-boolean.service.ts +64 -0
- package/src/module/eav/service/eav-date.service.ts +64 -0
- package/src/module/eav/service/eav-decimal.service.ts +64 -0
- package/src/module/eav/service/eav-factory.service.ts +93 -0
- package/src/module/eav/service/eav-int.service.ts +64 -0
- package/src/module/eav/service/eav-json.service.ts +64 -0
- package/src/module/eav/service/eav-text.service.ts +64 -0
- package/src/module/eav/service/eav-time.service.ts +64 -0
- package/src/module/eav/service/eav-timestamp.service.ts +64 -0
- package/src/module/eav/service/eav-varchar.service.ts +65 -0
- package/src/module/eav/service/eav.service.ts +116 -0
- package/src/module/enterprise/controller/enterprise.controller.ts +40 -0
- package/src/module/enterprise/controller/meta.controller.ts +23 -0
- package/src/module/enterprise/controller/organization.controller.ts +99 -36
- package/src/module/enterprise/enterprise.module.ts +43 -45
- package/src/module/enterprise/entity/enterprise.entity.ts +31 -37
- package/src/module/enterprise/entity/organization-app-mapping.entity.ts +27 -13
- package/src/module/enterprise/entity/organization.entity.ts +45 -92
- package/src/module/enterprise/repository/enterprise.repository.ts +53 -31
- package/src/module/enterprise/repository/organization.repository.ts +26 -26
- package/src/module/enterprise/repository/school.repository.ts +272 -289
- package/src/module/enterprise/service/brand-profile.service.ts +10 -0
- package/src/module/enterprise/service/brand.service.ts +75 -5
- package/src/module/enterprise/service/enterprise.service.ts +24 -16
- package/src/module/enterprise/service/organization-app-mapping.service.ts +4 -4
- package/src/module/enterprise/service/organization.service.ts +374 -146
- package/src/module/{meta → enterprise}/service/populate-meta.service.ts +210 -228
- package/src/module/enterprise/service/school.service.ts +5 -0
- package/src/module/entity_json/controller/entity_json.controller.ts +75 -60
- package/src/module/entity_json/docs/FlatJson_Filterin_System.md +2803 -2803
- package/src/module/entity_json/entity/entityJson.entity.ts +42 -42
- package/src/module/entity_json/entity_json.module.ts +22 -22
- package/src/module/entity_json/service/entityJson.repository.ts +37 -37
- package/src/module/entity_json/service/entity_json.service.ts +492 -486
- package/src/module/export/controller/export.controller.ts +83 -83
- package/src/module/export/export.module.ts +14 -14
- package/src/module/export/service/export.service.ts +107 -105
- package/src/module/filter/controller/filter.controller.ts +89 -87
- package/src/module/filter/dto/filter-request.dto.ts +40 -39
- package/src/module/filter/entity/saved-filter-detail.entity.ts +37 -41
- package/src/module/filter/entity/saved-filter-master.entity.ts +30 -35
- package/src/module/filter/filter.module.ts +33 -42
- package/src/module/filter/repository/saved-filter.repository.ts +247 -249
- package/src/module/filter/repository/saved.filter-detail.repository.ts +19 -19
- package/src/module/filter/service/filter-evaluator.service.ts +82 -82
- package/src/module/filter/service/filter.service.ts +1389 -1406
- package/src/module/filter/service/saved-filter.service.ts +165 -154
- package/src/module/ics/controller/ics.controller.ts +21 -21
- package/src/module/ics/dto/ics.dto.ts +55 -55
- package/src/module/ics/ics.module.ts +13 -13
- package/src/module/ics/service/ics.service.ts +57 -57
- package/src/module/integration/controller/calender-event.controller.ts +31 -31
- package/src/module/integration/controller/integration.controller.ts +662 -662
- package/src/module/integration/controller/wrapper.controller.ts +37 -37
- package/src/module/integration/dto/create-config.dto.ts +526 -526
- package/src/module/integration/entity/integration-config.entity.ts +112 -112
- package/src/module/integration/entity/integration-entity-mapper.entity.ts +14 -14
- package/src/module/integration/entity/integration-source.entity.ts +17 -17
- package/src/module/integration/entity/user-integration.entity.ts +71 -71
- package/src/module/integration/examples/usage.example.ts +338 -338
- package/src/module/integration/factories/base.factory.ts +7 -7
- package/src/module/integration/factories/email.factory.ts +49 -49
- package/src/module/integration/factories/integration.factory.ts +121 -121
- package/src/module/integration/factories/sms.factory.ts +51 -51
- package/src/module/integration/factories/telephone.factory.ts +41 -41
- package/src/module/integration/factories/whatsapp.factory.ts +56 -56
- package/src/module/integration/integration.module.ts +110 -110
- package/src/module/integration/service/calendar-event.service.ts +118 -118
- package/src/module/integration/service/integration-entity-mapper.service.ts +17 -17
- package/src/module/integration/service/integration-queue.service.ts +229 -229
- package/src/module/integration/service/integration.service.ts +2632 -2653
- package/src/module/integration/service/oauth.service.ts +224 -226
- package/src/module/integration/service/wrapper.service.ts +753 -754
- package/src/module/integration/strategies/email/gmail-api.strategy.ts +281 -307
- package/src/module/integration/strategies/email/outlook-api.strategy.ts +44 -44
- package/src/module/integration/strategies/email/outlook.strategy.ts +64 -64
- package/src/module/integration/strategies/email/sendgrid-api.strategy.ts +260 -263
- package/src/module/integration/strategies/integration.strategy.ts +97 -97
- package/src/module/integration/strategies/sms/gupshup-sms.strategy.ts +146 -146
- package/src/module/integration/strategies/sms/msg91-sms.strategy.ts +164 -164
- package/src/module/integration/strategies/sms/tubelight-sms.strategy.ts +163 -163
- package/src/module/integration/strategies/telephone/ozonetel-voice.strategy.ts +238 -238
- package/src/module/integration/strategies/telephone/tubelight-voice.strategy.ts +210 -210
- package/src/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.ts +359 -359
- package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +372 -372
- package/src/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.ts +403 -403
- package/src/module/integration/strategies/whatsapp/whatsapp.strategy.ts +57 -57
- package/src/module/layout/controller/layout.controller.ts +40 -47
- package/src/module/layout/entity/header-items.entity.ts +28 -28
- package/src/module/layout/entity/header-section.entity.ts +13 -19
- package/src/module/layout/layout.module.ts +21 -21
- package/src/module/layout/repository/header-items.repository.ts +18 -18
- package/src/module/layout/repository/header-section.repository.ts +16 -22
- package/src/module/layout/service/header-section.service.ts +25 -25
- package/src/module/layout_preference/controller/layout_preference.controller.ts +76 -76
- package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
- package/src/module/layout_preference/layout_preference.module.ts +22 -22
- package/src/module/layout_preference/repository/layout_preference.repository.ts +65 -65
- package/src/module/layout_preference/service/layout_preference.service.ts +191 -191
- package/src/module/lead/controller/lead.controller.ts +30 -30
- package/src/module/lead/lead.module.ts +14 -14
- package/src/module/lead/repository/lead.repository.ts +41 -41
- package/src/module/lead/service/lead.service.ts +54 -54
- package/src/module/linked_attributes/controller/linked_attributes.controller.ts +137 -137
- package/src/module/linked_attributes/dto/create-linked-attribute-smart.dto.ts +54 -54
- package/src/module/linked_attributes/entity/linked_attribute.entity.ts +51 -51
- package/src/module/linked_attributes/linked_attributes.module.ts +23 -23
- package/src/module/linked_attributes/repository/linked_attribute.repository.ts +12 -12
- package/src/module/linked_attributes/service/linked_attributes.service.ts +648 -648
- package/src/module/linked_attributes/test/linked-attributes.service.spec.ts +244 -244
- package/src/module/listmaster/controller/list-master.controller.ts +206 -230
- package/src/module/listmaster/entity/list-master-items.entity.ts +30 -43
- package/src/module/listmaster/entity/list-master.entity.ts +23 -33
- package/src/module/listmaster/listmaster.module.ts +46 -46
- package/src/module/listmaster/repository/list-master-items.repository.ts +225 -173
- package/src/module/listmaster/repository/list-master.repository.ts +56 -56
- package/src/module/listmaster/service/list-master-engine.ts +19 -19
- package/src/module/listmaster/service/list-master-extension.interface.ts +4 -4
- package/src/module/listmaster/service/list-master-item.service.ts +382 -280
- package/src/module/listmaster/service/list-master-registry.ts +15 -15
- package/src/module/listmaster/service/list-master.service.ts +767 -527
- package/src/module/mapper/controller/field-mapper.controller.ts +76 -76
- package/src/module/mapper/controller/mapper.controller.ts +20 -20
- package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
- package/src/module/mapper/entity/field-lovs.entity.ts +15 -19
- package/src/module/mapper/entity/field-mapper.entity.ts +49 -53
- package/src/module/mapper/entity/mapper.entity.ts +9 -16
- package/src/module/mapper/mapper.module.ts +35 -35
- package/src/module/mapper/repository/field-lovs.repository.ts +35 -35
- package/src/module/mapper/repository/field-mapper.repository.ts +42 -42
- package/src/module/mapper/repository/mapper.repository.ts +32 -32
- package/src/module/mapper/service/field-mapper.service.ts +268 -269
- package/src/module/mapper/service/mapper.service.ts +80 -80
- package/src/module/master/controller/master.controller.ts +71 -74
- package/src/module/master/service/master.service.ts +460 -484
- package/src/module/meta/controller/attribute-master.controller.ts +82 -96
- package/src/module/meta/controller/entity-dynamic.controller.ts +123 -125
- package/src/module/meta/controller/entity-master.controller.ts +41 -41
- package/src/module/meta/controller/entity-relation.controller.ts +36 -36
- package/src/module/meta/controller/entity.controller.ts +301 -308
- package/src/module/meta/controller/entity.public.controller.ts +76 -75
- package/src/module/meta/controller/media.controller.ts +135 -167
- package/src/module/meta/controller/meta.controller.ts +80 -101
- package/src/module/meta/controller/view-master.controller.ts +79 -79
- package/src/module/meta/dto/entity-list-data.dto.ts +6 -6
- package/src/module/meta/dto/entity-tab.dto.ts +4 -4
- package/src/module/meta/dto/entity-table.dto.ts +12 -12
- package/src/module/meta/entity/attribute-master.entity.ts +62 -92
- package/src/module/meta/entity/base-entity.entity.ts +52 -75
- package/src/module/meta/entity/dynamic.entity.ts +6 -0
- package/src/module/meta/entity/entity-master.entity.ts +53 -91
- package/src/module/meta/entity/entity-relation-data.entity.ts +24 -29
- package/src/module/meta/entity/entity-relation.entity.ts +18 -23
- package/src/module/meta/entity/entity-table-column.entity.ts +56 -61
- package/src/module/meta/entity/entity-table.entity.ts +45 -50
- package/src/module/meta/entity/media-data.entity.ts +32 -38
- package/src/module/meta/entity/preference.entity.ts +57 -62
- package/src/module/meta/entity/view-master.entity.ts +36 -41
- package/src/module/meta/entity.module.ts +154 -165
- package/src/module/meta/repository/attribute-master.repository.ts +206 -164
- package/src/module/meta/repository/entity-attribute-update.repository.ts +48 -48
- package/src/module/meta/repository/entity-master.repository.ts +120 -120
- package/src/module/meta/repository/entity-relation.repository.ts +36 -22
- package/src/module/meta/repository/entity-table-column.repository.ts +39 -39
- package/src/module/meta/repository/entity-table.repository.ts +53 -53
- package/src/module/meta/repository/media-data.repository.ts +50 -50
- package/src/module/meta/repository/preference.repository.ts +20 -20
- package/src/module/meta/repository/user-app-mapping.repository.ts +28 -28
- package/src/module/meta/repository/view-master.repository.ts +42 -42
- package/src/module/meta/service/attribute-master.service.ts +254 -160
- package/src/module/meta/service/common.service.ts +9 -9
- package/src/module/meta/service/entity-attribute-update.service.ts +26 -26
- package/src/module/meta/service/entity-dynamic.service.ts +993 -835
- package/src/module/meta/service/entity-master.service.ts +288 -172
- package/src/module/meta/service/entity-realation-data.service.ts +9 -9
- package/src/module/meta/service/entity-relation.service.ts +85 -78
- package/src/module/meta/service/entity-service-impl.service.ts +394 -389
- package/src/module/meta/service/entity-table-column.service.ts +26 -26
- package/src/module/meta/service/entity-table.service.ts +157 -171
- package/src/module/meta/service/entity-validation.service.ts +187 -188
- package/src/module/meta/service/entity.service.ts +50 -48
- package/src/module/meta/service/field-group.service.ts +103 -103
- package/src/module/meta/service/media-data.service.ts +385 -610
- package/src/module/meta/service/preference.service.ts +16 -16
- package/src/module/meta/service/resolver.service.ts +260 -347
- package/src/module/meta/service/section-master.service.ts +104 -104
- package/src/module/meta/service/update-form-json.service.ts +22 -22
- package/src/module/meta/service/user-app-mapping.service.ts +17 -17
- package/src/module/meta/service/view-master.service.ts +127 -127
- package/src/module/microservice-client/microservice-clients.module.ts +13 -13
- package/src/module/microservice-client/service/microservice-client-factory.ts +37 -37
- package/src/module/microservice-client/service/microservice-clients.ts +4 -4
- package/src/module/module/controller/menu.controller.ts +41 -15
- package/src/module/module/controller/module-access.controller.ts +138 -133
- package/src/module/module/entity/menu.entity.ts +51 -43
- package/src/module/module/entity/module-access.entity.ts +62 -25
- package/src/module/module/entity/module-action.entity.ts +21 -17
- package/src/module/module/entity/module.entity.ts +45 -52
- package/src/module/module/module.module.ts +43 -42
- package/src/module/module/repository/menu.repository.ts +200 -186
- package/src/module/module/repository/module-access.repository.ts +392 -344
- package/src/module/module/service/menu.service.ts +80 -82
- package/src/module/module/service/module-access.service.ts +177 -189
- package/src/module/module/service/module-import.service.ts +294 -0
- package/src/module/notification/controller/notification.controller.ts +58 -58
- package/src/module/notification/controller/otp.controller.ts +117 -117
- package/src/module/notification/entity/notification.entity.ts +76 -26
- package/src/module/notification/entity/otp.entity.ts +28 -28
- package/src/module/notification/firebase-admin.config.ts +22 -22
- package/src/module/notification/notification.module.ts +70 -71
- package/src/module/notification/repository/otp.repository.ts +27 -27
- package/src/module/notification/service/email.service.ts +142 -127
- package/src/module/notification/service/notification.service.ts +163 -146
- package/src/module/notification/service/otp.service.ts +144 -133
- package/src/module/preference_master/entity/preference.entity.ts +25 -0
- package/src/module/preference_master/preference.service.ts +27 -0
- package/src/module/preference_master/repo/preference.repository.ts +36 -0
- package/src/module/third-party-module/entity/third-party-api-registry.entity.ts +52 -52
- package/src/module/third-party-module/repository/third-party-api-registry.repository.ts +20 -20
- package/src/module/third-party-module/service/api-registry.service.ts +13 -13
- package/src/module/third-party-module/third-party.module.ts +12 -12
- package/src/module/user/controller/login.controller.ts +197 -199
- package/src/module/user/controller/user.controller.ts +31 -40
- package/src/module/user/dto/create-user.dto.ts +75 -62
- package/src/module/user/dto/update-user.dto.ts +4 -4
- package/src/module/user/entity/role.entity.ts +76 -33
- package/src/module/user/entity/user-role-mapping.entity.ts +64 -38
- package/src/module/user/entity/user-session.entity.ts +57 -73
- package/src/module/user/entity/user.entity.ts +97 -62
- package/src/module/user/repository/role.repository.ts +116 -96
- package/src/module/user/repository/user-role-mapping.repository.ts +130 -126
- package/src/module/user/repository/user.repository.ts +77 -50
- package/src/module/user/repository/userSession.repository.ts +37 -33
- package/src/module/user/service/login.service.ts +322 -326
- package/src/module/user/service/role.service.ts +197 -197
- package/src/module/user/service/user-role-mapping.service.ts +128 -98
- package/src/module/user/service/user-session.service.ts +203 -201
- package/src/module/user/service/user.service.ts +349 -368
- package/src/module/user/user.module.ts +64 -65
- package/src/module/workflow/controller/action-category.controller.ts +54 -54
- package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -23
- package/src/module/workflow/controller/action-template-mapping.controller.ts +35 -35
- package/src/module/workflow/controller/action.controller.ts +111 -111
- package/src/module/workflow/controller/activity-log.controller.ts +55 -55
- package/src/module/workflow/controller/comm-template.controller.ts +43 -43
- package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
- package/src/module/workflow/controller/form-master.controller.ts +43 -43
- package/src/module/workflow/controller/stage-group.controller.ts +49 -49
- package/src/module/workflow/controller/stage.controller.ts +51 -51
- package/src/module/workflow/controller/task.controller.ts +77 -77
- package/src/module/workflow/controller/workflow-list-master.controller.ts +44 -44
- package/src/module/workflow/controller/workflow-meta.controller.ts +80 -80
- package/src/module/workflow/controller/workflow.controller.ts +67 -67
- package/src/module/workflow/entity/action-category.entity.ts +33 -38
- package/src/module/workflow/entity/action-data.entity.ts +51 -55
- package/src/module/workflow/entity/action-resources-mapping.entity.ts +21 -29
- package/src/module/workflow/entity/action-template-mapping.entity.ts +12 -17
- package/src/module/workflow/entity/action.entity.ts +48 -53
- package/src/module/workflow/entity/activity-log.entity.ts +39 -43
- package/src/module/workflow/entity/comm-template.entity.ts +38 -43
- package/src/module/workflow/entity/entity-modification.entity.ts +33 -38
- package/src/module/workflow/entity/form.entity.ts +21 -25
- package/src/module/workflow/entity/stage-action-mapping.entity.ts +12 -17
- package/src/module/workflow/entity/stage-group.entity.ts +18 -23
- package/src/module/workflow/entity/stage-movement-data.entity.ts +33 -38
- package/src/module/workflow/entity/stage.entity.ts +15 -20
- package/src/module/workflow/entity/task-data.entity.ts +84 -88
- package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
- package/src/module/workflow/entity/workflow-data.entity.ts +6 -11
- package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
- package/src/module/workflow/entity/workflow.entity.ts +15 -20
- package/src/module/workflow/repository/action-category.repository.ts +79 -79
- package/src/module/workflow/repository/action-data.repository.ts +345 -354
- package/src/module/workflow/repository/action.repository.ts +339 -339
- package/src/module/workflow/repository/activity-log.repository.ts +148 -148
- package/src/module/workflow/repository/comm-template.repository.ts +157 -157
- package/src/module/workflow/repository/form-master.repository.ts +50 -50
- package/src/module/workflow/repository/stage-group.repository.ts +186 -186
- package/src/module/workflow/repository/stage-movement.repository.ts +217 -217
- package/src/module/workflow/repository/stage.repository.ts +160 -160
- package/src/module/workflow/repository/task.repository.ts +154 -156
- package/src/module/workflow/repository/workflow.repository.ts +42 -42
- package/src/module/workflow/service/action-category.service.ts +33 -33
- package/src/module/workflow/service/action-data.service.ts +63 -62
- package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
- package/src/module/workflow/service/action-template-mapping.service.ts +137 -137
- package/src/module/workflow/service/action.service.ts +300 -302
- package/src/module/workflow/service/activity-log.service.ts +107 -107
- package/src/module/workflow/service/comm-template.service.ts +179 -181
- package/src/module/workflow/service/entity-modification.service.ts +55 -61
- package/src/module/workflow/service/form-master.service.ts +35 -35
- package/src/module/workflow/service/populate-workflow.service.ts +320 -325
- package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
- package/src/module/workflow/service/stage-group.service.ts +325 -325
- package/src/module/workflow/service/stage.service.ts +197 -197
- package/src/module/workflow/service/task.service.ts +547 -551
- package/src/module/workflow/service/workflow-list-master.service.ts +68 -68
- package/src/module/workflow/service/workflow-meta.service.ts +635 -640
- package/src/module/workflow/service/workflow.service.ts +213 -213
- package/src/module/workflow/workflow.module.ts +182 -180
- package/src/module/workflow-automation/SCHEDULING_GUIDE.md +145 -145
- package/src/module/workflow-automation/controller/workflow-automation.controller.ts +43 -43
- package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
- package/src/module/workflow-automation/entity/workflow-automation.entity.ts +35 -40
- package/src/module/workflow-automation/interface/action.decorator.ts +7 -7
- package/src/module/workflow-automation/interface/action.interface.ts +5 -5
- package/src/module/workflow-automation/service/action-registery.service.ts +35 -35
- package/src/module/workflow-automation/service/schedule-handler.service.ts +167 -168
- package/src/module/workflow-automation/service/workflow-automation-engine.service.ts +219 -219
- package/src/module/workflow-automation/service/workflow-automation.service.ts +486 -474
- package/src/module/workflow-automation/workflow-automation.module.ts +55 -54
- package/src/module/workflow-schedule/INSTALLATION.md +244 -244
- package/src/module/workflow-schedule/MULTI_PROJECT_GUIDE.md +196 -196
- package/src/module/workflow-schedule/README.md +422 -422
- package/src/module/workflow-schedule/constants/schedule.constants.ts +48 -48
- package/src/module/workflow-schedule/controller/workflow-schedule.controller.ts +253 -253
- package/src/module/workflow-schedule/docs/CLAUDE_CODE_GUIDE.md +510 -510
- package/src/module/workflow-schedule/docs/CLAUDE_CODE_PROMPT.md +362 -362
- package/src/module/workflow-schedule/docs/RUN_CLAUDE_CODE.sh +68 -68
- package/src/module/workflow-schedule/dto/create-schedule.dto.ts +147 -147
- package/src/module/workflow-schedule/dto/get-execution-logs.dto.ts +119 -119
- package/src/module/workflow-schedule/dto/update-schedule.dto.ts +96 -96
- package/src/module/workflow-schedule/entities/scheduled-workflow.entity.ts +148 -148
- package/src/module/workflow-schedule/entities/workflow-execution-log.entity.ts +154 -154
- package/src/module/workflow-schedule/interfaces/schedule-job-data.interface.ts +52 -53
- package/src/module/workflow-schedule/interfaces/workflow-schedule-options.interface.ts +12 -12
- package/src/module/workflow-schedule/processors/schedule.processor.ts +616 -620
- package/src/module/workflow-schedule/service/workflow-schedule.service.ts +588 -597
- package/src/module/workflow-schedule/workflow-schedule.module.ts +67 -67
- package/src/resources/dev.properties.yaml +34 -31
- package/src/resources/local.properties.yaml +27 -27
- package/src/resources/properties.module.ts +12 -12
- package/src/resources/properties.yaml.ts +11 -11
- package/src/resources/uat.properties.yaml +31 -31
- package/src/table.config.ts +153 -135
- package/src/utils/dto/excel-data.dto.ts +14 -14
- package/src/utils/dto/excelsheet-data.dto.ts +5 -5
- package/src/utils/service/base64util.service.ts +18 -18
- package/src/utils/service/clockIDGenUtil.service.ts +21 -21
- package/src/utils/service/codeGenerator.service.ts +22 -22
- package/src/utils/service/dateUtil.service.ts +17 -17
- package/src/utils/service/encryptUtil.service.ts +97 -97
- package/src/utils/service/excel-helper.service.ts +72 -72
- package/src/utils/service/excelUtil.service.ts +15 -15
- package/src/utils/service/file-util.service.ts +11 -11
- package/src/utils/service/json-util.service.ts +23 -23
- package/src/utils/service/loggingUtil.service.ts +88 -88
- package/src/utils/service/reflection-helper.service.ts +62 -62
- package/src/utils/service/wbsCodeGen.service.ts +8 -8
- package/src/utils/utils.module.ts +27 -27
- package/tsconfig.build.json +4 -4
- package/tsconfig.json +24 -24
- package/dist/migrations/1732612800000-AddEntityJsonGinIndex.d.ts +0 -6
- package/dist/migrations/1732612800000-AddEntityJsonGinIndex.js +0 -32
- package/dist/migrations/1732612800000-AddEntityJsonGinIndex.js.map +0 -1
- package/dist/module/filter/service/flatjson-filter.service.d.ts +0 -32
- package/dist/module/filter/service/flatjson-filter.service.js +0 -632
- package/dist/module/filter/service/flatjson-filter.service.js.map +0 -1
- package/dist/module/meta/controller/app-master.controller.js.map +0 -1
- package/dist/module/meta/entity/app-master.entity.d.ts +0 -13
- package/dist/module/meta/entity/app-master.entity.js.map +0 -1
- package/dist/module/meta/repository/app-master.repository.js.map +0 -1
- package/dist/module/meta/service/app-master.service.js.map +0 -1
- package/dist/module/meta/service/populate-meta.service.d.ts +0 -13
- package/dist/module/meta/service/populate-meta.service.js.map +0 -1
- package/dist/module/notification/repository/notification.repository.d.ts +0 -7
- package/dist/module/notification/repository/notification.repository.js +0 -43
- package/dist/module/notification/repository/notification.repository.js.map +0 -1
- package/src/migrations/1732612800000-AddEntityJsonGinIndex.ts +0 -41
- package/src/module/filter/service/flatjson-filter.service.ts +0 -903
- package/src/module/filter/test/flatjson-filter.service.spec.ts +0 -415
- package/src/module/meta/repository/app-master.repository.ts +0 -20
- package/src/module/notification/repository/notification.repository.ts +0 -33
|
@@ -3,16 +3,24 @@ import { LoggingService } from 'src/utils/service/loggingUtil.service';
|
|
|
3
3
|
import { DataSource } from 'typeorm';
|
|
4
4
|
import { EntityJSONRepository } from './entityJson.repository';
|
|
5
5
|
import { FilterService } from '../../filter/service/filter.service';
|
|
6
|
+
import { AttributeMasterService } from 'src/module/meta/service/attribute-master.service';
|
|
7
|
+
import { EntityMasterService } from '../../meta/service/entity-master.service';
|
|
8
|
+
import { EntityDynamicService } from '../../meta/service/entity-dynamic.service';
|
|
9
|
+
import { EntityRelationService } from '../../meta/service/entity-relation.service';
|
|
6
10
|
export declare class EntityJSONService {
|
|
7
11
|
private readonly dataSource;
|
|
8
12
|
private readonly loggerService;
|
|
9
13
|
private readonly EntityJSONRepository;
|
|
10
14
|
private readonly filterService;
|
|
11
15
|
private readonly entityServiceImpl;
|
|
12
|
-
|
|
16
|
+
private readonly entityMasterService;
|
|
17
|
+
private readonly entityDynamicService;
|
|
18
|
+
private readonly attributeMasterService;
|
|
19
|
+
private readonly entityRelationService;
|
|
20
|
+
constructor(dataSource: DataSource, loggerService: LoggingService, EntityJSONRepository: EntityJSONRepository, filterService: FilterService, entityServiceImpl: EntityServiceImpl, entityMasterService: EntityMasterService, entityDynamicService: EntityDynamicService, attributeMasterService: AttributeMasterService, entityRelationService: EntityRelationService);
|
|
13
21
|
getAttributeForFlatJSON(entityType: string, loggedInUser: any, flag?: 'flat_json' | 'dropdown' | 'all' | 'filter_attribute'): Promise<any>;
|
|
14
22
|
updateEntityJSON(entityType: string, entityId: number, loggedInUser: any): Promise<any>;
|
|
15
23
|
private mergeEntityDataIntoFlatJson;
|
|
16
24
|
private applyLinkedFilterUsingSavedFilter;
|
|
17
|
-
|
|
25
|
+
computeFlatJson(entityType: string, entityId: number, loggedInUser: any): Promise<Record<string, any>>;
|
|
18
26
|
}
|
|
@@ -22,13 +22,21 @@ const loggingUtil_service_1 = require("../../../utils/service/loggingUtil.servic
|
|
|
22
22
|
const typeorm_1 = require("typeorm");
|
|
23
23
|
const entityJson_repository_1 = require("./entityJson.repository");
|
|
24
24
|
const filter_service_1 = require("../../filter/service/filter.service");
|
|
25
|
+
const attribute_master_service_1 = require("../../meta/service/attribute-master.service");
|
|
26
|
+
const entity_master_service_1 = require("../../meta/service/entity-master.service");
|
|
27
|
+
const entity_dynamic_service_1 = require("../../meta/service/entity-dynamic.service");
|
|
28
|
+
const entity_relation_service_1 = require("../../meta/service/entity-relation.service");
|
|
25
29
|
let EntityJSONService = class EntityJSONService {
|
|
26
|
-
constructor(dataSource, loggerService, EntityJSONRepository, filterService, entityServiceImpl) {
|
|
30
|
+
constructor(dataSource, loggerService, EntityJSONRepository, filterService, entityServiceImpl, entityMasterService, entityDynamicService, attributeMasterService, entityRelationService) {
|
|
27
31
|
this.dataSource = dataSource;
|
|
28
32
|
this.loggerService = loggerService;
|
|
29
33
|
this.EntityJSONRepository = EntityJSONRepository;
|
|
30
34
|
this.filterService = filterService;
|
|
31
35
|
this.entityServiceImpl = entityServiceImpl;
|
|
36
|
+
this.entityMasterService = entityMasterService;
|
|
37
|
+
this.entityDynamicService = entityDynamicService;
|
|
38
|
+
this.attributeMasterService = attributeMasterService;
|
|
39
|
+
this.entityRelationService = entityRelationService;
|
|
32
40
|
}
|
|
33
41
|
async getAttributeForFlatJSON(entityType, loggedInUser, flag) {
|
|
34
42
|
const entId = loggedInUser.enterprise_id;
|
|
@@ -39,13 +47,11 @@ let EntityJSONService = class EntityJSONService {
|
|
|
39
47
|
.select([
|
|
40
48
|
'attr.id',
|
|
41
49
|
'attr.name',
|
|
42
|
-
'attr.flat_json_key',
|
|
43
50
|
'attr.attribute_key',
|
|
44
|
-
'attr.
|
|
51
|
+
'attr.db_datatype',
|
|
45
52
|
])
|
|
46
53
|
.where('attr.mapped_entity_type = :entityType', { entityType })
|
|
47
54
|
.andWhere('attr.enterprise_id = :entId', { entId })
|
|
48
|
-
.andWhere('attr.data_type != :uploadType', { uploadType: 'upload' })
|
|
49
55
|
.getMany();
|
|
50
56
|
await this.loggerService.log('debug', 'EntityJSONService', 'getAttributeForFlatJSON', `Loaded ${mainAttributes.length} main attributes`);
|
|
51
57
|
const relatedEntityTypes = await this.dataSource
|
|
@@ -65,7 +71,6 @@ let EntityJSONService = class EntityJSONService {
|
|
|
65
71
|
.select([
|
|
66
72
|
'attr.id',
|
|
67
73
|
'attr.name',
|
|
68
|
-
'attr.flat_json_key',
|
|
69
74
|
'attr.mapped_entity_type',
|
|
70
75
|
'attr.attribute_key',
|
|
71
76
|
'attr.data_type',
|
|
@@ -74,7 +79,6 @@ let EntityJSONService = class EntityJSONService {
|
|
|
74
79
|
types: relatedTypesList,
|
|
75
80
|
})
|
|
76
81
|
.andWhere('attr.enterprise_id = :entId', { entId })
|
|
77
|
-
.andWhere('attr.data_type != :uploadType', { uploadType: 'upload' })
|
|
78
82
|
.getMany()
|
|
79
83
|
: [];
|
|
80
84
|
await this.loggerService.log('debug', 'EntityJSONService', 'getAttributeForFlatJSON', `Loaded ${relatedAttributes.length} related attributes`);
|
|
@@ -92,47 +96,23 @@ let EntityJSONService = class EntityJSONService {
|
|
|
92
96
|
'attr.data_type AS data_type',
|
|
93
97
|
])
|
|
94
98
|
.where('attr.enterprise_id = :entId', { entId })
|
|
95
|
-
.andWhere('attr.data_type != :uploadType', { uploadType: 'upload' })
|
|
96
99
|
.getRawMany();
|
|
97
100
|
await this.loggerService.log('debug', 'EntityJSONService', 'getAttributeForFlatJSON', `Loaded ${linkedAttributes.length} linked attributes`);
|
|
98
101
|
if (flag === 'filter_attribute') {
|
|
99
|
-
|
|
100
|
-
filterAttributes.push(...mainAttributes.map((a) => ({
|
|
101
|
-
id: a.id,
|
|
102
|
-
name: a.name,
|
|
103
|
-
data_type: a.data_type,
|
|
104
|
-
attribute_key: a.flat_json_key,
|
|
105
|
-
source: 'main',
|
|
106
|
-
})));
|
|
107
|
-
filterAttributes.push(...relatedAttributes.map((a) => ({
|
|
108
|
-
id: a.id,
|
|
109
|
-
name: a.name,
|
|
110
|
-
data_type: a.data_type,
|
|
111
|
-
attribute_key: a.flat_json_key,
|
|
112
|
-
source: 'related',
|
|
113
|
-
})));
|
|
114
|
-
filterAttributes.push(...linkedAttributes.map((l) => ({
|
|
102
|
+
return linkedAttributes.map((l) => ({
|
|
115
103
|
id: l.id,
|
|
116
104
|
name: l.name,
|
|
117
105
|
data_type: l.data_type,
|
|
118
106
|
attribute_key: l.target_attribute_key,
|
|
119
107
|
source: 'linked',
|
|
120
|
-
}))
|
|
121
|
-
return filterAttributes;
|
|
108
|
+
}));
|
|
122
109
|
}
|
|
123
110
|
if (flag === 'flat_json' || flag === 'all') {
|
|
124
111
|
const result = {};
|
|
125
|
-
mainAttributes.forEach((attr) => {
|
|
126
|
-
if (attr.flat_json_key)
|
|
127
|
-
result[attr.flat_json_key] = null;
|
|
128
|
-
});
|
|
129
|
-
relatedAttributes.forEach((attr) => {
|
|
130
|
-
if (attr.flat_json_key)
|
|
131
|
-
result[attr.flat_json_key] = null;
|
|
132
|
-
});
|
|
133
112
|
linkedAttributes.forEach((link) => {
|
|
134
|
-
if (link.target_attribute_key)
|
|
113
|
+
if (link.target_attribute_key) {
|
|
135
114
|
result[link.target_attribute_key] = null;
|
|
115
|
+
}
|
|
136
116
|
});
|
|
137
117
|
if (flag === 'all') {
|
|
138
118
|
return {
|
|
@@ -146,19 +126,10 @@ let EntityJSONService = class EntityJSONService {
|
|
|
146
126
|
}
|
|
147
127
|
return result;
|
|
148
128
|
}
|
|
149
|
-
|
|
150
|
-
dropdown.push(...mainAttributes.map((a) => ({ label: a.name, value: a.flat_json_key })));
|
|
151
|
-
dropdown.push(...relatedAttributes.map((a) => ({
|
|
129
|
+
return linkedAttributes.map((a) => ({
|
|
152
130
|
label: a.name,
|
|
153
|
-
value: a.
|
|
154
|
-
}))
|
|
155
|
-
if (linkedAttributes.length > 0) {
|
|
156
|
-
dropdown.push(...linkedAttributes.map((a) => ({
|
|
157
|
-
label: a.name,
|
|
158
|
-
value: a.target_attribute_key,
|
|
159
|
-
})));
|
|
160
|
-
}
|
|
161
|
-
return dropdown;
|
|
131
|
+
value: a.target_attribute_key,
|
|
132
|
+
}));
|
|
162
133
|
}
|
|
163
134
|
async updateEntityJSON(entityType, entityId, loggedInUser) {
|
|
164
135
|
await this.loggerService.log('info', 'EntityJSONService', 'updateEntityJSON', `Building flat JSON for entity: ${entityType}#${entityId}`);
|
|
@@ -179,22 +150,17 @@ let EntityJSONService = class EntityJSONService {
|
|
|
179
150
|
linkedAttributes: attributes.linkedAttributes || [],
|
|
180
151
|
};
|
|
181
152
|
const attrMap = {};
|
|
182
|
-
const dataTypeMap = {};
|
|
183
153
|
const allAttrs = [
|
|
184
154
|
...safeAttributes.mainAttributes,
|
|
185
155
|
...safeAttributes.relatedAttributes,
|
|
186
156
|
];
|
|
187
157
|
allAttrs.forEach((attr) => {
|
|
188
158
|
if (attr.attribute_key) {
|
|
189
|
-
|
|
190
|
-
attrMap[attr.attribute_key] = flatKey;
|
|
191
|
-
if (attr.data_type) {
|
|
192
|
-
dataTypeMap[flatKey] = attr.data_type;
|
|
193
|
-
}
|
|
159
|
+
attrMap[attr.attribute_key] = attr.attribute_key;
|
|
194
160
|
}
|
|
195
161
|
});
|
|
196
|
-
const mainData = await this.entityServiceImpl.getResolvedEntityData(entityType, entityId, loggedInUser
|
|
197
|
-
this.mergeEntityDataIntoFlatJson(flatJson, mainData, attrMap
|
|
162
|
+
const mainData = await this.entityServiceImpl.getResolvedEntityData(entityType, entityId, loggedInUser);
|
|
163
|
+
this.mergeEntityDataIntoFlatJson(flatJson, mainData, attrMap);
|
|
198
164
|
const relations = await this.dataSource
|
|
199
165
|
.getRepository('frm_entity_relation_data')
|
|
200
166
|
.createQueryBuilder('erd')
|
|
@@ -207,37 +173,32 @@ let EntityJSONService = class EntityJSONService {
|
|
|
207
173
|
.andWhere('erd.relation_type = :rt', { rt: 'ONE_TO_ONE' })
|
|
208
174
|
.getRawMany();
|
|
209
175
|
for (const rel of relations) {
|
|
210
|
-
const relatedData = await this.entityServiceImpl.getResolvedEntityData(rel.target_entity_type, rel.target_entity_id, loggedInUser
|
|
211
|
-
this.mergeEntityDataIntoFlatJson(flatJson, relatedData, attrMap
|
|
176
|
+
const relatedData = await this.entityServiceImpl.getResolvedEntityData(rel.target_entity_type, rel.target_entity_id, loggedInUser);
|
|
177
|
+
this.mergeEntityDataIntoFlatJson(flatJson, relatedData, attrMap);
|
|
212
178
|
}
|
|
213
179
|
for (const linkAttr of safeAttributes.linkedAttributes) {
|
|
214
|
-
const
|
|
215
|
-
|
|
216
|
-
const targetKey = linkAttr.target_attribute_key;
|
|
217
|
-
if (!childEntityType || !sourceKey || !targetKey)
|
|
180
|
+
const { applicable_entity_type, applicable_attribute_key, target_attribute_key, saved_filter_code } = linkAttr;
|
|
181
|
+
if (!applicable_entity_type || !applicable_attribute_key || !target_attribute_key) {
|
|
218
182
|
continue;
|
|
219
|
-
|
|
220
|
-
const
|
|
183
|
+
}
|
|
184
|
+
const mappingValue = mainData?.[applicable_attribute_key] ?? null;
|
|
185
|
+
const value = await this.applyLinkedFilterUsingSavedFilter(applicable_entity_type, saved_filter_code, applicable_attribute_key, mappingValue, target_attribute_key, loggedInUser, entityId);
|
|
221
186
|
if (value !== null && value !== undefined) {
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
if (dataType === 'date' || dataType === 'datetime') {
|
|
225
|
-
processedValue = this.convertToMilliseconds(processedValue);
|
|
226
|
-
}
|
|
227
|
-
flatJson[targetKey] = processedValue;
|
|
187
|
+
flatJson[target_attribute_key] =
|
|
188
|
+
typeof value === 'string' ? value.toLowerCase() : value;
|
|
228
189
|
}
|
|
229
190
|
}
|
|
230
191
|
await this.loggerService.log('info', 'EntityJSONService', 'updateEntityJSON', `Saving flat JSON for entity: ${entityType}#${entityId}`);
|
|
231
|
-
|
|
192
|
+
const jsonData = {
|
|
232
193
|
entity_type: entityType,
|
|
233
194
|
entity_id: entityId,
|
|
234
195
|
json_data: flatJson,
|
|
235
196
|
created_by: loggedInUser.id,
|
|
236
197
|
};
|
|
237
|
-
await this.EntityJSONRepository.create(
|
|
198
|
+
await this.EntityJSONRepository.create(jsonData);
|
|
238
199
|
return flatJson;
|
|
239
200
|
}
|
|
240
|
-
mergeEntityDataIntoFlatJson(flatJson, entityData, attrMap
|
|
201
|
+
mergeEntityDataIntoFlatJson(flatJson, entityData, attrMap) {
|
|
241
202
|
const records = Array.isArray(entityData) ? entityData : [entityData];
|
|
242
203
|
for (const record of records) {
|
|
243
204
|
if (!record || typeof record !== 'object')
|
|
@@ -245,15 +206,8 @@ let EntityJSONService = class EntityJSONService {
|
|
|
245
206
|
for (const key of Object.keys(record)) {
|
|
246
207
|
const flatKey = attrMap[key] || key;
|
|
247
208
|
if (flatJson.hasOwnProperty(flatKey)) {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
if (dataType === 'date' || dataType === 'datetime') {
|
|
251
|
-
value = this.convertToMilliseconds(value);
|
|
252
|
-
}
|
|
253
|
-
else if (typeof value === 'string') {
|
|
254
|
-
value = value.toLowerCase();
|
|
255
|
-
}
|
|
256
|
-
flatJson[flatKey] = value;
|
|
209
|
+
const value = record[key];
|
|
210
|
+
flatJson[flatKey] = typeof value === 'string' ? value.toLowerCase() : value;
|
|
257
211
|
}
|
|
258
212
|
}
|
|
259
213
|
}
|
|
@@ -267,7 +221,7 @@ let EntityJSONService = class EntityJSONService {
|
|
|
267
221
|
savedFilterCode,
|
|
268
222
|
page: 1,
|
|
269
223
|
size: 1,
|
|
270
|
-
loggedInUser
|
|
224
|
+
loggedInUser,
|
|
271
225
|
};
|
|
272
226
|
if (mappingValue !== null &&
|
|
273
227
|
mappingValue !== undefined &&
|
|
@@ -291,34 +245,87 @@ let EntityJSONService = class EntityJSONService {
|
|
|
291
245
|
const rows = result?.data?.entity_list || [];
|
|
292
246
|
return rows.length ? (rows[0][childFilterAttribute] ?? null) : null;
|
|
293
247
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
248
|
+
async computeFlatJson(entityType, entityId, loggedInUser) {
|
|
249
|
+
const entityMaster = await this.entityMasterService.getEntityData(entityType, loggedInUser);
|
|
250
|
+
if (entityMaster && !entityMaster.is_flat_json) {
|
|
251
|
+
throw new common_1.BadRequestException('Flat Json is not enabled for this entity type');
|
|
297
252
|
}
|
|
298
|
-
|
|
299
|
-
|
|
253
|
+
const entityData = await this.entityDynamicService.getEntityData(entityType, entityId, loggedInUser, true);
|
|
254
|
+
if (!entityData) {
|
|
255
|
+
throw new common_1.BadRequestException('Entity data not found');
|
|
300
256
|
}
|
|
301
|
-
|
|
302
|
-
|
|
257
|
+
const entId = loggedInUser.enterprise_id;
|
|
258
|
+
const allowedElementTypes = [
|
|
259
|
+
'label',
|
|
260
|
+
'text',
|
|
261
|
+
'textarea',
|
|
262
|
+
'select',
|
|
263
|
+
'number',
|
|
264
|
+
'decimal',
|
|
265
|
+
'date',
|
|
266
|
+
'time',
|
|
267
|
+
'datetime',
|
|
268
|
+
'phone',
|
|
269
|
+
'email',
|
|
270
|
+
'checkbox',
|
|
271
|
+
'multicheckbox',
|
|
272
|
+
'radio',
|
|
273
|
+
];
|
|
274
|
+
const mainAttributes = await this.attributeMasterService.getAttributesForFlatJson(entityType, entId, allowedElementTypes);
|
|
275
|
+
const relatedRelations = await this.entityRelationService.getOneToOneRelations(entityType, entId);
|
|
276
|
+
const relatedEntityTypes = relatedRelations.map((r) => r.target_entity_type);
|
|
277
|
+
let relatedAttributes = [];
|
|
278
|
+
if (relatedEntityTypes.length > 0) {
|
|
279
|
+
for (const type of relatedEntityTypes) {
|
|
280
|
+
const attrs = await this.attributeMasterService.getAttributesForFlatJson(type, entId, allowedElementTypes);
|
|
281
|
+
relatedAttributes.push(...attrs);
|
|
282
|
+
}
|
|
303
283
|
}
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
if (
|
|
307
|
-
return
|
|
284
|
+
const flatJson = {};
|
|
285
|
+
const transformValue = (value, dataType) => {
|
|
286
|
+
if (value === null || value === undefined)
|
|
287
|
+
return null;
|
|
288
|
+
if (['date', 'time', 'timestamp'].includes(dataType)) {
|
|
289
|
+
const date = new Date(value);
|
|
290
|
+
return isNaN(date.getTime()) ? null : date.getTime();
|
|
308
291
|
}
|
|
292
|
+
return value;
|
|
293
|
+
};
|
|
294
|
+
for (const attr of mainAttributes) {
|
|
295
|
+
const key = `${entityType}__${attr.attribute_key}`;
|
|
296
|
+
const rawValue = entityData[attr.attribute_key];
|
|
297
|
+
flatJson[key] = transformValue(rawValue, attr.db_datatype);
|
|
309
298
|
}
|
|
310
|
-
|
|
299
|
+
for (const attr of relatedAttributes) {
|
|
300
|
+
const key = `${attr.mapped_entity_type}__${attr.attribute_key}`;
|
|
301
|
+
const childEntityList = entityData.mappedEntities?.[attr.mapped_entity_type];
|
|
302
|
+
if (childEntityList && childEntityList.length > 0) {
|
|
303
|
+
const rawValue = childEntityList[0][attr.attribute_key];
|
|
304
|
+
flatJson[key] = transformValue(rawValue, attr.db_datatype);
|
|
305
|
+
}
|
|
306
|
+
else {
|
|
307
|
+
flatJson[key] = null;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
return flatJson;
|
|
311
311
|
}
|
|
312
312
|
};
|
|
313
313
|
exports.EntityJSONService = EntityJSONService;
|
|
314
314
|
exports.EntityJSONService = EntityJSONService = __decorate([
|
|
315
315
|
(0, common_1.Injectable)(),
|
|
316
316
|
__param(3, (0, common_1.Inject)((0, common_1.forwardRef)(() => filter_service_1.FilterService))),
|
|
317
|
-
__param(
|
|
317
|
+
__param(5, (0, common_1.Inject)('EntityMasterService')),
|
|
318
|
+
__param(6, (0, common_1.Inject)('EntityDynamicService')),
|
|
319
|
+
__param(7, (0, common_1.Inject)('AttributeMasterService')),
|
|
320
|
+
__param(8, (0, common_1.Inject)('EntityRelationService')),
|
|
318
321
|
__metadata("design:paramtypes", [typeorm_1.DataSource,
|
|
319
322
|
loggingUtil_service_1.LoggingService,
|
|
320
323
|
entityJson_repository_1.EntityJSONRepository,
|
|
321
324
|
filter_service_1.FilterService,
|
|
322
|
-
entity_service_impl_service_1.EntityServiceImpl
|
|
325
|
+
entity_service_impl_service_1.EntityServiceImpl,
|
|
326
|
+
entity_master_service_1.EntityMasterService,
|
|
327
|
+
entity_dynamic_service_1.EntityDynamicService,
|
|
328
|
+
attribute_master_service_1.AttributeMasterService,
|
|
329
|
+
entity_relation_service_1.EntityRelationService])
|
|
323
330
|
], EntityJSONService);
|
|
324
331
|
//# sourceMappingURL=entity_json.service.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity_json.service.js","sourceRoot":"","sources":["../../../../src/module/entity_json/service/entity_json.service.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"entity_json.service.js","sourceRoot":"","sources":["../../../../src/module/entity_json/service/entity_json.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,6 +8,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
11
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
15
|
exports.ExportService = void 0;
|
|
13
16
|
const common_1 = require("@nestjs/common");
|
|
@@ -77,6 +80,8 @@ let ExportService = class ExportService {
|
|
|
77
80
|
exports.ExportService = ExportService;
|
|
78
81
|
exports.ExportService = ExportService = __decorate([
|
|
79
82
|
(0, common_1.Injectable)(),
|
|
83
|
+
__param(0, (0, common_1.Inject)('AttributeMasterService')),
|
|
84
|
+
__param(1, (0, common_1.Inject)('EntityMasterService')),
|
|
80
85
|
__metadata("design:paramtypes", [attribute_master_service_1.AttributeMasterService,
|
|
81
86
|
entity_master_service_1.EntityMasterService,
|
|
82
87
|
filter_service_1.FilterService,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"export.service.js","sourceRoot":"","sources":["../../../../src/module/export/service/export.service.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"export.service.js","sourceRoot":"","sources":["../../../../src/module/export/service/export.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,6 +11,7 @@ export declare class FilterController {
|
|
|
11
11
|
data: {
|
|
12
12
|
entity_tabs: any[];
|
|
13
13
|
entity_list: any[];
|
|
14
|
+
is_hierarchical: boolean;
|
|
14
15
|
pagination: {
|
|
15
16
|
total: number;
|
|
16
17
|
page: number;
|
|
@@ -27,18 +28,6 @@ export declare class FilterController {
|
|
|
27
28
|
entity_list: never[];
|
|
28
29
|
pagination: {};
|
|
29
30
|
};
|
|
30
|
-
} | {
|
|
31
|
-
success: boolean;
|
|
32
|
-
data: {
|
|
33
|
-
entity_tabs: any;
|
|
34
|
-
entity_list: any;
|
|
35
|
-
pagination: {
|
|
36
|
-
total: any;
|
|
37
|
-
page: any;
|
|
38
|
-
size: any;
|
|
39
|
-
totalPages: any;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
31
|
}>;
|
|
43
32
|
getFilterById(id: string): Promise<{
|
|
44
33
|
filter_attribute: string;
|
|
@@ -25,8 +25,8 @@ let FilterController = class FilterController {
|
|
|
25
25
|
async applyFilter(body, page = 1, size = 10, req, queryParams, levelType, levelId, appCode) {
|
|
26
26
|
const loggedInUser = req.user.userData;
|
|
27
27
|
const { page: _p, size: _s, ...otherQueryParams } = queryParams;
|
|
28
|
-
const { entity_type, quickFilter, savedFilterCode, attributeFilter, tabs, sortby, } = body;
|
|
29
|
-
return this.filterService.
|
|
28
|
+
const { entity_type, quickFilter, savedFilterCode, attributeFilter, tabs, sortby, defaultfilter, } = body;
|
|
29
|
+
return this.filterService.applyFilterWrapper({
|
|
30
30
|
entity_type,
|
|
31
31
|
quickFilter,
|
|
32
32
|
savedFilterCode,
|
|
@@ -40,6 +40,7 @@ let FilterController = class FilterController {
|
|
|
40
40
|
customLevelType: levelType,
|
|
41
41
|
customLevelId: levelId,
|
|
42
42
|
customAppCode: appCode,
|
|
43
|
+
defaultfilter,
|
|
43
44
|
});
|
|
44
45
|
}
|
|
45
46
|
async getFilterById(id) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filter.controller.js","sourceRoot":"","sources":["../../../../src/module/filter/controller/filter.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"filter.controller.js","sourceRoot":"","sources":["../../../../src/module/filter/controller/filter.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,14 +10,9 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SavedFilterDetail = void 0;
|
|
13
|
-
const global_constant_1 = require("../../../constant/global.constant");
|
|
14
13
|
const base_entity_entity_1 = require("../../meta/entity/base-entity.entity");
|
|
15
14
|
const typeorm_1 = require("typeorm");
|
|
16
15
|
let SavedFilterDetail = class SavedFilterDetail extends base_entity_entity_1.BaseEntity {
|
|
17
|
-
constructor() {
|
|
18
|
-
super();
|
|
19
|
-
this.entity_type = global_constant_1.ENTITYTYPE_SAVEDFILTERDETAIL;
|
|
20
|
-
}
|
|
21
16
|
};
|
|
22
17
|
exports.SavedFilterDetail = SavedFilterDetail;
|
|
23
18
|
__decorate([
|
|
@@ -61,7 +56,6 @@ __decorate([
|
|
|
61
56
|
__metadata("design:type", String)
|
|
62
57
|
], SavedFilterDetail.prototype, "datasource_list", void 0);
|
|
63
58
|
exports.SavedFilterDetail = SavedFilterDetail = __decorate([
|
|
64
|
-
(0, typeorm_1.Entity)({ name: 'frm_saved_filter_detail' })
|
|
65
|
-
__metadata("design:paramtypes", [])
|
|
59
|
+
(0, typeorm_1.Entity)({ name: 'frm_saved_filter_detail' })
|
|
66
60
|
], SavedFilterDetail);
|
|
67
61
|
//# sourceMappingURL=saved-filter-detail.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saved-filter-detail.entity.js","sourceRoot":"","sources":["../../../../src/module/filter/entity/saved-filter-detail.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"saved-filter-detail.entity.js","sourceRoot":"","sources":["../../../../src/module/filter/entity/saved-filter-detail.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AACA,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,+BAAU;CA+BhD,CAAA;AA/BY,8CAAiB;AAG5B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2DACF;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACH;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gEACG;AAG9B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qEACQ;AAGnC;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACT;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACH;4BA9Bb,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC;GAC/B,iBAAiB,CA+B7B"}
|
|
@@ -10,14 +10,9 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SavedFilterMaster = void 0;
|
|
13
|
-
const global_constant_1 = require("../../../constant/global.constant");
|
|
14
13
|
const base_entity_entity_1 = require("../../meta/entity/base-entity.entity");
|
|
15
14
|
const typeorm_1 = require("typeorm");
|
|
16
15
|
let SavedFilterMaster = class SavedFilterMaster extends base_entity_entity_1.BaseEntity {
|
|
17
|
-
constructor() {
|
|
18
|
-
super();
|
|
19
|
-
this.entity_type = global_constant_1.ENTITYTYPE_SAVEDFILTERMASTER;
|
|
20
|
-
}
|
|
21
16
|
};
|
|
22
17
|
exports.SavedFilterMaster = SavedFilterMaster;
|
|
23
18
|
__decorate([
|
|
@@ -53,7 +48,6 @@ __decorate([
|
|
|
53
48
|
__metadata("design:type", String)
|
|
54
49
|
], SavedFilterMaster.prototype, "description", void 0);
|
|
55
50
|
exports.SavedFilterMaster = SavedFilterMaster = __decorate([
|
|
56
|
-
(0, typeorm_1.Entity)({ name: 'frm_saved_filter_master' })
|
|
57
|
-
__metadata("design:paramtypes", [])
|
|
51
|
+
(0, typeorm_1.Entity)({ name: 'frm_saved_filter_master' })
|
|
58
52
|
], SavedFilterMaster);
|
|
59
53
|
//# sourceMappingURL=saved-filter-master.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saved-filter-master.entity.js","sourceRoot":"","sources":["../../../../src/module/filter/entity/saved-filter-master.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"saved-filter-master.entity.js","sourceRoot":"","sources":["../../../../src/module/filter/entity/saved-filter-master.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,+BAAU;CAyBhD,CAAA;AAzBY,8CAAiB;AAG5B;IADC,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DAC7B;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACxB;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACxC;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC3C;AAGhC;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACzC;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACvC;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC1C;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACrC;4BAxBT,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC;GAC/B,iBAAiB,CAyB7B"}
|