@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
@@ -20,89 +20,89 @@ const model_entity_1 = require("./model.entity");
|
|
20
20
|
let RelationshipEntity = class RelationshipEntity extends common_entity_1.CommonEntity {
|
21
21
|
};
|
22
22
|
__decorate([
|
23
|
-
typeorm_1.Column(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", String)
|
25
25
|
], RelationshipEntity.prototype, "source_type", void 0);
|
26
26
|
__decorate([
|
27
|
-
typeorm_1.Column(),
|
27
|
+
(0, typeorm_1.Column)(),
|
28
28
|
__metadata("design:type", Number)
|
29
29
|
], RelationshipEntity.prototype, "source_id", void 0);
|
30
30
|
__decorate([
|
31
|
-
class_validator_1.IsNotEmpty(),
|
32
|
-
swagger_1.ApiProperty(),
|
33
|
-
typeorm_1.Column(),
|
31
|
+
(0, class_validator_1.IsNotEmpty)(),
|
32
|
+
(0, swagger_1.ApiProperty)(),
|
33
|
+
(0, typeorm_1.Column)(),
|
34
34
|
__metadata("design:type", String)
|
35
35
|
], RelationshipEntity.prototype, "name", void 0);
|
36
36
|
__decorate([
|
37
|
-
class_validator_1.IsNotEmpty(),
|
38
|
-
swagger_1.ApiProperty(),
|
39
|
-
typeorm_1.Column(),
|
37
|
+
(0, class_validator_1.IsNotEmpty)(),
|
38
|
+
(0, swagger_1.ApiProperty)(),
|
39
|
+
(0, typeorm_1.Column)(),
|
40
40
|
__metadata("design:type", String)
|
41
41
|
], RelationshipEntity.prototype, "display_name", void 0);
|
42
42
|
__decorate([
|
43
|
-
class_validator_1.IsNotEmpty(),
|
44
|
-
swagger_1.ApiProperty(),
|
45
|
-
typeorm_1.Column(),
|
43
|
+
(0, class_validator_1.IsNotEmpty)(),
|
44
|
+
(0, swagger_1.ApiProperty)(),
|
45
|
+
(0, typeorm_1.Column)(),
|
46
46
|
__metadata("design:type", String)
|
47
47
|
], RelationshipEntity.prototype, "description", void 0);
|
48
48
|
__decorate([
|
49
|
-
class_validator_1.IsNotEmpty(),
|
50
|
-
swagger_1.ApiProperty(),
|
51
|
-
typeorm_1.Column(),
|
49
|
+
(0, class_validator_1.IsNotEmpty)(),
|
50
|
+
(0, swagger_1.ApiProperty)(),
|
51
|
+
(0, typeorm_1.Column)(),
|
52
52
|
__metadata("design:type", String)
|
53
53
|
], RelationshipEntity.prototype, "join_definition", void 0);
|
54
54
|
__decorate([
|
55
|
-
swagger_1.ApiPropertyOptional(),
|
56
|
-
typeorm_1.Column(),
|
55
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
56
|
+
(0, typeorm_1.Column)(),
|
57
57
|
__metadata("design:type", Number)
|
58
58
|
], RelationshipEntity.prototype, "reference_type_id", void 0);
|
59
59
|
__decorate([
|
60
|
-
swagger_1.ApiPropertyOptional(),
|
61
|
-
typeorm_1.Column(),
|
60
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
61
|
+
(0, typeorm_1.Column)(),
|
62
62
|
__metadata("design:type", Number)
|
63
63
|
], RelationshipEntity.prototype, "reference_model_id", void 0);
|
64
64
|
__decorate([
|
65
|
-
swagger_1.ApiPropertyOptional(),
|
66
|
-
typeorm_1.Column(),
|
65
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
66
|
+
(0, typeorm_1.Column)(),
|
67
67
|
__metadata("design:type", Number)
|
68
68
|
], RelationshipEntity.prototype, "source_column_id", void 0);
|
69
69
|
__decorate([
|
70
|
-
swagger_1.ApiPropertyOptional(),
|
71
|
-
typeorm_1.Column(),
|
70
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
71
|
+
(0, typeorm_1.Column)(),
|
72
72
|
__metadata("design:type", Number)
|
73
73
|
], RelationshipEntity.prototype, "alias_column_id", void 0);
|
74
74
|
__decorate([
|
75
|
-
class_validator_1.IsNotEmpty(),
|
76
|
-
swagger_1.ApiProperty(),
|
77
|
-
typeorm_1.Column(),
|
75
|
+
(0, class_validator_1.IsNotEmpty)(),
|
76
|
+
(0, swagger_1.ApiProperty)(),
|
77
|
+
(0, typeorm_1.Column)(),
|
78
78
|
__metadata("design:type", String)
|
79
79
|
], RelationshipEntity.prototype, "default_ordering", void 0);
|
80
80
|
__decorate([
|
81
|
-
typeorm_1.Column('json'),
|
81
|
+
(0, typeorm_1.Column)('json'),
|
82
82
|
__metadata("design:type", Object)
|
83
83
|
], RelationshipEntity.prototype, "attributes", void 0);
|
84
84
|
__decorate([
|
85
|
-
typeorm_1.ManyToOne(() => lookup_value_entity_1.LookupValueEntity),
|
86
|
-
typeorm_1.JoinColumn({ name: 'reference_type_id' }),
|
85
|
+
(0, typeorm_1.ManyToOne)(() => lookup_value_entity_1.LookupValueEntity),
|
86
|
+
(0, typeorm_1.JoinColumn)({ name: 'reference_type_id' }),
|
87
87
|
__metadata("design:type", lookup_value_entity_1.LookupValueEntity)
|
88
88
|
], RelationshipEntity.prototype, "reference_type", void 0);
|
89
89
|
__decorate([
|
90
|
-
typeorm_1.ManyToOne(() => model_entity_1.ModelEntity),
|
91
|
-
typeorm_1.JoinColumn({ name: 'reference_model_id' }),
|
90
|
+
(0, typeorm_1.ManyToOne)(() => model_entity_1.ModelEntity),
|
91
|
+
(0, typeorm_1.JoinColumn)({ name: 'reference_model_id' }),
|
92
92
|
__metadata("design:type", model_entity_1.ModelEntity)
|
93
93
|
], RelationshipEntity.prototype, "reference_model", void 0);
|
94
94
|
__decorate([
|
95
|
-
typeorm_1.ManyToOne(() => column_entity_1.ColumnEntity),
|
96
|
-
typeorm_1.JoinColumn({ name: 'source_column_id' }),
|
95
|
+
(0, typeorm_1.ManyToOne)(() => column_entity_1.ColumnEntity),
|
96
|
+
(0, typeorm_1.JoinColumn)({ name: 'source_column_id' }),
|
97
97
|
__metadata("design:type", column_entity_1.ColumnEntity)
|
98
98
|
], RelationshipEntity.prototype, "source_column", void 0);
|
99
99
|
__decorate([
|
100
|
-
typeorm_1.ManyToOne(() => column_entity_1.ColumnEntity),
|
101
|
-
typeorm_1.JoinColumn({ name: 'alias_column_id' }),
|
100
|
+
(0, typeorm_1.ManyToOne)(() => column_entity_1.ColumnEntity),
|
101
|
+
(0, typeorm_1.JoinColumn)({ name: 'alias_column_id' }),
|
102
102
|
__metadata("design:type", column_entity_1.ColumnEntity)
|
103
103
|
], RelationshipEntity.prototype, "alias_column", void 0);
|
104
104
|
RelationshipEntity = __decorate([
|
105
|
-
typeorm_1.Entity('sys_relationship_details')
|
105
|
+
(0, typeorm_1.Entity)('sys_relationship_details')
|
106
106
|
], RelationshipEntity);
|
107
107
|
exports.RelationshipEntity = RelationshipEntity;
|
108
108
|
//# sourceMappingURL=relationship.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"relationship.entity.js","sourceRoot":"","sources":["../../../src/system/entities/relationship.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAC/C,+DAA0D;AAC1D,iDAA6C;AAS7C,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CAuCnD,CAAA;AArCG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"relationship.entity.js","sourceRoot":"","sources":["../../../src/system/entities/relationship.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAC/C,+DAA0D;AAC1D,iDAA6C;AAS7C,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CAuCnD,CAAA;AArCG;IADC,IAAA,gBAAM,GAAE;;uDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAKlB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,qBAAW,GAAE;IACb,IAAA,gBAAM,GAAE;;gDACI;AAE0B;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;wDAAsB;AACrB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;uDAAqB;AACpB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;2DAAyB;AAC9B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;6DAA2B;AAC1B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;8DAA4B;AAC3B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;4DAA0B;AACzB;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;2DAAyB;AAClB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;4DAA0B;AAEhD;IAAf,IAAA,gBAAM,EAAC,MAAM,CAAC;;sDAAiB;AAKhC;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,CAAC;8BAC1B,uCAAiB;0DAAC;AAIlC;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC5B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,CAAC;8BAC1B,0BAAW;2DAAC;AAI7B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;8BAC1B,4BAAY;yDAAC;AAI5B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;8BAC1B,4BAAY;wDAAC;AAtClB,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,0BAA0B,CAAC;GACtB,kBAAkB,CAuC9B;AAvCY,gDAAkB"}
|
@@ -16,20 +16,20 @@ const report_entity_1 = require("./report.entity");
|
|
16
16
|
let ReportColumnEntity = class ReportColumnEntity extends common_entity_1.CommonEntity {
|
17
17
|
};
|
18
18
|
__decorate([
|
19
|
-
typeorm_1.Column(),
|
19
|
+
(0, typeorm_1.Column)(),
|
20
20
|
__metadata("design:type", Number)
|
21
21
|
], ReportColumnEntity.prototype, "report_id", void 0);
|
22
22
|
__decorate([
|
23
|
-
typeorm_1.Column(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", Number)
|
25
25
|
], ReportColumnEntity.prototype, "column_id", void 0);
|
26
26
|
__decorate([
|
27
|
-
typeorm_1.ManyToOne(() => report_entity_1.ReportEntity),
|
28
|
-
typeorm_1.JoinColumn({ name: 'report_id' }),
|
27
|
+
(0, typeorm_1.ManyToOne)(() => report_entity_1.ReportEntity),
|
28
|
+
(0, typeorm_1.JoinColumn)({ name: 'report_id' }),
|
29
29
|
__metadata("design:type", report_entity_1.ReportEntity)
|
30
30
|
], ReportColumnEntity.prototype, "report", void 0);
|
31
31
|
ReportColumnEntity = __decorate([
|
32
|
-
typeorm_1.Entity('sys_report_columns')
|
32
|
+
(0, typeorm_1.Entity)('sys_report_columns')
|
33
33
|
], ReportColumnEntity);
|
34
34
|
exports.ReportColumnEntity = ReportColumnEntity;
|
35
35
|
//# sourceMappingURL=report.column.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"report.column.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAS/C,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CAWnD,CAAA;AATG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"report.column.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAS/C,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CAWnD,CAAA;AATG;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAKlB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;kDAAC;AAVZ,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,oBAAoB,CAAC;GAChB,kBAAkB,CAW9B;AAXY,gDAAkB"}
|
@@ -23,57 +23,57 @@ const system_script_entity_1 = require("./system.script.entity");
|
|
23
23
|
let ReportEntity = class ReportEntity extends common_entity_1.CommonEntity {
|
24
24
|
};
|
25
25
|
__decorate([
|
26
|
-
typeorm_1.Column(),
|
26
|
+
(0, typeorm_1.Column)(),
|
27
27
|
__metadata("design:type", String)
|
28
28
|
], ReportEntity.prototype, "name", void 0);
|
29
29
|
__decorate([
|
30
|
-
typeorm_1.Column(),
|
30
|
+
(0, typeorm_1.Column)(),
|
31
31
|
__metadata("design:type", String)
|
32
32
|
], ReportEntity.prototype, "description", void 0);
|
33
33
|
__decorate([
|
34
|
-
typeorm_1.Column(),
|
34
|
+
(0, typeorm_1.Column)(),
|
35
35
|
__metadata("design:type", Number)
|
36
36
|
], ReportEntity.prototype, "query_id", void 0);
|
37
37
|
__decorate([
|
38
|
-
typeorm_1.Column(),
|
38
|
+
(0, typeorm_1.Column)(),
|
39
39
|
__metadata("design:type", String)
|
40
40
|
], ReportEntity.prototype, "route", void 0);
|
41
41
|
__decorate([
|
42
|
-
typeorm_1.Column(),
|
42
|
+
(0, typeorm_1.Column)(),
|
43
43
|
__metadata("design:type", String)
|
44
44
|
], ReportEntity.prototype, "restricted_query", void 0);
|
45
45
|
__decorate([
|
46
|
-
typeorm_1.Column(),
|
46
|
+
(0, typeorm_1.Column)(),
|
47
47
|
__metadata("design:type", String)
|
48
48
|
], ReportEntity.prototype, "restricted_columns", void 0);
|
49
49
|
__decorate([
|
50
|
-
typeorm_1.Column(),
|
50
|
+
(0, typeorm_1.Column)(),
|
51
51
|
__metadata("design:type", String)
|
52
52
|
], ReportEntity.prototype, "documentation_url", void 0);
|
53
53
|
__decorate([
|
54
|
-
typeorm_1.Column(),
|
54
|
+
(0, typeorm_1.Column)(),
|
55
55
|
__metadata("design:type", String)
|
56
56
|
], ReportEntity.prototype, "order_definition", void 0);
|
57
57
|
__decorate([
|
58
|
-
typeorm_1.Column(),
|
58
|
+
(0, typeorm_1.Column)(),
|
59
59
|
__metadata("design:type", String)
|
60
60
|
], ReportEntity.prototype, "includes", void 0);
|
61
61
|
__decorate([
|
62
|
-
typeorm_1.ManyToOne(() => system_script_entity_1.SystemScriptEntity),
|
63
|
-
typeorm_1.JoinColumn({ name: 'query_id' }),
|
62
|
+
(0, typeorm_1.ManyToOne)(() => system_script_entity_1.SystemScriptEntity),
|
63
|
+
(0, typeorm_1.JoinColumn)({ name: 'query_id' }),
|
64
64
|
__metadata("design:type", system_script_entity_1.SystemScriptEntity)
|
65
65
|
], ReportEntity.prototype, "query", void 0);
|
66
66
|
__decorate([
|
67
|
-
typeorm_1.OneToMany(() => report_column_entity_1.ReportColumnEntity, (alias) => alias.report),
|
67
|
+
(0, typeorm_1.OneToMany)(() => report_column_entity_1.ReportColumnEntity, (alias) => alias.report),
|
68
68
|
__metadata("design:type", Array)
|
69
69
|
], ReportEntity.prototype, "alias", void 0);
|
70
70
|
__decorate([
|
71
|
-
typeorm_1.OneToMany(() => report_param_entity_1.ReportParamEntity, (params) => params.report),
|
71
|
+
(0, typeorm_1.OneToMany)(() => report_param_entity_1.ReportParamEntity, (params) => params.report),
|
72
72
|
__metadata("design:type", Array)
|
73
73
|
], ReportEntity.prototype, "params", void 0);
|
74
74
|
__decorate([
|
75
|
-
typeorm_1.ManyToMany(() => column_entity_1.ColumnEntity),
|
76
|
-
typeorm_1.JoinTable({
|
75
|
+
(0, typeorm_1.ManyToMany)(() => column_entity_1.ColumnEntity),
|
76
|
+
(0, typeorm_1.JoinTable)({
|
77
77
|
name: 'sys_report_columns',
|
78
78
|
joinColumn: { name: 'report_id' },
|
79
79
|
inverseJoinColumn: { name: 'column_id' },
|
@@ -81,12 +81,12 @@ __decorate([
|
|
81
81
|
__metadata("design:type", Array)
|
82
82
|
], ReportEntity.prototype, "columns", void 0);
|
83
83
|
__decorate([
|
84
|
-
typeorm_1.OneToMany(() => report_relationship_entity_1.ReportRelationshipEntity, (report_relationships) => report_relationships.report),
|
84
|
+
(0, typeorm_1.OneToMany)(() => report_relationship_entity_1.ReportRelationshipEntity, (report_relationships) => report_relationships.report),
|
85
85
|
__metadata("design:type", Array)
|
86
86
|
], ReportEntity.prototype, "report_relationships", void 0);
|
87
87
|
__decorate([
|
88
|
-
typeorm_1.ManyToMany(() => relationship_entity_1.RelationshipEntity),
|
89
|
-
typeorm_1.JoinTable({
|
88
|
+
(0, typeorm_1.ManyToMany)(() => relationship_entity_1.RelationshipEntity),
|
89
|
+
(0, typeorm_1.JoinTable)({
|
90
90
|
name: 'sys_report_relationships',
|
91
91
|
joinColumn: { name: 'report_id' },
|
92
92
|
inverseJoinColumn: { name: 'relationship_id' },
|
@@ -94,12 +94,12 @@ __decorate([
|
|
94
94
|
__metadata("design:type", Array)
|
95
95
|
], ReportEntity.prototype, "relationships", void 0);
|
96
96
|
__decorate([
|
97
|
-
typeorm_1.OneToMany(() => report_role_entity_1.ReportRoleEntity, (report_roles) => report_roles.report),
|
97
|
+
(0, typeorm_1.OneToMany)(() => report_role_entity_1.ReportRoleEntity, (report_roles) => report_roles.report),
|
98
98
|
__metadata("design:type", Array)
|
99
99
|
], ReportEntity.prototype, "report_roles", void 0);
|
100
100
|
__decorate([
|
101
|
-
typeorm_1.ManyToMany(() => role_entity_1.RoleEntity),
|
102
|
-
typeorm_1.JoinTable({
|
101
|
+
(0, typeorm_1.ManyToMany)(() => role_entity_1.RoleEntity),
|
102
|
+
(0, typeorm_1.JoinTable)({
|
103
103
|
name: 'sys_report_roles',
|
104
104
|
joinColumn: { name: 'report_id' },
|
105
105
|
inverseJoinColumn: { name: 'role_id' },
|
@@ -107,7 +107,7 @@ __decorate([
|
|
107
107
|
__metadata("design:type", Array)
|
108
108
|
], ReportEntity.prototype, "roles", void 0);
|
109
109
|
ReportEntity = __decorate([
|
110
|
-
typeorm_1.Entity('sys_report_details')
|
110
|
+
(0, typeorm_1.Entity)('sys_report_details')
|
111
111
|
], ReportEntity);
|
112
112
|
exports.ReportEntity = ReportEntity;
|
113
113
|
//# sourceMappingURL=report.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"report.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAkG;AAClG,wEAAoE;AACpE,qEAAiE;AAEjE,mDAA+C;AAE/C,+DAA2D;AAC3D,iEAA4D;AAC5D,+DAA0D;AAC1D,6EAAwE;AACxE,6DAAwD;AACxD,iEAA4D;AAU5D,IAAa,YAAY,GAAzB,MAAa,YAAa,SAAQ,4BAAY;CAwE7C,CAAA;AAtEG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"report.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAkG;AAClG,wEAAoE;AACpE,qEAAiE;AAEjE,mDAA+C;AAE/C,+DAA2D;AAC3D,iEAA4D;AAC5D,+DAA0D;AAC1D,6EAAwE;AACxE,6DAAwD;AACxD,iEAA4D;AAU5D,IAAa,YAAY,GAAzB,MAAa,YAAa,SAAQ,4BAAY;CAwE7C,CAAA;AAtEG;IADC,IAAA,gBAAM,GAAE;;0CACI;AAGb;IADC,IAAA,gBAAM,GAAE;;iDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;8CACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;2CACK;AAGd;IADC,IAAA,gBAAM,GAAE;;sDACgB;AAGzB;IADC,IAAA,gBAAM,GAAE;;wDACkB;AAG3B;IADC,IAAA,gBAAM,GAAE;;uDACiB;AAG1B;IADC,IAAA,gBAAM,GAAE;;sDACgB;AAGzB;IADC,IAAA,gBAAM,GAAE;;8CACQ;AAKjB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,CAAC;IACnC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,yCAAkB;2CAAC;AAG1B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC;;2CACjC;AAG5B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC;;4CAClC;AAQ5B;IANC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC9B,IAAA,mBAAS,EAAC;QACP,IAAI,EAAE,oBAAoB;QAC1B,UAAU,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;QACjC,iBAAiB,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;KAC3C,CAAC;;6CACsB;AAGxB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,qDAAwB,EAAE,CAAC,oBAAoB,EAAE,EAAE,CAAC,oBAAoB,CAAC,MAAM,CAAC;;0DAChD;AAQjD;IANC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,wCAAkB,CAAC;IACpC,IAAA,mBAAS,EAAC;QACP,IAAI,EAAE,0BAA0B;QAChC,UAAU,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;QACjC,iBAAiB,EAAE,EAAE,IAAI,EAAE,iBAAiB,EAAE;KACjD,CAAC;;mDACkC;AAGpC;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,qCAAgB,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC;;kDACxC;AAQjC;IANC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC5B,IAAA,mBAAS,EAAC;QACP,IAAI,EAAE,kBAAkB;QACxB,UAAU,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;QACjC,iBAAiB,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KACzC,CAAC;;2CACkB;AAnEX,YAAY;IADxB,IAAA,gBAAM,EAAC,oBAAoB,CAAC;GAChB,YAAY,CAwExB;AAxEY,oCAAY"}
|
@@ -17,33 +17,33 @@ const report_entity_1 = require("./report.entity");
|
|
17
17
|
let ReportParamEntity = class ReportParamEntity extends common_entity_1.CommonEntity {
|
18
18
|
};
|
19
19
|
__decorate([
|
20
|
-
typeorm_1.Column(),
|
20
|
+
(0, typeorm_1.Column)(),
|
21
21
|
__metadata("design:type", String)
|
22
22
|
], ReportParamEntity.prototype, "name", void 0);
|
23
23
|
__decorate([
|
24
|
-
typeorm_1.Column(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
25
|
__metadata("design:type", Number)
|
26
26
|
], ReportParamEntity.prototype, "report_id", void 0);
|
27
27
|
__decorate([
|
28
|
-
typeorm_1.Column(),
|
28
|
+
(0, typeorm_1.Column)(),
|
29
29
|
__metadata("design:type", Number)
|
30
30
|
], ReportParamEntity.prototype, "column_id", void 0);
|
31
31
|
__decorate([
|
32
|
-
typeorm_1.Column(),
|
32
|
+
(0, typeorm_1.Column)(),
|
33
33
|
__metadata("design:type", String)
|
34
34
|
], ReportParamEntity.prototype, "default_value", void 0);
|
35
35
|
__decorate([
|
36
|
-
typeorm_1.ManyToOne(() => report_entity_1.ReportEntity),
|
37
|
-
typeorm_1.JoinColumn({ name: 'report_id' }),
|
36
|
+
(0, typeorm_1.ManyToOne)(() => report_entity_1.ReportEntity),
|
37
|
+
(0, typeorm_1.JoinColumn)({ name: 'report_id' }),
|
38
38
|
__metadata("design:type", report_entity_1.ReportEntity)
|
39
39
|
], ReportParamEntity.prototype, "report", void 0);
|
40
40
|
__decorate([
|
41
|
-
typeorm_1.ManyToOne(() => column_entity_1.ColumnEntity),
|
42
|
-
typeorm_1.JoinColumn({ name: 'column_id' }),
|
41
|
+
(0, typeorm_1.ManyToOne)(() => column_entity_1.ColumnEntity),
|
42
|
+
(0, typeorm_1.JoinColumn)({ name: 'column_id' }),
|
43
43
|
__metadata("design:type", column_entity_1.ColumnEntity)
|
44
44
|
], ReportParamEntity.prototype, "column", void 0);
|
45
45
|
ReportParamEntity = __decorate([
|
46
|
-
typeorm_1.Entity('sys_report_params')
|
46
|
+
(0, typeorm_1.Entity)('sys_report_params')
|
47
47
|
], ReportParamEntity);
|
48
48
|
exports.ReportParamEntity = ReportParamEntity;
|
49
49
|
//# sourceMappingURL=report.param.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"report.param.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.param.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAC/C,mDAA+C;AAS/C,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,4BAAY;CAqBlD,CAAA;AAnBG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"report.param.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.param.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAC/C,mDAA+C;AAS/C,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,4BAAY;CAqBlD,CAAA;AAnBG;IADC,IAAA,gBAAM,GAAE;;+CACI;AAGb;IADC,IAAA,gBAAM,GAAE;;oDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;oDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;wDACa;AAKtB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;iDAAC;AAIrB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;iDAAC;AApBZ,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,iBAAiB,CAqB7B;AArBY,8CAAiB"}
|
@@ -17,25 +17,25 @@ const report_entity_1 = require("./report.entity");
|
|
17
17
|
let ReportRelationshipEntity = class ReportRelationshipEntity 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
|
], ReportRelationshipEntity.prototype, "report_id", void 0);
|
23
23
|
__decorate([
|
24
|
-
typeorm_1.Column(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
25
|
__metadata("design:type", Number)
|
26
26
|
], ReportRelationshipEntity.prototype, "relationship_id", void 0);
|
27
27
|
__decorate([
|
28
|
-
typeorm_1.ManyToOne(() => report_entity_1.ReportEntity),
|
29
|
-
typeorm_1.JoinColumn({ name: 'report_id' }),
|
28
|
+
(0, typeorm_1.ManyToOne)(() => report_entity_1.ReportEntity),
|
29
|
+
(0, typeorm_1.JoinColumn)({ name: 'report_id' }),
|
30
30
|
__metadata("design:type", report_entity_1.ReportEntity)
|
31
31
|
], ReportRelationshipEntity.prototype, "report", void 0);
|
32
32
|
__decorate([
|
33
|
-
typeorm_1.ManyToOne(() => relationship_entity_1.RelationshipEntity),
|
34
|
-
typeorm_1.JoinColumn({ name: 'relationship_id' }),
|
33
|
+
(0, typeorm_1.ManyToOne)(() => relationship_entity_1.RelationshipEntity),
|
34
|
+
(0, typeorm_1.JoinColumn)({ name: 'relationship_id' }),
|
35
35
|
__metadata("design:type", relationship_entity_1.RelationshipEntity)
|
36
36
|
], ReportRelationshipEntity.prototype, "relationship", void 0);
|
37
37
|
ReportRelationshipEntity = __decorate([
|
38
|
-
typeorm_1.Entity('sys_report_relationships')
|
38
|
+
(0, typeorm_1.Entity)('sys_report_relationships')
|
39
39
|
], ReportRelationshipEntity);
|
40
40
|
exports.ReportRelationshipEntity = ReportRelationshipEntity;
|
41
41
|
//# sourceMappingURL=report.relationship.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"report.relationship.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.relationship.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA2D;AAC3D,mDAA+C;AAS/C,IAAa,wBAAwB,GAArC,MAAa,wBAAyB,SAAQ,4BAAY;CAezD,CAAA;AAbG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"report.relationship.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.relationship.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA2D;AAC3D,mDAA+C;AAS/C,IAAa,wBAAwB,GAArC,MAAa,wBAAyB,SAAQ,4BAAY;CAezD,CAAA;AAbG;IADC,IAAA,gBAAM,GAAE;;2DACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;iEACe;AAKxB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;wDAAC;AAIrB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wCAAkB,CAAC;IACnC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;8BAC1B,wCAAkB;8DAAC;AAdxB,wBAAwB;IADpC,IAAA,gBAAM,EAAC,0BAA0B,CAAC;GACtB,wBAAwB,CAepC;AAfY,4DAAwB"}
|
@@ -17,25 +17,25 @@ const report_entity_1 = require("./report.entity");
|
|
17
17
|
let ReportRoleEntity = class ReportRoleEntity 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
|
], ReportRoleEntity.prototype, "report_id", void 0);
|
23
23
|
__decorate([
|
24
|
-
typeorm_1.Column(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
25
|
__metadata("design:type", Number)
|
26
26
|
], ReportRoleEntity.prototype, "role_id", void 0);
|
27
27
|
__decorate([
|
28
|
-
typeorm_1.ManyToOne(() => report_entity_1.ReportEntity),
|
29
|
-
typeorm_1.JoinColumn({ name: 'report_id' }),
|
28
|
+
(0, typeorm_1.ManyToOne)(() => report_entity_1.ReportEntity),
|
29
|
+
(0, typeorm_1.JoinColumn)({ name: 'report_id' }),
|
30
30
|
__metadata("design:type", report_entity_1.ReportEntity)
|
31
31
|
], ReportRoleEntity.prototype, "report", void 0);
|
32
32
|
__decorate([
|
33
|
-
typeorm_1.ManyToOne(() => role_entity_1.RoleEntity),
|
34
|
-
typeorm_1.JoinColumn({ name: 'role_id' }),
|
33
|
+
(0, typeorm_1.ManyToOne)(() => role_entity_1.RoleEntity),
|
34
|
+
(0, typeorm_1.JoinColumn)({ name: 'role_id' }),
|
35
35
|
__metadata("design:type", role_entity_1.RoleEntity)
|
36
36
|
], ReportRoleEntity.prototype, "role", void 0);
|
37
37
|
ReportRoleEntity = __decorate([
|
38
|
-
typeorm_1.Entity('sys_report_roles')
|
38
|
+
(0, typeorm_1.Entity)('sys_report_roles')
|
39
39
|
], ReportRoleEntity);
|
40
40
|
exports.ReportRoleEntity = ReportRoleEntity;
|
41
41
|
//# sourceMappingURL=report.role.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"report.role.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.role.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,qEAAiE;AACjE,mDAA+C;AAS/C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAejD,CAAA;AAbG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"report.role.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.role.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,qEAAiE;AACjE,mDAA+C;AAS/C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAejD,CAAA;AAbG;IADC,IAAA,gBAAM,GAAE;;mDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;iDACO;AAKhB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;gDAAC;AAIrB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC3B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,wBAAU;8CAAC;AAdR,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,kBAAkB,CAAC;GACd,gBAAgB,CAe5B;AAfY,4CAAgB"}
|
@@ -16,48 +16,48 @@ const event_detail_entity_1 = require("./event.detail.entity");
|
|
16
16
|
let ScheduledEventEntity = class ScheduledEventEntity 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
|
], ScheduledEventEntity.prototype, "name", void 0);
|
22
22
|
__decorate([
|
23
|
-
typeorm_1.Column(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", String)
|
25
25
|
], ScheduledEventEntity.prototype, "description", void 0);
|
26
26
|
__decorate([
|
27
|
-
typeorm_1.Column(),
|
27
|
+
(0, typeorm_1.Column)(),
|
28
28
|
__metadata("design:type", Number)
|
29
29
|
], ScheduledEventEntity.prototype, "event_id", void 0);
|
30
30
|
__decorate([
|
31
|
-
typeorm_1.Column(),
|
31
|
+
(0, typeorm_1.Column)(),
|
32
32
|
__metadata("design:type", String)
|
33
33
|
], ScheduledEventEntity.prototype, "parameter", void 0);
|
34
34
|
__decorate([
|
35
|
-
typeorm_1.Column(),
|
35
|
+
(0, typeorm_1.Column)(),
|
36
36
|
__metadata("design:type", String)
|
37
37
|
], ScheduledEventEntity.prototype, "timing", void 0);
|
38
38
|
__decorate([
|
39
|
-
typeorm_1.Column(),
|
39
|
+
(0, typeorm_1.Column)(),
|
40
40
|
__metadata("design:type", Date)
|
41
41
|
], ScheduledEventEntity.prototype, "start_time", void 0);
|
42
42
|
__decorate([
|
43
|
-
typeorm_1.Column(),
|
43
|
+
(0, typeorm_1.Column)(),
|
44
44
|
__metadata("design:type", Date)
|
45
45
|
], ScheduledEventEntity.prototype, "end_time", void 0);
|
46
46
|
__decorate([
|
47
|
-
typeorm_1.Column(),
|
47
|
+
(0, typeorm_1.Column)(),
|
48
48
|
__metadata("design:type", Date)
|
49
49
|
], ScheduledEventEntity.prototype, "last_scheduled_time", void 0);
|
50
50
|
__decorate([
|
51
|
-
typeorm_1.Column(),
|
51
|
+
(0, typeorm_1.Column)(),
|
52
52
|
__metadata("design:type", Boolean)
|
53
53
|
], ScheduledEventEntity.prototype, "active", void 0);
|
54
54
|
__decorate([
|
55
|
-
typeorm_1.ManyToOne(() => event_detail_entity_1.EventDetailEntity),
|
56
|
-
typeorm_1.JoinColumn({ name: 'event_id' }),
|
55
|
+
(0, typeorm_1.ManyToOne)(() => event_detail_entity_1.EventDetailEntity),
|
56
|
+
(0, typeorm_1.JoinColumn)({ name: 'event_id' }),
|
57
57
|
__metadata("design:type", event_detail_entity_1.EventDetailEntity)
|
58
58
|
], ScheduledEventEntity.prototype, "event", void 0);
|
59
59
|
ScheduledEventEntity = __decorate([
|
60
|
-
typeorm_1.Entity('sys_scheduled_events')
|
60
|
+
(0, typeorm_1.Entity)('sys_scheduled_events')
|
61
61
|
], ScheduledEventEntity);
|
62
62
|
exports.ScheduledEventEntity = ScheduledEventEntity;
|
63
63
|
//# sourceMappingURL=scheduled.event.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"scheduled.event.entity.js","sourceRoot":"","sources":["../../../src/system/entities/scheduled.event.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAS1D,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,4BAAY;CAgCrD,CAAA;AA9BG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"scheduled.event.entity.js","sourceRoot":"","sources":["../../../src/system/entities/scheduled.event.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAS1D,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,4BAAY;CAgCrD,CAAA;AA9BG;IADC,IAAA,gBAAM,GAAE;;kDACI;AAGb;IADC,IAAA,gBAAM,GAAE;;yDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;sDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;uDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;oDACM;AAGf;IADC,IAAA,gBAAM,GAAE;8BACG,IAAI;wDAAC;AAGjB;IADC,IAAA,gBAAM,GAAE;8BACC,IAAI;sDAAC;AAGf;IADC,IAAA,gBAAM,GAAE;8BACY,IAAI;iEAAC;AAG1B;IADC,IAAA,gBAAM,GAAE;;oDACO;AAKhB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,uCAAiB;mDAAC;AA/BhB,oBAAoB;IADhC,IAAA,gBAAM,EAAC,sBAAsB,CAAC;GAClB,oBAAoB,CAgChC;AAhCY,oDAAoB"}
|
@@ -16,32 +16,32 @@ const chart_entity_1 = require("./chart.entity");
|
|
16
16
|
let SecondaryAxisEntity = class SecondaryAxisEntity 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
|
], SecondaryAxisEntity.prototype, "name", void 0);
|
22
22
|
__decorate([
|
23
|
-
typeorm_1.Column(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", String)
|
25
25
|
], SecondaryAxisEntity.prototype, "description", void 0);
|
26
26
|
__decorate([
|
27
|
-
typeorm_1.Column(),
|
27
|
+
(0, typeorm_1.Column)(),
|
28
28
|
__metadata("design:type", Number)
|
29
29
|
], SecondaryAxisEntity.prototype, "display_order", void 0);
|
30
30
|
__decorate([
|
31
|
-
typeorm_1.Column(),
|
31
|
+
(0, typeorm_1.Column)(),
|
32
32
|
__metadata("design:type", Number)
|
33
33
|
], SecondaryAxisEntity.prototype, "chart_id", void 0);
|
34
34
|
__decorate([
|
35
|
-
typeorm_1.Column('json'),
|
35
|
+
(0, typeorm_1.Column)('json'),
|
36
36
|
__metadata("design:type", Object)
|
37
37
|
], SecondaryAxisEntity.prototype, "attributes", void 0);
|
38
38
|
__decorate([
|
39
|
-
typeorm_1.ManyToOne(() => chart_entity_1.ChartEntity),
|
40
|
-
typeorm_1.JoinColumn({ name: 'chart_id' }),
|
39
|
+
(0, typeorm_1.ManyToOne)(() => chart_entity_1.ChartEntity),
|
40
|
+
(0, typeorm_1.JoinColumn)({ name: 'chart_id' }),
|
41
41
|
__metadata("design:type", chart_entity_1.ChartEntity)
|
42
42
|
], SecondaryAxisEntity.prototype, "chart", void 0);
|
43
43
|
SecondaryAxisEntity = __decorate([
|
44
|
-
typeorm_1.Entity('sys_chart_secondary_axis')
|
44
|
+
(0, typeorm_1.Entity)('sys_chart_secondary_axis')
|
45
45
|
], SecondaryAxisEntity);
|
46
46
|
exports.SecondaryAxisEntity = SecondaryAxisEntity;
|
47
47
|
//# sourceMappingURL=secondary.axis.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"secondary.axis.entity.js","sourceRoot":"","sources":["../../../src/system/entities/secondary.axis.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,iDAA6C;AAS7C,IAAa,mBAAmB,GAAhC,MAAa,mBAAoB,SAAQ,4BAAY;CAoBpD,CAAA;AAlBG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"secondary.axis.entity.js","sourceRoot":"","sources":["../../../src/system/entities/secondary.axis.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,iDAA6C;AAS7C,IAAa,mBAAmB,GAAhC,MAAa,mBAAoB,SAAQ,4BAAY;CAoBpD,CAAA;AAlBG;IADC,IAAA,gBAAM,GAAE;;iDACI;AAGb;IADC,IAAA,gBAAM,GAAE;;wDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;0DACa;AAGtB;IADC,IAAA,gBAAM,GAAE;;qDACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;uDACC;AAKhB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC5B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,0BAAW;kDAAC;AAnBV,mBAAmB;IAD/B,IAAA,gBAAM,EAAC,0BAA0B,CAAC;GACtB,mBAAmB,CAoB/B;AApBY,kDAAmB"}
|