@servicelabsco/nestjs-utility-services 1.0.137 → 1.0.141
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/dist/app.controller.js +3 -3
- package/dist/app.controller.js.map +1 -1
- package/dist/app.module.js +1 -1
- package/dist/app.module.js.map +1 -1
- package/dist/app.service.js +1 -1
- package/dist/app.service.js.map +1 -1
- package/dist/auth/auth.module.js +2 -2
- package/dist/auth/auth.module.js.map +1 -1
- package/dist/auth/controllers/auth.controller.js +15 -15
- package/dist/auth/controllers/auth.controller.js.map +1 -1
- package/dist/auth/controllers/index.d.ts +1 -1
- package/dist/auth/controllers/index.js +1 -1
- package/dist/auth/controllers/index.js.map +1 -1
- package/dist/auth/controllers/social.controller.js +17 -17
- package/dist/auth/controllers/social.controller.js.map +1 -1
- package/dist/auth/controllers/user.controller.js +4 -4
- package/dist/auth/controllers/user.controller.js.map +1 -1
- package/dist/auth/dtos/create.user.dto.js +3 -3
- package/dist/auth/dtos/create.user.dto.js.map +1 -1
- package/dist/auth/dtos/index.d.ts +2 -2
- package/dist/auth/dtos/index.js +2 -2
- package/dist/auth/dtos/index.js.map +1 -1
- package/dist/auth/dtos/offline.user.dto.js +3 -3
- package/dist/auth/dtos/offline.user.dto.js.map +1 -1
- package/dist/auth/dtos/permission.assignment.dto.js +1 -1
- package/dist/auth/dtos/permission.assignment.dto.js.map +1 -1
- package/dist/auth/dtos/role.assignment.dto.js +1 -1
- package/dist/auth/dtos/role.assignment.dto.js.map +1 -1
- package/dist/auth/dtos/update.user.dto.js +3 -3
- package/dist/auth/dtos/update.user.dto.js.map +1 -1
- package/dist/auth/dtos/user.login.dto.js +2 -2
- package/dist/auth/dtos/user.login.dto.js.map +1 -1
- package/dist/auth/entities/country.entity.d.ts +1 -0
- package/dist/auth/entities/country.entity.js +16 -12
- package/dist/auth/entities/country.entity.js.map +1 -1
- package/dist/auth/entities/creator.entity.js +7 -7
- package/dist/auth/entities/creator.entity.js.map +1 -1
- package/dist/auth/entities/device.token.entity.js +19 -19
- package/dist/auth/entities/device.token.entity.js.map +1 -1
- package/dist/auth/entities/index.d.ts +4 -4
- package/dist/auth/entities/index.js +4 -4
- package/dist/auth/entities/index.js.map +1 -1
- package/dist/auth/entities/refresh.token.entity.js +12 -12
- package/dist/auth/entities/refresh.token.entity.js.map +1 -1
- package/dist/auth/entities/user.entity.js +23 -23
- package/dist/auth/entities/user.entity.js.map +1 -1
- package/dist/auth/entities/user.referral.entity.js +9 -9
- package/dist/auth/entities/user.referral.entity.js.map +1 -1
- package/dist/auth/es6.classes.d.ts +3 -3
- package/dist/auth/index.d.ts +5 -6
- package/dist/auth/index.js +5 -6
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/middlewares/basic.auth.middleware.d.ts +3 -4
- package/dist/auth/middlewares/basic.auth.middleware.js +4 -8
- package/dist/auth/middlewares/basic.auth.middleware.js.map +1 -1
- package/dist/auth/middlewares/index.d.ts +1 -1
- package/dist/auth/middlewares/index.js +1 -1
- package/dist/auth/middlewares/index.js.map +1 -1
- package/dist/auth/middlewares/jwt.middleware.js +2 -2
- package/dist/auth/middlewares/jwt.middleware.js.map +1 -1
- package/dist/auth/middlewares/restricted.middleware.js +1 -1
- package/dist/auth/middlewares/restricted.middleware.js.map +1 -1
- package/dist/auth/services/access.manager.js +1 -1
- package/dist/auth/services/access.manager.js.map +1 -1
- package/dist/auth/services/auth.service.js +1 -1
- package/dist/auth/services/auth.service.js.map +1 -1
- package/dist/auth/services/device.token.service.js +2 -2
- package/dist/auth/services/device.token.service.js.map +1 -1
- package/dist/auth/services/es6.service.js +1 -1
- package/dist/auth/services/es6.service.js.map +1 -1
- package/dist/auth/services/index.d.ts +3 -4
- package/dist/auth/services/index.js +3 -4
- package/dist/auth/services/index.js.map +1 -1
- package/dist/auth/services/refresh.token.service.js +2 -2
- package/dist/auth/services/refresh.token.service.js.map +1 -1
- package/dist/auth/services/role.manager.js +1 -1
- package/dist/auth/services/role.manager.js.map +1 -1
- package/dist/auth/services/social.service.d.ts +3 -3
- package/dist/auth/services/social.service.js +17 -6
- package/dist/auth/services/social.service.js.map +1 -1
- package/dist/auth/strategies/fb.strategy.js +2 -2
- package/dist/auth/strategies/fb.strategy.js.map +1 -1
- package/dist/auth/strategies/google.strategy.js +2 -2
- package/dist/auth/strategies/google.strategy.js.map +1 -1
- package/dist/common/common.module.js +1 -1
- package/dist/common/common.module.js.map +1 -1
- package/dist/common/dtos/aggregation.param.dto.js +3 -3
- package/dist/common/dtos/aggregation.param.dto.js.map +1 -1
- package/dist/common/dtos/generic.index.param.dto.js +11 -11
- package/dist/common/dtos/generic.index.param.dto.js.map +1 -1
- package/dist/common/dtos/group.param.dto.js +2 -2
- package/dist/common/dtos/group.param.dto.js.map +1 -1
- package/dist/common/dtos/index.d.ts +10 -10
- package/dist/common/dtos/index.js +10 -10
- package/dist/common/dtos/index.js.map +1 -1
- package/dist/common/dtos/index.params.dto.js +1 -1
- package/dist/common/dtos/index.params.dto.js.map +1 -1
- package/dist/common/dtos/key.value.param.dto.js +2 -2
- package/dist/common/dtos/key.value.param.dto.js.map +1 -1
- package/dist/common/dtos/report.body.dto.js +10 -10
- package/dist/common/dtos/report.body.dto.js.map +1 -1
- package/dist/common/es6.classes.d.ts +3 -3
- package/dist/common/exceptions/index.d.ts +1 -1
- package/dist/common/exceptions/index.js +1 -1
- package/dist/common/exceptions/index.js.map +1 -1
- package/dist/common/guards/login.guard.js +2 -2
- package/dist/common/guards/login.guard.js.map +1 -1
- package/dist/common/index.d.ts +2 -3
- package/dist/common/index.js +2 -3
- package/dist/common/index.js.map +1 -1
- package/dist/common/libraries/base.migration.utility.js +10 -9
- package/dist/common/libraries/base.migration.utility.js.map +1 -1
- package/dist/common/libraries/class.mapper.d.ts +1 -0
- package/dist/common/libraries/class.mapper.js +9 -0
- package/dist/common/libraries/class.mapper.js.map +1 -1
- package/dist/common/libraries/common.entity.js +13 -13
- package/dist/common/libraries/common.entity.js.map +1 -1
- package/dist/common/libraries/date.util.js +6 -6
- package/dist/common/libraries/date.util.js.map +1 -1
- package/dist/common/libraries/index.d.ts +13 -14
- package/dist/common/libraries/index.js +13 -14
- package/dist/common/libraries/index.js.map +1 -1
- package/dist/config/cache.config.d.ts +1 -0
- package/dist/config/cache.config.js +2 -0
- package/dist/config/cache.config.js.map +1 -1
- package/dist/config/platform.constants.d.ts +1 -0
- package/dist/config/platform.constants.js +1 -0
- package/dist/config/platform.constants.js.map +1 -1
- package/dist/config/typeorm.config.js +2 -2
- package/dist/config/typeorm.config.js.map +1 -1
- package/dist/migrations/1633602353156-AddWhatsAppNumberSysCountriesTable.ts.d.ts +5 -0
- package/dist/migrations/1633602353156-AddWhatsAppNumberSysCountriesTable.ts.js +15 -0
- package/dist/migrations/1633602353156-AddWhatsAppNumberSysCountriesTable.ts.js.map +1 -0
- package/dist/platformUtility/commands/entity.generator.command.d.ts +1 -2
- package/dist/platformUtility/commands/entity.generator.command.js +21 -19
- package/dist/platformUtility/commands/entity.generator.command.js.map +1 -1
- package/dist/platformUtility/commands/index.d.ts +2 -1
- package/dist/platformUtility/commands/index.js +2 -1
- package/dist/platformUtility/commands/index.js.map +1 -1
- package/dist/platformUtility/commands/maintenance.command.js +6 -6
- package/dist/platformUtility/commands/maintenance.command.js.map +1 -1
- package/dist/platformUtility/commands/sync.class.command.js +14 -5
- package/dist/platformUtility/commands/sync.class.command.js.map +1 -1
- package/dist/platformUtility/consumers/event.consumer.js +6 -6
- package/dist/platformUtility/consumers/event.consumer.js.map +1 -1
- package/dist/platformUtility/consumers/job.consumer.js +3 -3
- package/dist/platformUtility/consumers/job.consumer.js.map +1 -1
- package/dist/platformUtility/dtos/index.d.ts +2 -2
- package/dist/platformUtility/dtos/index.js +2 -2
- package/dist/platformUtility/dtos/index.js.map +1 -1
- package/dist/platformUtility/dtos/queue.options.dto.js +10 -10
- package/dist/platformUtility/dtos/queue.options.dto.js.map +1 -1
- package/dist/platformUtility/es6.classes.d.ts +8 -7
- package/dist/platformUtility/es6.classes.js +7 -6
- package/dist/platformUtility/es6.classes.js.map +1 -1
- package/dist/platformUtility/index.d.ts +7 -7
- package/dist/platformUtility/index.js +7 -7
- package/dist/platformUtility/index.js.map +1 -1
- package/dist/platformUtility/jobs/record.watcher.job.js +1 -1
- package/dist/platformUtility/jobs/record.watcher.job.js.map +1 -1
- package/dist/platformUtility/libraries/{scan.entity.d.ts → create.entity.constants.file.d.ts} +1 -1
- package/dist/platformUtility/libraries/{scan.entity.js → create.entity.constants.file.js} +12 -14
- package/dist/platformUtility/libraries/create.entity.constants.file.js.map +1 -0
- package/dist/platformUtility/libraries/{scan.class.d.ts → create.es6.classes.file.d.ts} +3 -2
- package/dist/platformUtility/libraries/{scan.class.js → create.es6.classes.file.js} +18 -21
- package/dist/platformUtility/libraries/create.es6.classes.file.js.map +1 -0
- package/dist/platformUtility/libraries/create.es6.jobs.file.d.ts +9 -0
- package/dist/platformUtility/libraries/{scan.job.js → create.es6.jobs.file.js} +16 -13
- package/dist/platformUtility/libraries/create.es6.jobs.file.js.map +1 -0
- package/dist/platformUtility/libraries/{scan.service.d.ts → create.es6.service.file.d.ts} +1 -1
- package/dist/platformUtility/libraries/{scan.service.js → create.es6.service.file.js} +16 -13
- package/dist/platformUtility/libraries/create.es6.service.file.js.map +1 -0
- package/dist/platformUtility/libraries/create.index.file.d.ts +12 -0
- package/dist/platformUtility/libraries/create.index.file.js +78 -0
- package/dist/platformUtility/libraries/create.index.file.js.map +1 -0
- package/dist/platformUtility/libraries/file.system.utility.d.ts +13 -0
- package/dist/platformUtility/libraries/{dev.utility.js → file.system.utility.js} +21 -13
- package/dist/platformUtility/libraries/file.system.utility.js.map +1 -0
- package/dist/platformUtility/libraries/index.d.ts +6 -5
- package/dist/platformUtility/libraries/index.js +6 -5
- package/dist/platformUtility/libraries/index.js.map +1 -1
- package/dist/platformUtility/middlewares/maintenance.middleware.js +1 -1
- package/dist/platformUtility/middlewares/maintenance.middleware.js.map +1 -1
- package/dist/platformUtility/platform.utility.module.js +3 -4
- package/dist/platformUtility/platform.utility.module.js.map +1 -1
- package/dist/platformUtility/services/audit.service.js +2 -2
- package/dist/platformUtility/services/audit.service.js.map +1 -1
- package/dist/platformUtility/services/cache.service.d.ts +4 -5
- package/dist/platformUtility/services/cache.service.js +10 -7
- package/dist/platformUtility/services/cache.service.js.map +1 -1
- package/dist/platformUtility/services/dynamo.service.js +1 -1
- package/dist/platformUtility/services/dynamo.service.js.map +1 -1
- package/dist/platformUtility/services/es6.jobs.service.js +1 -1
- package/dist/platformUtility/services/es6.jobs.service.js.map +1 -1
- package/dist/platformUtility/services/es6.service.js +1 -1
- package/dist/platformUtility/services/es6.service.js.map +1 -1
- package/dist/platformUtility/services/fcm.notification.service.js +1 -1
- package/dist/platformUtility/services/fcm.notification.service.js.map +1 -1
- package/dist/platformUtility/services/index.d.ts +8 -8
- package/dist/platformUtility/services/index.js +8 -8
- package/dist/platformUtility/services/index.js.map +1 -1
- package/dist/platformUtility/services/local.property.service.js +1 -1
- package/dist/platformUtility/services/local.property.service.js.map +1 -1
- package/dist/platformUtility/services/mail.service.d.ts +1 -1
- package/dist/platformUtility/services/mail.service.js +1 -22
- package/dist/platformUtility/services/mail.service.js.map +1 -1
- package/dist/platformUtility/services/maintenance.service.js +1 -1
- package/dist/platformUtility/services/maintenance.service.js.map +1 -1
- package/dist/platformUtility/services/queue.service.d.ts +11 -0
- package/dist/platformUtility/services/queue.service.js +86 -2
- package/dist/platformUtility/services/queue.service.js.map +1 -1
- package/dist/platformUtility/services/remote.request.service.js +4 -5
- package/dist/platformUtility/services/remote.request.service.js.map +1 -1
- package/dist/platformUtility/services/shutdown.service.js +1 -1
- package/dist/platformUtility/services/shutdown.service.js.map +1 -1
- package/dist/platformUtility/services/sql.service.js +2 -2
- package/dist/platformUtility/services/sql.service.js.map +1 -1
- package/dist/platformUtility/services/startup.service.js +1 -1
- package/dist/platformUtility/services/startup.service.js.map +1 -1
- package/dist/platformUtility/subscribers/base.subscriber.js +1 -1
- package/dist/platformUtility/subscribers/base.subscriber.js.map +1 -1
- package/dist/security/entities/index.d.ts +2 -2
- package/dist/security/entities/index.js +2 -2
- package/dist/security/entities/index.js.map +1 -1
- package/dist/security/entities/permission.entity.js +10 -10
- package/dist/security/entities/permission.entity.js.map +1 -1
- package/dist/security/entities/role.entity.js +13 -13
- package/dist/security/entities/role.entity.js.map +1 -1
- package/dist/security/entities/user.permission.entity.js +11 -11
- package/dist/security/entities/user.permission.entity.js.map +1 -1
- package/dist/security/entities/user.role.entity.js +11 -11
- package/dist/security/entities/user.role.entity.js.map +1 -1
- package/dist/security/index.d.ts +1 -2
- package/dist/security/index.js +1 -2
- package/dist/security/index.js.map +1 -1
- package/dist/security/security.module.js +1 -1
- package/dist/security/security.module.js.map +1 -1
- package/dist/system/commands/db.scanner.command.d.ts +5 -5
- package/dist/system/commands/db.scanner.command.js +18 -15
- package/dist/system/commands/db.scanner.command.js.map +1 -1
- package/dist/system/commands/event.queue.command.js +3 -3
- package/dist/system/commands/event.queue.command.js.map +1 -1
- package/dist/system/commands/index.d.ts +3 -3
- package/dist/system/commands/index.js +3 -3
- package/dist/system/commands/index.js.map +1 -1
- package/dist/system/commands/jobs.scanner.command.js +1 -1
- package/dist/system/commands/jobs.scanner.command.js.map +1 -1
- package/dist/system/commands/model.scanner.command.js +1 -1
- package/dist/system/commands/model.scanner.command.js.map +1 -1
- package/dist/system/commands/report.scanner.command.js +1 -1
- package/dist/system/commands/report.scanner.command.js.map +1 -1
- package/dist/system/commands/service.scanner.command.js +1 -1
- package/dist/system/commands/service.scanner.command.js.map +1 -1
- package/dist/system/commands/vaccine.command.js +1 -1
- package/dist/system/commands/vaccine.command.js.map +1 -1
- package/dist/system/controllers/base.controller.js +27 -27
- package/dist/system/controllers/base.controller.js.map +1 -1
- package/dist/system/controllers/data.controller.js +8 -8
- package/dist/system/controllers/data.controller.js.map +1 -1
- package/dist/system/controllers/form.controller.js +3 -3
- package/dist/system/controllers/form.controller.js.map +1 -1
- package/dist/system/controllers/index.d.ts +7 -6
- package/dist/system/controllers/index.js +7 -6
- package/dist/system/controllers/index.js.map +1 -1
- package/dist/system/controllers/job.controller.d.ts +17 -0
- package/dist/system/controllers/job.controller.js +137 -0
- package/dist/system/controllers/job.controller.js.map +1 -0
- package/dist/system/controllers/menu.controller.js +4 -4
- package/dist/system/controllers/menu.controller.js.map +1 -1
- package/dist/system/controllers/preference.controller.js +17 -17
- package/dist/system/controllers/preference.controller.js.map +1 -1
- package/dist/system/controllers/report.controller.js +11 -11
- package/dist/system/controllers/report.controller.js.map +1 -1
- package/dist/system/controllers/upload.controller.js +7 -7
- package/dist/system/controllers/upload.controller.js.map +1 -1
- package/dist/system/controllers/user.preference.controller.js +4 -4
- package/dist/system/controllers/user.preference.controller.js.map +1 -1
- package/dist/system/dtos/index.d.ts +3 -2
- package/dist/system/dtos/index.js +3 -2
- package/dist/system/dtos/index.js.map +1 -1
- package/dist/system/dtos/job.record.param.dto.d.ts +4 -0
- package/dist/system/dtos/job.record.param.dto.js +29 -0
- package/dist/system/dtos/job.record.param.dto.js.map +1 -0
- package/dist/system/dtos/menu.list.preference.creation.dto.js +7 -7
- package/dist/system/dtos/menu.list.preference.creation.dto.js.map +1 -1
- package/dist/system/dtos/model.form.preference.creation.dto.js +4 -4
- package/dist/system/dtos/model.form.preference.creation.dto.js.map +1 -1
- package/dist/system/dtos/user.preference.creation.dto.js +2 -2
- package/dist/system/dtos/user.preference.creation.dto.js.map +1 -1
- package/dist/system/entities/business.rule.entity.js +39 -39
- package/dist/system/entities/business.rule.entity.js.map +1 -1
- package/dist/system/entities/business.rule.role.entity.js +7 -7
- package/dist/system/entities/business.rule.role.entity.js.map +1 -1
- package/dist/system/entities/chart.entity.js +19 -19
- package/dist/system/entities/chart.entity.js.map +1 -1
- package/dist/system/entities/client.script.entity.js +12 -12
- package/dist/system/entities/client.script.entity.js.map +1 -1
- package/dist/system/entities/column.definition.entity.js +10 -10
- package/dist/system/entities/column.definition.entity.js.map +1 -1
- package/dist/system/entities/column.entity.js +35 -35
- package/dist/system/entities/column.entity.js.map +1 -1
- package/dist/system/entities/comment.entity.js +9 -9
- package/dist/system/entities/comment.entity.js.map +1 -1
- package/dist/system/entities/document.entity.js +8 -8
- package/dist/system/entities/document.entity.js.map +1 -1
- package/dist/system/entities/event.detail.entity.js +4 -4
- package/dist/system/entities/event.detail.entity.js.map +1 -1
- package/dist/system/entities/event.queue.entity.js +11 -11
- package/dist/system/entities/event.queue.entity.js.map +1 -1
- package/dist/system/entities/form.column.entity.js +7 -7
- package/dist/system/entities/form.column.entity.js.map +1 -1
- package/dist/system/entities/form.entity.js +14 -14
- package/dist/system/entities/form.entity.js.map +1 -1
- package/dist/system/entities/form.preference.entity.js +5 -5
- package/dist/system/entities/form.preference.entity.js.map +1 -1
- package/dist/system/entities/index.d.ts +36 -36
- package/dist/system/entities/index.js +36 -36
- package/dist/system/entities/index.js.map +1 -1
- package/dist/system/entities/list.preference.entity.js +14 -14
- package/dist/system/entities/list.preference.entity.js.map +1 -1
- package/dist/system/entities/lookup.type.entity.js +8 -8
- package/dist/system/entities/lookup.type.entity.js.map +1 -1
- package/dist/system/entities/lookup.value.entity.js +15 -15
- package/dist/system/entities/lookup.value.entity.js.map +1 -1
- package/dist/system/entities/menu.entity.js +23 -23
- package/dist/system/entities/menu.entity.js.map +1 -1
- package/dist/system/entities/menu.role.entity.js +11 -11
- package/dist/system/entities/menu.role.entity.js.map +1 -1
- package/dist/system/entities/model.column.entity.js +7 -7
- package/dist/system/entities/model.column.entity.js.map +1 -1
- package/dist/system/entities/model.entity.js +37 -37
- package/dist/system/entities/model.entity.js.map +1 -1
- package/dist/system/entities/model.relationship.entity.js +8 -8
- package/dist/system/entities/model.relationship.entity.js.map +1 -1
- package/dist/system/entities/model.role.entity.js +8 -8
- package/dist/system/entities/model.role.entity.js.map +1 -1
- package/dist/system/entities/module.entity.js +11 -11
- package/dist/system/entities/module.entity.js.map +1 -1
- package/dist/system/entities/module.menu.entity.js +13 -13
- package/dist/system/entities/module.menu.entity.js.map +1 -1
- package/dist/system/entities/open.property.entity.js +4 -4
- package/dist/system/entities/open.property.entity.js.map +1 -1
- package/dist/system/entities/page.definition.entity.js +9 -9
- package/dist/system/entities/page.definition.entity.js.map +1 -1
- package/dist/system/entities/parent.menu.entity.js +11 -11
- package/dist/system/entities/parent.menu.entity.js.map +1 -1
- package/dist/system/entities/primary.axis.entity.js +7 -7
- package/dist/system/entities/primary.axis.entity.js.map +1 -1
- package/dist/system/entities/property.entity.js +8 -8
- package/dist/system/entities/property.entity.js.map +1 -1
- package/dist/system/entities/relationship.entity.js +35 -35
- package/dist/system/entities/relationship.entity.js.map +1 -1
- package/dist/system/entities/report.column.entity.js +5 -5
- package/dist/system/entities/report.column.entity.js.map +1 -1
- package/dist/system/entities/report.entity.js +22 -22
- package/dist/system/entities/report.entity.js.map +1 -1
- package/dist/system/entities/report.param.entity.js +9 -9
- package/dist/system/entities/report.param.entity.js.map +1 -1
- package/dist/system/entities/report.relationship.entity.js +7 -7
- package/dist/system/entities/report.relationship.entity.js.map +1 -1
- package/dist/system/entities/report.role.entity.js +7 -7
- package/dist/system/entities/report.role.entity.js.map +1 -1
- package/dist/system/entities/scheduled.event.entity.js +12 -12
- package/dist/system/entities/scheduled.event.entity.js.map +1 -1
- package/dist/system/entities/secondary.axis.entity.js +8 -8
- package/dist/system/entities/secondary.axis.entity.js.map +1 -1
- package/dist/system/entities/security.rule.entity.js +26 -26
- package/dist/system/entities/security.rule.entity.js.map +1 -1
- package/dist/system/entities/service.entity.js +4 -4
- package/dist/system/entities/service.entity.js.map +1 -1
- package/dist/system/entities/sms.template.entity.js +10 -10
- package/dist/system/entities/sms.template.entity.js.map +1 -1
- package/dist/system/entities/system.script.entity.js +16 -16
- package/dist/system/entities/system.script.entity.js.map +1 -1
- package/dist/system/entities/ui.action.entity.js +25 -25
- package/dist/system/entities/ui.action.entity.js.map +1 -1
- package/dist/system/entities/ui.action.permission.entity.js +7 -7
- package/dist/system/entities/ui.action.permission.entity.js.map +1 -1
- package/dist/system/entities/ui.action.role.entity.js +7 -7
- package/dist/system/entities/ui.action.role.entity.js.map +1 -1
- package/dist/system/entities/user.group.entity.js +15 -15
- package/dist/system/entities/user.group.entity.js.map +1 -1
- package/dist/system/entities/user.group.member.entity.js +9 -9
- package/dist/system/entities/user.group.member.entity.js.map +1 -1
- package/dist/system/entities/user.group.permission.entity.js +3 -3
- package/dist/system/entities/user.group.permission.entity.js.map +1 -1
- package/dist/system/entities/user.group.role.entity.js +9 -9
- package/dist/system/entities/user.group.role.entity.js.map +1 -1
- package/dist/system/entities/user.preference.entity.js +9 -9
- package/dist/system/entities/user.preference.entity.js.map +1 -1
- package/dist/system/es6.classes.d.ts +4 -2
- package/dist/system/es6.classes.js +4 -1
- package/dist/system/es6.classes.js.map +1 -1
- package/dist/system/index.d.ts +7 -7
- package/dist/system/index.js +7 -7
- package/dist/system/index.js.map +1 -1
- package/dist/system/jobs/clean.scheduled.event.job.js +1 -1
- package/dist/system/jobs/clean.scheduled.event.job.js.map +1 -1
- package/dist/system/jobs/column.mapper.job.js +1 -1
- package/dist/system/jobs/column.mapper.job.js.map +1 -1
- package/dist/system/jobs/index.d.ts +4 -4
- package/dist/system/jobs/index.js +4 -4
- package/dist/system/jobs/index.js.map +1 -1
- package/dist/system/jobs/model.scanner.job.js +1 -1
- package/dist/system/jobs/model.scanner.job.js.map +1 -1
- package/dist/system/jobs/relationship.mapper.job.js +1 -1
- package/dist/system/jobs/relationship.mapper.job.js.map +1 -1
- package/dist/system/jobs/report.column.sync.job.js +1 -1
- package/dist/system/jobs/report.column.sync.job.js.map +1 -1
- package/dist/system/jobs/scheduled.event.job.js +1 -1
- package/dist/system/jobs/scheduled.event.job.js.map +1 -1
- package/dist/system/jobs/scheduled.events.job.js +1 -1
- package/dist/system/jobs/scheduled.events.job.js.map +1 -1
- package/dist/system/jobs/user.group.member.job.js +1 -1
- package/dist/system/jobs/user.group.member.job.js.map +1 -1
- package/dist/system/jobs/user.group.permission.job.js +1 -1
- package/dist/system/jobs/user.group.permission.job.js.map +1 -1
- package/dist/system/jobs/user.group.role.job.js +1 -1
- package/dist/system/jobs/user.group.role.job.js.map +1 -1
- package/dist/system/libraries/index.d.ts +3 -3
- package/dist/system/libraries/index.js +3 -3
- package/dist/system/libraries/index.js.map +1 -1
- package/dist/system/libraries/model.sync.js +1 -1
- package/dist/system/libraries/model.sync.js.map +1 -1
- package/dist/system/modifiers/index.d.ts +1 -1
- package/dist/system/modifiers/index.js +1 -1
- package/dist/system/modifiers/index.js.map +1 -1
- package/dist/system/modifiers/menu.list.modifier.js +7 -7
- package/dist/system/modifiers/menu.list.modifier.js.map +1 -1
- package/dist/system/modifiers/module.list.modifier.js +5 -5
- package/dist/system/modifiers/module.list.modifier.js.map +1 -1
- package/dist/system/services/business.rule.service.js +1 -1
- package/dist/system/services/business.rule.service.js.map +1 -1
- package/dist/system/services/client.script.service.js +2 -2
- package/dist/system/services/client.script.service.js.map +1 -1
- package/dist/system/services/column.service.js +1 -1
- package/dist/system/services/column.service.js.map +1 -1
- package/dist/system/services/comment.service.d.ts +1 -2
- package/dist/system/services/comment.service.js +1 -1
- package/dist/system/services/comment.service.js.map +1 -1
- package/dist/system/services/common.service.js +2 -2
- package/dist/system/services/common.service.js.map +1 -1
- package/dist/system/services/document.service.d.ts +1 -2
- package/dist/system/services/document.service.js +1 -1
- package/dist/system/services/document.service.js.map +1 -1
- package/dist/system/services/es6.jobs.service.js +1 -1
- package/dist/system/services/es6.jobs.service.js.map +1 -1
- package/dist/system/services/es6.service.js +1 -1
- package/dist/system/services/es6.service.js.map +1 -1
- package/dist/system/services/event.detail.service.js +2 -2
- package/dist/system/services/event.detail.service.js.map +1 -1
- package/dist/system/services/event.queue.service.js +3 -3
- package/dist/system/services/event.queue.service.js.map +1 -1
- package/dist/system/services/form.service.js +1 -1
- package/dist/system/services/form.service.js.map +1 -1
- package/dist/system/services/index.d.ts +13 -13
- package/dist/system/services/index.js +13 -13
- package/dist/system/services/index.js.map +1 -1
- package/dist/system/services/list.service.js +2 -2
- package/dist/system/services/list.service.js.map +1 -1
- package/dist/system/services/menu.service.js +5 -5
- package/dist/system/services/menu.service.js.map +1 -1
- package/dist/system/services/model.service.js +1 -1
- package/dist/system/services/model.service.js.map +1 -1
- package/dist/system/services/preference.service.js +2 -2
- package/dist/system/services/preference.service.js.map +1 -1
- package/dist/system/services/property.service.d.ts +1 -1
- package/dist/system/services/property.service.js +1 -1
- package/dist/system/services/property.service.js.map +1 -1
- package/dist/system/services/report.service.js +1 -1
- package/dist/system/services/report.service.js.map +1 -1
- package/dist/system/services/scheduled.event.service.js +5 -5
- package/dist/system/services/scheduled.event.service.js.map +1 -1
- package/dist/system/services/security.rule.service.js +1 -1
- package/dist/system/services/security.rule.service.js.map +1 -1
- package/dist/system/services/ui.action.service.js +1 -1
- package/dist/system/services/ui.action.service.js.map +1 -1
- package/dist/system/services/upload.service.js +1 -1
- package/dist/system/services/upload.service.js.map +1 -1
- package/dist/system/services/user.preference.service.js +2 -2
- package/dist/system/services/user.preference.service.js.map +1 -1
- package/dist/system/subscribers/column.subscriber.js +1 -1
- package/dist/system/subscribers/column.subscriber.js.map +1 -1
- package/dist/system/subscribers/index.d.ts +3 -3
- package/dist/system/subscribers/index.js +3 -3
- package/dist/system/subscribers/index.js.map +1 -1
- package/dist/system/subscribers/property.subscriber.js +1 -1
- package/dist/system/subscribers/property.subscriber.js.map +1 -1
- package/dist/system/subscribers/relationship.subscriber.js +1 -1
- package/dist/system/subscribers/relationship.subscriber.js.map +1 -1
- package/dist/system/subscribers/scheduled.event.subscriber.js +1 -1
- package/dist/system/subscribers/scheduled.event.subscriber.js.map +1 -1
- package/dist/system/subscribers/user.group.member.subscriber.js +1 -1
- package/dist/system/subscribers/user.group.member.subscriber.js.map +1 -1
- package/dist/system/subscribers/user.group.permission.subscriber.js +1 -1
- package/dist/system/subscribers/user.group.permission.subscriber.js.map +1 -1
- package/dist/system/subscribers/user.group.role.subscriber.js +1 -1
- package/dist/system/subscribers/user.group.role.subscriber.js.map +1 -1
- package/dist/system/system.module.js +1 -1
- package/dist/system/system.module.js.map +1 -1
- package/package.json +44 -45
- package/dist/platformUtility/libraries/dev.utility.d.ts +0 -11
- package/dist/platformUtility/libraries/dev.utility.js.map +0 -1
- package/dist/platformUtility/libraries/scan.class.js.map +0 -1
- package/dist/platformUtility/libraries/scan.entity.js.map +0 -1
- package/dist/platformUtility/libraries/scan.job.d.ts +0 -9
- package/dist/platformUtility/libraries/scan.job.js.map +0 -1
- package/dist/platformUtility/libraries/scan.service.js.map +0 -1
@@ -24,64 +24,64 @@ const relationship_entity_1 = require("./relationship.entity");
|
|
24
24
|
let ModelEntity = class ModelEntity extends common_entity_1.CommonEntity {
|
25
25
|
};
|
26
26
|
__decorate([
|
27
|
-
class_validator_1.IsNotEmpty(),
|
28
|
-
swagger_1.ApiProperty(),
|
29
|
-
typeorm_1.Column(),
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
28
|
+
(0, swagger_1.ApiProperty)(),
|
29
|
+
(0, typeorm_1.Column)(),
|
30
30
|
__metadata("design:type", String)
|
31
31
|
], ModelEntity.prototype, "name", void 0);
|
32
32
|
__decorate([
|
33
|
-
class_validator_1.IsNotEmpty(),
|
34
|
-
swagger_1.ApiProperty(),
|
35
|
-
typeorm_1.Column(),
|
33
|
+
(0, class_validator_1.IsNotEmpty)(),
|
34
|
+
(0, swagger_1.ApiProperty)(),
|
35
|
+
(0, typeorm_1.Column)(),
|
36
36
|
__metadata("design:type", String)
|
37
37
|
], ModelEntity.prototype, "description", void 0);
|
38
38
|
__decorate([
|
39
|
-
class_validator_1.IsNotEmpty(),
|
40
|
-
swagger_1.ApiProperty(),
|
41
|
-
typeorm_1.Column(),
|
39
|
+
(0, class_validator_1.IsNotEmpty)(),
|
40
|
+
(0, swagger_1.ApiProperty)(),
|
41
|
+
(0, typeorm_1.Column)(),
|
42
42
|
__metadata("design:type", String)
|
43
43
|
], ModelEntity.prototype, "table_name", void 0);
|
44
44
|
__decorate([
|
45
|
-
class_validator_1.IsNotEmpty(),
|
46
|
-
swagger_1.ApiProperty(),
|
47
|
-
typeorm_1.Column(),
|
45
|
+
(0, class_validator_1.IsNotEmpty)(),
|
46
|
+
(0, swagger_1.ApiProperty)(),
|
47
|
+
(0, typeorm_1.Column)(),
|
48
48
|
__metadata("design:type", String)
|
49
49
|
], ModelEntity.prototype, "allowed_permissions", void 0);
|
50
50
|
__decorate([
|
51
|
-
class_validator_1.IsNotEmpty(),
|
52
|
-
swagger_1.ApiProperty(),
|
53
|
-
typeorm_1.Column(),
|
51
|
+
(0, class_validator_1.IsNotEmpty)(),
|
52
|
+
(0, swagger_1.ApiProperty)(),
|
53
|
+
(0, typeorm_1.Column)(),
|
54
54
|
__metadata("design:type", String)
|
55
55
|
], ModelEntity.prototype, "model_hash", void 0);
|
56
56
|
__decorate([
|
57
|
-
class_validator_1.IsNotEmpty(),
|
58
|
-
swagger_1.ApiProperty(),
|
59
|
-
typeorm_1.Column(),
|
57
|
+
(0, class_validator_1.IsNotEmpty)(),
|
58
|
+
(0, swagger_1.ApiProperty)(),
|
59
|
+
(0, typeorm_1.Column)(),
|
60
60
|
__metadata("design:type", String)
|
61
61
|
], ModelEntity.prototype, "route_name", void 0);
|
62
62
|
__decorate([
|
63
|
-
class_validator_1.IsNotEmpty(),
|
64
|
-
swagger_1.ApiProperty(),
|
65
|
-
typeorm_1.Column(),
|
63
|
+
(0, class_validator_1.IsNotEmpty)(),
|
64
|
+
(0, swagger_1.ApiProperty)(),
|
65
|
+
(0, typeorm_1.Column)(),
|
66
66
|
__metadata("design:type", String)
|
67
67
|
], ModelEntity.prototype, "display_column", void 0);
|
68
68
|
__decorate([
|
69
|
-
class_validator_1.IsNotEmpty(),
|
70
|
-
swagger_1.ApiProperty(),
|
71
|
-
typeorm_1.Column(),
|
69
|
+
(0, class_validator_1.IsNotEmpty)(),
|
70
|
+
(0, swagger_1.ApiProperty)(),
|
71
|
+
(0, typeorm_1.Column)(),
|
72
72
|
__metadata("design:type", String)
|
73
73
|
], ModelEntity.prototype, "menu_url", void 0);
|
74
74
|
__decorate([
|
75
|
-
typeorm_1.Column(),
|
75
|
+
(0, typeorm_1.Column)(),
|
76
76
|
__metadata("design:type", String)
|
77
77
|
], ModelEntity.prototype, "route_identifier", void 0);
|
78
78
|
__decorate([
|
79
|
-
typeorm_1.Column('json'),
|
79
|
+
(0, typeorm_1.Column)('json'),
|
80
80
|
__metadata("design:type", Object)
|
81
81
|
], ModelEntity.prototype, "attributes", void 0);
|
82
82
|
__decorate([
|
83
|
-
typeorm_1.ManyToMany(() => column_entity_1.ColumnEntity),
|
84
|
-
typeorm_1.JoinTable({
|
83
|
+
(0, typeorm_1.ManyToMany)(() => column_entity_1.ColumnEntity),
|
84
|
+
(0, typeorm_1.JoinTable)({
|
85
85
|
name: 'sys_model_columns',
|
86
86
|
joinColumn: { name: 'model_id' },
|
87
87
|
inverseJoinColumn: { name: 'column_id' },
|
@@ -89,16 +89,16 @@ __decorate([
|
|
89
89
|
__metadata("design:type", Array)
|
90
90
|
], ModelEntity.prototype, "columns", void 0);
|
91
91
|
__decorate([
|
92
|
-
typeorm_1.OneToMany(() => model_column_entity_1.ModelColumnEntity, (model_columns) => model_columns.model),
|
92
|
+
(0, typeorm_1.OneToMany)(() => model_column_entity_1.ModelColumnEntity, (model_columns) => model_columns.model),
|
93
93
|
__metadata("design:type", Array)
|
94
94
|
], ModelEntity.prototype, "model_columns", void 0);
|
95
95
|
__decorate([
|
96
|
-
typeorm_1.OneToMany(() => model_relationship_entity_1.ModelRelationshipEntity, (model_relationships) => model_relationships.model),
|
96
|
+
(0, typeorm_1.OneToMany)(() => model_relationship_entity_1.ModelRelationshipEntity, (model_relationships) => model_relationships.model),
|
97
97
|
__metadata("design:type", Array)
|
98
98
|
], ModelEntity.prototype, "model_relationships", void 0);
|
99
99
|
__decorate([
|
100
|
-
typeorm_1.ManyToMany(() => relationship_entity_1.RelationshipEntity),
|
101
|
-
typeorm_1.JoinTable({
|
100
|
+
(0, typeorm_1.ManyToMany)(() => relationship_entity_1.RelationshipEntity),
|
101
|
+
(0, typeorm_1.JoinTable)({
|
102
102
|
name: 'sys_model_relationships',
|
103
103
|
joinColumn: { name: 'model_id' },
|
104
104
|
inverseJoinColumn: { name: 'relationship_id' },
|
@@ -106,8 +106,8 @@ __decorate([
|
|
106
106
|
__metadata("design:type", Array)
|
107
107
|
], ModelEntity.prototype, "relationships", void 0);
|
108
108
|
__decorate([
|
109
|
-
typeorm_1.ManyToMany(() => role_entity_1.RoleEntity),
|
110
|
-
typeorm_1.JoinTable({
|
109
|
+
(0, typeorm_1.ManyToMany)(() => role_entity_1.RoleEntity),
|
110
|
+
(0, typeorm_1.JoinTable)({
|
111
111
|
name: 'sys_model_roles',
|
112
112
|
joinColumn: { name: 'model_id' },
|
113
113
|
inverseJoinColumn: { name: 'role_id' },
|
@@ -115,15 +115,15 @@ __decorate([
|
|
115
115
|
__metadata("design:type", Array)
|
116
116
|
], ModelEntity.prototype, "roles", void 0);
|
117
117
|
__decorate([
|
118
|
-
typeorm_1.OneToMany(() => model_role_entity_1.ModelRoleEntity, (model_roles) => model_roles.model),
|
118
|
+
(0, typeorm_1.OneToMany)(() => model_role_entity_1.ModelRoleEntity, (model_roles) => model_roles.model),
|
119
119
|
__metadata("design:type", Array)
|
120
120
|
], ModelEntity.prototype, "model_roles", void 0);
|
121
121
|
__decorate([
|
122
|
-
typeorm_1.OneToMany(() => business_rule_entity_1.BusinessRuleEntity, (business_rule) => business_rule.model),
|
122
|
+
(0, typeorm_1.OneToMany)(() => business_rule_entity_1.BusinessRuleEntity, (business_rule) => business_rule.model),
|
123
123
|
__metadata("design:type", Array)
|
124
124
|
], ModelEntity.prototype, "business_rules", void 0);
|
125
125
|
ModelEntity = __decorate([
|
126
|
-
typeorm_1.Entity('sys_model_details')
|
126
|
+
(0, typeorm_1.Entity)('sys_model_details')
|
127
127
|
], ModelEntity);
|
128
128
|
exports.ModelEntity = ModelEntity;
|
129
129
|
//# sourceMappingURL=model.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"model.entity.js","sourceRoot":"","sources":["../../../src/system/entities/model.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAA6C;AAC7C,qCAA2E;AAC3E,wEAAoE;AACpE,qEAAiE;AACjE,iEAA4D;AAC5D,mDAA+C;AAE/C,+DAA0D;AAC1D,2EAAsE;AACtE,2DAAsD;AACtD,+DAA2D;AAU3D,IAAa,WAAW,GAAxB,MAAa,WAAY,SAAQ,4BAAY;CAoD5C,CAAA;AAnD0C;IAAtC,4BAAU,
|
1
|
+
{"version":3,"file":"model.entity.js","sourceRoot":"","sources":["../../../src/system/entities/model.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAA6C;AAC7C,qCAA2E;AAC3E,wEAAoE;AACpE,qEAAiE;AACjE,iEAA4D;AAC5D,mDAA+C;AAE/C,+DAA0D;AAC1D,2EAAsE;AACtE,2DAAsD;AACtD,+DAA2D;AAU3D,IAAa,WAAW,GAAxB,MAAa,WAAY,SAAQ,4BAAY;CAoD5C,CAAA;AAnD0C;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;yCAAc;AACb;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;gDAAqB;AACpB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;+CAAoB;AACnB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;wDAA6B;AAC5B;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;+CAAoB;AACnB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;+CAAoB;AACnB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;mDAAwB;AACvB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;6CAAkB;AAE9C;IAAT,IAAA,gBAAM,GAAE;;qDAA0B;AACnB;IAAf,IAAA,gBAAM,EAAC,MAAM,CAAC;;+CAAiB;AAShC;IANC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC9B,IAAA,mBAAS,EAAC;QACP,IAAI,EAAE,mBAAmB;QACzB,UAAU,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;QAChC,iBAAiB,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;KAC3C,CAAC;;4CACsB;AAGxB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,EAAE,CAAC,aAAa,EAAE,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC;;kDACxC;AAGnC;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,mDAAuB,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,mBAAmB,CAAC,KAAK,CAAC;;wDAC9C;AAQ/C;IANC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,wCAAkB,CAAC;IACpC,IAAA,mBAAS,EAAC;QACP,IAAI,EAAE,yBAAyB;QAC/B,UAAU,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;QAChC,iBAAiB,EAAE,EAAE,IAAI,EAAE,iBAAiB,EAAE;KACjD,CAAC;;kDACkC;AAQpC;IANC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC5B,IAAA,mBAAS,EAAC;QACP,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;QAChC,iBAAiB,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KACzC,CAAC;;0CACkB;AAGpB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,mCAAe,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,WAAW,CAAC,KAAK,CAAC;;gDACtC;AAG/B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,EAAE,CAAC,aAAa,EAAE,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC;;mDACvC;AAhD5B,WAAW;IADvB,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,WAAW,CAoDvB;AApDY,kCAAW"}
|
@@ -18,26 +18,26 @@ const relationship_entity_1 = require("./relationship.entity");
|
|
18
18
|
let ModelRelationshipEntity = class ModelRelationshipEntity extends common_entity_1.CommonEntity {
|
19
19
|
};
|
20
20
|
__decorate([
|
21
|
-
swagger_1.ApiPropertyOptional(),
|
22
|
-
typeorm_1.Column(),
|
21
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
22
|
+
(0, typeorm_1.Column)(),
|
23
23
|
__metadata("design:type", Number)
|
24
24
|
], ModelRelationshipEntity.prototype, "model_id", void 0);
|
25
25
|
__decorate([
|
26
|
-
typeorm_1.Column(),
|
26
|
+
(0, typeorm_1.Column)(),
|
27
27
|
__metadata("design:type", Number)
|
28
28
|
], ModelRelationshipEntity.prototype, "relationship_id", void 0);
|
29
29
|
__decorate([
|
30
|
-
typeorm_1.ManyToOne(() => model_entity_1.ModelEntity),
|
31
|
-
typeorm_1.JoinColumn({ name: 'model_id' }),
|
30
|
+
(0, typeorm_1.ManyToOne)(() => model_entity_1.ModelEntity),
|
31
|
+
(0, typeorm_1.JoinColumn)({ name: 'model_id' }),
|
32
32
|
__metadata("design:type", model_entity_1.ModelEntity)
|
33
33
|
], ModelRelationshipEntity.prototype, "model", void 0);
|
34
34
|
__decorate([
|
35
|
-
typeorm_1.ManyToOne(() => relationship_entity_1.RelationshipEntity),
|
36
|
-
typeorm_1.JoinColumn({ name: 'relationship_id' }),
|
35
|
+
(0, typeorm_1.ManyToOne)(() => relationship_entity_1.RelationshipEntity),
|
36
|
+
(0, typeorm_1.JoinColumn)({ name: 'relationship_id' }),
|
37
37
|
__metadata("design:type", relationship_entity_1.RelationshipEntity)
|
38
38
|
], ModelRelationshipEntity.prototype, "relationship", void 0);
|
39
39
|
ModelRelationshipEntity = __decorate([
|
40
|
-
typeorm_1.Entity('sys_model_relationships')
|
40
|
+
(0, typeorm_1.Entity)('sys_model_relationships')
|
41
41
|
], ModelRelationshipEntity);
|
42
42
|
exports.ModelRelationshipEntity = ModelRelationshipEntity;
|
43
43
|
//# sourceMappingURL=model.relationship.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"model.relationship.entity.js","sourceRoot":"","sources":["../../../src/system/entities/model.relationship.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAsD;AACtD,qCAAgE;AAChE,wEAAoE;AACpE,iDAA6C;AAC7C,+DAA2D;AAS3D,IAAa,uBAAuB,GAApC,MAAa,uBAAwB,SAAQ,4BAAY;CAYxD,CAAA;AAXoC;IAAhC,6BAAmB,
|
1
|
+
{"version":3,"file":"model.relationship.entity.js","sourceRoot":"","sources":["../../../src/system/entities/model.relationship.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAsD;AACtD,qCAAgE;AAChE,wEAAoE;AACpE,iDAA6C;AAC7C,+DAA2D;AAS3D,IAAa,uBAAuB,GAApC,MAAa,uBAAwB,SAAQ,4BAAY;CAYxD,CAAA;AAXoC;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;yDAAkB;AACxC;IAAT,IAAA,gBAAM,GAAE;;gEAAyB;AAKlC;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC5B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,0BAAW;sDAAC;AAInB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wCAAkB,CAAC;IACnC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;8BAC1B,wCAAkB;6DAAC;AAXxB,uBAAuB;IADnC,IAAA,gBAAM,EAAC,yBAAyB,CAAC;GACrB,uBAAuB,CAYnC;AAZY,0DAAuB"}
|
@@ -17,29 +17,29 @@ const model_entity_1 = require("./model.entity");
|
|
17
17
|
let ModelRoleEntity = class ModelRoleEntity extends common_entity_1.CommonEntity {
|
18
18
|
};
|
19
19
|
__decorate([
|
20
|
-
typeorm_1.Column(),
|
20
|
+
(0, typeorm_1.Column)(),
|
21
21
|
__metadata("design:type", Number)
|
22
22
|
], ModelRoleEntity.prototype, "model_id", void 0);
|
23
23
|
__decorate([
|
24
|
-
typeorm_1.Column(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
25
|
__metadata("design:type", Number)
|
26
26
|
], ModelRoleEntity.prototype, "role_id", void 0);
|
27
27
|
__decorate([
|
28
|
-
typeorm_1.Column(),
|
28
|
+
(0, typeorm_1.Column)(),
|
29
29
|
__metadata("design:type", String)
|
30
30
|
], ModelRoleEntity.prototype, "scope", void 0);
|
31
31
|
__decorate([
|
32
|
-
typeorm_1.ManyToOne(() => model_entity_1.ModelEntity),
|
33
|
-
typeorm_1.JoinColumn({ name: 'model_id' }),
|
32
|
+
(0, typeorm_1.ManyToOne)(() => model_entity_1.ModelEntity),
|
33
|
+
(0, typeorm_1.JoinColumn)({ name: 'model_id' }),
|
34
34
|
__metadata("design:type", model_entity_1.ModelEntity)
|
35
35
|
], ModelRoleEntity.prototype, "model", void 0);
|
36
36
|
__decorate([
|
37
|
-
typeorm_1.ManyToOne(() => role_entity_1.RoleEntity),
|
38
|
-
typeorm_1.JoinColumn({ name: 'role_id' }),
|
37
|
+
(0, typeorm_1.ManyToOne)(() => role_entity_1.RoleEntity),
|
38
|
+
(0, typeorm_1.JoinColumn)({ name: 'role_id' }),
|
39
39
|
__metadata("design:type", role_entity_1.RoleEntity)
|
40
40
|
], ModelRoleEntity.prototype, "role", void 0);
|
41
41
|
ModelRoleEntity = __decorate([
|
42
|
-
typeorm_1.Entity('sys_model_roles')
|
42
|
+
(0, typeorm_1.Entity)('sys_model_roles')
|
43
43
|
], ModelRoleEntity);
|
44
44
|
exports.ModelRoleEntity = ModelRoleEntity;
|
45
45
|
//# sourceMappingURL=model.role.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"model.role.entity.js","sourceRoot":"","sources":["../../../src/system/entities/model.role.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,qEAAiE;AACjE,iDAA6C;AAS7C,IAAa,eAAe,GAA5B,MAAa,eAAgB,SAAQ,4BAAY;CAiBhD,CAAA;AAfG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"model.role.entity.js","sourceRoot":"","sources":["../../../src/system/entities/model.role.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,qEAAiE;AACjE,iDAA6C;AAS7C,IAAa,eAAe,GAA5B,MAAa,eAAgB,SAAQ,4BAAY;CAiBhD,CAAA;AAfG;IADC,IAAA,gBAAM,GAAE;;iDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;gDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;8CACK;AAId;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC5B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,0BAAW;8CAAC;AAInB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC3B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,wBAAU;6CAAC;AAhBR,eAAe;IAD3B,IAAA,gBAAM,EAAC,iBAAiB,CAAC;GACb,eAAe,CAiB3B;AAjBY,0CAAe"}
|
@@ -18,32 +18,32 @@ const module_menu_entity_1 = require("./module.menu.entity");
|
|
18
18
|
let ModuleEntity = class ModuleEntity extends common_entity_1.CommonEntity {
|
19
19
|
};
|
20
20
|
__decorate([
|
21
|
-
class_validator_1.IsNotEmpty(),
|
22
|
-
swagger_1.ApiProperty(),
|
23
|
-
typeorm_1.Column(),
|
21
|
+
(0, class_validator_1.IsNotEmpty)(),
|
22
|
+
(0, swagger_1.ApiProperty)(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", String)
|
25
25
|
], ModuleEntity.prototype, "name", void 0);
|
26
26
|
__decorate([
|
27
|
-
class_validator_1.IsNotEmpty(),
|
28
|
-
swagger_1.ApiProperty(),
|
29
|
-
typeorm_1.Column(),
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
28
|
+
(0, swagger_1.ApiProperty)(),
|
29
|
+
(0, typeorm_1.Column)(),
|
30
30
|
__metadata("design:type", String)
|
31
31
|
], ModuleEntity.prototype, "description", void 0);
|
32
32
|
__decorate([
|
33
|
-
swagger_1.ApiPropertyOptional(),
|
34
|
-
typeorm_1.Column(),
|
33
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
34
|
+
(0, typeorm_1.Column)(),
|
35
35
|
__metadata("design:type", String)
|
36
36
|
], ModuleEntity.prototype, "image", void 0);
|
37
37
|
__decorate([
|
38
|
-
typeorm_1.Column(),
|
38
|
+
(0, typeorm_1.Column)(),
|
39
39
|
__metadata("design:type", Number)
|
40
40
|
], ModuleEntity.prototype, "display_order", void 0);
|
41
41
|
__decorate([
|
42
|
-
typeorm_1.OneToMany(() => module_menu_entity_1.ModuleMenuEntity, (module_menus) => module_menus.module),
|
42
|
+
(0, typeorm_1.OneToMany)(() => module_menu_entity_1.ModuleMenuEntity, (module_menus) => module_menus.module),
|
43
43
|
__metadata("design:type", Array)
|
44
44
|
], ModuleEntity.prototype, "module_menus", void 0);
|
45
45
|
ModuleEntity = __decorate([
|
46
|
-
typeorm_1.Entity('sys_module_details')
|
46
|
+
(0, typeorm_1.Entity)('sys_module_details')
|
47
47
|
], ModuleEntity);
|
48
48
|
exports.ModuleEntity = ModuleEntity;
|
49
49
|
//# sourceMappingURL=module.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"module.entity.js","sourceRoot":"","sources":["../../../src/system/entities/module.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAoD;AACpD,wEAAoE;AACpE,6DAAwD;AASxD,IAAa,YAAY,GAAzB,MAAa,YAAa,SAAQ,4BAAY;CAY7C,CAAA;AAX0C;IAAtC,4BAAU,
|
1
|
+
{"version":3,"file":"module.entity.js","sourceRoot":"","sources":["../../../src/system/entities/module.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAoD;AACpD,wEAAoE;AACpE,6DAAwD;AASxD,IAAa,YAAY,GAAzB,MAAa,YAAa,SAAQ,4BAAY;CAY7C,CAAA;AAX0C;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;0CAAc;AAEb;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;iDAAqB;AAE1B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;2CAAe;AAErC;IAAT,IAAA,gBAAM,GAAE;;mDAAuB;AAIhC;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,qCAAgB,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC;;kDACxC;AAXxB,YAAY;IADxB,IAAA,gBAAM,EAAC,oBAAoB,CAAC;GAChB,YAAY,CAYxB;AAZY,oCAAY"}
|
@@ -19,34 +19,34 @@ const module_entity_1 = require("./module.entity");
|
|
19
19
|
let ModuleMenuEntity = class ModuleMenuEntity extends common_entity_1.CommonEntity {
|
20
20
|
};
|
21
21
|
__decorate([
|
22
|
-
class_validator_1.IsNotEmpty(),
|
23
|
-
swagger_1.ApiProperty(),
|
24
|
-
typeorm_1.Column(),
|
22
|
+
(0, class_validator_1.IsNotEmpty)(),
|
23
|
+
(0, swagger_1.ApiProperty)(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
25
|
__metadata("design:type", Number)
|
26
26
|
], ModuleMenuEntity.prototype, "module_id", void 0);
|
27
27
|
__decorate([
|
28
|
-
class_validator_1.IsNotEmpty(),
|
29
|
-
swagger_1.ApiProperty(),
|
30
|
-
typeorm_1.Column(),
|
28
|
+
(0, class_validator_1.IsNotEmpty)(),
|
29
|
+
(0, swagger_1.ApiProperty)(),
|
30
|
+
(0, typeorm_1.Column)(),
|
31
31
|
__metadata("design:type", Number)
|
32
32
|
], ModuleMenuEntity.prototype, "menu_id", void 0);
|
33
33
|
__decorate([
|
34
|
-
swagger_1.ApiPropertyOptional(),
|
35
|
-
typeorm_1.Column(),
|
34
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
35
|
+
(0, typeorm_1.Column)(),
|
36
36
|
__metadata("design:type", Number)
|
37
37
|
], ModuleMenuEntity.prototype, "display_order", void 0);
|
38
38
|
__decorate([
|
39
|
-
typeorm_1.ManyToOne(() => menu_entity_1.MenuEntity),
|
40
|
-
typeorm_1.JoinColumn({ name: 'menu_id' }),
|
39
|
+
(0, typeorm_1.ManyToOne)(() => menu_entity_1.MenuEntity),
|
40
|
+
(0, typeorm_1.JoinColumn)({ name: 'menu_id' }),
|
41
41
|
__metadata("design:type", menu_entity_1.MenuEntity)
|
42
42
|
], ModuleMenuEntity.prototype, "menu", void 0);
|
43
43
|
__decorate([
|
44
|
-
typeorm_1.ManyToOne(() => module_entity_1.ModuleEntity),
|
45
|
-
typeorm_1.JoinColumn({ name: 'module_id' }),
|
44
|
+
(0, typeorm_1.ManyToOne)(() => module_entity_1.ModuleEntity),
|
45
|
+
(0, typeorm_1.JoinColumn)({ name: 'module_id' }),
|
46
46
|
__metadata("design:type", module_entity_1.ModuleEntity)
|
47
47
|
], ModuleMenuEntity.prototype, "module", void 0);
|
48
48
|
ModuleMenuEntity = __decorate([
|
49
|
-
typeorm_1.Entity('sys_module_menus')
|
49
|
+
(0, typeorm_1.Entity)('sys_module_menus')
|
50
50
|
], ModuleMenuEntity);
|
51
51
|
exports.ModuleMenuEntity = ModuleMenuEntity;
|
52
52
|
//# sourceMappingURL=module.menu.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"module.menu.entity.js","sourceRoot":"","sources":["../../../src/system/entities/module.menu.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAgE;AAChE,wEAAoE;AACpE,+CAA2C;AAC3C,mDAA+C;AAS/C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAgBjD,CAAA;AAf0C;IAAtC,4BAAU,
|
1
|
+
{"version":3,"file":"module.menu.entity.js","sourceRoot":"","sources":["../../../src/system/entities/module.menu.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAgE;AAChE,wEAAoE;AACpE,+CAA2C;AAC3C,mDAA+C;AAS/C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAgBjD,CAAA;AAf0C;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;mDAAmB;AAElB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;iDAAiB;AAEtB;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;uDAAuB;AAMvD;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC3B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,wBAAU;8CAAC;AAIjB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;gDAAC;AAfZ,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,kBAAkB,CAAC;GACd,gBAAgB,CAgB5B;AAhBY,4CAAgB"}
|
@@ -15,19 +15,19 @@ const common_entity_1 = require("../../common/libraries/common.entity");
|
|
15
15
|
let OpenPropertyEntity = class OpenPropertyEntity extends common_entity_1.CommonEntity {
|
16
16
|
};
|
17
17
|
__decorate([
|
18
|
-
typeorm_1.Column(),
|
18
|
+
(0, typeorm_1.Column)(),
|
19
19
|
__metadata("design:type", String)
|
20
20
|
], OpenPropertyEntity.prototype, "name", void 0);
|
21
21
|
__decorate([
|
22
|
-
typeorm_1.Column(),
|
22
|
+
(0, typeorm_1.Column)(),
|
23
23
|
__metadata("design:type", String)
|
24
24
|
], OpenPropertyEntity.prototype, "value", void 0);
|
25
25
|
__decorate([
|
26
|
-
typeorm_1.Column(),
|
26
|
+
(0, typeorm_1.Column)(),
|
27
27
|
__metadata("design:type", String)
|
28
28
|
], OpenPropertyEntity.prototype, "description", void 0);
|
29
29
|
OpenPropertyEntity = __decorate([
|
30
|
-
typeorm_1.Entity('sys_open_properties')
|
30
|
+
(0, typeorm_1.Entity)('sys_open_properties')
|
31
31
|
], OpenPropertyEntity);
|
32
32
|
exports.OpenPropertyEntity = OpenPropertyEntity;
|
33
33
|
//# sourceMappingURL=open.property.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"open.property.entity.js","sourceRoot":"","sources":["../../../src/system/entities/open.property.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CAUnD,CAAA;AARG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"open.property.entity.js","sourceRoot":"","sources":["../../../src/system/entities/open.property.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CAUnD,CAAA;AARG;IADC,IAAA,gBAAM,GAAE;;gDACI;AAGb;IADC,IAAA,gBAAM,GAAE;;iDACK;AAGd;IADC,IAAA,gBAAM,GAAE;;uDACW;AARX,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,qBAAqB,CAAC;GACjB,kBAAkB,CAU9B;AAVY,gDAAkB"}
|
@@ -17,24 +17,24 @@ const common_entity_1 = require("../../common/libraries/common.entity");
|
|
17
17
|
let PageDefinitionEntity = class PageDefinitionEntity extends common_entity_1.CommonEntity {
|
18
18
|
};
|
19
19
|
__decorate([
|
20
|
-
class_validator_1.IsNotEmpty(),
|
21
|
-
swagger_1.ApiProperty(),
|
22
|
-
typeorm_1.Column(),
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
21
|
+
(0, swagger_1.ApiProperty)(),
|
22
|
+
(0, typeorm_1.Column)(),
|
23
23
|
__metadata("design:type", String)
|
24
24
|
], PageDefinitionEntity.prototype, "name", void 0);
|
25
25
|
__decorate([
|
26
|
-
class_validator_1.IsNotEmpty(),
|
27
|
-
swagger_1.ApiProperty(),
|
28
|
-
typeorm_1.Column(),
|
26
|
+
(0, class_validator_1.IsNotEmpty)(),
|
27
|
+
(0, swagger_1.ApiProperty)(),
|
28
|
+
(0, typeorm_1.Column)(),
|
29
29
|
__metadata("design:type", String)
|
30
30
|
], PageDefinitionEntity.prototype, "description", void 0);
|
31
31
|
__decorate([
|
32
|
-
swagger_1.ApiPropertyOptional(),
|
33
|
-
typeorm_1.Column(),
|
32
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
33
|
+
(0, typeorm_1.Column)(),
|
34
34
|
__metadata("design:type", String)
|
35
35
|
], PageDefinitionEntity.prototype, "path", void 0);
|
36
36
|
PageDefinitionEntity = __decorate([
|
37
|
-
typeorm_1.Entity('sys_page_definitions')
|
37
|
+
(0, typeorm_1.Entity)('sys_page_definitions')
|
38
38
|
], PageDefinitionEntity);
|
39
39
|
exports.PageDefinitionEntity = PageDefinitionEntity;
|
40
40
|
//# sourceMappingURL=page.definition.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"page.definition.entity.js","sourceRoot":"","sources":["../../../src/system/entities/page.definition.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,4BAAY;CAQrD,CAAA;AAP0C;IAAtC,4BAAU,
|
1
|
+
{"version":3,"file":"page.definition.entity.js","sourceRoot":"","sources":["../../../src/system/entities/page.definition.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,4BAAY;CAQrD,CAAA;AAP0C;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;kDAAc;AAEb;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;yDAAqB;AAE1B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;kDAAc;AALrC,oBAAoB;IADhC,IAAA,gBAAM,EAAC,sBAAsB,CAAC;GAClB,oBAAoB,CAQhC;AARY,oDAAoB"}
|
@@ -18,29 +18,29 @@ const menu_entity_1 = require("./menu.entity");
|
|
18
18
|
let ParentMenuEntity = class ParentMenuEntity extends common_entity_1.CommonEntity {
|
19
19
|
};
|
20
20
|
__decorate([
|
21
|
-
class_validator_1.IsNotEmpty(),
|
22
|
-
swagger_1.ApiProperty(),
|
23
|
-
typeorm_1.Column(),
|
21
|
+
(0, class_validator_1.IsNotEmpty)(),
|
22
|
+
(0, swagger_1.ApiProperty)(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", Number)
|
25
25
|
], ParentMenuEntity.prototype, "menu_id", void 0);
|
26
26
|
__decorate([
|
27
|
-
class_validator_1.IsNotEmpty(),
|
28
|
-
swagger_1.ApiProperty(),
|
29
|
-
typeorm_1.Column(),
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
28
|
+
(0, swagger_1.ApiProperty)(),
|
29
|
+
(0, typeorm_1.Column)(),
|
30
30
|
__metadata("design:type", Number)
|
31
31
|
], ParentMenuEntity.prototype, "parent_menu_id", void 0);
|
32
32
|
__decorate([
|
33
|
-
typeorm_1.ManyToOne(() => menu_entity_1.MenuEntity),
|
34
|
-
typeorm_1.JoinColumn({ name: 'menu_id' }),
|
33
|
+
(0, typeorm_1.ManyToOne)(() => menu_entity_1.MenuEntity),
|
34
|
+
(0, typeorm_1.JoinColumn)({ name: 'menu_id' }),
|
35
35
|
__metadata("design:type", menu_entity_1.MenuEntity)
|
36
36
|
], ParentMenuEntity.prototype, "menu", void 0);
|
37
37
|
__decorate([
|
38
|
-
typeorm_1.ManyToOne(() => menu_entity_1.MenuEntity),
|
39
|
-
typeorm_1.JoinColumn({ name: 'parent_menu_id' }),
|
38
|
+
(0, typeorm_1.ManyToOne)(() => menu_entity_1.MenuEntity),
|
39
|
+
(0, typeorm_1.JoinColumn)({ name: 'parent_menu_id' }),
|
40
40
|
__metadata("design:type", menu_entity_1.MenuEntity)
|
41
41
|
], ParentMenuEntity.prototype, "parent_menu", void 0);
|
42
42
|
ParentMenuEntity = __decorate([
|
43
|
-
typeorm_1.Entity('sys_parent_menus')
|
43
|
+
(0, typeorm_1.Entity)('sys_parent_menus')
|
44
44
|
], ParentMenuEntity);
|
45
45
|
exports.ParentMenuEntity = ParentMenuEntity;
|
46
46
|
//# sourceMappingURL=parent.menu.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"parent.menu.entity.js","sourceRoot":"","sources":["../../../src/system/entities/parent.menu.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAA6C;AAC7C,qCAAgE;AAChE,wEAAoE;AACpE,+CAA2C;AAS3C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAcjD,CAAA;AAb0C;IAAtC,4BAAU,
|
1
|
+
{"version":3,"file":"parent.menu.entity.js","sourceRoot":"","sources":["../../../src/system/entities/parent.menu.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAA6C;AAC7C,qCAAgE;AAChE,wEAAoE;AACpE,+CAA2C;AAS3C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAcjD,CAAA;AAb0C;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;iDAAiB;AAEhB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;wDAAwB;AAM9D;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC3B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,wBAAU;8CAAC;AAIjB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC3B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;8BAC1B,wBAAU;qDAAC;AAbf,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,kBAAkB,CAAC;GACd,gBAAgB,CAc5B;AAdY,4CAAgB"}
|
@@ -16,28 +16,28 @@ const chart_entity_1 = require("./chart.entity");
|
|
16
16
|
let PrimaryAxisEntity = class PrimaryAxisEntity extends common_entity_1.CommonEntity {
|
17
17
|
};
|
18
18
|
__decorate([
|
19
|
-
typeorm_1.Column(),
|
19
|
+
(0, typeorm_1.Column)(),
|
20
20
|
__metadata("design:type", String)
|
21
21
|
], PrimaryAxisEntity.prototype, "name", void 0);
|
22
22
|
__decorate([
|
23
|
-
typeorm_1.Column(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", String)
|
25
25
|
], PrimaryAxisEntity.prototype, "description", void 0);
|
26
26
|
__decorate([
|
27
|
-
typeorm_1.Column(),
|
27
|
+
(0, typeorm_1.Column)(),
|
28
28
|
__metadata("design:type", Number)
|
29
29
|
], PrimaryAxisEntity.prototype, "chart_id", void 0);
|
30
30
|
__decorate([
|
31
|
-
typeorm_1.Column('json'),
|
31
|
+
(0, typeorm_1.Column)('json'),
|
32
32
|
__metadata("design:type", Object)
|
33
33
|
], PrimaryAxisEntity.prototype, "attributes", void 0);
|
34
34
|
__decorate([
|
35
|
-
typeorm_1.ManyToOne(() => chart_entity_1.ChartEntity),
|
36
|
-
typeorm_1.JoinColumn({ name: 'chart_id' }),
|
35
|
+
(0, typeorm_1.ManyToOne)(() => chart_entity_1.ChartEntity),
|
36
|
+
(0, typeorm_1.JoinColumn)({ name: 'chart_id' }),
|
37
37
|
__metadata("design:type", chart_entity_1.ChartEntity)
|
38
38
|
], PrimaryAxisEntity.prototype, "chart", void 0);
|
39
39
|
PrimaryAxisEntity = __decorate([
|
40
|
-
typeorm_1.Entity('sys_chart_primary_axis')
|
40
|
+
(0, typeorm_1.Entity)('sys_chart_primary_axis')
|
41
41
|
], PrimaryAxisEntity);
|
42
42
|
exports.PrimaryAxisEntity = PrimaryAxisEntity;
|
43
43
|
//# sourceMappingURL=primary.axis.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"primary.axis.entity.js","sourceRoot":"","sources":["../../../src/system/entities/primary.axis.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,iDAA6C;AAS7C,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,4BAAY;CAiBlD,CAAA;AAfG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"primary.axis.entity.js","sourceRoot":"","sources":["../../../src/system/entities/primary.axis.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,iDAA6C;AAS7C,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,4BAAY;CAiBlD,CAAA;AAfG;IADC,IAAA,gBAAM,GAAE;;+CACI;AAGb;IADC,IAAA,gBAAM,GAAE;;sDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;mDACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;qDACC;AAKhB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC5B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,0BAAW;gDAAC;AAhBV,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,wBAAwB,CAAC;GACpB,iBAAiB,CAiB7B;AAjBY,8CAAiB"}
|
@@ -16,26 +16,26 @@ const common_entity_1 = require("../../common/libraries/common.entity");
|
|
16
16
|
let PropertyEntity = class PropertyEntity extends common_entity_1.CommonEntity {
|
17
17
|
};
|
18
18
|
__decorate([
|
19
|
-
class_validator_1.IsNotEmpty(),
|
20
|
-
typeorm_1.Column(),
|
19
|
+
(0, class_validator_1.IsNotEmpty)(),
|
20
|
+
(0, typeorm_1.Column)(),
|
21
21
|
__metadata("design:type", String)
|
22
22
|
], PropertyEntity.prototype, "name", void 0);
|
23
23
|
__decorate([
|
24
|
-
class_validator_1.IsNotEmpty(),
|
25
|
-
typeorm_1.Column(),
|
24
|
+
(0, class_validator_1.IsNotEmpty)(),
|
25
|
+
(0, typeorm_1.Column)(),
|
26
26
|
__metadata("design:type", String)
|
27
27
|
], PropertyEntity.prototype, "value", void 0);
|
28
28
|
__decorate([
|
29
|
-
typeorm_1.Column(),
|
29
|
+
(0, typeorm_1.Column)(),
|
30
30
|
__metadata("design:type", Boolean)
|
31
31
|
], PropertyEntity.prototype, "is_caching_enabled", void 0);
|
32
32
|
__decorate([
|
33
|
-
class_validator_1.IsNotEmpty(),
|
34
|
-
typeorm_1.Column(),
|
33
|
+
(0, class_validator_1.IsNotEmpty)(),
|
34
|
+
(0, typeorm_1.Column)(),
|
35
35
|
__metadata("design:type", String)
|
36
36
|
], PropertyEntity.prototype, "description", void 0);
|
37
37
|
PropertyEntity = __decorate([
|
38
|
-
typeorm_1.Entity('sys_properties')
|
38
|
+
(0, typeorm_1.Entity)('sys_properties')
|
39
39
|
], PropertyEntity);
|
40
40
|
exports.PropertyEntity = PropertyEntity;
|
41
41
|
//# sourceMappingURL=property.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"property.entity.js","sourceRoot":"","sources":["../../../src/system/entities/property.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6C;AAC7C,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,cAAc,GAA3B,MAAa,cAAe,SAAQ,4BAAY;CAO/C,CAAA;AAN2B;IAAvB,4BAAU,
|
1
|
+
{"version":3,"file":"property.entity.js","sourceRoot":"","sources":["../../../src/system/entities/property.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6C;AAC7C,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,cAAc,GAA3B,MAAa,cAAe,SAAQ,4BAAY;CAO/C,CAAA;AAN2B;IAAvB,IAAA,4BAAU,GAAE;IAAE,IAAA,gBAAM,GAAE;;4CAAc;AACb;IAAvB,IAAA,4BAAU,GAAE;IAAE,IAAA,gBAAM,GAAE;;6CAAe;AAC5B;IAAT,IAAA,gBAAM,GAAE;;0DAA6B;AACd;IAAvB,IAAA,4BAAU,GAAE;IAAE,IAAA,gBAAM,GAAE;;mDAAqB;AAJnC,cAAc;IAD1B,IAAA,gBAAM,EAAC,gBAAgB,CAAC;GACZ,cAAc,CAO1B;AAPY,wCAAc"}
|