rez_core 4.0.121 → 4.0.123
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/.vscode/extensions.json +5 -0
- package/README.md +99 -99
- package/dist/config/config.module.js +2 -3
- package/dist/config/config.module.js.map +1 -1
- package/dist/config/database.config.d.ts +1 -1
- package/dist/config/database.config.js +12 -15
- package/dist/config/database.config.js.map +1 -1
- package/dist/core.module.d.ts +4 -0
- package/dist/core.module.js +79 -0
- package/dist/core.module.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -0
- package/dist/main.js +17 -10
- package/dist/main.js.map +1 -1
- package/dist/module/auth/auth.module.js +1 -0
- package/dist/module/auth/auth.module.js.map +1 -1
- package/dist/module/auth/guards/role.guard.js +3 -3
- package/dist/module/auth/services/auth.service.js +2 -2
- package/dist/module/enterprise/enterprise.module.js +7 -25
- package/dist/module/enterprise/enterprise.module.js.map +1 -1
- package/dist/module/enterprise/service/brand.service.d.ts +0 -4
- package/dist/module/enterprise/service/brand.service.js +1 -40
- package/dist/module/enterprise/service/brand.service.js.map +1 -1
- package/dist/module/enterprise/service/organization.service.d.ts +4 -6
- package/dist/module/enterprise/service/organization.service.js +5 -9
- package/dist/module/enterprise/service/organization.service.js.map +1 -1
- package/dist/module/filter/controller/filter.controller.js.map +1 -1
- package/dist/module/filter/dto/filter-request.dto.d.ts +1 -0
- package/dist/module/filter/repository/saved-filter.repository.js +4 -4
- package/dist/module/filter/service/filter-evaluator.service.js +3 -2
- package/dist/module/filter/service/filter-evaluator.service.js.map +1 -1
- package/dist/module/filter/service/filter.service.js +22 -22
- package/dist/module/integration/entity/integration-config.entity.js +3 -3
- package/dist/module/integration/entity/integration-config.entity.js.map +1 -1
- package/dist/module/integration/entity/user-integration.entity.js +3 -3
- package/dist/module/integration/entity/user-integration.entity.js.map +1 -1
- package/dist/module/integration/examples/usage.example.js +9 -9
- package/dist/module/integration/service/integration.service.js +1 -1
- package/dist/module/integration/service/wrapper.service.js +27 -27
- package/dist/module/integration/service/wrapper.service.js.map +1 -1
- package/dist/module/listmaster/repository/list-master-items.repository.js +1 -1
- package/dist/module/listmaster/repository/list-master-items.repository.js.map +1 -1
- package/dist/module/listmaster/service/list-master-item.service.js +2 -2
- package/dist/module/listmaster/service/list-master.service.js +2 -1
- package/dist/module/listmaster/service/list-master.service.js.map +1 -1
- package/dist/module/mapper/dto/field-mapper.dto.d.ts +0 -1
- package/dist/module/mapper/dto/field-mapper.dto.js.map +1 -1
- package/dist/module/mapper/entity/field-mapper.entity.js +1 -1
- package/dist/module/mapper/entity/field-mapper.entity.js.map +1 -1
- package/dist/module/mapper/service/field-mapper.service.js +4 -4
- package/dist/module/mapper/service/mapper.service.js +2 -2
- package/dist/module/meta/controller/media.controller.js +1 -1
- package/dist/module/meta/controller/media.controller.js.map +1 -1
- package/dist/module/meta/entity/entity-master.entity.js +1 -1
- package/dist/module/meta/entity/entity-master.entity.js.map +1 -1
- package/dist/module/meta/entity.module.js +0 -6
- package/dist/module/meta/entity.module.js.map +1 -1
- package/dist/module/meta/service/attribute-master.service.js +1 -1
- package/dist/module/meta/service/attribute-master.service.js.map +1 -1
- package/dist/module/meta/service/entity-dynamic.service.js +9 -9
- package/dist/module/meta/service/entity-list.service.js +3 -3
- package/dist/module/meta/service/entity-master.service.js +3 -3
- package/dist/module/meta/service/entity-relation.service.js +11 -11
- package/dist/module/meta/service/entity-service-impl.service.js +6 -4
- package/dist/module/meta/service/entity-service-impl.service.js.map +1 -1
- package/dist/module/meta/service/entity-table.service.js.map +1 -1
- package/dist/module/meta/service/entity-validation.service.js.map +1 -1
- package/dist/module/meta/service/resolver.service.js +3 -3
- package/dist/module/module/module.module.js.map +1 -1
- package/dist/module/module/repository/menu.repository.js +12 -12
- package/dist/module/module/repository/module-access.repository.js +0 -1
- package/dist/module/module/repository/module-access.repository.js.map +1 -1
- package/dist/module/module/service/module-access.service.js +7 -1
- package/dist/module/module/service/module-access.service.js.map +1 -1
- package/dist/module/notification/service/email.service.js +10 -5
- package/dist/module/notification/service/email.service.js.map +1 -1
- package/dist/module/notification/service/notification.service.js +9 -9
- package/dist/module/user/controller/login.controller.js +18 -18
- package/dist/module/user/service/role.service.js +4 -4
- package/dist/module/user/service/user-session.service.js +2 -2
- package/dist/module/user/service/user-session.service.js.map +1 -1
- package/dist/module/user/service/user.service.d.ts +4 -0
- package/dist/module/user/service/user.service.js +104 -0
- package/dist/module/user/service/user.service.js.map +1 -1
- package/dist/module/workflow/entity/comm-template.entity.js +1 -1
- package/dist/module/workflow/entity/comm-template.entity.js.map +1 -1
- package/dist/module/workflow/repository/action.repository.js +20 -20
- package/dist/module/workflow/repository/activity-log.repository.d.ts +2 -3
- package/dist/module/workflow/repository/activity-log.repository.js +2 -3
- package/dist/module/workflow/repository/activity-log.repository.js.map +1 -1
- package/dist/module/workflow/repository/comm-template.repository.js +6 -6
- package/dist/module/workflow/repository/form-master.repository.js +2 -2
- package/dist/module/workflow/repository/stage-group.repository.js +23 -23
- package/dist/module/workflow/repository/stage-movement.repository.js +15 -15
- package/dist/module/workflow/repository/stage.repository.js +8 -8
- package/dist/module/workflow/repository/task.repository.js +2 -0
- package/dist/module/workflow/repository/task.repository.js.map +1 -1
- package/dist/module/workflow/service/action-template-mapping.service.js +22 -22
- package/dist/module/workflow/service/action.service.js +7 -7
- package/dist/module/workflow/service/entity-modification.service.js +6 -6
- package/dist/module/workflow/service/stage-group.service.js +2 -2
- package/dist/module/workflow/service/stage.service.js +2 -2
- package/dist/module/workflow/service/task.service.js +28 -28
- package/dist/module/workflow/service/workflow-list-master.service.js +15 -15
- package/dist/module/workflow/service/workflow-meta.service.js +50 -38
- package/dist/module/workflow/service/workflow-meta.service.js.map +1 -1
- package/dist/module/workflow/service/workflow.service.js +2 -2
- package/dist/table.config.d.ts +40 -0
- package/dist/table.config.js +128 -0
- package/dist/table.config.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/service/reflection-helper.service.js +2 -2
- package/docs/modules/event-driven-integration-design.md +91 -91
- package/docs/modules/integration.md +250 -250
- package/eslint.config.mjs +34 -34
- package/nest-cli.json +14 -14
- package/package.json +119 -120
- package/src/app.controller.ts +12 -12
- package/src/app.module.ts +52 -52
- package/src/app.service.ts +8 -8
- package/src/config/config.module.ts +18 -17
- package/src/config/database.config.ts +23 -47
- 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 +278 -278
- 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 +1005 -1005
- 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 +2633 -2633
- package/src/module/integration/service/oauth.service.ts +224 -224
- package/src/module/integration/service/wrapper.service.ts +493 -493
- 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 +73 -73
- package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
- package/src/module/layout_preference/layout_preference.module.ts +22 -22
- package/src/module/layout_preference/repository/layout_preference.repository.ts +65 -65
- package/src/module/layout_preference/service/layout_preference.service.ts +191 -191
- package/src/module/lead/controller/lead.controller.ts +30 -30
- package/src/module/lead/lead.module.ts +14 -14
- package/src/module/lead/repository/lead.repository.ts +41 -41
- package/src/module/lead/service/lead.service.ts +54 -54
- package/src/module/listmaster/controller/list-master.controller.ts +230 -230
- package/src/module/listmaster/entity/list-master-items.entity.ts +43 -43
- package/src/module/listmaster/entity/list-master.entity.ts +33 -33
- package/src/module/listmaster/listmaster.module.ts +46 -46
- 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 +535 -535
- package/src/module/mapper/controller/field-mapper.controller.ts +76 -76
- package/src/module/mapper/controller/mapper.controller.ts +20 -20
- package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
- package/src/module/mapper/entity/field-lovs.entity.ts +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 +266 -266
- package/src/module/mapper/service/mapper.service.ts +79 -79
- 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 +392 -392
- package/src/module/meta/controller/entity.public.controller.ts +75 -75
- package/src/module/meta/controller/media.controller.ts +107 -107
- 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 +89 -89
- package/src/module/meta/entity/base-entity.entity.ts +75 -75
- package/src/module/meta/entity/entity-master.entity.ts +85 -85
- 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 +158 -158
- package/src/module/meta/repository/app-master.repository.ts +20 -20
- package/src/module/meta/repository/attribute-master.repository.ts +118 -118
- 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 +126 -126
- package/src/module/meta/service/common.service.ts +9 -9
- package/src/module/meta/service/entity-dynamic.service.ts +819 -819
- package/src/module/meta/service/entity-list.service.ts +205 -205
- package/src/module/meta/service/entity-master.service.ts +169 -169
- 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 +525 -525
- 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 +187 -187
- 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 +507 -507
- package/src/module/meta/service/populate-meta.service.ts +193 -193
- package/src/module/meta/service/preference.service.ts +16 -16
- package/src/module/meta/service/resolver.service.ts +267 -267
- package/src/module/meta/service/section-master.service.ts +104 -104
- package/src/module/meta/service/update-form-json.service.ts +22 -22
- package/src/module/meta/service/user-app-mapping.service.ts +17 -17
- package/src/module/meta/service/view-master.service.ts +127 -127
- package/src/module/microservice-client/microservice-clients.module.ts +13 -13
- package/src/module/microservice-client/service/microservice-client-factory.ts +37 -37
- package/src/module/microservice-client/service/microservice-clients.ts +4 -4
- package/src/module/module/controller/menu.controller.ts +15 -15
- package/src/module/module/controller/module-access.controller.ts +134 -134
- 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 +344 -344
- 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 +26 -26
- package/src/module/notification/entity/otp.entity.ts +28 -28
- package/src/module/notification/firebase-admin.config.ts +22 -22
- package/src/module/notification/notification.module.ts +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 +163 -163
- package/src/module/notification/service/otp.service.ts +132 -132
- 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 +73 -73
- package/src/module/user/entity/user.entity.ts +59 -59
- 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 +304 -304
- 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 +365 -365
- 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 +111 -111
- package/src/module/workflow/controller/activity-log.controller.ts +55 -55
- package/src/module/workflow/controller/comm-template.controller.ts +43 -43
- package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
- package/src/module/workflow/controller/form-master.controller.ts +43 -43
- package/src/module/workflow/controller/stage-group.controller.ts +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 +333 -333
- package/src/module/workflow/repository/action.repository.ts +323 -323
- package/src/module/workflow/repository/activity-log.repository.ts +148 -148
- package/src/module/workflow/repository/comm-template.repository.ts +149 -149
- 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 +244 -244
- package/src/module/workflow/repository/stage.repository.ts +172 -172
- package/src/module/workflow/repository/task.repository.ts +127 -127
- 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 +106 -106
- package/src/module/workflow/service/action.service.ts +279 -279
- package/src/module/workflow/service/activity-log.service.ts +107 -107
- package/src/module/workflow/service/comm-template.service.ts +180 -180
- 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 +319 -319
- package/src/module/workflow/service/stage.service.ts +199 -199
- package/src/module/workflow/service/task.service.ts +560 -560
- package/src/module/workflow/service/workflow-list-master.service.ts +60 -60
- package/src/module/workflow/service/workflow-meta.service.ts +654 -640
- package/src/module/workflow/service/workflow.service.ts +205 -205
- package/src/module/workflow/workflow.module.ts +176 -176
- 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 +347 -347
- package/src/module/workflow-automation/workflow-automation.module.ts +34 -34
- package/src/resources/dev.properties.yaml +30 -31
- package/src/resources/local.properties.yaml +27 -27
- package/src/resources/properties.module.ts +12 -12
- package/src/resources/properties.yaml.ts +11 -11
- package/src/resources/uat.properties.yaml +31 -31
- package/src/table.config.ts +126 -126
- 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/module/enterprise/entity/brand.entity.d.ts +0 -0
- package/dist/module/enterprise/entity/brand.entity.js +0 -1
- package/dist/module/enterprise/entity/brand.entity.js.map +0 -1
- package/dist/module/enterprise/entity/school.entity.d.ts +0 -0
- package/dist/module/enterprise/entity/school.entity.js +0 -1
- package/dist/module/enterprise/entity/school.entity.js.map +0 -1
- package/dist/module/enterprise/repository/brand.repository.d.ts +0 -0
- package/dist/module/enterprise/repository/brand.repository.js +0 -1
- package/dist/module/enterprise/repository/brand.repository.js.map +0 -1
- package/dist/module/enterprise/service/brand-profile.service.d.ts +0 -4
- package/dist/module/enterprise/service/brand-profile.service.js +0 -25
- package/dist/module/enterprise/service/brand-profile.service.js.map +0 -1
- package/dist/module/enterprise/service/school.service.d.ts +0 -3
- package/dist/module/enterprise/service/school.service.js +0 -18
- package/dist/module/enterprise/service/school.service.js.map +0 -1
- package/dist/module/meta/entity/brand-profile.entity.d.ts +0 -3
- package/dist/module/meta/entity/brand-profile.entity.js +0 -18
- package/dist/module/meta/entity/brand-profile.entity.js.map +0 -1
- package/dist/module/meta/entity/field-group.entity.d.ts +0 -0
- package/dist/module/meta/entity/field-group.entity.js +0 -1
- package/dist/module/meta/entity/field-group.entity.js.map +0 -1
- package/dist/module/meta/entity/school.entity.d.ts +0 -8
- package/dist/module/meta/entity/school.entity.js +0 -44
- package/dist/module/meta/entity/school.entity.js.map +0 -1
- package/dist/module/meta/entity/schoolAddress.entity.d.ts +0 -9
- package/dist/module/meta/entity/schoolAddress.entity.js +0 -48
- package/dist/module/meta/entity/schoolAddress.entity.js.map +0 -1
- package/dist/module/meta/entity/section-master.entity.d.ts +0 -0
- package/dist/module/meta/entity/section-master.entity.js +0 -1
- package/dist/module/meta/entity/section-master.entity.js.map +0 -1
- package/dist/module/meta/entity/user-app-mapping.entity.d.ts +0 -0
- package/dist/module/meta/entity/user-app-mapping.entity.js +0 -1
- package/dist/module/meta/entity/user-app-mapping.entity.js.map +0 -1
- package/dist/resources/dev.properties.yaml +0 -31
- package/dist/resources/local.properties.yaml +0 -27
- package/dist/resources/uat.properties.yaml +0 -31
- package/server.log +0 -850
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-meta.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/workflow-meta.service.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"workflow-meta.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/workflow-meta.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -72,8 +72,8 @@ let WorkflowService = class WorkflowService extends entity_service_impl_service_
|
|
|
72
72
|
currentId: workflowId,
|
|
73
73
|
})
|
|
74
74
|
.execute();
|
|
75
|
-
await this.dataSource.query(`UPDATE frm_wf_level_mapping
|
|
76
|
-
SET workflow_id = ?
|
|
75
|
+
await this.dataSource.query(`UPDATE frm_wf_level_mapping
|
|
76
|
+
SET workflow_id = ?
|
|
77
77
|
WHERE mapped_level_id = ? AND mapped_level_type = ?`, [workflowId, level_id, level_type]);
|
|
78
78
|
}
|
|
79
79
|
return super.updateEntity(entityData, loggedInUser);
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { DashboardPageData } from "./module/dashboard/entity/dashboard_page_data.entity";
|
|
2
|
+
import { EnterpriseData } from "./module/enterprise/entity/enterprise.entity";
|
|
3
|
+
import { OrganizationAppMapping } from "./module/enterprise/entity/organization-app-mapping.entity";
|
|
4
|
+
import { OrganizationData } from "./module/enterprise/entity/organization.entity";
|
|
5
|
+
import { SavedFilterDetail } from "./module/filter/entity/saved-filter-detail.entity";
|
|
6
|
+
import { SavedFilterMaster } from "./module/filter/entity/saved-filter-master.entity";
|
|
7
|
+
import { IntegrationConfig } from "./module/integration/entity/integration-config.entity";
|
|
8
|
+
import { IntegrationEntityMapper } from "./module/integration/entity/integration-entity-mapper.entity";
|
|
9
|
+
import { IntegrationSource } from "./module/integration/entity/integration-source.entity";
|
|
10
|
+
import { UserIntegration } from "./module/integration/entity/user-integration.entity";
|
|
11
|
+
import { HeaderItems } from "./module/layout/entity/header-items.entity";
|
|
12
|
+
import { HeaderSection } from "./module/layout/entity/header-section.entity";
|
|
13
|
+
import { LayoutPreference } from "./module/layout_preference/entity/layout_preference.entity";
|
|
14
|
+
import { ListMasterItems } from "./module/listmaster/entity/list-master-items.entity";
|
|
15
|
+
import { ListMasterData } from "./module/listmaster/entity/list-master.entity";
|
|
16
|
+
import { FieldLovMapper } from "./module/mapper/entity/field-lovs.entity";
|
|
17
|
+
import { FieldMapper } from "./module/mapper/entity/field-mapper.entity";
|
|
18
|
+
import { Mapper } from "./module/mapper/entity/mapper.entity";
|
|
19
|
+
import { AppMaster } from "./module/meta/entity/app-master.entity";
|
|
20
|
+
import { EntityRelation } from "./module/meta/entity/entity-relation.entity";
|
|
21
|
+
import { EntityTableColumn } from "./module/meta/entity/entity-table-column.entity";
|
|
22
|
+
import { EntityTable } from "./module/meta/entity/entity-table.entity";
|
|
23
|
+
import { MediaData } from "./module/meta/entity/media-data.entity";
|
|
24
|
+
import { PreferenceMaster } from "./module/meta/entity/preference.entity";
|
|
25
|
+
import { MenuData } from "./module/module/entity/menu.entity";
|
|
26
|
+
import { ModuleAccess } from "./module/module/entity/module-access.entity";
|
|
27
|
+
import { ModuleAction } from "./module/module/entity/module-action.entity";
|
|
28
|
+
import { ModuleData } from "./module/module/entity/module.entity";
|
|
29
|
+
import { NotificationData } from "./module/notification/entity/notification.entity";
|
|
30
|
+
import { Otp } from "./module/notification/entity/otp.entity";
|
|
31
|
+
import { Role } from "./module/user/entity/role.entity";
|
|
32
|
+
import { UserRoleMapping } from "./module/user/entity/user-role-mapping.entity";
|
|
33
|
+
import { UserSession } from "./module/user/entity/user-session.entity";
|
|
34
|
+
import { UserData } from "./module/user/entity/user.entity";
|
|
35
|
+
import { TemplateAttach } from "./module/workflow/entity/template-attach-mapper.entity";
|
|
36
|
+
import { WorkFlowData } from "./module/workflow/entity/workflow-data.entity";
|
|
37
|
+
import { WorkflowLevelMappingEntity } from "./module/workflow/entity/workflow-level-mapping.entity";
|
|
38
|
+
export declare const frameworkTables: (typeof ListMasterItems | typeof ListMasterData | typeof SavedFilterMaster | typeof SavedFilterDetail | typeof EntityTable | typeof EntityTableColumn | typeof MediaData | typeof PreferenceMaster | typeof EntityRelation | typeof IntegrationConfig | typeof UserIntegration | typeof IntegrationEntityMapper | typeof FieldMapper | typeof FieldLovMapper | typeof IntegrationSource | typeof Mapper | typeof NotificationData | typeof LayoutPreference | typeof DashboardPageData)[];
|
|
39
|
+
export declare const workflowTables: (typeof TemplateAttach | typeof WorkflowLevelMappingEntity | typeof WorkFlowData)[];
|
|
40
|
+
export declare const SSOTables: (typeof UserData | typeof Role | typeof ModuleAccess | typeof OrganizationData | typeof UserRoleMapping | typeof AppMaster | typeof UserSession | typeof OrganizationAppMapping | typeof ModuleData | typeof ModuleAction | typeof MenuData | typeof Otp | typeof HeaderSection | typeof HeaderItems | typeof EnterpriseData)[];
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SSOTables = exports.workflowTables = exports.frameworkTables = void 0;
|
|
4
|
+
const dashboard_page_data_entity_1 = require("./module/dashboard/entity/dashboard_page_data.entity");
|
|
5
|
+
const widget_master_entity_1 = require("./module/dashboard/entity/widget_master.entity");
|
|
6
|
+
const enterprise_entity_1 = require("./module/enterprise/entity/enterprise.entity");
|
|
7
|
+
const organization_app_mapping_entity_1 = require("./module/enterprise/entity/organization-app-mapping.entity");
|
|
8
|
+
const organization_entity_1 = require("./module/enterprise/entity/organization.entity");
|
|
9
|
+
const saved_filter_detail_entity_1 = require("./module/filter/entity/saved-filter-detail.entity");
|
|
10
|
+
const saved_filter_master_entity_1 = require("./module/filter/entity/saved-filter-master.entity");
|
|
11
|
+
const integration_config_entity_1 = require("./module/integration/entity/integration-config.entity");
|
|
12
|
+
const integration_entity_mapper_entity_1 = require("./module/integration/entity/integration-entity-mapper.entity");
|
|
13
|
+
const integration_source_entity_1 = require("./module/integration/entity/integration-source.entity");
|
|
14
|
+
const user_integration_entity_1 = require("./module/integration/entity/user-integration.entity");
|
|
15
|
+
const header_items_entity_1 = require("./module/layout/entity/header-items.entity");
|
|
16
|
+
const header_section_entity_1 = require("./module/layout/entity/header-section.entity");
|
|
17
|
+
const layout_preference_entity_1 = require("./module/layout_preference/entity/layout_preference.entity");
|
|
18
|
+
const list_master_items_entity_1 = require("./module/listmaster/entity/list-master-items.entity");
|
|
19
|
+
const list_master_entity_1 = require("./module/listmaster/entity/list-master.entity");
|
|
20
|
+
const field_lovs_entity_1 = require("./module/mapper/entity/field-lovs.entity");
|
|
21
|
+
const field_mapper_entity_1 = require("./module/mapper/entity/field-mapper.entity");
|
|
22
|
+
const mapper_entity_1 = require("./module/mapper/entity/mapper.entity");
|
|
23
|
+
const app_master_entity_1 = require("./module/meta/entity/app-master.entity");
|
|
24
|
+
const attribute_master_entity_1 = require("./module/meta/entity/attribute-master.entity");
|
|
25
|
+
const entity_master_entity_1 = require("./module/meta/entity/entity-master.entity");
|
|
26
|
+
const entity_relation_data_entity_1 = require("./module/meta/entity/entity-relation-data.entity");
|
|
27
|
+
const entity_relation_entity_1 = require("./module/meta/entity/entity-relation.entity");
|
|
28
|
+
const entity_table_column_entity_1 = require("./module/meta/entity/entity-table-column.entity");
|
|
29
|
+
const entity_table_entity_1 = require("./module/meta/entity/entity-table.entity");
|
|
30
|
+
const media_data_entity_1 = require("./module/meta/entity/media-data.entity");
|
|
31
|
+
const preference_entity_1 = require("./module/meta/entity/preference.entity");
|
|
32
|
+
const view_master_entity_1 = require("./module/meta/entity/view-master.entity");
|
|
33
|
+
const menu_entity_1 = require("./module/module/entity/menu.entity");
|
|
34
|
+
const module_access_entity_1 = require("./module/module/entity/module-access.entity");
|
|
35
|
+
const module_action_entity_1 = require("./module/module/entity/module-action.entity");
|
|
36
|
+
const module_entity_1 = require("./module/module/entity/module.entity");
|
|
37
|
+
const notification_entity_1 = require("./module/notification/entity/notification.entity");
|
|
38
|
+
const otp_entity_1 = require("./module/notification/entity/otp.entity");
|
|
39
|
+
const role_entity_1 = require("./module/user/entity/role.entity");
|
|
40
|
+
const user_role_mapping_entity_1 = require("./module/user/entity/user-role-mapping.entity");
|
|
41
|
+
const user_session_entity_1 = require("./module/user/entity/user-session.entity");
|
|
42
|
+
const user_entity_1 = require("./module/user/entity/user.entity");
|
|
43
|
+
const workflow_automation_action_entity_1 = require("./module/workflow-automation/entity/workflow-automation-action.entity");
|
|
44
|
+
const workflow_automation_entity_1 = require("./module/workflow-automation/entity/workflow-automation.entity");
|
|
45
|
+
const action_category_entity_1 = require("./module/workflow/entity/action-category.entity");
|
|
46
|
+
const action_data_entity_1 = require("./module/workflow/entity/action-data.entity");
|
|
47
|
+
const action_resources_mapping_entity_1 = require("./module/workflow/entity/action-resources-mapping.entity");
|
|
48
|
+
const action_template_mapping_entity_1 = require("./module/workflow/entity/action-template-mapping.entity");
|
|
49
|
+
const action_entity_1 = require("./module/workflow/entity/action.entity");
|
|
50
|
+
const activity_log_entity_1 = require("./module/workflow/entity/activity-log.entity");
|
|
51
|
+
const comm_template_entity_1 = require("./module/workflow/entity/comm-template.entity");
|
|
52
|
+
const entity_modification_entity_1 = require("./module/workflow/entity/entity-modification.entity");
|
|
53
|
+
const form_entity_1 = require("./module/workflow/entity/form.entity");
|
|
54
|
+
const stage_action_mapping_entity_1 = require("./module/workflow/entity/stage-action-mapping.entity");
|
|
55
|
+
const stage_group_entity_1 = require("./module/workflow/entity/stage-group.entity");
|
|
56
|
+
const stage_movement_data_entity_1 = require("./module/workflow/entity/stage-movement-data.entity");
|
|
57
|
+
const stage_entity_1 = require("./module/workflow/entity/stage.entity");
|
|
58
|
+
const task_data_entity_1 = require("./module/workflow/entity/task-data.entity");
|
|
59
|
+
const template_attach_mapper_entity_1 = require("./module/workflow/entity/template-attach-mapper.entity");
|
|
60
|
+
const workflow_data_entity_1 = require("./module/workflow/entity/workflow-data.entity");
|
|
61
|
+
const workflow_level_mapping_entity_1 = require("./module/workflow/entity/workflow-level-mapping.entity");
|
|
62
|
+
const workflow_entity_1 = require("./module/workflow/entity/workflow.entity");
|
|
63
|
+
exports.frameworkTables = [
|
|
64
|
+
activity_log_entity_1.ActivityLog,
|
|
65
|
+
attribute_master_entity_1.AttributeMaster,
|
|
66
|
+
dashboard_page_data_entity_1.DashboardPageData,
|
|
67
|
+
layout_preference_entity_1.LayoutPreference,
|
|
68
|
+
entity_master_entity_1.EntityMaster,
|
|
69
|
+
entity_relation_entity_1.EntityRelation,
|
|
70
|
+
entity_relation_data_entity_1.EntityRelationData,
|
|
71
|
+
entity_table_entity_1.EntityTable,
|
|
72
|
+
entity_table_column_entity_1.EntityTableColumn,
|
|
73
|
+
field_lovs_entity_1.FieldLovMapper,
|
|
74
|
+
field_mapper_entity_1.FieldMapper,
|
|
75
|
+
integration_config_entity_1.IntegrationConfig,
|
|
76
|
+
integration_entity_mapper_entity_1.IntegrationEntityMapper,
|
|
77
|
+
integration_source_entity_1.IntegrationSource,
|
|
78
|
+
list_master_entity_1.ListMasterData,
|
|
79
|
+
list_master_items_entity_1.ListMasterItems,
|
|
80
|
+
mapper_entity_1.Mapper,
|
|
81
|
+
media_data_entity_1.MediaData,
|
|
82
|
+
notification_entity_1.NotificationData,
|
|
83
|
+
preference_entity_1.PreferenceMaster,
|
|
84
|
+
saved_filter_detail_entity_1.SavedFilterDetail,
|
|
85
|
+
saved_filter_master_entity_1.SavedFilterMaster,
|
|
86
|
+
user_integration_entity_1.UserIntegration,
|
|
87
|
+
view_master_entity_1.ViewMaster
|
|
88
|
+
];
|
|
89
|
+
exports.workflowTables = [
|
|
90
|
+
action_entity_1.ActionEntity,
|
|
91
|
+
action_category_entity_1.ActionCategory,
|
|
92
|
+
action_data_entity_1.ActionDataEntity,
|
|
93
|
+
action_resources_mapping_entity_1.ActionResourcesMapping,
|
|
94
|
+
action_template_mapping_entity_1.ActionTemplateMapping,
|
|
95
|
+
comm_template_entity_1.CommTemplate,
|
|
96
|
+
entity_modification_entity_1.EntityModification,
|
|
97
|
+
form_entity_1.FormDataEntity,
|
|
98
|
+
stage_entity_1.Stage,
|
|
99
|
+
stage_action_mapping_entity_1.StageActionMapping,
|
|
100
|
+
stage_group_entity_1.StageGroup,
|
|
101
|
+
stage_movement_data_entity_1.StageMovementData,
|
|
102
|
+
task_data_entity_1.TaskDataEntity,
|
|
103
|
+
template_attach_mapper_entity_1.TemplateAttach,
|
|
104
|
+
widget_master_entity_1.WidgetMaster,
|
|
105
|
+
workflow_entity_1.Workflow,
|
|
106
|
+
workflow_automation_entity_1.WorkflowAutomation,
|
|
107
|
+
workflow_automation_action_entity_1.WorkflowAutomationActionEntity,
|
|
108
|
+
workflow_level_mapping_entity_1.WorkflowLevelMappingEntity,
|
|
109
|
+
workflow_data_entity_1.WorkFlowData
|
|
110
|
+
];
|
|
111
|
+
exports.SSOTables = [
|
|
112
|
+
app_master_entity_1.AppMaster,
|
|
113
|
+
enterprise_entity_1.EnterpriseData,
|
|
114
|
+
role_entity_1.Role,
|
|
115
|
+
user_entity_1.UserData,
|
|
116
|
+
user_session_entity_1.UserSession,
|
|
117
|
+
user_role_mapping_entity_1.UserRoleMapping,
|
|
118
|
+
module_entity_1.ModuleData,
|
|
119
|
+
module_access_entity_1.ModuleAccess,
|
|
120
|
+
module_action_entity_1.ModuleAction,
|
|
121
|
+
menu_entity_1.MenuData,
|
|
122
|
+
organization_entity_1.OrganizationData,
|
|
123
|
+
organization_app_mapping_entity_1.OrganizationAppMapping,
|
|
124
|
+
otp_entity_1.Otp,
|
|
125
|
+
header_items_entity_1.HeaderItems,
|
|
126
|
+
header_section_entity_1.HeaderSection
|
|
127
|
+
];
|
|
128
|
+
//# sourceMappingURL=table.config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.config.js","sourceRoot":"","sources":["../src/table.config.ts"],"names":[],"mappings":";;;AAAA,qGAAyF;AACzF,yFAA8E;AAC9E,oFAA8E;AAC9E,gHAAoG;AACpG,wFAAkF;AAClF,kGAAsF;AACtF,kGAAsF;AACtF,qGAA0F;AAC1F,mHAAuG;AACvG,qGAA0F;AAC1F,iGAAsF;AACtF,oFAAyE;AACzE,wFAA6E;AAC7E,yGAA8F;AAC9F,kGAAsF;AACtF,sFAA+E;AAC/E,gFAA0E;AAC1E,oFAAyE;AACzE,wEAA8D;AAC9D,8EAAmE;AACnE,0FAA+E;AAC/E,oFAAyE;AACzE,kGAAsF;AACtF,wFAA6E;AAC7E,gGAAoF;AACpF,kFAAuE;AACvE,8EAAmE;AACnE,8EAA0E;AAC1E,gFAAqE;AACrE,oEAA8D;AAC9D,sFAA2E;AAC3E,sFAA2E;AAC3E,wEAAkE;AAClE,0FAAoF;AACpF,wEAA8D;AAC9D,kEAAwD;AACxD,4FAAgF;AAChF,kFAAuE;AACvE,kEAA4D;AAC5D,6HAAuH;AACvH,+GAAoG;AACpG,4FAAiF;AACjF,oFAA+E;AAC/E,8GAAkG;AAClG,4GAAgG;AAChG,0EAAsE;AACtE,sFAA2E;AAC3E,wFAA6E;AAC7E,oGAAyF;AACzF,sEAAsE;AACtE,sGAA0F;AAC1F,oFAAyE;AACzE,oGAAwF;AACxF,wEAA8D;AAC9D,gFAA2E;AAC3E,0GAAwF;AACxF,wFAA6E;AAC7E,0GAAoG;AACpG,8EAAoE;AAEvD,QAAA,eAAe,GAAG;IAC3B,iCAAW;IACX,yCAAe;IACf,8CAAiB;IACjB,2CAAgB;IAChB,mCAAY;IACZ,uCAAc;IACd,gDAAkB;IAClB,iCAAW;IACX,8CAAiB;IACjB,kCAAc;IACd,iCAAW;IACX,6CAAiB;IACjB,0DAAuB;IACvB,6CAAiB;IACjB,mCAAc;IACd,0CAAe;IACf,sBAAM;IACN,6BAAS;IACT,sCAAgB;IAChB,oCAAgB;IAChB,8CAAiB;IACjB,8CAAiB;IACjB,yCAAe;IACf,+BAAU;CACb,CAAA;AAEY,QAAA,cAAc,GAAG;IAC1B,4BAAY;IACZ,uCAAc;IACd,qCAAgB;IAChB,wDAAsB;IACtB,sDAAqB;IACrB,mCAAY;IACZ,+CAAkB;IAClB,4BAAc;IACd,oBAAK;IACL,gDAAkB;IAClB,+BAAU;IACV,8CAAiB;IACjB,iCAAc;IACd,8CAAc;IACd,mCAAY;IACZ,0BAAQ;IACR,+CAAkB;IAClB,kEAA8B;IAC9B,0DAA0B;IAC1B,mCAAY;CACf,CAAA;AAEY,QAAA,SAAS,GAAG;IACrB,6BAAS;IACT,kCAAc;IACd,kBAAI;IACJ,sBAAQ;IACR,iCAAW;IACX,0CAAe;IACf,0BAAU;IACV,mCAAY;IACZ,mCAAY;IACZ,sBAAQ;IACR,sCAAgB;IAChB,wDAAsB;IACtB,gBAAG;IACH,iCAAW;IACX,qCAAa;CAChB,CAAA"}
|