rez_core 3.1.165 → 3.1.167
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/.prettierrc +3 -3
- package/README.md +99 -99
- 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 +118 -118
- package/src/app.controller.ts +12 -12
- package/src/app.module.ts +49 -49
- package/src/app.service.ts +8 -8
- package/src/config/config.module.ts +18 -18
- package/src/config/database.config.ts +23 -23
- package/src/constant/global.constant.ts +67 -67
- package/src/core.module.ts +81 -81
- 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/auth/auth.module.ts +49 -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 +50 -50
- 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 +58 -58
- package/src/module/auth/strategies/local.strategy.ts +13 -13
- package/src/module/dashboard/controller/dashboard.controller.ts +36 -36
- package/src/module/dashboard/dashboard.module.ts +21 -21
- package/src/module/dashboard/entity/dashboard_page_data.entity.ts +27 -27
- package/src/module/dashboard/entity/widget_master.entity.ts +18 -18
- package/src/module/dashboard/repository/dashboard.repository.ts +42 -42
- package/src/module/dashboard/service/dashboard.service.ts +73 -73
- package/src/module/dev/dev.module.ts +12 -12
- package/src/module/dev/service/dev.service.ts +7 -7
- package/src/module/enterprise/controller/organization.controller.ts +36 -36
- package/src/module/enterprise/enterprise.module.ts +30 -30
- package/src/module/enterprise/entity/enterprise.entity.ts +37 -37
- package/src/module/enterprise/entity/organization-app-mapping.entity.ts +13 -13
- package/src/module/enterprise/entity/organization.entity.ts +92 -92
- package/src/module/enterprise/repository/enterprise.repository.ts +31 -31
- package/src/module/enterprise/repository/organization.repository.ts +26 -26
- package/src/module/enterprise/repository/school.repository.ts +281 -281
- package/src/module/enterprise/service/brand.service.ts +5 -5
- package/src/module/enterprise/service/enterprise.service.ts +16 -16
- package/src/module/enterprise/service/organization-app-mapping.service.ts +4 -4
- package/src/module/enterprise/service/organization.service.ts +145 -145
- package/src/module/filter/controller/filter.controller.ts +84 -84
- package/src/module/filter/dto/filter-request.dto.ts +38 -38
- package/src/module/filter/entity/saved-filter-detail.entity.ts +41 -41
- package/src/module/filter/entity/saved-filter-master.entity.ts +23 -23
- package/src/module/filter/filter.module.ts +31 -31
- package/src/module/filter/repository/saved-filter.repository.ts +168 -168
- package/src/module/filter/service/filter-evaluator.service.ts +86 -86
- package/src/module/filter/service/filter.service.ts +841 -841
- package/src/module/filter/service/saved-filter.service.ts +170 -170
- 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 +2572 -2572
- package/src/module/integration/service/oauth.service.ts +224 -224
- package/src/module/integration/service/wrapper.service.ts +454 -454
- package/src/module/integration/strategies/email/gmail-api.strategy.ts +280 -280
- 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 -260
- 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 +47 -47
- package/src/module/layout/entity/header-items.entity.ts +28 -28
- package/src/module/layout/entity/header-section.entity.ts +19 -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 +22 -22
- package/src/module/layout/service/header-section.service.ts +25 -25
- package/src/module/layout_preference/controller/layout_preference.controller.ts +47 -47
- package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
- package/src/module/layout_preference/layout_preference.module.ts +18 -18
- package/src/module/layout_preference/repository/layout_preference.repository.ts +30 -30
- package/src/module/layout_preference/service/layout_preference.service.ts +172 -172
- 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/listmaster/controller/list-master.controller.ts +187 -187
- package/src/module/listmaster/entity/list-master-items.entity.ts +41 -41
- package/src/module/listmaster/entity/list-master.entity.ts +32 -32
- package/src/module/listmaster/listmaster.module.ts +44 -44
- package/src/module/listmaster/repository/list-master-items.repository.ts +169 -169
- package/src/module/listmaster/repository/list-master.repository.ts +46 -46
- 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 +292 -292
- package/src/module/listmaster/service/list-master-registry.ts +15 -15
- package/src/module/listmaster/service/list-master.service.ts +424 -420
- package/src/module/mapper/controller/field-mapper.controller.ts +69 -69
- package/src/module/mapper/controller/mapper.controller.ts +14 -14
- package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
- package/src/module/mapper/entity/field-lovs.entity.ts +19 -19
- package/src/module/mapper/entity/field-mapper.entity.ts +53 -53
- package/src/module/mapper/entity/mapper.entity.ts +16 -16
- package/src/module/mapper/mapper.module.ts +34 -34
- 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 +15 -15
- package/src/module/mapper/service/field-mapper.service.ts +223 -223
- package/src/module/mapper/service/mapper.service.ts +72 -72
- package/src/module/master/controller/master.controller.ts +74 -74
- package/src/module/master/service/master.service.ts +483 -483
- package/src/module/meta/controller/app-master.controller.ts +38 -38
- package/src/module/meta/controller/attribute-master.controller.ts +66 -66
- package/src/module/meta/controller/entity-dynamic.controller.ts +125 -125
- package/src/module/meta/controller/entity-master.controller.ts +28 -28
- package/src/module/meta/controller/entity-relation.controller.ts +36 -36
- package/src/module/meta/controller/entity.controller.ts +385 -385
- package/src/module/meta/controller/media.controller.ts +82 -82
- package/src/module/meta/controller/meta.controller.ts +96 -96
- package/src/module/meta/controller/view-master.controller.ts +86 -86
- 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 +9 -9
- package/src/module/meta/entity/app-master.entity.ts +34 -34
- package/src/module/meta/entity/attribute-master.entity.ts +87 -87
- package/src/module/meta/entity/base-entity.entity.ts +75 -75
- package/src/module/meta/entity/entity-master.entity.ts +78 -78
- package/src/module/meta/entity/entity-relation-data.entity.ts +29 -29
- package/src/module/meta/entity/entity-relation.entity.ts +23 -23
- package/src/module/meta/entity/entity-table-column.entity.ts +61 -61
- package/src/module/meta/entity/entity-table.entity.ts +50 -50
- package/src/module/meta/entity/media-data.entity.ts +32 -32
- package/src/module/meta/entity/preference.entity.ts +62 -62
- package/src/module/meta/entity/view-master.entity.ts +41 -41
- package/src/module/meta/entity.module.ts +156 -156
- package/src/module/meta/repository/app-master.repository.ts +20 -20
- package/src/module/meta/repository/attribute-master.repository.ts +110 -110
- package/src/module/meta/repository/entity-master.repository.ts +69 -69
- 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/app-master.service.ts +37 -37
- package/src/module/meta/service/attribute-master.service.ts +117 -117
- package/src/module/meta/service/common.service.ts +9 -9
- package/src/module/meta/service/entity-dynamic.service.ts +762 -762
- package/src/module/meta/service/entity-list.service.ts +205 -205
- package/src/module/meta/service/entity-master.service.ts +164 -164
- package/src/module/meta/service/entity-realation-data.service.ts +9 -9
- package/src/module/meta/service/entity-relation.service.ts +69 -69
- package/src/module/meta/service/entity-service-impl.service.ts +524 -524
- package/src/module/meta/service/entity-table-column.service.ts +39 -39
- package/src/module/meta/service/entity-table.service.ts +150 -150
- package/src/module/meta/service/entity-validation.service.ts +185 -185
- package/src/module/meta/service/entity.service.ts +67 -67
- package/src/module/meta/service/field-group.service.ts +103 -103
- package/src/module/meta/service/media-data.service.ts +149 -149
- package/src/module/meta/service/populate-meta.service.ts +173 -173
- package/src/module/meta/service/preference.service.ts +16 -16
- package/src/module/meta/service/resolver.service.ts +214 -274
- 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 +111 -111
- package/src/module/module/controller/menu.controller.ts +15 -15
- package/src/module/module/controller/module-access.controller.ts +132 -132
- package/src/module/module/entity/menu.entity.ts +43 -43
- package/src/module/module/entity/module-access.entity.ts +25 -25
- package/src/module/module/entity/module-action.entity.ts +17 -17
- package/src/module/module/entity/module.entity.ts +52 -52
- package/src/module/module/module.module.ts +42 -42
- package/src/module/module/repository/menu.repository.ts +184 -184
- package/src/module/module/repository/module-access.repository.ts +331 -331
- package/src/module/module/service/menu.service.ts +82 -82
- package/src/module/module/service/module-access.service.ts +209 -209
- 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 +23 -23
- 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 +69 -69
- package/src/module/notification/repository/otp.repository.ts +27 -27
- package/src/module/notification/service/email.service.ts +127 -127
- package/src/module/notification/service/notification.service.ts +138 -138
- package/src/module/notification/service/otp.service.ts +125 -125
- 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 -197
- package/src/module/user/controller/user.controller.ts +40 -40
- package/src/module/user/dto/create-user.dto.ts +62 -62
- package/src/module/user/dto/update-user.dto.ts +4 -4
- package/src/module/user/entity/role.entity.ts +33 -33
- package/src/module/user/entity/user-role-mapping.entity.ts +38 -38
- package/src/module/user/entity/user-session.entity.ts +61 -61
- package/src/module/user/entity/user.entity.ts +68 -68
- package/src/module/user/repository/role.repository.ts +96 -96
- package/src/module/user/repository/user-role-mapping.repository.ts +126 -126
- package/src/module/user/repository/user.repository.ts +50 -50
- package/src/module/user/repository/userSession.repository.ts +33 -33
- package/src/module/user/service/login.service.ts +280 -280
- package/src/module/user/service/role.service.ts +189 -189
- package/src/module/user/service/user-role-mapping.service.ts +98 -98
- package/src/module/user/service/user-session.service.ts +168 -168
- package/src/module/user/service/user.service.ts +353 -353
- package/src/module/user/user.module.ts +65 -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 +95 -95
- package/src/module/workflow/controller/activity-log.controller.ts +55 -55
- package/src/module/workflow/controller/comm-template.controller.ts +34 -34
- 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 +48 -48
- package/src/module/workflow/controller/stage.controller.ts +50 -50
- 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 +38 -38
- package/src/module/workflow/entity/action-data.entity.ts +55 -55
- package/src/module/workflow/entity/action-resources-mapping.entity.ts +29 -29
- package/src/module/workflow/entity/action-template-mapping.entity.ts +17 -17
- package/src/module/workflow/entity/action.entity.ts +50 -50
- package/src/module/workflow/entity/activity-log.entity.ts +43 -43
- package/src/module/workflow/entity/comm-template.entity.ts +43 -43
- package/src/module/workflow/entity/entity-modification.entity.ts +38 -38
- package/src/module/workflow/entity/form.entity.ts +25 -25
- package/src/module/workflow/entity/stage-action-mapping.entity.ts +17 -17
- package/src/module/workflow/entity/stage-group.entity.ts +23 -23
- package/src/module/workflow/entity/stage-movement-data.entity.ts +38 -38
- package/src/module/workflow/entity/stage.entity.ts +20 -20
- package/src/module/workflow/entity/task-data.entity.ts +88 -88
- package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
- package/src/module/workflow/entity/workflow-data.entity.ts +11 -11
- package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
- package/src/module/workflow/entity/workflow.entity.ts +20 -20
- package/src/module/workflow/repository/action-category.repository.ts +79 -79
- package/src/module/workflow/repository/action-data.repository.ts +219 -219
- package/src/module/workflow/repository/action.repository.ts +277 -277
- package/src/module/workflow/repository/activity-log.repository.ts +121 -121
- package/src/module/workflow/repository/comm-template.repository.ts +142 -142
- package/src/module/workflow/repository/form-master.repository.ts +59 -59
- package/src/module/workflow/repository/stage-group.repository.ts +176 -176
- package/src/module/workflow/repository/stage-movement.repository.ts +227 -227
- package/src/module/workflow/repository/stage.repository.ts +172 -172
- package/src/module/workflow/repository/task.repository.ts +113 -113
- 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 +62 -62
- package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
- package/src/module/workflow/service/action-template-mapping.service.ts +55 -55
- package/src/module/workflow/service/action.service.ts +263 -263
- package/src/module/workflow/service/activity-log.service.ts +107 -107
- package/src/module/workflow/service/comm-template.service.ts +121 -121
- package/src/module/workflow/service/entity-modification.service.ts +67 -67
- package/src/module/workflow/service/form-master.service.ts +35 -35
- package/src/module/workflow/service/populate-workflow.service.ts +303 -303
- package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
- package/src/module/workflow/service/stage-group.service.ts +300 -300
- package/src/module/workflow/service/stage.service.ts +199 -199
- package/src/module/workflow/service/task.service.ts +504 -504
- package/src/module/workflow/service/workflow-list-master.service.ts +60 -60
- package/src/module/workflow/service/workflow-meta.service.ts +581 -581
- package/src/module/workflow/service/workflow.service.ts +205 -205
- package/src/module/workflow/workflow.module.ts +172 -172
- package/src/module/workflow-automation/controller/workflow-automation.controller.ts +21 -21
- package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
- package/src/module/workflow-automation/entity/workflow-automation.entity.ts +35 -35
- 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/workflow-automation-engine.service.ts +214 -214
- package/src/module/workflow-automation/service/workflow-automation.service.ts +345 -345
- package/src/module/workflow-automation/workflow-automation.module.ts +34 -34
- package/src/resources/dev.properties.yaml +30 -30
- 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 +15 -15
- 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 +34 -34
- 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 +25 -25
- package/tsconfig.build.json +4 -4
- package/tsconfig.json +24 -24
- package/.claude/settings.local.json +0 -26
- package/.idea/250218_nodejs_core.iml +0 -9
- package/.idea/codeStyles/Project.xml +0 -59
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/copilot.data.migration.agent.xml +0 -6
- package/.idea/copilot.data.migration.ask.xml +0 -6
- package/.idea/copilot.data.migration.ask2agent.xml +0 -6
- package/.idea/copilot.data.migration.edit.xml +0 -6
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/prettier.xml +0 -6
- package/.idea/vcs.xml +0 -6
- package/dist/app.controller.d.ts +0 -6
- package/dist/app.controller.js +0 -34
- package/dist/app.controller.js.map +0 -1
- package/dist/app.module.d.ts +0 -2
- package/dist/app.module.js +0 -62
- package/dist/app.module.js.map +0 -1
- package/dist/app.service.d.ts +0 -3
- package/dist/app.service.js +0 -20
- package/dist/app.service.js.map +0 -1
- package/dist/config/config.module.d.ts +0 -2
- package/dist/config/config.module.js +0 -29
- package/dist/config/config.module.js.map +0 -1
- package/dist/config/database.config.d.ts +0 -7
- package/dist/config/database.config.js +0 -39
- package/dist/config/database.config.js.map +0 -1
- package/dist/constant/global.constant.d.ts +0 -50
- package/dist/constant/global.constant.js +0 -54
- package/dist/constant/global.constant.js.map +0 -1
- package/dist/core.module.d.ts +0 -4
- package/dist/core.module.js +0 -79
- package/dist/core.module.js.map +0 -1
- package/dist/decorators/roles.decorator.d.ts +0 -1
- package/dist/decorators/roles.decorator.js +0 -7
- package/dist/decorators/roles.decorator.js.map +0 -1
- package/dist/dtos/response.d.ts +0 -5
- package/dist/dtos/response.dto.d.ts +0 -5
- package/dist/dtos/response.dto.js +0 -3
- package/dist/dtos/response.dto.js.map +0 -1
- package/dist/dtos/response.js +0 -3
- package/dist/dtos/response.js.map +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -18
- package/dist/index.js.map +0 -1
- package/dist/main.d.ts +0 -1
- package/dist/main.js +0 -25
- package/dist/main.js.map +0 -1
- package/dist/module/auth/auth.module.d.ts +0 -2
- package/dist/module/auth/auth.module.js +0 -57
- package/dist/module/auth/auth.module.js.map +0 -1
- package/dist/module/auth/controller/auth.controller.d.ts +0 -8
- package/dist/module/auth/controller/auth.controller.js +0 -51
- package/dist/module/auth/controller/auth.controller.js.map +0 -1
- package/dist/module/auth/guards/google-auth.guard.d.ts +0 -6
- package/dist/module/auth/guards/google-auth.guard.js +0 -21
- package/dist/module/auth/guards/google-auth.guard.js.map +0 -1
- package/dist/module/auth/guards/jwt.guard.d.ts +0 -10
- package/dist/module/auth/guards/jwt.guard.js +0 -36
- package/dist/module/auth/guards/jwt.guard.js.map +0 -1
- package/dist/module/auth/guards/role.guard.d.ts +0 -9
- package/dist/module/auth/guards/role.guard.js +0 -59
- package/dist/module/auth/guards/role.guard.js.map +0 -1
- package/dist/module/auth/services/auth.service.d.ts +0 -14
- package/dist/module/auth/services/auth.service.js +0 -39
- package/dist/module/auth/services/auth.service.js.map +0 -1
- package/dist/module/auth/services/jwt.service.d.ts +0 -6
- package/dist/module/auth/services/jwt.service.js +0 -28
- package/dist/module/auth/services/jwt.service.js.map +0 -1
- package/dist/module/auth/strategies/google.strategy.d.ts +0 -10
- package/dist/module/auth/strategies/google.strategy.js +0 -59
- package/dist/module/auth/strategies/google.strategy.js.map +0 -1
- package/dist/module/auth/strategies/jwt.strategy.d.ts +0 -19
- package/dist/module/auth/strategies/jwt.strategy.js +0 -46
- package/dist/module/auth/strategies/jwt.strategy.js.map +0 -1
- package/dist/module/auth/strategies/local.strategy.d.ts +0 -7
- package/dist/module/auth/strategies/local.strategy.js +0 -30
- package/dist/module/auth/strategies/local.strategy.js.map +0 -1
- package/dist/module/dashboard/controller/dashboard.controller.d.ts +0 -33
- package/dist/module/dashboard/controller/dashboard.controller.js +0 -55
- package/dist/module/dashboard/controller/dashboard.controller.js.map +0 -1
- package/dist/module/dashboard/dashboard.module.d.ts +0 -2
- package/dist/module/dashboard/dashboard.module.js +0 -34
- package/dist/module/dashboard/dashboard.module.js.map +0 -1
- package/dist/module/dashboard/entity/dashboard_page_data.entity.d.ts +0 -10
- package/dist/module/dashboard/entity/dashboard_page_data.entity.js +0 -50
- package/dist/module/dashboard/entity/dashboard_page_data.entity.js.map +0 -1
- package/dist/module/dashboard/entity/widget_master.entity.d.ts +0 -7
- package/dist/module/dashboard/entity/widget_master.entity.js +0 -38
- package/dist/module/dashboard/entity/widget_master.entity.js.map +0 -1
- package/dist/module/dashboard/repository/dashboard.repository.d.ts +0 -10
- package/dist/module/dashboard/repository/dashboard.repository.js +0 -50
- package/dist/module/dashboard/repository/dashboard.repository.js.map +0 -1
- package/dist/module/dashboard/service/dashboard.service.d.ts +0 -35
- package/dist/module/dashboard/service/dashboard.service.js +0 -62
- package/dist/module/dashboard/service/dashboard.service.js.map +0 -1
- package/dist/module/dev/dev.module.d.ts +0 -2
- package/dist/module/dev/dev.module.js +0 -25
- package/dist/module/dev/dev.module.js.map +0 -1
- package/dist/module/dev/service/dev.service.d.ts +0 -5
- package/dist/module/dev/service/dev.service.js +0 -25
- package/dist/module/dev/service/dev.service.js.map +0 -1
- package/dist/module/enterprise/controller/organization.controller.d.ts +0 -14
- package/dist/module/enterprise/controller/organization.controller.js +0 -59
- package/dist/module/enterprise/controller/organization.controller.js.map +0 -1
- package/dist/module/enterprise/enterprise.module.d.ts +0 -2
- package/dist/module/enterprise/enterprise.module.js +0 -43
- package/dist/module/enterprise/enterprise.module.js.map +0 -1
- package/dist/module/enterprise/entity/enterprise.entity.d.ts +0 -13
- package/dist/module/enterprise/entity/enterprise.entity.js +0 -64
- package/dist/module/enterprise/entity/enterprise.entity.js.map +0 -1
- package/dist/module/enterprise/entity/organization-app-mapping.entity.d.ts +0 -5
- package/dist/module/enterprise/entity/organization-app-mapping.entity.js +0 -32
- package/dist/module/enterprise/entity/organization-app-mapping.entity.js.map +0 -1
- package/dist/module/enterprise/entity/organization.entity.d.ts +0 -30
- package/dist/module/enterprise/entity/organization.entity.js +0 -136
- package/dist/module/enterprise/entity/organization.entity.js.map +0 -1
- package/dist/module/enterprise/repository/enterprise.repository.d.ts +0 -8
- package/dist/module/enterprise/repository/enterprise.repository.js +0 -48
- package/dist/module/enterprise/repository/enterprise.repository.js.map +0 -1
- package/dist/module/enterprise/repository/organization.repository.d.ts +0 -8
- package/dist/module/enterprise/repository/organization.repository.js +0 -41
- package/dist/module/enterprise/repository/organization.repository.js.map +0 -1
- package/dist/module/enterprise/repository/school.repository.d.ts +0 -8
- package/dist/module/enterprise/repository/school.repository.js +0 -244
- package/dist/module/enterprise/repository/school.repository.js.map +0 -1
- package/dist/module/enterprise/service/brand.service.d.ts +0 -3
- package/dist/module/enterprise/service/brand.service.js +0 -18
- package/dist/module/enterprise/service/brand.service.js.map +0 -1
- package/dist/module/enterprise/service/enterprise.service.d.ts +0 -8
- package/dist/module/enterprise/service/enterprise.service.js +0 -31
- package/dist/module/enterprise/service/enterprise.service.js.map +0 -1
- package/dist/module/enterprise/service/organization-app-mapping.service.d.ts +0 -2
- package/dist/module/enterprise/service/organization-app-mapping.service.js +0 -17
- package/dist/module/enterprise/service/organization-app-mapping.service.js.map +0 -1
- package/dist/module/enterprise/service/organization.service.d.ts +0 -19
- package/dist/module/enterprise/service/organization.service.js +0 -121
- package/dist/module/enterprise/service/organization.service.js.map +0 -1
- package/dist/module/filter/controller/filter.controller.d.ts +0 -39
- package/dist/module/filter/controller/filter.controller.js +0 -91
- package/dist/module/filter/controller/filter.controller.js.map +0 -1
- package/dist/module/filter/dto/filter-request.dto.d.ts +0 -35
- package/dist/module/filter/dto/filter-request.dto.js +0 -3
- package/dist/module/filter/dto/filter-request.dto.js.map +0 -1
- package/dist/module/filter/entity/saved-filter-detail.entity.d.ts +0 -14
- package/dist/module/filter/entity/saved-filter-detail.entity.js +0 -67
- package/dist/module/filter/entity/saved-filter-detail.entity.js.map +0 -1
- package/dist/module/filter/entity/saved-filter-master.entity.d.ts +0 -8
- package/dist/module/filter/entity/saved-filter-master.entity.js +0 -43
- package/dist/module/filter/entity/saved-filter-master.entity.js.map +0 -1
- package/dist/module/filter/filter.module.d.ts +0 -2
- package/dist/module/filter/filter.module.js +0 -44
- package/dist/module/filter/filter.module.js.map +0 -1
- package/dist/module/filter/repository/saved-filter.repository.d.ts +0 -40
- package/dist/module/filter/repository/saved-filter.repository.js +0 -144
- package/dist/module/filter/repository/saved-filter.repository.js.map +0 -1
- package/dist/module/filter/service/filter-evaluator.service.d.ts +0 -9
- package/dist/module/filter/service/filter-evaluator.service.js +0 -62
- package/dist/module/filter/service/filter-evaluator.service.js.map +0 -1
- package/dist/module/filter/service/filter.service.d.ts +0 -68
- package/dist/module/filter/service/filter.service.js +0 -612
- package/dist/module/filter/service/filter.service.js.map +0 -1
- package/dist/module/filter/service/saved-filter.service.d.ts +0 -30
- package/dist/module/filter/service/saved-filter.service.js +0 -125
- package/dist/module/filter/service/saved-filter.service.js.map +0 -1
- package/dist/module/ics/controller/ics.controller.d.ts +0 -8
- package/dist/module/ics/controller/ics.controller.js +0 -45
- package/dist/module/ics/controller/ics.controller.js.map +0 -1
- package/dist/module/ics/dto/ics.dto.d.ts +0 -17
- package/dist/module/ics/dto/ics.dto.js +0 -73
- package/dist/module/ics/dto/ics.dto.js.map +0 -1
- package/dist/module/ics/ics.module.d.ts +0 -2
- package/dist/module/ics/ics.module.js +0 -26
- package/dist/module/ics/ics.module.js.map +0 -1
- package/dist/module/ics/service/ics.service.d.ts +0 -4
- package/dist/module/ics/service/ics.service.js +0 -61
- package/dist/module/ics/service/ics.service.js.map +0 -1
- package/dist/module/integration/controller/calender-event.controller.d.ts +0 -7
- package/dist/module/integration/controller/calender-event.controller.js +0 -51
- package/dist/module/integration/controller/calender-event.controller.js.map +0 -1
- package/dist/module/integration/controller/integration.controller.d.ts +0 -165
- package/dist/module/integration/controller/integration.controller.js +0 -697
- package/dist/module/integration/controller/integration.controller.js.map +0 -1
- package/dist/module/integration/controller/wrapper.controller.d.ts +0 -23
- package/dist/module/integration/controller/wrapper.controller.js +0 -54
- package/dist/module/integration/controller/wrapper.controller.js.map +0 -1
- package/dist/module/integration/dto/create-config.dto.d.ts +0 -217
- package/dist/module/integration/dto/create-config.dto.js +0 -495
- package/dist/module/integration/dto/create-config.dto.js.map +0 -1
- package/dist/module/integration/entity/integration-config.entity.d.ts +0 -54
- package/dist/module/integration/entity/integration-config.entity.js +0 -78
- package/dist/module/integration/entity/integration-config.entity.js.map +0 -1
- package/dist/module/integration/entity/integration-entity-mapper.entity.d.ts +0 -6
- package/dist/module/integration/entity/integration-entity-mapper.entity.js +0 -33
- package/dist/module/integration/entity/integration-entity-mapper.entity.js.map +0 -1
- package/dist/module/integration/entity/integration-source.entity.d.ts +0 -7
- package/dist/module/integration/entity/integration-source.entity.js +0 -37
- package/dist/module/integration/entity/integration-source.entity.js.map +0 -1
- package/dist/module/integration/entity/user-integration.entity.d.ts +0 -23
- package/dist/module/integration/entity/user-integration.entity.js +0 -70
- package/dist/module/integration/entity/user-integration.entity.js.map +0 -1
- package/dist/module/integration/examples/usage.example.d.ts +0 -16
- package/dist/module/integration/examples/usage.example.js +0 -217
- package/dist/module/integration/examples/usage.example.js.map +0 -1
- package/dist/module/integration/factories/base.factory.d.ts +0 -9
- package/dist/module/integration/factories/base.factory.js +0 -3
- package/dist/module/integration/factories/base.factory.js.map +0 -1
- package/dist/module/integration/factories/email.factory.d.ts +0 -17
- package/dist/module/integration/factories/email.factory.js +0 -55
- package/dist/module/integration/factories/email.factory.js.map +0 -1
- package/dist/module/integration/factories/integration.factory.d.ts +0 -33
- package/dist/module/integration/factories/integration.factory.js +0 -104
- package/dist/module/integration/factories/integration.factory.js.map +0 -1
- package/dist/module/integration/factories/sms.factory.d.ts +0 -17
- package/dist/module/integration/factories/sms.factory.js +0 -58
- package/dist/module/integration/factories/sms.factory.js.map +0 -1
- package/dist/module/integration/factories/telephone.factory.d.ts +0 -15
- package/dist/module/integration/factories/telephone.factory.js +0 -49
- package/dist/module/integration/factories/telephone.factory.js.map +0 -1
- package/dist/module/integration/factories/whatsapp.factory.d.ts +0 -19
- package/dist/module/integration/factories/whatsapp.factory.js +0 -63
- package/dist/module/integration/factories/whatsapp.factory.js.map +0 -1
- package/dist/module/integration/integration.module.d.ts +0 -2
- package/dist/module/integration/integration.module.js +0 -96
- package/dist/module/integration/integration.module.js.map +0 -1
- package/dist/module/integration/service/calendar-event.service.d.ts +0 -8
- package/dist/module/integration/service/calendar-event.service.js +0 -101
- package/dist/module/integration/service/calendar-event.service.js.map +0 -1
- package/dist/module/integration/service/integration-entity-mapper.service.d.ts +0 -7
- package/dist/module/integration/service/integration-entity-mapper.service.js +0 -36
- package/dist/module/integration/service/integration-entity-mapper.service.js.map +0 -1
- package/dist/module/integration/service/integration-queue.service.d.ts +0 -40
- package/dist/module/integration/service/integration-queue.service.js +0 -147
- package/dist/module/integration/service/integration-queue.service.js.map +0 -1
- package/dist/module/integration/service/integration.service.d.ts +0 -198
- package/dist/module/integration/service/integration.service.js +0 -1558
- package/dist/module/integration/service/integration.service.js.map +0 -1
- package/dist/module/integration/service/oauth.service.d.ts +0 -18
- package/dist/module/integration/service/oauth.service.js +0 -190
- package/dist/module/integration/service/oauth.service.js.map +0 -1
- package/dist/module/integration/service/wrapper.service.d.ts +0 -36
- package/dist/module/integration/service/wrapper.service.js +0 -299
- package/dist/module/integration/service/wrapper.service.js.map +0 -1
- package/dist/module/integration/strategies/email/gmail-api.strategy.d.ts +0 -13
- package/dist/module/integration/strategies/email/gmail-api.strategy.js +0 -195
- package/dist/module/integration/strategies/email/gmail-api.strategy.js.map +0 -1
- package/dist/module/integration/strategies/email/outlook-api.strategy.d.ts +0 -5
- package/dist/module/integration/strategies/email/outlook-api.strategy.js +0 -44
- package/dist/module/integration/strategies/email/outlook-api.strategy.js.map +0 -1
- package/dist/module/integration/strategies/email/outlook.strategy.d.ts +0 -5
- package/dist/module/integration/strategies/email/outlook.strategy.js +0 -64
- package/dist/module/integration/strategies/email/outlook.strategy.js.map +0 -1
- package/dist/module/integration/strategies/email/sendgrid-api.strategy.d.ts +0 -22
- package/dist/module/integration/strategies/email/sendgrid-api.strategy.js +0 -203
- package/dist/module/integration/strategies/email/sendgrid-api.strategy.js.map +0 -1
- package/dist/module/integration/strategies/integration.strategy.d.ts +0 -31
- package/dist/module/integration/strategies/integration.strategy.js +0 -40
- package/dist/module/integration/strategies/integration.strategy.js.map +0 -1
- package/dist/module/integration/strategies/sms/gupshup-sms.strategy.d.ts +0 -9
- package/dist/module/integration/strategies/sms/gupshup-sms.strategy.js +0 -104
- package/dist/module/integration/strategies/sms/gupshup-sms.strategy.js.map +0 -1
- package/dist/module/integration/strategies/sms/msg91-sms.strategy.d.ts +0 -9
- package/dist/module/integration/strategies/sms/msg91-sms.strategy.js +0 -113
- package/dist/module/integration/strategies/sms/msg91-sms.strategy.js.map +0 -1
- package/dist/module/integration/strategies/sms/tubelight-sms.strategy.d.ts +0 -9
- package/dist/module/integration/strategies/sms/tubelight-sms.strategy.js +0 -109
- package/dist/module/integration/strategies/sms/tubelight-sms.strategy.js.map +0 -1
- package/dist/module/integration/strategies/telephone/ozonetel-voice.strategy.d.ts +0 -22
- package/dist/module/integration/strategies/telephone/ozonetel-voice.strategy.js +0 -170
- package/dist/module/integration/strategies/telephone/ozonetel-voice.strategy.js.map +0 -1
- package/dist/module/integration/strategies/telephone/tubelight-voice.strategy.d.ts +0 -24
- package/dist/module/integration/strategies/telephone/tubelight-voice.strategy.js +0 -152
- package/dist/module/integration/strategies/telephone/tubelight-voice.strategy.js.map +0 -1
- package/dist/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.d.ts +0 -19
- package/dist/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.js +0 -257
- package/dist/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.js.map +0 -1
- package/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.d.ts +0 -33
- package/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.js +0 -256
- package/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.js.map +0 -1
- package/dist/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.d.ts +0 -20
- package/dist/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.js +0 -264
- package/dist/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.js.map +0 -1
- package/dist/module/integration/strategies/whatsapp/whatsapp.strategy.d.ts +0 -5
- package/dist/module/integration/strategies/whatsapp/whatsapp.strategy.js +0 -57
- package/dist/module/integration/strategies/whatsapp/whatsapp.strategy.js.map +0 -1
- package/dist/module/layout/controller/layout.controller.d.ts +0 -11
- package/dist/module/layout/controller/layout.controller.js +0 -59
- package/dist/module/layout/controller/layout.controller.js.map +0 -1
- package/dist/module/layout/dto/header.dto.d.ts +0 -0
- package/dist/module/layout/dto/header.dto.js +0 -1
- package/dist/module/layout/dto/header.dto.js.map +0 -1
- package/dist/module/layout/entity/header-items.entity.d.ts +0 -10
- package/dist/module/layout/entity/header-items.entity.js +0 -52
- package/dist/module/layout/entity/header-items.entity.js.map +0 -1
- package/dist/module/layout/entity/header-section.entity.d.ts +0 -7
- package/dist/module/layout/entity/header-section.entity.js +0 -40
- package/dist/module/layout/entity/header-section.entity.js.map +0 -1
- package/dist/module/layout/layout.module.d.ts +0 -2
- package/dist/module/layout/layout.module.js +0 -34
- package/dist/module/layout/layout.module.js.map +0 -1
- package/dist/module/layout/repository/header-items.repository.d.ts +0 -7
- package/dist/module/layout/repository/header-items.repository.js +0 -36
- package/dist/module/layout/repository/header-items.repository.js.map +0 -1
- package/dist/module/layout/repository/header-section.repository.d.ts +0 -8
- package/dist/module/layout/repository/header-section.repository.js +0 -39
- package/dist/module/layout/repository/header-section.repository.js.map +0 -1
- package/dist/module/layout/service/header-section.service.d.ts +0 -8
- package/dist/module/layout/service/header-section.service.js +0 -37
- package/dist/module/layout/service/header-section.service.js.map +0 -1
- package/dist/module/layout_preference/controller/layout_preference.controller.d.ts +0 -13
- package/dist/module/layout_preference/controller/layout_preference.controller.js +0 -59
- package/dist/module/layout_preference/controller/layout_preference.controller.js.map +0 -1
- package/dist/module/layout_preference/dto/layout_preference.dto.d.ts +0 -0
- package/dist/module/layout_preference/dto/layout_preference.dto.js +0 -1
- package/dist/module/layout_preference/dto/layout_preference.dto.js.map +0 -1
- package/dist/module/layout_preference/entity/layout_preference.entity.d.ts +0 -9
- package/dist/module/layout_preference/entity/layout_preference.entity.js +0 -50
- package/dist/module/layout_preference/entity/layout_preference.entity.js.map +0 -1
- package/dist/module/layout_preference/layout_preference.module.d.ts +0 -2
- package/dist/module/layout_preference/layout_preference.module.js +0 -31
- package/dist/module/layout_preference/layout_preference.module.js.map +0 -1
- package/dist/module/layout_preference/repository/layout_preference.repository.d.ts +0 -7
- package/dist/module/layout_preference/repository/layout_preference.repository.js +0 -42
- package/dist/module/layout_preference/repository/layout_preference.repository.js.map +0 -1
- package/dist/module/layout_preference/service/layout_preference.service.d.ts +0 -16
- package/dist/module/layout_preference/service/layout_preference.service.js +0 -117
- package/dist/module/layout_preference/service/layout_preference.service.js.map +0 -1
- package/dist/module/lead/controller/lead.controller.d.ts +0 -20
- package/dist/module/lead/controller/lead.controller.js +0 -58
- package/dist/module/lead/controller/lead.controller.js.map +0 -1
- package/dist/module/lead/lead.module.d.ts +0 -2
- package/dist/module/lead/lead.module.js +0 -26
- package/dist/module/lead/lead.module.js.map +0 -1
- package/dist/module/lead/repository/lead.repository.d.ts +0 -10
- package/dist/module/lead/repository/lead.repository.js +0 -53
- package/dist/module/lead/repository/lead.repository.js.map +0 -1
- package/dist/module/lead/service/lead.service.d.ts +0 -20
- package/dist/module/lead/service/lead.service.js +0 -55
- package/dist/module/lead/service/lead.service.js.map +0 -1
- package/dist/module/listmaster/controller/list-master.controller.d.ts +0 -22
- package/dist/module/listmaster/controller/list-master.controller.js +0 -156
- package/dist/module/listmaster/controller/list-master.controller.js.map +0 -1
- package/dist/module/listmaster/entity/list-master-items.entity.d.ts +0 -14
- package/dist/module/listmaster/entity/list-master-items.entity.js +0 -67
- package/dist/module/listmaster/entity/list-master-items.entity.js.map +0 -1
- package/dist/module/listmaster/entity/list-master.entity.d.ts +0 -11
- package/dist/module/listmaster/entity/list-master.entity.js +0 -55
- package/dist/module/listmaster/entity/list-master.entity.js.map +0 -1
- package/dist/module/listmaster/listmaster.module.d.ts +0 -2
- package/dist/module/listmaster/listmaster.module.js +0 -53
- package/dist/module/listmaster/listmaster.module.js.map +0 -1
- package/dist/module/listmaster/repository/list-master-items.repository.d.ts +0 -21
- package/dist/module/listmaster/repository/list-master-items.repository.js +0 -142
- package/dist/module/listmaster/repository/list-master-items.repository.js.map +0 -1
- package/dist/module/listmaster/repository/list-master.repository.d.ts +0 -9
- package/dist/module/listmaster/repository/list-master.repository.js +0 -53
- package/dist/module/listmaster/repository/list-master.repository.js.map +0 -1
- package/dist/module/listmaster/service/list-master-engine.d.ts +0 -6
- package/dist/module/listmaster/service/list-master-engine.js +0 -35
- package/dist/module/listmaster/service/list-master-engine.js.map +0 -1
- package/dist/module/listmaster/service/list-master-extension.interface.d.ts +0 -4
- package/dist/module/listmaster/service/list-master-extension.interface.js +0 -3
- package/dist/module/listmaster/service/list-master-extension.interface.js.map +0 -1
- package/dist/module/listmaster/service/list-master-item.service.d.ts +0 -19
- package/dist/module/listmaster/service/list-master-item.service.js +0 -151
- package/dist/module/listmaster/service/list-master-item.service.js.map +0 -1
- package/dist/module/listmaster/service/list-master-registry.d.ts +0 -6
- package/dist/module/listmaster/service/list-master-registry.js +0 -26
- package/dist/module/listmaster/service/list-master-registry.js.map +0 -1
- package/dist/module/listmaster/service/list-master.service.d.ts +0 -36
- package/dist/module/listmaster/service/list-master.service.js +0 -268
- package/dist/module/listmaster/service/list-master.service.js.map +0 -1
- package/dist/module/mapper/controller/field-mapper.controller.d.ts +0 -11
- package/dist/module/mapper/controller/field-mapper.controller.js +0 -94
- package/dist/module/mapper/controller/field-mapper.controller.js.map +0 -1
- package/dist/module/mapper/controller/mapper.controller.d.ts +0 -6
- package/dist/module/mapper/controller/mapper.controller.js +0 -40
- package/dist/module/mapper/controller/mapper.controller.js.map +0 -1
- package/dist/module/mapper/dto/field-mapper.dto.d.ts +0 -12
- package/dist/module/mapper/dto/field-mapper.dto.js +0 -8
- package/dist/module/mapper/dto/field-mapper.dto.js.map +0 -1
- package/dist/module/mapper/entity/field-lovs.entity.d.ts +0 -7
- package/dist/module/mapper/entity/field-lovs.entity.js +0 -38
- package/dist/module/mapper/entity/field-lovs.entity.js.map +0 -1
- package/dist/module/mapper/entity/field-mapper.entity.d.ts +0 -13
- package/dist/module/mapper/entity/field-mapper.entity.js +0 -78
- package/dist/module/mapper/entity/field-mapper.entity.js.map +0 -1
- package/dist/module/mapper/entity/mapper.entity.d.ts +0 -6
- package/dist/module/mapper/entity/mapper.entity.js +0 -34
- package/dist/module/mapper/entity/mapper.entity.js.map +0 -1
- package/dist/module/mapper/mapper.module.d.ts +0 -2
- package/dist/module/mapper/mapper.module.js +0 -47
- package/dist/module/mapper/mapper.module.js.map +0 -1
- package/dist/module/mapper/repository/field-lovs.repository.d.ts +0 -11
- package/dist/module/mapper/repository/field-lovs.repository.js +0 -52
- package/dist/module/mapper/repository/field-lovs.repository.js.map +0 -1
- package/dist/module/mapper/repository/field-mapper.repository.d.ts +0 -11
- package/dist/module/mapper/repository/field-mapper.repository.js +0 -54
- package/dist/module/mapper/repository/field-mapper.repository.js.map +0 -1
- package/dist/module/mapper/repository/mapper.repository.d.ts +0 -7
- package/dist/module/mapper/repository/mapper.repository.js +0 -34
- package/dist/module/mapper/repository/mapper.repository.js.map +0 -1
- package/dist/module/mapper/service/field-mapper.service.d.ts +0 -22
- package/dist/module/mapper/service/field-mapper.service.js +0 -177
- package/dist/module/mapper/service/field-mapper.service.js.map +0 -1
- package/dist/module/mapper/service/mapper.service.d.ts +0 -17
- package/dist/module/mapper/service/mapper.service.js +0 -72
- package/dist/module/mapper/service/mapper.service.js.map +0 -1
- package/dist/module/master/controller/master.controller.d.ts +0 -20
- package/dist/module/master/controller/master.controller.js +0 -82
- package/dist/module/master/controller/master.controller.js.map +0 -1
- package/dist/module/master/service/master.service.d.ts +0 -31
- package/dist/module/master/service/master.service.js +0 -364
- package/dist/module/master/service/master.service.js.map +0 -1
- package/dist/module/meta/controller/app-master.controller.d.ts +0 -9
- package/dist/module/meta/controller/app-master.controller.js +0 -51
- package/dist/module/meta/controller/app-master.controller.js.map +0 -1
- package/dist/module/meta/controller/attribute-master.controller.d.ts +0 -21
- package/dist/module/meta/controller/attribute-master.controller.js +0 -78
- package/dist/module/meta/controller/attribute-master.controller.js.map +0 -1
- package/dist/module/meta/controller/entity-dynamic.controller.d.ts +0 -21
- package/dist/module/meta/controller/entity-dynamic.controller.js +0 -115
- package/dist/module/meta/controller/entity-dynamic.controller.js.map +0 -1
- package/dist/module/meta/controller/entity-master.controller.d.ts +0 -8
- package/dist/module/meta/controller/entity-master.controller.js +0 -44
- package/dist/module/meta/controller/entity-master.controller.js.map +0 -1
- package/dist/module/meta/controller/entity-relation.controller.d.ts +0 -6
- package/dist/module/meta/controller/entity-relation.controller.js +0 -45
- package/dist/module/meta/controller/entity-relation.controller.js.map +0 -1
- package/dist/module/meta/controller/entity.controller.d.ts +0 -38
- package/dist/module/meta/controller/entity.controller.js +0 -245
- package/dist/module/meta/controller/entity.controller.js.map +0 -1
- package/dist/module/meta/controller/media.controller.d.ts +0 -17
- package/dist/module/meta/controller/media.controller.js +0 -80
- package/dist/module/meta/controller/media.controller.js.map +0 -1
- package/dist/module/meta/controller/meta.controller.d.ts +0 -32
- package/dist/module/meta/controller/meta.controller.js +0 -112
- package/dist/module/meta/controller/meta.controller.js.map +0 -1
- package/dist/module/meta/controller/view-master.controller.d.ts +0 -12
- package/dist/module/meta/controller/view-master.controller.js +0 -88
- package/dist/module/meta/controller/view-master.controller.js.map +0 -1
- package/dist/module/meta/dto/entity-list-data.dto.d.ts +0 -5
- package/dist/module/meta/dto/entity-list-data.dto.js +0 -7
- package/dist/module/meta/dto/entity-list-data.dto.js.map +0 -1
- package/dist/module/meta/dto/entity-tab.dto.d.ts +0 -4
- package/dist/module/meta/dto/entity-tab.dto.js +0 -7
- package/dist/module/meta/dto/entity-tab.dto.js.map +0 -1
- package/dist/module/meta/dto/entity-table.dto.d.ts +0 -11
- package/dist/module/meta/dto/entity-table.dto.js +0 -8
- package/dist/module/meta/dto/entity-table.dto.js.map +0 -1
- package/dist/module/meta/entity/app-master.entity.d.ts +0 -12
- package/dist/module/meta/entity/app-master.entity.js +0 -58
- package/dist/module/meta/entity/app-master.entity.js.map +0 -1
- package/dist/module/meta/entity/attribute-master.entity.d.ts +0 -22
- package/dist/module/meta/entity/attribute-master.entity.js +0 -122
- package/dist/module/meta/entity/attribute-master.entity.js.map +0 -1
- package/dist/module/meta/entity/base-entity.entity.d.ts +0 -19
- package/dist/module/meta/entity/base-entity.entity.js +0 -104
- package/dist/module/meta/entity/base-entity.entity.js.map +0 -1
- package/dist/module/meta/entity/entity-master.entity.d.ts +0 -18
- package/dist/module/meta/entity/entity-master.entity.js +0 -108
- package/dist/module/meta/entity/entity-master.entity.js.map +0 -1
- package/dist/module/meta/entity/entity-relation-data.entity.d.ts +0 -10
- package/dist/module/meta/entity/entity-relation-data.entity.js +0 -51
- package/dist/module/meta/entity/entity-relation-data.entity.js.map +0 -1
- package/dist/module/meta/entity/entity-relation.entity.d.ts +0 -8
- package/dist/module/meta/entity/entity-relation.entity.js +0 -43
- package/dist/module/meta/entity/entity-relation.entity.js.map +0 -1
- package/dist/module/meta/entity/entity-table-column.entity.d.ts +0 -19
- package/dist/module/meta/entity/entity-table-column.entity.js +0 -92
- package/dist/module/meta/entity/entity-table-column.entity.js.map +0 -1
- package/dist/module/meta/entity/entity-table.entity.d.ts +0 -17
- package/dist/module/meta/entity/entity-table.entity.js +0 -79
- package/dist/module/meta/entity/entity-table.entity.js.map +0 -1
- package/dist/module/meta/entity/media-data.entity.d.ts +0 -11
- package/dist/module/meta/entity/media-data.entity.js +0 -55
- package/dist/module/meta/entity/media-data.entity.js.map +0 -1
- package/dist/module/meta/entity/preference.entity.d.ts +0 -11
- package/dist/module/meta/entity/preference.entity.js +0 -85
- package/dist/module/meta/entity/preference.entity.js.map +0 -1
- package/dist/module/meta/entity/view-master.entity.d.ts +0 -14
- package/dist/module/meta/entity/view-master.entity.js +0 -67
- package/dist/module/meta/entity/view-master.entity.js.map +0 -1
- package/dist/module/meta/entity.module.d.ts +0 -2
- package/dist/module/meta/entity.module.js +0 -153
- package/dist/module/meta/entity.module.js.map +0 -1
- package/dist/module/meta/repository/app-master.repository.d.ts +0 -7
- package/dist/module/meta/repository/app-master.repository.js +0 -36
- package/dist/module/meta/repository/app-master.repository.js.map +0 -1
- package/dist/module/meta/repository/attribute-master.repository.d.ts +0 -20
- package/dist/module/meta/repository/attribute-master.repository.js +0 -85
- package/dist/module/meta/repository/attribute-master.repository.js.map +0 -1
- package/dist/module/meta/repository/entity-master.repository.d.ts +0 -20
- package/dist/module/meta/repository/entity-master.repository.js +0 -73
- package/dist/module/meta/repository/entity-master.repository.js.map +0 -1
- package/dist/module/meta/repository/entity-table-column.repository.d.ts +0 -7
- package/dist/module/meta/repository/entity-table-column.repository.js +0 -52
- package/dist/module/meta/repository/entity-table-column.repository.js.map +0 -1
- package/dist/module/meta/repository/entity-table.repository.d.ts +0 -9
- package/dist/module/meta/repository/entity-table.repository.js +0 -59
- package/dist/module/meta/repository/entity-table.repository.js.map +0 -1
- package/dist/module/meta/repository/media-data.repository.d.ts +0 -9
- package/dist/module/meta/repository/media-data.repository.js +0 -55
- package/dist/module/meta/repository/media-data.repository.js.map +0 -1
- package/dist/module/meta/repository/preference.repository.d.ts +0 -7
- package/dist/module/meta/repository/preference.repository.js +0 -36
- package/dist/module/meta/repository/preference.repository.js.map +0 -1
- package/dist/module/meta/repository/user-app-mapping.repository.d.ts +0 -0
- package/dist/module/meta/repository/user-app-mapping.repository.js +0 -1
- package/dist/module/meta/repository/user-app-mapping.repository.js.map +0 -1
- package/dist/module/meta/repository/view-master.repository.d.ts +0 -11
- package/dist/module/meta/repository/view-master.repository.js +0 -52
- package/dist/module/meta/repository/view-master.repository.js.map +0 -1
- package/dist/module/meta/service/app-master.service.d.ts +0 -8
- package/dist/module/meta/service/app-master.service.js +0 -45
- package/dist/module/meta/service/app-master.service.js.map +0 -1
- package/dist/module/meta/service/attribute-master.service.d.ts +0 -16
- package/dist/module/meta/service/attribute-master.service.js +0 -75
- package/dist/module/meta/service/attribute-master.service.js.map +0 -1
- package/dist/module/meta/service/common.service.d.ts +0 -4
- package/dist/module/meta/service/common.service.js +0 -25
- package/dist/module/meta/service/common.service.js.map +0 -1
- package/dist/module/meta/service/entity-dynamic.service.d.ts +0 -23
- package/dist/module/meta/service/entity-dynamic.service.js +0 -452
- package/dist/module/meta/service/entity-dynamic.service.js.map +0 -1
- package/dist/module/meta/service/entity-list.service.d.ts +0 -17
- package/dist/module/meta/service/entity-list.service.js +0 -141
- package/dist/module/meta/service/entity-list.service.js.map +0 -1
- package/dist/module/meta/service/entity-master.service.d.ts +0 -29
- package/dist/module/meta/service/entity-master.service.js +0 -112
- package/dist/module/meta/service/entity-master.service.js.map +0 -1
- package/dist/module/meta/service/entity-realation-data.service.d.ts +0 -4
- package/dist/module/meta/service/entity-realation-data.service.js +0 -25
- package/dist/module/meta/service/entity-realation-data.service.js.map +0 -1
- package/dist/module/meta/service/entity-relation.service.d.ts +0 -8
- package/dist/module/meta/service/entity-relation.service.js +0 -58
- package/dist/module/meta/service/entity-relation.service.js.map +0 -1
- package/dist/module/meta/service/entity-service-impl.service.d.ts +0 -43
- package/dist/module/meta/service/entity-service-impl.service.js +0 -278
- package/dist/module/meta/service/entity-service-impl.service.js.map +0 -1
- package/dist/module/meta/service/entity-table-column.service.d.ts +0 -7
- package/dist/module/meta/service/entity-table-column.service.js +0 -37
- package/dist/module/meta/service/entity-table-column.service.js.map +0 -1
- package/dist/module/meta/service/entity-table.service.d.ts +0 -17
- package/dist/module/meta/service/entity-table.service.js +0 -84
- package/dist/module/meta/service/entity-table.service.js.map +0 -1
- package/dist/module/meta/service/entity-validation.service.d.ts +0 -21
- package/dist/module/meta/service/entity-validation.service.js +0 -117
- package/dist/module/meta/service/entity-validation.service.js.map +0 -1
- package/dist/module/meta/service/entity.service.d.ts +0 -15
- package/dist/module/meta/service/entity.service.js +0 -3
- package/dist/module/meta/service/entity.service.js.map +0 -1
- package/dist/module/meta/service/field-group.service.d.ts +0 -26
- package/dist/module/meta/service/field-group.service.js +0 -76
- package/dist/module/meta/service/field-group.service.js.map +0 -1
- package/dist/module/meta/service/media-data.service.d.ts +0 -30
- package/dist/module/meta/service/media-data.service.js +0 -116
- package/dist/module/meta/service/media-data.service.js.map +0 -1
- package/dist/module/meta/service/populate-meta.service.d.ts +0 -11
- package/dist/module/meta/service/populate-meta.service.js +0 -124
- package/dist/module/meta/service/populate-meta.service.js.map +0 -1
- package/dist/module/meta/service/preference.service.d.ts +0 -7
- package/dist/module/meta/service/preference.service.js +0 -31
- package/dist/module/meta/service/preference.service.js.map +0 -1
- package/dist/module/meta/service/resolver.service.d.ts +0 -9
- package/dist/module/meta/service/resolver.service.js +0 -184
- package/dist/module/meta/service/resolver.service.js.map +0 -1
- package/dist/module/meta/service/section-master.service.d.ts +0 -26
- package/dist/module/meta/service/section-master.service.js +0 -77
- package/dist/module/meta/service/section-master.service.js.map +0 -1
- package/dist/module/meta/service/update-form-json.service.d.ts +0 -9
- package/dist/module/meta/service/update-form-json.service.js +0 -39
- package/dist/module/meta/service/update-form-json.service.js.map +0 -1
- package/dist/module/meta/service/user-app-mapping.service.d.ts +0 -0
- package/dist/module/meta/service/user-app-mapping.service.js +0 -1
- package/dist/module/meta/service/user-app-mapping.service.js.map +0 -1
- package/dist/module/meta/service/view-master.service.d.ts +0 -27
- package/dist/module/meta/service/view-master.service.js +0 -69
- package/dist/module/meta/service/view-master.service.js.map +0 -1
- package/dist/module/module/controller/menu.controller.d.ts +0 -8
- package/dist/module/module/controller/menu.controller.js +0 -41
- package/dist/module/module/controller/menu.controller.js.map +0 -1
- package/dist/module/module/controller/module-access.controller.d.ts +0 -35
- package/dist/module/module/controller/module-access.controller.js +0 -148
- package/dist/module/module/controller/module-access.controller.js.map +0 -1
- package/dist/module/module/entity/menu.entity.d.ts +0 -15
- package/dist/module/module/entity/menu.entity.js +0 -72
- package/dist/module/module/entity/menu.entity.js.map +0 -1
- package/dist/module/module/entity/module-access.entity.d.ts +0 -9
- package/dist/module/module/entity/module-access.entity.js +0 -48
- package/dist/module/module/entity/module-access.entity.js.map +0 -1
- package/dist/module/module/entity/module-action.entity.d.ts +0 -6
- package/dist/module/module/entity/module-action.entity.js +0 -37
- package/dist/module/module/entity/module-action.entity.js.map +0 -1
- package/dist/module/module/entity/module.entity.d.ts +0 -18
- package/dist/module/module/entity/module.entity.js +0 -84
- package/dist/module/module/entity/module.entity.js.map +0 -1
- package/dist/module/module/module.module.d.ts +0 -2
- package/dist/module/module/module.module.js +0 -55
- package/dist/module/module/module.module.js.map +0 -1
- package/dist/module/module/repository/menu.repository.d.ts +0 -11
- package/dist/module/module/repository/menu.repository.js +0 -152
- package/dist/module/module/repository/menu.repository.js.map +0 -1
- package/dist/module/module/repository/module-access.repository.d.ts +0 -51
- package/dist/module/module/repository/module-access.repository.js +0 -275
- package/dist/module/module/repository/module-access.repository.js.map +0 -1
- package/dist/module/module/service/menu.service.d.ts +0 -12
- package/dist/module/module/service/menu.service.js +0 -59
- package/dist/module/module/service/menu.service.js.map +0 -1
- package/dist/module/module/service/module-access.service.d.ts +0 -60
- package/dist/module/module/service/module-access.service.js +0 -119
- package/dist/module/module/service/module-access.service.js.map +0 -1
- package/dist/module/notification/controller/notification.controller.d.ts +0 -23
- package/dist/module/notification/controller/notification.controller.js +0 -74
- package/dist/module/notification/controller/notification.controller.js.map +0 -1
- package/dist/module/notification/controller/otp.controller.d.ts +0 -56
- package/dist/module/notification/controller/otp.controller.js +0 -103
- package/dist/module/notification/controller/otp.controller.js.map +0 -1
- package/dist/module/notification/entity/notification.entity.d.ts +0 -9
- package/dist/module/notification/entity/notification.entity.js +0 -45
- package/dist/module/notification/entity/notification.entity.js.map +0 -1
- package/dist/module/notification/entity/otp.entity.d.ts +0 -10
- package/dist/module/notification/entity/otp.entity.js +0 -52
- package/dist/module/notification/entity/otp.entity.js.map +0 -1
- package/dist/module/notification/firebase-admin.config.d.ts +0 -7
- package/dist/module/notification/firebase-admin.config.js +0 -24
- package/dist/module/notification/firebase-admin.config.js.map +0 -1
- package/dist/module/notification/notification.module.d.ts +0 -2
- package/dist/module/notification/notification.module.js +0 -82
- package/dist/module/notification/notification.module.js.map +0 -1
- package/dist/module/notification/repository/otp.repository.d.ts +0 -9
- package/dist/module/notification/repository/otp.repository.js +0 -44
- package/dist/module/notification/repository/otp.repository.js.map +0 -1
- package/dist/module/notification/service/email.service.d.ts +0 -14
- package/dist/module/notification/service/email.service.js +0 -110
- package/dist/module/notification/service/email.service.js.map +0 -1
- package/dist/module/notification/service/notification.service.d.ts +0 -25
- package/dist/module/notification/service/notification.service.js +0 -117
- package/dist/module/notification/service/notification.service.js.map +0 -1
- package/dist/module/notification/service/otp.service.d.ts +0 -52
- package/dist/module/notification/service/otp.service.js +0 -105
- package/dist/module/notification/service/otp.service.js.map +0 -1
- package/dist/module/third-party-module/entity/third-party-api-registry.entity.d.ts +0 -18
- package/dist/module/third-party-module/entity/third-party-api-registry.entity.js +0 -84
- package/dist/module/third-party-module/entity/third-party-api-registry.entity.js.map +0 -1
- package/dist/module/third-party-module/repository/third-party-api-registry.repository.d.ts +0 -7
- package/dist/module/third-party-module/repository/third-party-api-registry.repository.js +0 -38
- package/dist/module/third-party-module/repository/third-party-api-registry.repository.js.map +0 -1
- package/dist/module/third-party-module/service/api-registry.service.d.ts +0 -6
- package/dist/module/third-party-module/service/api-registry.service.js +0 -28
- package/dist/module/third-party-module/service/api-registry.service.js.map +0 -1
- package/dist/module/third-party-module/third-party.module.d.ts +0 -2
- package/dist/module/third-party-module/third-party.module.js +0 -25
- package/dist/module/third-party-module/third-party.module.js.map +0 -1
- package/dist/module/user/controller/login.controller.d.ts +0 -26
- package/dist/module/user/controller/login.controller.js +0 -176
- package/dist/module/user/controller/login.controller.js.map +0 -1
- package/dist/module/user/controller/user.controller.d.ts +0 -9
- package/dist/module/user/controller/user.controller.js +0 -59
- package/dist/module/user/controller/user.controller.js.map +0 -1
- package/dist/module/user/dto/create-user.dto.d.ts +0 -17
- package/dist/module/user/dto/create-user.dto.js +0 -64
- package/dist/module/user/dto/create-user.dto.js.map +0 -1
- package/dist/module/user/dto/update-user.dto.d.ts +0 -5
- package/dist/module/user/dto/update-user.dto.js +0 -9
- package/dist/module/user/dto/update-user.dto.js.map +0 -1
- package/dist/module/user/entity/role.entity.d.ts +0 -11
- package/dist/module/user/entity/role.entity.js +0 -56
- package/dist/module/user/entity/role.entity.js.map +0 -1
- package/dist/module/user/entity/user-role-mapping.entity.d.ts +0 -12
- package/dist/module/user/entity/user-role-mapping.entity.js +0 -63
- package/dist/module/user/entity/user-role-mapping.entity.js.map +0 -1
- package/dist/module/user/entity/user-session.entity.d.ts +0 -11
- package/dist/module/user/entity/user-session.entity.js +0 -86
- package/dist/module/user/entity/user-session.entity.js.map +0 -1
- package/dist/module/user/entity/user.entity.d.ts +0 -23
- package/dist/module/user/entity/user.entity.js +0 -103
- package/dist/module/user/entity/user.entity.js.map +0 -1
- package/dist/module/user/repository/role.repository.d.ts +0 -18
- package/dist/module/user/repository/role.repository.js +0 -87
- package/dist/module/user/repository/role.repository.js.map +0 -1
- package/dist/module/user/repository/user-role-mapping.repository.d.ts +0 -19
- package/dist/module/user/repository/user-role-mapping.repository.js +0 -110
- package/dist/module/user/repository/user-role-mapping.repository.js.map +0 -1
- package/dist/module/user/repository/user.repository.d.ts +0 -10
- package/dist/module/user/repository/user.repository.js +0 -58
- package/dist/module/user/repository/user.repository.js.map +0 -1
- package/dist/module/user/repository/userSession.repository.d.ts +0 -10
- package/dist/module/user/repository/userSession.repository.js +0 -45
- package/dist/module/user/repository/userSession.repository.js.map +0 -1
- package/dist/module/user/service/login.service.d.ts +0 -80
- package/dist/module/user/service/login.service.js +0 -208
- package/dist/module/user/service/login.service.js.map +0 -1
- package/dist/module/user/service/role.service.d.ts +0 -23
- package/dist/module/user/service/role.service.js +0 -146
- package/dist/module/user/service/role.service.js.map +0 -1
- package/dist/module/user/service/user-role-mapping.service.d.ts +0 -12
- package/dist/module/user/service/user-role-mapping.service.js +0 -60
- package/dist/module/user/service/user-role-mapping.service.js.map +0 -1
- package/dist/module/user/service/user-session.service.d.ts +0 -38
- package/dist/module/user/service/user-session.service.js +0 -132
- package/dist/module/user/service/user-session.service.js.map +0 -1
- package/dist/module/user/service/user.service.d.ts +0 -38
- package/dist/module/user/service/user.service.js +0 -234
- package/dist/module/user/service/user.service.js.map +0 -1
- package/dist/module/user/user.module.d.ts +0 -2
- package/dist/module/user/user.module.js +0 -78
- package/dist/module/user/user.module.js.map +0 -1
- package/dist/module/workflow/controller/action-category.controller.d.ts +0 -18
- package/dist/module/workflow/controller/action-category.controller.js +0 -79
- package/dist/module/workflow/controller/action-category.controller.js.map +0 -1
- package/dist/module/workflow/controller/action-resource-mapping.controller.d.ts +0 -5
- package/dist/module/workflow/controller/action-resource-mapping.controller.js +0 -31
- package/dist/module/workflow/controller/action-resource-mapping.controller.js.map +0 -1
- package/dist/module/workflow/controller/action-template-mapping.controller.d.ts +0 -12
- package/dist/module/workflow/controller/action-template-mapping.controller.js +0 -44
- package/dist/module/workflow/controller/action-template-mapping.controller.js.map +0 -1
- package/dist/module/workflow/controller/action.controller.d.ts +0 -45
- package/dist/module/workflow/controller/action.controller.js +0 -108
- package/dist/module/workflow/controller/action.controller.js.map +0 -1
- package/dist/module/workflow/controller/activity-log.controller.d.ts +0 -44
- package/dist/module/workflow/controller/activity-log.controller.js +0 -62
- package/dist/module/workflow/controller/activity-log.controller.js.map +0 -1
- package/dist/module/workflow/controller/comm-template.controller.d.ts +0 -13
- package/dist/module/workflow/controller/comm-template.controller.js +0 -45
- package/dist/module/workflow/controller/comm-template.controller.js.map +0 -1
- package/dist/module/workflow/controller/entity-modification.controller.d.ts +0 -8
- package/dist/module/workflow/controller/entity-modification.controller.js +0 -44
- package/dist/module/workflow/controller/entity-modification.controller.js.map +0 -1
- package/dist/module/workflow/controller/form-master.controller.d.ts +0 -11
- package/dist/module/workflow/controller/form-master.controller.js +0 -59
- package/dist/module/workflow/controller/form-master.controller.js.map +0 -1
- package/dist/module/workflow/controller/stage-group.controller.d.ts +0 -19
- package/dist/module/workflow/controller/stage-group.controller.js +0 -56
- package/dist/module/workflow/controller/stage-group.controller.js.map +0 -1
- package/dist/module/workflow/controller/stage.controller.d.ts +0 -16
- package/dist/module/workflow/controller/stage.controller.js +0 -57
- package/dist/module/workflow/controller/stage.controller.js.map +0 -1
- package/dist/module/workflow/controller/task.controller.d.ts +0 -32
- package/dist/module/workflow/controller/task.controller.js +0 -72
- package/dist/module/workflow/controller/task.controller.js.map +0 -1
- package/dist/module/workflow/controller/workflow-list-master.controller.d.ts +0 -14
- package/dist/module/workflow/controller/workflow-list-master.controller.js +0 -67
- package/dist/module/workflow/controller/workflow-list-master.controller.js.map +0 -1
- package/dist/module/workflow/controller/workflow-meta.controller.d.ts +0 -15
- package/dist/module/workflow/controller/workflow-meta.controller.js +0 -72
- package/dist/module/workflow/controller/workflow-meta.controller.js.map +0 -1
- package/dist/module/workflow/controller/workflow.controller.d.ts +0 -31
- package/dist/module/workflow/controller/workflow.controller.js +0 -83
- package/dist/module/workflow/controller/workflow.controller.js.map +0 -1
- package/dist/module/workflow/entity/action-category.entity.d.ts +0 -13
- package/dist/module/workflow/entity/action-category.entity.js +0 -63
- package/dist/module/workflow/entity/action-category.entity.js.map +0 -1
- package/dist/module/workflow/entity/action-data.entity.d.ts +0 -19
- package/dist/module/workflow/entity/action-data.entity.js +0 -86
- package/dist/module/workflow/entity/action-data.entity.js.map +0 -1
- package/dist/module/workflow/entity/action-resources-mapping.entity.d.ts +0 -9
- package/dist/module/workflow/entity/action-resources-mapping.entity.js +0 -47
- package/dist/module/workflow/entity/action-resources-mapping.entity.js.map +0 -1
- package/dist/module/workflow/entity/action-template-mapping.entity.d.ts +0 -6
- package/dist/module/workflow/entity/action-template-mapping.entity.js +0 -35
- package/dist/module/workflow/entity/action-template-mapping.entity.js.map +0 -1
- package/dist/module/workflow/entity/action.entity.d.ts +0 -17
- package/dist/module/workflow/entity/action.entity.js +0 -79
- package/dist/module/workflow/entity/action.entity.js.map +0 -1
- package/dist/module/workflow/entity/activity-log.entity.d.ts +0 -15
- package/dist/module/workflow/entity/activity-log.entity.js +0 -70
- package/dist/module/workflow/entity/activity-log.entity.js.map +0 -1
- package/dist/module/workflow/entity/comm-template.entity.d.ts +0 -14
- package/dist/module/workflow/entity/comm-template.entity.js +0 -67
- package/dist/module/workflow/entity/comm-template.entity.js.map +0 -1
- package/dist/module/workflow/entity/entity-modification.entity.d.ts +0 -13
- package/dist/module/workflow/entity/entity-modification.entity.js +0 -63
- package/dist/module/workflow/entity/entity-modification.entity.js.map +0 -1
- package/dist/module/workflow/entity/form.entity.d.ts +0 -9
- package/dist/module/workflow/entity/form.entity.js +0 -46
- package/dist/module/workflow/entity/form.entity.js.map +0 -1
- package/dist/module/workflow/entity/stage-action-mapping.entity.d.ts +0 -6
- package/dist/module/workflow/entity/stage-action-mapping.entity.js +0 -35
- package/dist/module/workflow/entity/stage-action-mapping.entity.js.map +0 -1
- package/dist/module/workflow/entity/stage-group.entity.d.ts +0 -8
- package/dist/module/workflow/entity/stage-group.entity.js +0 -43
- package/dist/module/workflow/entity/stage-group.entity.js.map +0 -1
- package/dist/module/workflow/entity/stage-movement-data.entity.d.ts +0 -13
- package/dist/module/workflow/entity/stage-movement-data.entity.js +0 -63
- package/dist/module/workflow/entity/stage-movement-data.entity.js.map +0 -1
- package/dist/module/workflow/entity/stage.entity.d.ts +0 -7
- package/dist/module/workflow/entity/stage.entity.js +0 -39
- package/dist/module/workflow/entity/stage.entity.js.map +0 -1
- package/dist/module/workflow/entity/task-data.entity.d.ts +0 -30
- package/dist/module/workflow/entity/task-data.entity.js +0 -130
- package/dist/module/workflow/entity/task-data.entity.js.map +0 -1
- package/dist/module/workflow/entity/template-attach-mapper.entity.d.ts +0 -11
- package/dist/module/workflow/entity/template-attach-mapper.entity.js +0 -54
- package/dist/module/workflow/entity/template-attach-mapper.entity.js.map +0 -1
- package/dist/module/workflow/entity/workflow-data.entity.d.ts +0 -4
- package/dist/module/workflow/entity/workflow-data.entity.js +0 -27
- package/dist/module/workflow/entity/workflow-data.entity.js.map +0 -1
- package/dist/module/workflow/entity/workflow-level-mapping.entity.d.ts +0 -7
- package/dist/module/workflow/entity/workflow-level-mapping.entity.js +0 -38
- package/dist/module/workflow/entity/workflow-level-mapping.entity.js.map +0 -1
- package/dist/module/workflow/entity/workflow.entity.d.ts +0 -7
- package/dist/module/workflow/entity/workflow.entity.js +0 -39
- package/dist/module/workflow/entity/workflow.entity.js.map +0 -1
- package/dist/module/workflow/repository/action-category.repository.d.ts +0 -19
- package/dist/module/workflow/repository/action-category.repository.js +0 -84
- package/dist/module/workflow/repository/action-category.repository.js.map +0 -1
- package/dist/module/workflow/repository/action-data.repository.d.ts +0 -18
- package/dist/module/workflow/repository/action-data.repository.js +0 -172
- package/dist/module/workflow/repository/action-data.repository.js.map +0 -1
- package/dist/module/workflow/repository/action.repository.d.ts +0 -29
- package/dist/module/workflow/repository/action.repository.js +0 -220
- package/dist/module/workflow/repository/action.repository.js.map +0 -1
- package/dist/module/workflow/repository/activity-log.repository.d.ts +0 -57
- package/dist/module/workflow/repository/activity-log.repository.js +0 -112
- package/dist/module/workflow/repository/activity-log.repository.js.map +0 -1
- package/dist/module/workflow/repository/comm-template.repository.d.ts +0 -15
- package/dist/module/workflow/repository/comm-template.repository.js +0 -109
- package/dist/module/workflow/repository/comm-template.repository.js.map +0 -1
- package/dist/module/workflow/repository/form-master.repository.d.ts +0 -8
- package/dist/module/workflow/repository/form-master.repository.js +0 -38
- package/dist/module/workflow/repository/form-master.repository.js.map +0 -1
- package/dist/module/workflow/repository/form.repository.d.ts +0 -0
- package/dist/module/workflow/repository/form.repository.js +0 -1
- package/dist/module/workflow/repository/form.repository.js.map +0 -1
- package/dist/module/workflow/repository/stage-group.repository.d.ts +0 -34
- package/dist/module/workflow/repository/stage-group.repository.js +0 -135
- package/dist/module/workflow/repository/stage-group.repository.js.map +0 -1
- package/dist/module/workflow/repository/stage-movement.repository.d.ts +0 -23
- package/dist/module/workflow/repository/stage-movement.repository.js +0 -150
- package/dist/module/workflow/repository/stage-movement.repository.js.map +0 -1
- package/dist/module/workflow/repository/stage.repository.d.ts +0 -31
- package/dist/module/workflow/repository/stage.repository.js +0 -117
- package/dist/module/workflow/repository/stage.repository.js.map +0 -1
- package/dist/module/workflow/repository/task.repository.d.ts +0 -10
- package/dist/module/workflow/repository/task.repository.js +0 -92
- package/dist/module/workflow/repository/task.repository.js.map +0 -1
- package/dist/module/workflow/repository/workflow.repository.d.ts +0 -10
- package/dist/module/workflow/repository/workflow.repository.js +0 -49
- package/dist/module/workflow/repository/workflow.repository.js.map +0 -1
- package/dist/module/workflow/service/action-category.service.d.ts +0 -21
- package/dist/module/workflow/service/action-category.service.js +0 -42
- package/dist/module/workflow/service/action-category.service.js.map +0 -1
- package/dist/module/workflow/service/action-data.service.d.ts +0 -16
- package/dist/module/workflow/service/action-data.service.js +0 -40
- package/dist/module/workflow/service/action-data.service.js.map +0 -1
- package/dist/module/workflow/service/action-resources-mapping.service.d.ts +0 -6
- package/dist/module/workflow/service/action-resources-mapping.service.js +0 -27
- package/dist/module/workflow/service/action-resources-mapping.service.js.map +0 -1
- package/dist/module/workflow/service/action-template-mapping.service.d.ts +0 -7
- package/dist/module/workflow/service/action-template-mapping.service.js +0 -52
- package/dist/module/workflow/service/action-template-mapping.service.js.map +0 -1
- package/dist/module/workflow/service/action.service.d.ts +0 -35
- package/dist/module/workflow/service/action.service.js +0 -163
- package/dist/module/workflow/service/action.service.js.map +0 -1
- package/dist/module/workflow/service/activity-log.service.d.ts +0 -44
- package/dist/module/workflow/service/activity-log.service.js +0 -92
- package/dist/module/workflow/service/activity-log.service.js.map +0 -1
- package/dist/module/workflow/service/comm-template.service.d.ts +0 -16
- package/dist/module/workflow/service/comm-template.service.js +0 -90
- package/dist/module/workflow/service/comm-template.service.js.map +0 -1
- package/dist/module/workflow/service/entity-modification.service.d.ts +0 -8
- package/dist/module/workflow/service/entity-modification.service.js +0 -52
- package/dist/module/workflow/service/entity-modification.service.js.map +0 -1
- package/dist/module/workflow/service/form-master.service.d.ts +0 -14
- package/dist/module/workflow/service/form-master.service.js +0 -38
- package/dist/module/workflow/service/form-master.service.js.map +0 -1
- package/dist/module/workflow/service/populate-workflow.service.d.ts +0 -21
- package/dist/module/workflow/service/populate-workflow.service.js +0 -167
- package/dist/module/workflow/service/populate-workflow.service.js.map +0 -1
- package/dist/module/workflow/service/stage-action-mapping.service.d.ts +0 -3
- package/dist/module/workflow/service/stage-action-mapping.service.js +0 -18
- package/dist/module/workflow/service/stage-action-mapping.service.js.map +0 -1
- package/dist/module/workflow/service/stage-group.service.d.ts +0 -29
- package/dist/module/workflow/service/stage-group.service.js +0 -213
- package/dist/module/workflow/service/stage-group.service.js.map +0 -1
- package/dist/module/workflow/service/stage.service.d.ts +0 -25
- package/dist/module/workflow/service/stage.service.js +0 -129
- package/dist/module/workflow/service/stage.service.js.map +0 -1
- package/dist/module/workflow/service/task.service.d.ts +0 -47
- package/dist/module/workflow/service/task.service.js +0 -324
- package/dist/module/workflow/service/task.service.js.map +0 -1
- package/dist/module/workflow/service/workflow-list-master.service.d.ts +0 -9
- package/dist/module/workflow/service/workflow-list-master.service.js +0 -61
- package/dist/module/workflow/service/workflow-list-master.service.js.map +0 -1
- package/dist/module/workflow/service/workflow-meta.service.d.ts +0 -26
- package/dist/module/workflow/service/workflow-meta.service.js +0 -356
- package/dist/module/workflow/service/workflow-meta.service.js.map +0 -1
- package/dist/module/workflow/service/workflow.service.d.ts +0 -33
- package/dist/module/workflow/service/workflow.service.js +0 -140
- package/dist/module/workflow/service/workflow.service.js.map +0 -1
- package/dist/module/workflow/workflow.module.d.ts +0 -2
- package/dist/module/workflow/workflow.module.js +0 -184
- package/dist/module/workflow/workflow.module.js.map +0 -1
- package/dist/module/workflow-automation/controller/workflow-automation.controller.d.ts +0 -5
- package/dist/module/workflow-automation/controller/workflow-automation.controller.js +0 -31
- package/dist/module/workflow-automation/controller/workflow-automation.controller.js.map +0 -1
- package/dist/module/workflow-automation/entity/workflow-automation-action.entity.d.ts +0 -9
- package/dist/module/workflow-automation/entity/workflow-automation-action.entity.js +0 -47
- package/dist/module/workflow-automation/entity/workflow-automation-action.entity.js.map +0 -1
- package/dist/module/workflow-automation/entity/workflow-automation.entity.d.ts +0 -12
- package/dist/module/workflow-automation/entity/workflow-automation.entity.js +0 -59
- package/dist/module/workflow-automation/entity/workflow-automation.entity.js.map +0 -1
- package/dist/module/workflow-automation/interface/action.decorator.d.ts +0 -2
- package/dist/module/workflow-automation/interface/action.decorator.js +0 -8
- package/dist/module/workflow-automation/interface/action.decorator.js.map +0 -1
- package/dist/module/workflow-automation/interface/action.interface.d.ts +0 -4
- package/dist/module/workflow-automation/interface/action.interface.js +0 -3
- package/dist/module/workflow-automation/interface/action.interface.js.map +0 -1
- package/dist/module/workflow-automation/service/action-registery.service.d.ts +0 -11
- package/dist/module/workflow-automation/service/action-registery.service.js +0 -46
- package/dist/module/workflow-automation/service/action-registery.service.js.map +0 -1
- package/dist/module/workflow-automation/service/workflow-automation-engine.service.d.ts +0 -14
- package/dist/module/workflow-automation/service/workflow-automation-engine.service.js +0 -116
- package/dist/module/workflow-automation/service/workflow-automation-engine.service.js.map +0 -1
- package/dist/module/workflow-automation/service/workflow-automation.service.d.ts +0 -55
- package/dist/module/workflow-automation/service/workflow-automation.service.js +0 -222
- package/dist/module/workflow-automation/service/workflow-automation.service.js.map +0 -1
- package/dist/module/workflow-automation/workflow-automation.module.d.ts +0 -2
- package/dist/module/workflow-automation/workflow-automation.module.js +0 -47
- package/dist/module/workflow-automation/workflow-automation.module.js.map +0 -1
- package/dist/resources/properties.module.d.ts +0 -2
- package/dist/resources/properties.module.js +0 -25
- package/dist/resources/properties.module.js.map +0 -1
- package/dist/resources/properties.yaml.d.ts +0 -2
- package/dist/resources/properties.yaml.js +0 -10
- package/dist/resources/properties.yaml.js.map +0 -1
- package/dist/tsconfig.build.tsbuildinfo +0 -1
- package/dist/utils/dto/excel-data.dto.d.ts +0 -7
- package/dist/utils/dto/excel-data.dto.js +0 -16
- package/dist/utils/dto/excel-data.dto.js.map +0 -1
- package/dist/utils/dto/excelsheet-data.dto.d.ts +0 -5
- package/dist/utils/dto/excelsheet-data.dto.js +0 -3
- package/dist/utils/dto/excelsheet-data.dto.js.map +0 -1
- package/dist/utils/service/base64util.service.d.ts +0 -4
- package/dist/utils/service/base64util.service.js +0 -21
- package/dist/utils/service/base64util.service.js.map +0 -1
- package/dist/utils/service/clockIDGenUtil.service.d.ts +0 -8
- package/dist/utils/service/clockIDGenUtil.service.js +0 -32
- package/dist/utils/service/clockIDGenUtil.service.js.map +0 -1
- package/dist/utils/service/codeGenerator.service.d.ts +0 -3
- package/dist/utils/service/codeGenerator.service.js +0 -19
- package/dist/utils/service/codeGenerator.service.js.map +0 -1
- package/dist/utils/service/dateUtil.service.d.ts +0 -3
- package/dist/utils/service/dateUtil.service.js +0 -28
- package/dist/utils/service/dateUtil.service.js.map +0 -1
- package/dist/utils/service/encryptUtil.service.d.ts +0 -9
- package/dist/utils/service/encryptUtil.service.js +0 -112
- package/dist/utils/service/encryptUtil.service.js.map +0 -1
- package/dist/utils/service/excel-helper.service.d.ts +0 -9
- package/dist/utils/service/excel-helper.service.js +0 -56
- package/dist/utils/service/excel-helper.service.js.map +0 -1
- package/dist/utils/service/excelUtil.service.d.ts +0 -3
- package/dist/utils/service/excelUtil.service.js +0 -17
- package/dist/utils/service/excelUtil.service.js.map +0 -1
- package/dist/utils/service/file-util.service.d.ts +0 -3
- package/dist/utils/service/file-util.service.js +0 -15
- package/dist/utils/service/file-util.service.js.map +0 -1
- package/dist/utils/service/json-util.service.d.ts +0 -3
- package/dist/utils/service/json-util.service.js +0 -24
- package/dist/utils/service/json-util.service.js.map +0 -1
- package/dist/utils/service/loggingUtil.service.d.ts +0 -4
- package/dist/utils/service/loggingUtil.service.js +0 -36
- package/dist/utils/service/loggingUtil.service.js.map +0 -1
- package/dist/utils/service/reflection-helper.service.d.ts +0 -10
- package/dist/utils/service/reflection-helper.service.js +0 -66
- package/dist/utils/service/reflection-helper.service.js.map +0 -1
- package/dist/utils/service/wbsCodeGen.service.d.ts +0 -3
- package/dist/utils/service/wbsCodeGen.service.js +0 -20
- package/dist/utils/service/wbsCodeGen.service.js.map +0 -1
- package/dist/utils/utils.module.d.ts +0 -2
- package/dist/utils/utils.module.js +0 -38
- package/dist/utils/utils.module.js.map +0 -1
- package/server.log +0 -850
|
@@ -1,762 +1,762 @@
|
|
|
1
|
-
import { level } from 'winston';
|
|
2
|
-
import { Injectable } from '@nestjs/common';
|
|
3
|
-
import {
|
|
4
|
-
ENTITYTYPE_ENTITYMASTER,
|
|
5
|
-
STATUS_ACTIVE,
|
|
6
|
-
} from 'src/constant/global.constant';
|
|
7
|
-
import { DataSource } from 'typeorm';
|
|
8
|
-
import { UserData } from 'src/module/user/entity/user.entity';
|
|
9
|
-
import { MediaDataService } from './media-data.service';
|
|
10
|
-
import { ResolverService } from './resolver.service';
|
|
11
|
-
|
|
12
|
-
@Injectable()
|
|
13
|
-
export class EntityDynamicService {
|
|
14
|
-
constructor(
|
|
15
|
-
private readonly dataSource: DataSource,
|
|
16
|
-
private readonly mediaDataService: MediaDataService,
|
|
17
|
-
private readonly resolverService: ResolverService,
|
|
18
|
-
) {}
|
|
19
|
-
|
|
20
|
-
// -----------------------------
|
|
21
|
-
async createEntity(
|
|
22
|
-
entityType: string,
|
|
23
|
-
entityData: Record<string, any>,
|
|
24
|
-
loggedInUser: any,
|
|
25
|
-
mainID?: number,
|
|
26
|
-
): Promise<any> {
|
|
27
|
-
const organizationId = loggedInUser.organization_id;
|
|
28
|
-
|
|
29
|
-
const tableName = await this.getTableName(entityType, organizationId);
|
|
30
|
-
const validAttributes = await this.getAttributeCodes(
|
|
31
|
-
entityType,
|
|
32
|
-
organizationId,
|
|
33
|
-
);
|
|
34
|
-
|
|
35
|
-
const statusList = await this.dataSource.query(
|
|
36
|
-
`SELECT id FROM cr_list_master_items WHERE code = ? AND organization_id = ?`,
|
|
37
|
-
[STATUS_ACTIVE, loggedInUser?.organization_id || 0],
|
|
38
|
-
);
|
|
39
|
-
|
|
40
|
-
entityData.created_date = new Date();
|
|
41
|
-
if (loggedInUser) {
|
|
42
|
-
entityData.created_by = loggedInUser.id;
|
|
43
|
-
if (!entityData.organization_id)
|
|
44
|
-
entityData.organization_id = loggedInUser.organization_id;
|
|
45
|
-
if (!entityData.enterprise_id)
|
|
46
|
-
entityData.enterprise_id = loggedInUser.enterprise_id;
|
|
47
|
-
if (!entityData.level_type)
|
|
48
|
-
entityData.level_type = loggedInUser.level_type;
|
|
49
|
-
if (!entityData.level_id) entityData.level_id = loggedInUser.level_id;
|
|
50
|
-
if (!entityData.status) entityData.status = statusList[0].id;
|
|
51
|
-
if (!entityData.entity_type) entityData.entity_type = entityType;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
if (!entityData.code && loggedInUser) {
|
|
55
|
-
const result = await this.dataSource.query(
|
|
56
|
-
`SELECT MAX(CAST(SUBSTRING(code, LENGTH(entity_type) + 1) AS UNSIGNED)) AS max_seq_no
|
|
57
|
-
FROM ${tableName}
|
|
58
|
-
WHERE entity_type = ?`,
|
|
59
|
-
[entityData.entity_type],
|
|
60
|
-
);
|
|
61
|
-
|
|
62
|
-
// result will be like [ { max_seq_no: 12 } ]
|
|
63
|
-
let maxSeqNo = result?.[0]?.max_seq_no ? Number(result[0].max_seq_no) : 0;
|
|
64
|
-
|
|
65
|
-
maxSeqNo += 1;
|
|
66
|
-
entityData.code = `${entityData.entity_type}${maxSeqNo}`;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// Set parent_id if mainID is provided
|
|
70
|
-
if (mainID) {
|
|
71
|
-
entityData.parent_id = mainID;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
const bypassColumn = [
|
|
75
|
-
{
|
|
76
|
-
attribute_key: 'created_date',
|
|
77
|
-
db_datatype: 'datetime',
|
|
78
|
-
element_type: 'date',
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
attribute_key: 'created_by',
|
|
82
|
-
db_datatype: 'int',
|
|
83
|
-
element_type: 'number',
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
attribute_key: 'organization_id',
|
|
87
|
-
db_datatype: 'datetime',
|
|
88
|
-
element_type: 'date',
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
attribute_key: 'enterprise_id',
|
|
92
|
-
db_datatype: 'int',
|
|
93
|
-
element_type: 'number',
|
|
94
|
-
},
|
|
95
|
-
{ attribute_key: 'level_type', db_datatype: 'int', element_type: 'text' },
|
|
96
|
-
{ attribute_key: 'level_id', db_datatype: 'int', element_type: 'number' },
|
|
97
|
-
{ attribute_key: 'status', db_datatype: 'varchar', element_type: 'text' },
|
|
98
|
-
{
|
|
99
|
-
attribute_key: 'entity_type',
|
|
100
|
-
db_datatype: 'varchar',
|
|
101
|
-
element_type: 'text',
|
|
102
|
-
},
|
|
103
|
-
{ attribute_key: 'code', db_datatype: 'varchar', element_type: 'text' },
|
|
104
|
-
{
|
|
105
|
-
attribute_key: 'parent_id',
|
|
106
|
-
db_datatype: 'int',
|
|
107
|
-
element_type: 'number',
|
|
108
|
-
},
|
|
109
|
-
];
|
|
110
|
-
|
|
111
|
-
// Only push bypassColumn attributes that don't already exist in validAttributes
|
|
112
|
-
const existingAttributeKeys = validAttributes.map(
|
|
113
|
-
(attr) => attr.attribute_key,
|
|
114
|
-
);
|
|
115
|
-
const newBypassColumns = bypassColumn.filter(
|
|
116
|
-
(bypass) => !existingAttributeKeys.includes(bypass.attribute_key),
|
|
117
|
-
);
|
|
118
|
-
validAttributes.push(...newBypassColumns);
|
|
119
|
-
|
|
120
|
-
const columns: string[] = [];
|
|
121
|
-
const values: any[] = [];
|
|
122
|
-
|
|
123
|
-
validAttributes.forEach((attr) => {
|
|
124
|
-
columns.push(attr.attribute_key);
|
|
125
|
-
values.push(
|
|
126
|
-
attr.attribute_key in entityData
|
|
127
|
-
? entityData[attr.attribute_key]
|
|
128
|
-
: null,
|
|
129
|
-
);
|
|
130
|
-
});
|
|
131
|
-
|
|
132
|
-
const placeholders = columns.map(() => '?').join(', ');
|
|
133
|
-
const escapedColumns = columns.map((col) => `\`${col}\``).join(', ');
|
|
134
|
-
const insertQuery = `INSERT INTO \`${tableName}\` (${escapedColumns}) VALUES (${placeholders})`;
|
|
135
|
-
|
|
136
|
-
const result = await this.dataSource.query(insertQuery, values);
|
|
137
|
-
return result;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
// ----------------------------- get entity with relations
|
|
141
|
-
|
|
142
|
-
// ----------------------------- create entity with relations
|
|
143
|
-
async createEntityWithRelation(
|
|
144
|
-
entityType: string,
|
|
145
|
-
data: Record<string, any>,
|
|
146
|
-
loggedInUser: any,
|
|
147
|
-
): Promise<any> {
|
|
148
|
-
const organizationId = loggedInUser.organization_id;
|
|
149
|
-
|
|
150
|
-
const getRelation = await this.dataSource.query(
|
|
151
|
-
`SELECT * FROM cr_entity_relation WHERE organization_id = ? AND source_entity_type = ?`,
|
|
152
|
-
[organizationId, entityType],
|
|
153
|
-
);
|
|
154
|
-
|
|
155
|
-
const { mappedEntities, ...mainData } = data;
|
|
156
|
-
|
|
157
|
-
// create main entity
|
|
158
|
-
const createdEntityData = await this.createEntity(
|
|
159
|
-
entityType,
|
|
160
|
-
mainData,
|
|
161
|
-
loggedInUser,
|
|
162
|
-
);
|
|
163
|
-
const mainID = createdEntityData.insertId || createdEntityData.id;
|
|
164
|
-
|
|
165
|
-
if (mappedEntities && getRelation.length > 0) {
|
|
166
|
-
for (const relation of getRelation) {
|
|
167
|
-
const targetEntityType = relation.target_entity_type;
|
|
168
|
-
const relationType = relation.relation_type;
|
|
169
|
-
const relationId = relation.relation_id;
|
|
170
|
-
|
|
171
|
-
if (!mappedEntities[targetEntityType]) continue;
|
|
172
|
-
|
|
173
|
-
// normalize: always array
|
|
174
|
-
const entityDataArray = Array.isArray(mappedEntities[targetEntityType])
|
|
175
|
-
? mappedEntities[targetEntityType]
|
|
176
|
-
: [mappedEntities[targetEntityType]];
|
|
177
|
-
|
|
178
|
-
for (const item of entityDataArray) {
|
|
179
|
-
const itemWithRef = {
|
|
180
|
-
...item,
|
|
181
|
-
entity_type: targetEntityType,
|
|
182
|
-
};
|
|
183
|
-
|
|
184
|
-
const createdRelatedEntity = await this.createEntity(
|
|
185
|
-
targetEntityType,
|
|
186
|
-
itemWithRef,
|
|
187
|
-
loggedInUser,
|
|
188
|
-
mainID, // this will pass for parent_id
|
|
189
|
-
);
|
|
190
|
-
|
|
191
|
-
await this.dataSource.query(
|
|
192
|
-
`INSERT INTO cr_entity_relation_data (organization_id, source_entity_id, source_entity_type, target_entity_id, target_entity_type, relation_type) VALUES (?, ?, ?, ?, ?,?)`,
|
|
193
|
-
[
|
|
194
|
-
organizationId,
|
|
195
|
-
mainID,
|
|
196
|
-
entityType,
|
|
197
|
-
createdRelatedEntity.insertId,
|
|
198
|
-
targetEntityType,
|
|
199
|
-
relationType,
|
|
200
|
-
],
|
|
201
|
-
);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
return {
|
|
207
|
-
mainEntity: {
|
|
208
|
-
id: mainID,
|
|
209
|
-
entityType,
|
|
210
|
-
data: createdEntityData,
|
|
211
|
-
},
|
|
212
|
-
};
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
// ----------------------------- get entity with relations
|
|
216
|
-
async getEntityWithRelation(
|
|
217
|
-
entityType: string,
|
|
218
|
-
id: number | string,
|
|
219
|
-
loggedInUser: any,
|
|
220
|
-
): Promise<any> {
|
|
221
|
-
const mainEntity = await this.getEntity(entityType, id, loggedInUser);
|
|
222
|
-
|
|
223
|
-
const relatedEntities = await this.dataSource.query(
|
|
224
|
-
`SELECT * FROM cr_entity_relation_data WHERE source_entity_id = ? AND target_entity_type IN (
|
|
225
|
-
SELECT target_entity_type FROM cr_entity_relation WHERE source_entity_type = ?)`,
|
|
226
|
-
[id, entityType],
|
|
227
|
-
);
|
|
228
|
-
|
|
229
|
-
// Format response to match create entity structure
|
|
230
|
-
const response: any = {
|
|
231
|
-
entity_type: entityType,
|
|
232
|
-
...mainEntity,
|
|
233
|
-
};
|
|
234
|
-
|
|
235
|
-
if (relatedEntities.length > 0) {
|
|
236
|
-
response.mappedEntities = await this.formatMappedEntities(
|
|
237
|
-
relatedEntities,
|
|
238
|
-
loggedInUser,
|
|
239
|
-
);
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
return response;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
// ----------------------------- formatMappedEntities
|
|
246
|
-
async formatMappedEntities(
|
|
247
|
-
relatedEntities: any[],
|
|
248
|
-
loggedInUser: any,
|
|
249
|
-
): Promise<any> {
|
|
250
|
-
const mappedEntities: any = {};
|
|
251
|
-
|
|
252
|
-
for (const relation of relatedEntities) {
|
|
253
|
-
const targetEntityType = relation.target_entity_type;
|
|
254
|
-
const targetEntityId = relation.target_entity_id;
|
|
255
|
-
|
|
256
|
-
const entityData = await this.getEntity(
|
|
257
|
-
targetEntityType,
|
|
258
|
-
targetEntityId,
|
|
259
|
-
loggedInUser,
|
|
260
|
-
);
|
|
261
|
-
|
|
262
|
-
if (!mappedEntities[targetEntityType]) {
|
|
263
|
-
mappedEntities[targetEntityType] = [];
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
mappedEntities[targetEntityType].push(entityData);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
return mappedEntities;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
// ----------------------------- update with relations
|
|
273
|
-
|
|
274
|
-
// ----------------------------- update entity with relations
|
|
275
|
-
async updateEntityWithRelations(
|
|
276
|
-
entityType: string,
|
|
277
|
-
id: number | string,
|
|
278
|
-
data: Record<string, any>,
|
|
279
|
-
loggedInUser: any,
|
|
280
|
-
): Promise<any> {
|
|
281
|
-
const organizationId = loggedInUser.organization_id;
|
|
282
|
-
const { mappedEntities, ...mainData } = data;
|
|
283
|
-
|
|
284
|
-
// Update main entity
|
|
285
|
-
const updatedMainEntity = await this.updateEntity(
|
|
286
|
-
entityType,
|
|
287
|
-
id,
|
|
288
|
-
mainData,
|
|
289
|
-
loggedInUser,
|
|
290
|
-
);
|
|
291
|
-
|
|
292
|
-
const updatedRelations: Record<string, any> = {};
|
|
293
|
-
|
|
294
|
-
if (mappedEntities) {
|
|
295
|
-
const getRelationDefs = await this.dataSource.query(
|
|
296
|
-
`SELECT * FROM cr_entity_relation WHERE organization_id = ? AND source_entity_type = ?`,
|
|
297
|
-
[organizationId, entityType],
|
|
298
|
-
);
|
|
299
|
-
|
|
300
|
-
for (const [targetEntityType, rawEntityData] of Object.entries(
|
|
301
|
-
mappedEntities,
|
|
302
|
-
)) {
|
|
303
|
-
const relationDef = getRelationDefs.find(
|
|
304
|
-
(r) => r.target_entity_type === targetEntityType,
|
|
305
|
-
);
|
|
306
|
-
if (!relationDef) continue;
|
|
307
|
-
|
|
308
|
-
const relationType = relationDef.relation_type;
|
|
309
|
-
const entityArray = Array.isArray(rawEntityData)
|
|
310
|
-
? rawEntityData
|
|
311
|
-
: [rawEntityData];
|
|
312
|
-
|
|
313
|
-
// Delete previous relations and related entities
|
|
314
|
-
const existingRelationsForType = await this.dataSource.query(
|
|
315
|
-
`SELECT * FROM cr_entity_relation_data WHERE source_entity_type = ? AND source_entity_id = ? AND target_entity_type = ?`,
|
|
316
|
-
[entityType, id, targetEntityType],
|
|
317
|
-
);
|
|
318
|
-
|
|
319
|
-
for (const existingRel of existingRelationsForType) {
|
|
320
|
-
// Delete the related entity
|
|
321
|
-
await this.deleteEntity(
|
|
322
|
-
existingRel.target_entity_type,
|
|
323
|
-
existingRel.target_entity_id,
|
|
324
|
-
loggedInUser,
|
|
325
|
-
);
|
|
326
|
-
|
|
327
|
-
// Delete the relation row
|
|
328
|
-
await this.dataSource.query(
|
|
329
|
-
`DELETE FROM cr_entity_relation_data WHERE id = ?`,
|
|
330
|
-
[existingRel.id],
|
|
331
|
-
);
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
// Create/update new entities & relations
|
|
335
|
-
const updatedEntities: any[] = [];
|
|
336
|
-
|
|
337
|
-
for (const item of entityArray) {
|
|
338
|
-
let targetEntityId;
|
|
339
|
-
let entityData;
|
|
340
|
-
|
|
341
|
-
if (item.id) {
|
|
342
|
-
// Update existing entity
|
|
343
|
-
await this.updateEntity(
|
|
344
|
-
targetEntityType,
|
|
345
|
-
item.id,
|
|
346
|
-
item,
|
|
347
|
-
loggedInUser,
|
|
348
|
-
Number(id), // pass main entity id as parent_id
|
|
349
|
-
);
|
|
350
|
-
targetEntityId = item.id;
|
|
351
|
-
entityData = await this.getEntity(
|
|
352
|
-
targetEntityType,
|
|
353
|
-
targetEntityId,
|
|
354
|
-
loggedInUser,
|
|
355
|
-
);
|
|
356
|
-
} else {
|
|
357
|
-
// Create new entity
|
|
358
|
-
const createdEntity = await this.createEntity(
|
|
359
|
-
targetEntityType,
|
|
360
|
-
item,
|
|
361
|
-
loggedInUser,
|
|
362
|
-
Number(id), // pass main entity id as parent_id
|
|
363
|
-
);
|
|
364
|
-
targetEntityId = createdEntity.insertId || createdEntity.id;
|
|
365
|
-
entityData = await this.getEntity(
|
|
366
|
-
targetEntityType,
|
|
367
|
-
targetEntityId,
|
|
368
|
-
loggedInUser,
|
|
369
|
-
);
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
// Insert relation
|
|
373
|
-
await this.dataSource.query(
|
|
374
|
-
`INSERT INTO cr_entity_relation_data
|
|
375
|
-
(organization_id, source_entity_id, source_entity_type, target_entity_id, target_entity_type, relation_type)
|
|
376
|
-
VALUES (?, ?, ?, ?, ?,?)`,
|
|
377
|
-
[
|
|
378
|
-
organizationId,
|
|
379
|
-
id,
|
|
380
|
-
entityType,
|
|
381
|
-
targetEntityId,
|
|
382
|
-
targetEntityType,
|
|
383
|
-
relationType,
|
|
384
|
-
],
|
|
385
|
-
);
|
|
386
|
-
|
|
387
|
-
if (relationType === 'ONE_TO_MANY') {
|
|
388
|
-
updatedEntities.push(entityData);
|
|
389
|
-
} else if (
|
|
390
|
-
relationType === 'ONE_TO_ONE' ||
|
|
391
|
-
relationType === 'MANY_TO_ONE'
|
|
392
|
-
) {
|
|
393
|
-
updatedEntities[0] = entityData; // single object
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
// Assign to response mappedEntities
|
|
398
|
-
updatedRelations[targetEntityType] =
|
|
399
|
-
relationType === 'ONE_TO_MANY' ? updatedEntities : updatedEntities[0];
|
|
400
|
-
}
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
return {
|
|
404
|
-
mainEntity: {
|
|
405
|
-
id,
|
|
406
|
-
entityType,
|
|
407
|
-
data: updatedMainEntity,
|
|
408
|
-
},
|
|
409
|
-
relatedEntities: updatedRelations,
|
|
410
|
-
};
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
// -----------------------------
|
|
414
|
-
async updateEntity(
|
|
415
|
-
entityType: string,
|
|
416
|
-
id: number | string,
|
|
417
|
-
entityData: Record<string, any>,
|
|
418
|
-
loggedInUser: any,
|
|
419
|
-
mainID?: number,
|
|
420
|
-
): Promise<any> {
|
|
421
|
-
const organizationId = loggedInUser.organization_id;
|
|
422
|
-
|
|
423
|
-
const tableName = await this.getTableName(entityType, organizationId);
|
|
424
|
-
const validAttributes = await this.getAttributeCodes(
|
|
425
|
-
entityType,
|
|
426
|
-
organizationId,
|
|
427
|
-
);
|
|
428
|
-
|
|
429
|
-
const updates: string[] = [];
|
|
430
|
-
const values: any[] = [];
|
|
431
|
-
|
|
432
|
-
entityData.modified_date = new Date();
|
|
433
|
-
if (loggedInUser) {
|
|
434
|
-
entityData.modified_by = loggedInUser.id;
|
|
435
|
-
if (!entityData.organization_id && entityData.entity_type !== 'ORG')
|
|
436
|
-
entityData.organization_id = loggedInUser.organization_id;
|
|
437
|
-
if (!entityData.enterprise_id)
|
|
438
|
-
entityData.enterprise_id = loggedInUser.enterprise_id;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
if (!entityData.code && loggedInUser) {
|
|
442
|
-
const result = await this.dataSource.query(
|
|
443
|
-
`SELECT MAX(CAST(SUBSTRING(code, LENGTH(entity_type) + 1) AS UNSIGNED)) AS max_seq_no
|
|
444
|
-
FROM ${tableName}
|
|
445
|
-
WHERE entity_type = ?`,
|
|
446
|
-
[entityData.entity_type],
|
|
447
|
-
);
|
|
448
|
-
|
|
449
|
-
// result will be like [ { max_seq_no: 12 } ]
|
|
450
|
-
let maxSeqNo = result?.[0]?.max_seq_no ? Number(result[0].max_seq_no) : 0;
|
|
451
|
-
|
|
452
|
-
maxSeqNo += 1;
|
|
453
|
-
entityData.code = `${entityData.entity_type}${maxSeqNo}`;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
// Set parent_id if mainID is provided
|
|
457
|
-
if (mainID) {
|
|
458
|
-
entityData.parent_id = mainID;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
const bypassColumn = [
|
|
462
|
-
{
|
|
463
|
-
attribute_key: 'created_date',
|
|
464
|
-
db_datatype: 'datetime',
|
|
465
|
-
element_type: 'date',
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
attribute_key: 'created_by',
|
|
469
|
-
db_datatype: 'int',
|
|
470
|
-
element_type: 'number',
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
attribute_key: 'modified_date',
|
|
474
|
-
db_datatype: 'datetime',
|
|
475
|
-
element_type: 'date',
|
|
476
|
-
},
|
|
477
|
-
{
|
|
478
|
-
attribute_key: 'modified_by',
|
|
479
|
-
db_datatype: 'int',
|
|
480
|
-
element_type: 'number',
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
attribute_key: 'organization_id',
|
|
484
|
-
db_datatype: 'int',
|
|
485
|
-
element_type: 'number',
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
attribute_key: 'enterprise_id',
|
|
489
|
-
db_datatype: 'int',
|
|
490
|
-
element_type: 'number',
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
attribute_key: 'level_type',
|
|
494
|
-
db_datatype: 'varchar',
|
|
495
|
-
element_type: 'text',
|
|
496
|
-
},
|
|
497
|
-
{ attribute_key: 'level_id', db_datatype: 'int', element_type: 'number' },
|
|
498
|
-
{ attribute_key: 'status', db_datatype: 'varchar', element_type: 'text' },
|
|
499
|
-
{
|
|
500
|
-
attribute_key: 'entity_type',
|
|
501
|
-
db_datatype: 'varchar',
|
|
502
|
-
element_type: 'text',
|
|
503
|
-
},
|
|
504
|
-
{ attribute_key: 'code', db_datatype: 'varchar', element_type: 'text' },
|
|
505
|
-
{
|
|
506
|
-
attribute_key: 'parent_id',
|
|
507
|
-
db_datatype: 'int',
|
|
508
|
-
element_type: 'number',
|
|
509
|
-
},
|
|
510
|
-
];
|
|
511
|
-
|
|
512
|
-
// Only push bypassColumn attributes that don't already exist in validAttributes
|
|
513
|
-
const existingAttributeKeys = validAttributes.map(
|
|
514
|
-
(attr) => attr.attribute_key,
|
|
515
|
-
);
|
|
516
|
-
const newBypassColumns = bypassColumn.filter(
|
|
517
|
-
(bypass) => !existingAttributeKeys.includes(bypass.attribute_key),
|
|
518
|
-
);
|
|
519
|
-
validAttributes.push(...newBypassColumns);
|
|
520
|
-
|
|
521
|
-
for (const key of Object.keys(entityData)) {
|
|
522
|
-
if (validAttributes.some((attr) => attr.attribute_key === key)) {
|
|
523
|
-
updates.push(`\`${key}\` = ?`);
|
|
524
|
-
values.push(entityData[key]);
|
|
525
|
-
}
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
if (updates.length === 0) {
|
|
529
|
-
throw new Error('No valid attributes to update.');
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
const updateQuery = `UPDATE \`${tableName}\` SET ${updates.join(', ')} WHERE id = ?`;
|
|
533
|
-
values.push(id); // Add id for WHERE clause
|
|
534
|
-
|
|
535
|
-
const result = await this.dataSource.query(updateQuery, values);
|
|
536
|
-
return result;
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
// -----------------------------
|
|
540
|
-
async getEntity(
|
|
541
|
-
entityType: string,
|
|
542
|
-
id: number | string,
|
|
543
|
-
loggedInUser: any,
|
|
544
|
-
): Promise<any> {
|
|
545
|
-
const organizationId = loggedInUser.organization_id;
|
|
546
|
-
|
|
547
|
-
const tableName = await this.getTableName(entityType, organizationId);
|
|
548
|
-
const validAttributes = await this.getAttributeCodes(
|
|
549
|
-
entityType,
|
|
550
|
-
organizationId,
|
|
551
|
-
);
|
|
552
|
-
|
|
553
|
-
const columns = validAttributes
|
|
554
|
-
.map((attr) => `\`${attr.attribute_key}\``)
|
|
555
|
-
.join(', ');
|
|
556
|
-
const selectQuery = `SELECT ${columns} FROM \`${tableName}\` WHERE id = ?`;
|
|
557
|
-
|
|
558
|
-
const result = await this.dataSource.query(selectQuery, [id]);
|
|
559
|
-
if (!result.length) return null;
|
|
560
|
-
|
|
561
|
-
const row = result[0];
|
|
562
|
-
|
|
563
|
-
// Convert boolean columns (1/0) into true/false
|
|
564
|
-
for (const attr of validAttributes) {
|
|
565
|
-
if (
|
|
566
|
-
attr.db_datatype == 'boolean' &&
|
|
567
|
-
row[attr.attribute_key] !== undefined
|
|
568
|
-
) {
|
|
569
|
-
row[attr.attribute_key] = row[attr.attribute_key] == 1 ? true : false;
|
|
570
|
-
} else if (
|
|
571
|
-
attr.element_type == 'upload' &&
|
|
572
|
-
row[attr.attribute_key] !== undefined
|
|
573
|
-
) {
|
|
574
|
-
// fetch media data
|
|
575
|
-
// console.log(
|
|
576
|
-
// 'Fetching media for',
|
|
577
|
-
// attr.attribute_key,
|
|
578
|
-
// row[attr.attribute_key],
|
|
579
|
-
// );
|
|
580
|
-
|
|
581
|
-
row[attr.attribute_key] =
|
|
582
|
-
row[attr.attribute_key] != null
|
|
583
|
-
? await this.mediaDataService.getMediaDownloadUrl(
|
|
584
|
-
Number(row[attr.attribute_key]),
|
|
585
|
-
loggedInUser,
|
|
586
|
-
)
|
|
587
|
-
: null;
|
|
588
|
-
|
|
589
|
-
// console.log('Fetched media:', row[attr.attribute_key]);
|
|
590
|
-
}
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
return row;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
// -----------------------------
|
|
597
|
-
private async getTableName(
|
|
598
|
-
entityType: string,
|
|
599
|
-
organizationId: string,
|
|
600
|
-
): Promise<string> {
|
|
601
|
-
const result = await this.dataSource.query(
|
|
602
|
-
`SELECT db_table_name FROM cr_entity_master WHERE organization_id = ? AND mapped_entity_type = ?`,
|
|
603
|
-
[organizationId, entityType],
|
|
604
|
-
);
|
|
605
|
-
|
|
606
|
-
if (!result.length) {
|
|
607
|
-
console.log(`Entity type '${entityType}' not found in cr_entity_master`);
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
return result[0].db_table_name;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
private async getAttributeCodes(
|
|
614
|
-
entityType: string,
|
|
615
|
-
organizationId: string,
|
|
616
|
-
): Promise<
|
|
617
|
-
{
|
|
618
|
-
attribute_key: string;
|
|
619
|
-
db_datatype: string;
|
|
620
|
-
element_type: string;
|
|
621
|
-
is_hidden?: boolean;
|
|
622
|
-
}[]
|
|
623
|
-
> {
|
|
624
|
-
const result = await this.dataSource.query(
|
|
625
|
-
`SELECT attribute_key,
|
|
626
|
-
MAX(db_datatype) AS db_datatype,
|
|
627
|
-
MAX(element_type) AS element_type,
|
|
628
|
-
MAX(is_hidden) AS is_hidden
|
|
629
|
-
FROM cr_entity_attribute
|
|
630
|
-
WHERE mapped_entity_type = ? AND organization_id = ?
|
|
631
|
-
and (is_hidden IS NULL OR is_hidden = 0) -- Exclude hidden attributes
|
|
632
|
-
GROUP BY attribute_key`,
|
|
633
|
-
[entityType, organizationId],
|
|
634
|
-
);
|
|
635
|
-
|
|
636
|
-
if (!result.length) {
|
|
637
|
-
console.log(
|
|
638
|
-
`No attributes found for entity '${entityType}' and org '${organizationId}'`,
|
|
639
|
-
);
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
return result.map((row: any) => ({
|
|
643
|
-
attribute_key: row.attribute_key,
|
|
644
|
-
db_datatype: row.db_datatype,
|
|
645
|
-
element_type: row.element_type,
|
|
646
|
-
is_hidden: row.is_hidden,
|
|
647
|
-
}));
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
private async deleteEntity(
|
|
651
|
-
entityType: string,
|
|
652
|
-
id: number | string,
|
|
653
|
-
loggedInUser: any,
|
|
654
|
-
): Promise<any> {
|
|
655
|
-
const organizationId = loggedInUser.organization_id;
|
|
656
|
-
|
|
657
|
-
const tableName = await this.getTableName(entityType, organizationId);
|
|
658
|
-
|
|
659
|
-
const deleteQuery = `DELETE FROM \`${tableName}\` WHERE id = ?`;
|
|
660
|
-
const result = await this.dataSource.query(deleteQuery, [id]);
|
|
661
|
-
return result;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
// -----------------------------
|
|
665
|
-
|
|
666
|
-
async getEntitiesDropdownList(
|
|
667
|
-
loggedInUser: any,
|
|
668
|
-
appcode?: string,
|
|
669
|
-
): Promise<any> {
|
|
670
|
-
const organizationId = loggedInUser.organization_id;
|
|
671
|
-
|
|
672
|
-
let query = `SELECT name as label,mapped_entity_type as value FROM cr_entity_master WHERE organization_id = ?`;
|
|
673
|
-
const params = [organizationId];
|
|
674
|
-
|
|
675
|
-
if (appcode) {
|
|
676
|
-
query += ` AND appcode = ?`;
|
|
677
|
-
params.push(appcode);
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
const dropdown = await this.dataSource.query(query, params);
|
|
681
|
-
return dropdown;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
async getCode(entityType: string, loggedInUser: any): Promise<string> {
|
|
685
|
-
const organizationId = loggedInUser.organization_id;
|
|
686
|
-
|
|
687
|
-
// 1. Get db_table_name from entity master
|
|
688
|
-
const result = await this.dataSource.query(
|
|
689
|
-
`SELECT db_table_name
|
|
690
|
-
FROM cr_entity_master
|
|
691
|
-
WHERE mapped_entity_type = ? AND organization_id = ?`,
|
|
692
|
-
[entityType, organizationId],
|
|
693
|
-
);
|
|
694
|
-
|
|
695
|
-
if (!result.length) {
|
|
696
|
-
throw new Error(
|
|
697
|
-
`Entity type '${entityType}' not found in cr_entity_master for org '${organizationId}'`,
|
|
698
|
-
);
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
const tableName = result[0].db_table_name;
|
|
702
|
-
|
|
703
|
-
// 2. Get current max sequence number from that table
|
|
704
|
-
const seqResult = await this.dataSource.query(
|
|
705
|
-
`SELECT MAX(CAST(SUBSTRING(code, LENGTH(entity_type) + 1) AS UNSIGNED)) AS max_seq_no
|
|
706
|
-
FROM \`${tableName}\`
|
|
707
|
-
WHERE entity_type = ?`,
|
|
708
|
-
[entityType],
|
|
709
|
-
);
|
|
710
|
-
|
|
711
|
-
let maxSeqNo = seqResult?.[0]?.max_seq_no
|
|
712
|
-
? Number(seqResult[0].max_seq_no)
|
|
713
|
-
: 0;
|
|
714
|
-
|
|
715
|
-
maxSeqNo += 1;
|
|
716
|
-
|
|
717
|
-
// 3. Return generated code
|
|
718
|
-
return `${entityType}${maxSeqNo}`;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
async getResolvedEntity(
|
|
722
|
-
id: number,
|
|
723
|
-
entity: string,
|
|
724
|
-
loggedInUser: UserData,
|
|
725
|
-
): Promise<any> {
|
|
726
|
-
const leadData = await this.getEntityWithRelation(entity, id, loggedInUser);
|
|
727
|
-
|
|
728
|
-
const { mappedEntities, ...data } = leadData as any;
|
|
729
|
-
|
|
730
|
-
const resolvedData = await this.resolverService.getResolvedData(
|
|
731
|
-
loggedInUser,
|
|
732
|
-
data,
|
|
733
|
-
entity,
|
|
734
|
-
);
|
|
735
|
-
|
|
736
|
-
if (mappedEntities) {
|
|
737
|
-
resolvedData.mappedEntities = {};
|
|
738
|
-
for (const [entityType, entities] of Object.entries(mappedEntities)) {
|
|
739
|
-
if (Array.isArray(entities)) {
|
|
740
|
-
resolvedData.mappedEntities[entityType] = [];
|
|
741
|
-
for (const item of entities) {
|
|
742
|
-
const resolvedItem = await this.resolverService.getResolvedData(
|
|
743
|
-
loggedInUser,
|
|
744
|
-
item,
|
|
745
|
-
entityType,
|
|
746
|
-
);
|
|
747
|
-
resolvedData.mappedEntities[entityType].push(resolvedItem);
|
|
748
|
-
}
|
|
749
|
-
} else {
|
|
750
|
-
resolvedData.mappedEntities[entityType] =
|
|
751
|
-
await this.resolverService.getResolvedData(
|
|
752
|
-
loggedInUser,
|
|
753
|
-
entities,
|
|
754
|
-
entityType,
|
|
755
|
-
);
|
|
756
|
-
}
|
|
757
|
-
}
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
return resolvedData;
|
|
761
|
-
}
|
|
762
|
-
}
|
|
1
|
+
import { level } from 'winston';
|
|
2
|
+
import { Injectable } from '@nestjs/common';
|
|
3
|
+
import {
|
|
4
|
+
ENTITYTYPE_ENTITYMASTER,
|
|
5
|
+
STATUS_ACTIVE,
|
|
6
|
+
} from 'src/constant/global.constant';
|
|
7
|
+
import { DataSource } from 'typeorm';
|
|
8
|
+
import { UserData } from 'src/module/user/entity/user.entity';
|
|
9
|
+
import { MediaDataService } from './media-data.service';
|
|
10
|
+
import { ResolverService } from './resolver.service';
|
|
11
|
+
|
|
12
|
+
@Injectable()
|
|
13
|
+
export class EntityDynamicService {
|
|
14
|
+
constructor(
|
|
15
|
+
private readonly dataSource: DataSource,
|
|
16
|
+
private readonly mediaDataService: MediaDataService,
|
|
17
|
+
private readonly resolverService: ResolverService,
|
|
18
|
+
) {}
|
|
19
|
+
|
|
20
|
+
// -----------------------------
|
|
21
|
+
async createEntity(
|
|
22
|
+
entityType: string,
|
|
23
|
+
entityData: Record<string, any>,
|
|
24
|
+
loggedInUser: any,
|
|
25
|
+
mainID?: number,
|
|
26
|
+
): Promise<any> {
|
|
27
|
+
const organizationId = loggedInUser.organization_id;
|
|
28
|
+
|
|
29
|
+
const tableName = await this.getTableName(entityType, organizationId);
|
|
30
|
+
const validAttributes = await this.getAttributeCodes(
|
|
31
|
+
entityType,
|
|
32
|
+
organizationId,
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
const statusList = await this.dataSource.query(
|
|
36
|
+
`SELECT id FROM cr_list_master_items WHERE code = ? AND organization_id = ?`,
|
|
37
|
+
[STATUS_ACTIVE, loggedInUser?.organization_id || 0],
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
entityData.created_date = new Date();
|
|
41
|
+
if (loggedInUser) {
|
|
42
|
+
entityData.created_by = loggedInUser.id;
|
|
43
|
+
if (!entityData.organization_id)
|
|
44
|
+
entityData.organization_id = loggedInUser.organization_id;
|
|
45
|
+
if (!entityData.enterprise_id)
|
|
46
|
+
entityData.enterprise_id = loggedInUser.enterprise_id;
|
|
47
|
+
if (!entityData.level_type)
|
|
48
|
+
entityData.level_type = loggedInUser.level_type;
|
|
49
|
+
if (!entityData.level_id) entityData.level_id = loggedInUser.level_id;
|
|
50
|
+
if (!entityData.status) entityData.status = statusList[0].id;
|
|
51
|
+
if (!entityData.entity_type) entityData.entity_type = entityType;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
if (!entityData.code && loggedInUser) {
|
|
55
|
+
const result = await this.dataSource.query(
|
|
56
|
+
`SELECT MAX(CAST(SUBSTRING(code, LENGTH(entity_type) + 1) AS UNSIGNED)) AS max_seq_no
|
|
57
|
+
FROM ${tableName}
|
|
58
|
+
WHERE entity_type = ?`,
|
|
59
|
+
[entityData.entity_type],
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
// result will be like [ { max_seq_no: 12 } ]
|
|
63
|
+
let maxSeqNo = result?.[0]?.max_seq_no ? Number(result[0].max_seq_no) : 0;
|
|
64
|
+
|
|
65
|
+
maxSeqNo += 1;
|
|
66
|
+
entityData.code = `${entityData.entity_type}${maxSeqNo}`;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Set parent_id if mainID is provided
|
|
70
|
+
if (mainID) {
|
|
71
|
+
entityData.parent_id = mainID;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
const bypassColumn = [
|
|
75
|
+
{
|
|
76
|
+
attribute_key: 'created_date',
|
|
77
|
+
db_datatype: 'datetime',
|
|
78
|
+
element_type: 'date',
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
attribute_key: 'created_by',
|
|
82
|
+
db_datatype: 'int',
|
|
83
|
+
element_type: 'number',
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
attribute_key: 'organization_id',
|
|
87
|
+
db_datatype: 'datetime',
|
|
88
|
+
element_type: 'date',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
attribute_key: 'enterprise_id',
|
|
92
|
+
db_datatype: 'int',
|
|
93
|
+
element_type: 'number',
|
|
94
|
+
},
|
|
95
|
+
{ attribute_key: 'level_type', db_datatype: 'int', element_type: 'text' },
|
|
96
|
+
{ attribute_key: 'level_id', db_datatype: 'int', element_type: 'number' },
|
|
97
|
+
{ attribute_key: 'status', db_datatype: 'varchar', element_type: 'text' },
|
|
98
|
+
{
|
|
99
|
+
attribute_key: 'entity_type',
|
|
100
|
+
db_datatype: 'varchar',
|
|
101
|
+
element_type: 'text',
|
|
102
|
+
},
|
|
103
|
+
{ attribute_key: 'code', db_datatype: 'varchar', element_type: 'text' },
|
|
104
|
+
{
|
|
105
|
+
attribute_key: 'parent_id',
|
|
106
|
+
db_datatype: 'int',
|
|
107
|
+
element_type: 'number',
|
|
108
|
+
},
|
|
109
|
+
];
|
|
110
|
+
|
|
111
|
+
// Only push bypassColumn attributes that don't already exist in validAttributes
|
|
112
|
+
const existingAttributeKeys = validAttributes.map(
|
|
113
|
+
(attr) => attr.attribute_key,
|
|
114
|
+
);
|
|
115
|
+
const newBypassColumns = bypassColumn.filter(
|
|
116
|
+
(bypass) => !existingAttributeKeys.includes(bypass.attribute_key),
|
|
117
|
+
);
|
|
118
|
+
validAttributes.push(...newBypassColumns);
|
|
119
|
+
|
|
120
|
+
const columns: string[] = [];
|
|
121
|
+
const values: any[] = [];
|
|
122
|
+
|
|
123
|
+
validAttributes.forEach((attr) => {
|
|
124
|
+
columns.push(attr.attribute_key);
|
|
125
|
+
values.push(
|
|
126
|
+
attr.attribute_key in entityData
|
|
127
|
+
? entityData[attr.attribute_key]
|
|
128
|
+
: null,
|
|
129
|
+
);
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
const placeholders = columns.map(() => '?').join(', ');
|
|
133
|
+
const escapedColumns = columns.map((col) => `\`${col}\``).join(', ');
|
|
134
|
+
const insertQuery = `INSERT INTO \`${tableName}\` (${escapedColumns}) VALUES (${placeholders})`;
|
|
135
|
+
|
|
136
|
+
const result = await this.dataSource.query(insertQuery, values);
|
|
137
|
+
return result;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// ----------------------------- get entity with relations
|
|
141
|
+
|
|
142
|
+
// ----------------------------- create entity with relations
|
|
143
|
+
async createEntityWithRelation(
|
|
144
|
+
entityType: string,
|
|
145
|
+
data: Record<string, any>,
|
|
146
|
+
loggedInUser: any,
|
|
147
|
+
): Promise<any> {
|
|
148
|
+
const organizationId = loggedInUser.organization_id;
|
|
149
|
+
|
|
150
|
+
const getRelation = await this.dataSource.query(
|
|
151
|
+
`SELECT * FROM cr_entity_relation WHERE organization_id = ? AND source_entity_type = ?`,
|
|
152
|
+
[organizationId, entityType],
|
|
153
|
+
);
|
|
154
|
+
|
|
155
|
+
const { mappedEntities, ...mainData } = data;
|
|
156
|
+
|
|
157
|
+
// create main entity
|
|
158
|
+
const createdEntityData = await this.createEntity(
|
|
159
|
+
entityType,
|
|
160
|
+
mainData,
|
|
161
|
+
loggedInUser,
|
|
162
|
+
);
|
|
163
|
+
const mainID = createdEntityData.insertId || createdEntityData.id;
|
|
164
|
+
|
|
165
|
+
if (mappedEntities && getRelation.length > 0) {
|
|
166
|
+
for (const relation of getRelation) {
|
|
167
|
+
const targetEntityType = relation.target_entity_type;
|
|
168
|
+
const relationType = relation.relation_type;
|
|
169
|
+
const relationId = relation.relation_id;
|
|
170
|
+
|
|
171
|
+
if (!mappedEntities[targetEntityType]) continue;
|
|
172
|
+
|
|
173
|
+
// normalize: always array
|
|
174
|
+
const entityDataArray = Array.isArray(mappedEntities[targetEntityType])
|
|
175
|
+
? mappedEntities[targetEntityType]
|
|
176
|
+
: [mappedEntities[targetEntityType]];
|
|
177
|
+
|
|
178
|
+
for (const item of entityDataArray) {
|
|
179
|
+
const itemWithRef = {
|
|
180
|
+
...item,
|
|
181
|
+
entity_type: targetEntityType,
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
const createdRelatedEntity = await this.createEntity(
|
|
185
|
+
targetEntityType,
|
|
186
|
+
itemWithRef,
|
|
187
|
+
loggedInUser,
|
|
188
|
+
mainID, // this will pass for parent_id
|
|
189
|
+
);
|
|
190
|
+
|
|
191
|
+
await this.dataSource.query(
|
|
192
|
+
`INSERT INTO cr_entity_relation_data (organization_id, source_entity_id, source_entity_type, target_entity_id, target_entity_type, relation_type) VALUES (?, ?, ?, ?, ?,?)`,
|
|
193
|
+
[
|
|
194
|
+
organizationId,
|
|
195
|
+
mainID,
|
|
196
|
+
entityType,
|
|
197
|
+
createdRelatedEntity.insertId,
|
|
198
|
+
targetEntityType,
|
|
199
|
+
relationType,
|
|
200
|
+
],
|
|
201
|
+
);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
return {
|
|
207
|
+
mainEntity: {
|
|
208
|
+
id: mainID,
|
|
209
|
+
entityType,
|
|
210
|
+
data: createdEntityData,
|
|
211
|
+
},
|
|
212
|
+
};
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// ----------------------------- get entity with relations
|
|
216
|
+
async getEntityWithRelation(
|
|
217
|
+
entityType: string,
|
|
218
|
+
id: number | string,
|
|
219
|
+
loggedInUser: any,
|
|
220
|
+
): Promise<any> {
|
|
221
|
+
const mainEntity = await this.getEntity(entityType, id, loggedInUser);
|
|
222
|
+
|
|
223
|
+
const relatedEntities = await this.dataSource.query(
|
|
224
|
+
`SELECT * FROM cr_entity_relation_data WHERE source_entity_id = ? AND target_entity_type IN (
|
|
225
|
+
SELECT target_entity_type FROM cr_entity_relation WHERE source_entity_type = ?)`,
|
|
226
|
+
[id, entityType],
|
|
227
|
+
);
|
|
228
|
+
|
|
229
|
+
// Format response to match create entity structure
|
|
230
|
+
const response: any = {
|
|
231
|
+
entity_type: entityType,
|
|
232
|
+
...mainEntity,
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
if (relatedEntities.length > 0) {
|
|
236
|
+
response.mappedEntities = await this.formatMappedEntities(
|
|
237
|
+
relatedEntities,
|
|
238
|
+
loggedInUser,
|
|
239
|
+
);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
return response;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
// ----------------------------- formatMappedEntities
|
|
246
|
+
async formatMappedEntities(
|
|
247
|
+
relatedEntities: any[],
|
|
248
|
+
loggedInUser: any,
|
|
249
|
+
): Promise<any> {
|
|
250
|
+
const mappedEntities: any = {};
|
|
251
|
+
|
|
252
|
+
for (const relation of relatedEntities) {
|
|
253
|
+
const targetEntityType = relation.target_entity_type;
|
|
254
|
+
const targetEntityId = relation.target_entity_id;
|
|
255
|
+
|
|
256
|
+
const entityData = await this.getEntity(
|
|
257
|
+
targetEntityType,
|
|
258
|
+
targetEntityId,
|
|
259
|
+
loggedInUser,
|
|
260
|
+
);
|
|
261
|
+
|
|
262
|
+
if (!mappedEntities[targetEntityType]) {
|
|
263
|
+
mappedEntities[targetEntityType] = [];
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
mappedEntities[targetEntityType].push(entityData);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
return mappedEntities;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// ----------------------------- update with relations
|
|
273
|
+
|
|
274
|
+
// ----------------------------- update entity with relations
|
|
275
|
+
async updateEntityWithRelations(
|
|
276
|
+
entityType: string,
|
|
277
|
+
id: number | string,
|
|
278
|
+
data: Record<string, any>,
|
|
279
|
+
loggedInUser: any,
|
|
280
|
+
): Promise<any> {
|
|
281
|
+
const organizationId = loggedInUser.organization_id;
|
|
282
|
+
const { mappedEntities, ...mainData } = data;
|
|
283
|
+
|
|
284
|
+
// Update main entity
|
|
285
|
+
const updatedMainEntity = await this.updateEntity(
|
|
286
|
+
entityType,
|
|
287
|
+
id,
|
|
288
|
+
mainData,
|
|
289
|
+
loggedInUser,
|
|
290
|
+
);
|
|
291
|
+
|
|
292
|
+
const updatedRelations: Record<string, any> = {};
|
|
293
|
+
|
|
294
|
+
if (mappedEntities) {
|
|
295
|
+
const getRelationDefs = await this.dataSource.query(
|
|
296
|
+
`SELECT * FROM cr_entity_relation WHERE organization_id = ? AND source_entity_type = ?`,
|
|
297
|
+
[organizationId, entityType],
|
|
298
|
+
);
|
|
299
|
+
|
|
300
|
+
for (const [targetEntityType, rawEntityData] of Object.entries(
|
|
301
|
+
mappedEntities,
|
|
302
|
+
)) {
|
|
303
|
+
const relationDef = getRelationDefs.find(
|
|
304
|
+
(r) => r.target_entity_type === targetEntityType,
|
|
305
|
+
);
|
|
306
|
+
if (!relationDef) continue;
|
|
307
|
+
|
|
308
|
+
const relationType = relationDef.relation_type;
|
|
309
|
+
const entityArray = Array.isArray(rawEntityData)
|
|
310
|
+
? rawEntityData
|
|
311
|
+
: [rawEntityData];
|
|
312
|
+
|
|
313
|
+
// Delete previous relations and related entities
|
|
314
|
+
const existingRelationsForType = await this.dataSource.query(
|
|
315
|
+
`SELECT * FROM cr_entity_relation_data WHERE source_entity_type = ? AND source_entity_id = ? AND target_entity_type = ?`,
|
|
316
|
+
[entityType, id, targetEntityType],
|
|
317
|
+
);
|
|
318
|
+
|
|
319
|
+
for (const existingRel of existingRelationsForType) {
|
|
320
|
+
// Delete the related entity
|
|
321
|
+
await this.deleteEntity(
|
|
322
|
+
existingRel.target_entity_type,
|
|
323
|
+
existingRel.target_entity_id,
|
|
324
|
+
loggedInUser,
|
|
325
|
+
);
|
|
326
|
+
|
|
327
|
+
// Delete the relation row
|
|
328
|
+
await this.dataSource.query(
|
|
329
|
+
`DELETE FROM cr_entity_relation_data WHERE id = ?`,
|
|
330
|
+
[existingRel.id],
|
|
331
|
+
);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
// Create/update new entities & relations
|
|
335
|
+
const updatedEntities: any[] = [];
|
|
336
|
+
|
|
337
|
+
for (const item of entityArray) {
|
|
338
|
+
let targetEntityId;
|
|
339
|
+
let entityData;
|
|
340
|
+
|
|
341
|
+
if (item.id) {
|
|
342
|
+
// Update existing entity
|
|
343
|
+
await this.updateEntity(
|
|
344
|
+
targetEntityType,
|
|
345
|
+
item.id,
|
|
346
|
+
item,
|
|
347
|
+
loggedInUser,
|
|
348
|
+
Number(id), // pass main entity id as parent_id
|
|
349
|
+
);
|
|
350
|
+
targetEntityId = item.id;
|
|
351
|
+
entityData = await this.getEntity(
|
|
352
|
+
targetEntityType,
|
|
353
|
+
targetEntityId,
|
|
354
|
+
loggedInUser,
|
|
355
|
+
);
|
|
356
|
+
} else {
|
|
357
|
+
// Create new entity
|
|
358
|
+
const createdEntity = await this.createEntity(
|
|
359
|
+
targetEntityType,
|
|
360
|
+
item,
|
|
361
|
+
loggedInUser,
|
|
362
|
+
Number(id), // pass main entity id as parent_id
|
|
363
|
+
);
|
|
364
|
+
targetEntityId = createdEntity.insertId || createdEntity.id;
|
|
365
|
+
entityData = await this.getEntity(
|
|
366
|
+
targetEntityType,
|
|
367
|
+
targetEntityId,
|
|
368
|
+
loggedInUser,
|
|
369
|
+
);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
// Insert relation
|
|
373
|
+
await this.dataSource.query(
|
|
374
|
+
`INSERT INTO cr_entity_relation_data
|
|
375
|
+
(organization_id, source_entity_id, source_entity_type, target_entity_id, target_entity_type, relation_type)
|
|
376
|
+
VALUES (?, ?, ?, ?, ?,?)`,
|
|
377
|
+
[
|
|
378
|
+
organizationId,
|
|
379
|
+
id,
|
|
380
|
+
entityType,
|
|
381
|
+
targetEntityId,
|
|
382
|
+
targetEntityType,
|
|
383
|
+
relationType,
|
|
384
|
+
],
|
|
385
|
+
);
|
|
386
|
+
|
|
387
|
+
if (relationType === 'ONE_TO_MANY') {
|
|
388
|
+
updatedEntities.push(entityData);
|
|
389
|
+
} else if (
|
|
390
|
+
relationType === 'ONE_TO_ONE' ||
|
|
391
|
+
relationType === 'MANY_TO_ONE'
|
|
392
|
+
) {
|
|
393
|
+
updatedEntities[0] = entityData; // single object
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
// Assign to response mappedEntities
|
|
398
|
+
updatedRelations[targetEntityType] =
|
|
399
|
+
relationType === 'ONE_TO_MANY' ? updatedEntities : updatedEntities[0];
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
return {
|
|
404
|
+
mainEntity: {
|
|
405
|
+
id,
|
|
406
|
+
entityType,
|
|
407
|
+
data: updatedMainEntity,
|
|
408
|
+
},
|
|
409
|
+
relatedEntities: updatedRelations,
|
|
410
|
+
};
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
// -----------------------------
|
|
414
|
+
async updateEntity(
|
|
415
|
+
entityType: string,
|
|
416
|
+
id: number | string,
|
|
417
|
+
entityData: Record<string, any>,
|
|
418
|
+
loggedInUser: any,
|
|
419
|
+
mainID?: number,
|
|
420
|
+
): Promise<any> {
|
|
421
|
+
const organizationId = loggedInUser.organization_id;
|
|
422
|
+
|
|
423
|
+
const tableName = await this.getTableName(entityType, organizationId);
|
|
424
|
+
const validAttributes = await this.getAttributeCodes(
|
|
425
|
+
entityType,
|
|
426
|
+
organizationId,
|
|
427
|
+
);
|
|
428
|
+
|
|
429
|
+
const updates: string[] = [];
|
|
430
|
+
const values: any[] = [];
|
|
431
|
+
|
|
432
|
+
entityData.modified_date = new Date();
|
|
433
|
+
if (loggedInUser) {
|
|
434
|
+
entityData.modified_by = loggedInUser.id;
|
|
435
|
+
if (!entityData.organization_id && entityData.entity_type !== 'ORG')
|
|
436
|
+
entityData.organization_id = loggedInUser.organization_id;
|
|
437
|
+
if (!entityData.enterprise_id)
|
|
438
|
+
entityData.enterprise_id = loggedInUser.enterprise_id;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
if (!entityData.code && loggedInUser) {
|
|
442
|
+
const result = await this.dataSource.query(
|
|
443
|
+
`SELECT MAX(CAST(SUBSTRING(code, LENGTH(entity_type) + 1) AS UNSIGNED)) AS max_seq_no
|
|
444
|
+
FROM ${tableName}
|
|
445
|
+
WHERE entity_type = ?`,
|
|
446
|
+
[entityData.entity_type],
|
|
447
|
+
);
|
|
448
|
+
|
|
449
|
+
// result will be like [ { max_seq_no: 12 } ]
|
|
450
|
+
let maxSeqNo = result?.[0]?.max_seq_no ? Number(result[0].max_seq_no) : 0;
|
|
451
|
+
|
|
452
|
+
maxSeqNo += 1;
|
|
453
|
+
entityData.code = `${entityData.entity_type}${maxSeqNo}`;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
// Set parent_id if mainID is provided
|
|
457
|
+
if (mainID) {
|
|
458
|
+
entityData.parent_id = mainID;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
const bypassColumn = [
|
|
462
|
+
{
|
|
463
|
+
attribute_key: 'created_date',
|
|
464
|
+
db_datatype: 'datetime',
|
|
465
|
+
element_type: 'date',
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
attribute_key: 'created_by',
|
|
469
|
+
db_datatype: 'int',
|
|
470
|
+
element_type: 'number',
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
attribute_key: 'modified_date',
|
|
474
|
+
db_datatype: 'datetime',
|
|
475
|
+
element_type: 'date',
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
attribute_key: 'modified_by',
|
|
479
|
+
db_datatype: 'int',
|
|
480
|
+
element_type: 'number',
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
attribute_key: 'organization_id',
|
|
484
|
+
db_datatype: 'int',
|
|
485
|
+
element_type: 'number',
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
attribute_key: 'enterprise_id',
|
|
489
|
+
db_datatype: 'int',
|
|
490
|
+
element_type: 'number',
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
attribute_key: 'level_type',
|
|
494
|
+
db_datatype: 'varchar',
|
|
495
|
+
element_type: 'text',
|
|
496
|
+
},
|
|
497
|
+
{ attribute_key: 'level_id', db_datatype: 'int', element_type: 'number' },
|
|
498
|
+
{ attribute_key: 'status', db_datatype: 'varchar', element_type: 'text' },
|
|
499
|
+
{
|
|
500
|
+
attribute_key: 'entity_type',
|
|
501
|
+
db_datatype: 'varchar',
|
|
502
|
+
element_type: 'text',
|
|
503
|
+
},
|
|
504
|
+
{ attribute_key: 'code', db_datatype: 'varchar', element_type: 'text' },
|
|
505
|
+
{
|
|
506
|
+
attribute_key: 'parent_id',
|
|
507
|
+
db_datatype: 'int',
|
|
508
|
+
element_type: 'number',
|
|
509
|
+
},
|
|
510
|
+
];
|
|
511
|
+
|
|
512
|
+
// Only push bypassColumn attributes that don't already exist in validAttributes
|
|
513
|
+
const existingAttributeKeys = validAttributes.map(
|
|
514
|
+
(attr) => attr.attribute_key,
|
|
515
|
+
);
|
|
516
|
+
const newBypassColumns = bypassColumn.filter(
|
|
517
|
+
(bypass) => !existingAttributeKeys.includes(bypass.attribute_key),
|
|
518
|
+
);
|
|
519
|
+
validAttributes.push(...newBypassColumns);
|
|
520
|
+
|
|
521
|
+
for (const key of Object.keys(entityData)) {
|
|
522
|
+
if (validAttributes.some((attr) => attr.attribute_key === key)) {
|
|
523
|
+
updates.push(`\`${key}\` = ?`);
|
|
524
|
+
values.push(entityData[key]);
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
if (updates.length === 0) {
|
|
529
|
+
throw new Error('No valid attributes to update.');
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
const updateQuery = `UPDATE \`${tableName}\` SET ${updates.join(', ')} WHERE id = ?`;
|
|
533
|
+
values.push(id); // Add id for WHERE clause
|
|
534
|
+
|
|
535
|
+
const result = await this.dataSource.query(updateQuery, values);
|
|
536
|
+
return result;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
// -----------------------------
|
|
540
|
+
async getEntity(
|
|
541
|
+
entityType: string,
|
|
542
|
+
id: number | string,
|
|
543
|
+
loggedInUser: any,
|
|
544
|
+
): Promise<any> {
|
|
545
|
+
const organizationId = loggedInUser.organization_id;
|
|
546
|
+
|
|
547
|
+
const tableName = await this.getTableName(entityType, organizationId);
|
|
548
|
+
const validAttributes = await this.getAttributeCodes(
|
|
549
|
+
entityType,
|
|
550
|
+
organizationId,
|
|
551
|
+
);
|
|
552
|
+
|
|
553
|
+
const columns = validAttributes
|
|
554
|
+
.map((attr) => `\`${attr.attribute_key}\``)
|
|
555
|
+
.join(', ');
|
|
556
|
+
const selectQuery = `SELECT ${columns} FROM \`${tableName}\` WHERE id = ?`;
|
|
557
|
+
|
|
558
|
+
const result = await this.dataSource.query(selectQuery, [id]);
|
|
559
|
+
if (!result.length) return null;
|
|
560
|
+
|
|
561
|
+
const row = result[0];
|
|
562
|
+
|
|
563
|
+
// Convert boolean columns (1/0) into true/false
|
|
564
|
+
for (const attr of validAttributes) {
|
|
565
|
+
if (
|
|
566
|
+
attr.db_datatype == 'boolean' &&
|
|
567
|
+
row[attr.attribute_key] !== undefined
|
|
568
|
+
) {
|
|
569
|
+
row[attr.attribute_key] = row[attr.attribute_key] == 1 ? true : false;
|
|
570
|
+
} else if (
|
|
571
|
+
attr.element_type == 'upload' &&
|
|
572
|
+
row[attr.attribute_key] !== undefined
|
|
573
|
+
) {
|
|
574
|
+
// fetch media data
|
|
575
|
+
// console.log(
|
|
576
|
+
// 'Fetching media for',
|
|
577
|
+
// attr.attribute_key,
|
|
578
|
+
// row[attr.attribute_key],
|
|
579
|
+
// );
|
|
580
|
+
|
|
581
|
+
row[attr.attribute_key] =
|
|
582
|
+
row[attr.attribute_key] != null
|
|
583
|
+
? await this.mediaDataService.getMediaDownloadUrl(
|
|
584
|
+
Number(row[attr.attribute_key]),
|
|
585
|
+
loggedInUser,
|
|
586
|
+
)
|
|
587
|
+
: null;
|
|
588
|
+
|
|
589
|
+
// console.log('Fetched media:', row[attr.attribute_key]);
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
return row;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
// -----------------------------
|
|
597
|
+
private async getTableName(
|
|
598
|
+
entityType: string,
|
|
599
|
+
organizationId: string,
|
|
600
|
+
): Promise<string> {
|
|
601
|
+
const result = await this.dataSource.query(
|
|
602
|
+
`SELECT db_table_name FROM cr_entity_master WHERE organization_id = ? AND mapped_entity_type = ?`,
|
|
603
|
+
[organizationId, entityType],
|
|
604
|
+
);
|
|
605
|
+
|
|
606
|
+
if (!result.length) {
|
|
607
|
+
console.log(`Entity type '${entityType}' not found in cr_entity_master`);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
return result[0].db_table_name;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
private async getAttributeCodes(
|
|
614
|
+
entityType: string,
|
|
615
|
+
organizationId: string,
|
|
616
|
+
): Promise<
|
|
617
|
+
{
|
|
618
|
+
attribute_key: string;
|
|
619
|
+
db_datatype: string;
|
|
620
|
+
element_type: string;
|
|
621
|
+
is_hidden?: boolean;
|
|
622
|
+
}[]
|
|
623
|
+
> {
|
|
624
|
+
const result = await this.dataSource.query(
|
|
625
|
+
`SELECT attribute_key,
|
|
626
|
+
MAX(db_datatype) AS db_datatype,
|
|
627
|
+
MAX(element_type) AS element_type,
|
|
628
|
+
MAX(is_hidden) AS is_hidden
|
|
629
|
+
FROM cr_entity_attribute
|
|
630
|
+
WHERE mapped_entity_type = ? AND organization_id = ?
|
|
631
|
+
and (is_hidden IS NULL OR is_hidden = 0) -- Exclude hidden attributes
|
|
632
|
+
GROUP BY attribute_key`,
|
|
633
|
+
[entityType, organizationId],
|
|
634
|
+
);
|
|
635
|
+
|
|
636
|
+
if (!result.length) {
|
|
637
|
+
console.log(
|
|
638
|
+
`No attributes found for entity '${entityType}' and org '${organizationId}'`,
|
|
639
|
+
);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
return result.map((row: any) => ({
|
|
643
|
+
attribute_key: row.attribute_key,
|
|
644
|
+
db_datatype: row.db_datatype,
|
|
645
|
+
element_type: row.element_type,
|
|
646
|
+
is_hidden: row.is_hidden,
|
|
647
|
+
}));
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
private async deleteEntity(
|
|
651
|
+
entityType: string,
|
|
652
|
+
id: number | string,
|
|
653
|
+
loggedInUser: any,
|
|
654
|
+
): Promise<any> {
|
|
655
|
+
const organizationId = loggedInUser.organization_id;
|
|
656
|
+
|
|
657
|
+
const tableName = await this.getTableName(entityType, organizationId);
|
|
658
|
+
|
|
659
|
+
const deleteQuery = `DELETE FROM \`${tableName}\` WHERE id = ?`;
|
|
660
|
+
const result = await this.dataSource.query(deleteQuery, [id]);
|
|
661
|
+
return result;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
// -----------------------------
|
|
665
|
+
|
|
666
|
+
async getEntitiesDropdownList(
|
|
667
|
+
loggedInUser: any,
|
|
668
|
+
appcode?: string,
|
|
669
|
+
): Promise<any> {
|
|
670
|
+
const organizationId = loggedInUser.organization_id;
|
|
671
|
+
|
|
672
|
+
let query = `SELECT name as label,mapped_entity_type as value FROM cr_entity_master WHERE organization_id = ?`;
|
|
673
|
+
const params = [organizationId];
|
|
674
|
+
|
|
675
|
+
if (appcode) {
|
|
676
|
+
query += ` AND appcode = ?`;
|
|
677
|
+
params.push(appcode);
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
const dropdown = await this.dataSource.query(query, params);
|
|
681
|
+
return dropdown;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
async getCode(entityType: string, loggedInUser: any): Promise<string> {
|
|
685
|
+
const organizationId = loggedInUser.organization_id;
|
|
686
|
+
|
|
687
|
+
// 1. Get db_table_name from entity master
|
|
688
|
+
const result = await this.dataSource.query(
|
|
689
|
+
`SELECT db_table_name
|
|
690
|
+
FROM cr_entity_master
|
|
691
|
+
WHERE mapped_entity_type = ? AND organization_id = ?`,
|
|
692
|
+
[entityType, organizationId],
|
|
693
|
+
);
|
|
694
|
+
|
|
695
|
+
if (!result.length) {
|
|
696
|
+
throw new Error(
|
|
697
|
+
`Entity type '${entityType}' not found in cr_entity_master for org '${organizationId}'`,
|
|
698
|
+
);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
const tableName = result[0].db_table_name;
|
|
702
|
+
|
|
703
|
+
// 2. Get current max sequence number from that table
|
|
704
|
+
const seqResult = await this.dataSource.query(
|
|
705
|
+
`SELECT MAX(CAST(SUBSTRING(code, LENGTH(entity_type) + 1) AS UNSIGNED)) AS max_seq_no
|
|
706
|
+
FROM \`${tableName}\`
|
|
707
|
+
WHERE entity_type = ?`,
|
|
708
|
+
[entityType],
|
|
709
|
+
);
|
|
710
|
+
|
|
711
|
+
let maxSeqNo = seqResult?.[0]?.max_seq_no
|
|
712
|
+
? Number(seqResult[0].max_seq_no)
|
|
713
|
+
: 0;
|
|
714
|
+
|
|
715
|
+
maxSeqNo += 1;
|
|
716
|
+
|
|
717
|
+
// 3. Return generated code
|
|
718
|
+
return `${entityType}${maxSeqNo}`;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
async getResolvedEntity(
|
|
722
|
+
id: number,
|
|
723
|
+
entity: string,
|
|
724
|
+
loggedInUser: UserData,
|
|
725
|
+
): Promise<any> {
|
|
726
|
+
const leadData = await this.getEntityWithRelation(entity, id, loggedInUser);
|
|
727
|
+
|
|
728
|
+
const { mappedEntities, ...data } = leadData as any;
|
|
729
|
+
|
|
730
|
+
const resolvedData = await this.resolverService.getResolvedData(
|
|
731
|
+
loggedInUser,
|
|
732
|
+
data,
|
|
733
|
+
entity,
|
|
734
|
+
);
|
|
735
|
+
|
|
736
|
+
if (mappedEntities) {
|
|
737
|
+
resolvedData.mappedEntities = {};
|
|
738
|
+
for (const [entityType, entities] of Object.entries(mappedEntities)) {
|
|
739
|
+
if (Array.isArray(entities)) {
|
|
740
|
+
resolvedData.mappedEntities[entityType] = [];
|
|
741
|
+
for (const item of entities) {
|
|
742
|
+
const resolvedItem = await this.resolverService.getResolvedData(
|
|
743
|
+
loggedInUser,
|
|
744
|
+
item,
|
|
745
|
+
entityType,
|
|
746
|
+
);
|
|
747
|
+
resolvedData.mappedEntities[entityType].push(resolvedItem);
|
|
748
|
+
}
|
|
749
|
+
} else {
|
|
750
|
+
resolvedData.mappedEntities[entityType] =
|
|
751
|
+
await this.resolverService.getResolvedData(
|
|
752
|
+
loggedInUser,
|
|
753
|
+
entities,
|
|
754
|
+
entityType,
|
|
755
|
+
);
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
return resolvedData;
|
|
761
|
+
}
|
|
762
|
+
}
|