@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
@@ -17,45 +17,45 @@ const system_script_entity_1 = require("./system.script.entity");
|
|
17
17
|
let ClientScriptEntity = class ClientScriptEntity 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
|
], ClientScriptEntity.prototype, "name", void 0);
|
23
23
|
__decorate([
|
24
|
-
typeorm_1.Column(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
25
|
__metadata("design:type", String)
|
26
26
|
], ClientScriptEntity.prototype, "description", void 0);
|
27
27
|
__decorate([
|
28
|
-
typeorm_1.Column(),
|
28
|
+
(0, typeorm_1.Column)(),
|
29
29
|
__metadata("design:type", String)
|
30
30
|
], ClientScriptEntity.prototype, "source_type", void 0);
|
31
31
|
__decorate([
|
32
|
-
typeorm_1.Column(),
|
32
|
+
(0, typeorm_1.Column)(),
|
33
33
|
__metadata("design:type", Number)
|
34
34
|
], ClientScriptEntity.prototype, "source_id", void 0);
|
35
35
|
__decorate([
|
36
|
-
typeorm_1.Column(),
|
36
|
+
(0, typeorm_1.Column)(),
|
37
37
|
__metadata("design:type", Number)
|
38
38
|
], ClientScriptEntity.prototype, "activity_type_id", void 0);
|
39
39
|
__decorate([
|
40
|
-
typeorm_1.Column(),
|
40
|
+
(0, typeorm_1.Column)(),
|
41
41
|
__metadata("design:type", Number)
|
42
42
|
], ClientScriptEntity.prototype, "script_id", void 0);
|
43
43
|
__decorate([
|
44
|
-
typeorm_1.Column(),
|
44
|
+
(0, typeorm_1.Column)(),
|
45
45
|
__metadata("design:type", Boolean)
|
46
46
|
], ClientScriptEntity.prototype, "active", void 0);
|
47
47
|
__decorate([
|
48
|
-
typeorm_1.ManyToOne(() => lookup_value_entity_1.LookupValueEntity),
|
49
|
-
typeorm_1.JoinColumn({ name: 'activity_type_id' }),
|
48
|
+
(0, typeorm_1.ManyToOne)(() => lookup_value_entity_1.LookupValueEntity),
|
49
|
+
(0, typeorm_1.JoinColumn)({ name: 'activity_type_id' }),
|
50
50
|
__metadata("design:type", lookup_value_entity_1.LookupValueEntity)
|
51
51
|
], ClientScriptEntity.prototype, "activity_type", void 0);
|
52
52
|
__decorate([
|
53
|
-
typeorm_1.ManyToOne(() => system_script_entity_1.SystemScriptEntity),
|
54
|
-
typeorm_1.JoinColumn({ name: 'script_id' }),
|
53
|
+
(0, typeorm_1.ManyToOne)(() => system_script_entity_1.SystemScriptEntity),
|
54
|
+
(0, typeorm_1.JoinColumn)({ name: 'script_id' }),
|
55
55
|
__metadata("design:type", system_script_entity_1.SystemScriptEntity)
|
56
56
|
], ClientScriptEntity.prototype, "script", void 0);
|
57
57
|
ClientScriptEntity = __decorate([
|
58
|
-
typeorm_1.Entity('sys_client_scripts')
|
58
|
+
(0, typeorm_1.Entity)('sys_client_scripts')
|
59
59
|
], ClientScriptEntity);
|
60
60
|
exports.ClientScriptEntity = ClientScriptEntity;
|
61
61
|
//# sourceMappingURL=client.script.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"client.script.entity.js","sourceRoot":"","sources":["../../../src/system/entities/client.script.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAC1D,iEAA4D;AAS5D,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CA8BnD,CAAA;AA5BG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"client.script.entity.js","sourceRoot":"","sources":["../../../src/system/entities/client.script.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAC1D,iEAA4D;AAS5D,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,4BAAY;CA8BnD,CAAA;AA5BG;IADC,IAAA,gBAAM,GAAE;;gDACI;AAGb;IADC,IAAA,gBAAM,GAAE;;uDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;uDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;4DACgB;AAGzB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;kDACO;AAKhB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;8BAC1B,uCAAiB;yDAAC;AAIjC;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,CAAC;IACnC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,yCAAkB;kDAAC;AA7BlB,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,oBAAoB,CAAC;GAChB,kBAAkB,CA8B9B;AA9BY,gDAAkB"}
|
@@ -17,25 +17,25 @@ const common_entity_1 = require("../../common/libraries/common.entity");
|
|
17
17
|
let ColumnDefinitionEntity = class ColumnDefinitionEntity 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
|
], ColumnDefinitionEntity.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
|
], ColumnDefinitionEntity.prototype, "description", void 0);
|
31
31
|
__decorate([
|
32
|
-
class_validator_1.IsNotEmpty(),
|
33
|
-
swagger_1.ApiProperty(),
|
34
|
-
typeorm_1.Column(),
|
32
|
+
(0, class_validator_1.IsNotEmpty)(),
|
33
|
+
(0, swagger_1.ApiProperty)(),
|
34
|
+
(0, typeorm_1.Column)(),
|
35
35
|
__metadata("design:type", String)
|
36
36
|
], ColumnDefinitionEntity.prototype, "supported_identifiers", void 0);
|
37
37
|
ColumnDefinitionEntity = __decorate([
|
38
|
-
typeorm_1.Entity('sys_column_definitions')
|
38
|
+
(0, typeorm_1.Entity)('sys_column_definitions')
|
39
39
|
], ColumnDefinitionEntity);
|
40
40
|
exports.ColumnDefinitionEntity = ColumnDefinitionEntity;
|
41
41
|
//# sourceMappingURL=column.definition.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"column.definition.entity.js","sourceRoot":"","sources":["../../../src/system/entities/column.definition.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAA6C;AAC7C,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,sBAAsB,GAAnC,MAAa,sBAAuB,SAAQ,4BAAY;CAMvD,CAAA;AAL0C;IAAtC,4BAAU,
|
1
|
+
{"version":3,"file":"column.definition.entity.js","sourceRoot":"","sources":["../../../src/system/entities/column.definition.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAA6C;AAC7C,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,sBAAsB,GAAnC,MAAa,sBAAuB,SAAQ,4BAAY;CAMvD,CAAA;AAL0C;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;oDAAc;AACb;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;2DAAqB;AACpB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;qEAA+B;AAH5D,sBAAsB;IADlC,IAAA,gBAAM,EAAC,wBAAwB,CAAC;GACpB,sBAAsB,CAMlC;AANY,wDAAsB"}
|
@@ -19,86 +19,86 @@ const model_entity_1 = require("./model.entity");
|
|
19
19
|
let ColumnEntity = class ColumnEntity 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", String)
|
26
26
|
], ColumnEntity.prototype, "source_type", void 0);
|
27
27
|
__decorate([
|
28
|
-
swagger_1.ApiPropertyOptional(),
|
29
|
-
typeorm_1.Column(),
|
28
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
29
|
+
(0, typeorm_1.Column)(),
|
30
30
|
__metadata("design:type", Number)
|
31
31
|
], ColumnEntity.prototype, "source_id", 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
|
], ColumnEntity.prototype, "name", 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
|
], ColumnEntity.prototype, "display_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
|
], ColumnEntity.prototype, "description", void 0);
|
50
50
|
__decorate([
|
51
|
-
swagger_1.ApiPropertyOptional(),
|
52
|
-
typeorm_1.Column(),
|
51
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
52
|
+
(0, typeorm_1.Column)(),
|
53
53
|
__metadata("design:type", Boolean)
|
54
54
|
], ColumnEntity.prototype, "visibility", void 0);
|
55
55
|
__decorate([
|
56
|
-
swagger_1.ApiPropertyOptional(),
|
57
|
-
typeorm_1.Column(),
|
56
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
57
|
+
(0, typeorm_1.Column)(),
|
58
58
|
__metadata("design:type", Boolean)
|
59
59
|
], ColumnEntity.prototype, "required", void 0);
|
60
60
|
__decorate([
|
61
|
-
swagger_1.ApiPropertyOptional(),
|
62
|
-
typeorm_1.Column(),
|
61
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
62
|
+
(0, typeorm_1.Column)(),
|
63
63
|
__metadata("design:type", Boolean)
|
64
64
|
], ColumnEntity.prototype, "nullable", void 0);
|
65
65
|
__decorate([
|
66
|
-
swagger_1.ApiPropertyOptional(),
|
67
|
-
typeorm_1.Column(),
|
66
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
67
|
+
(0, typeorm_1.Column)(),
|
68
68
|
__metadata("design:type", Number)
|
69
69
|
], ColumnEntity.prototype, "type_id", void 0);
|
70
70
|
__decorate([
|
71
|
-
class_validator_1.IsNotEmpty(),
|
72
|
-
swagger_1.ApiProperty(),
|
73
|
-
typeorm_1.Column(),
|
71
|
+
(0, class_validator_1.IsNotEmpty)(),
|
72
|
+
(0, swagger_1.ApiProperty)(),
|
73
|
+
(0, typeorm_1.Column)(),
|
74
74
|
__metadata("design:type", String)
|
75
75
|
], ColumnEntity.prototype, "query_params", void 0);
|
76
76
|
__decorate([
|
77
|
-
swagger_1.ApiPropertyOptional(),
|
78
|
-
typeorm_1.Column(),
|
77
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
78
|
+
(0, typeorm_1.Column)(),
|
79
79
|
__metadata("design:type", Number)
|
80
80
|
], ColumnEntity.prototype, "reference_model_id", void 0);
|
81
81
|
__decorate([
|
82
|
-
swagger_1.ApiPropertyOptional(),
|
83
|
-
typeorm_1.Column(),
|
82
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
83
|
+
(0, typeorm_1.Column)(),
|
84
84
|
__metadata("design:type", Boolean)
|
85
85
|
], ColumnEntity.prototype, "is_custom_column", void 0);
|
86
86
|
__decorate([
|
87
|
-
typeorm_1.Column('json'),
|
87
|
+
(0, typeorm_1.Column)('json'),
|
88
88
|
__metadata("design:type", Object)
|
89
89
|
], ColumnEntity.prototype, "attributes", void 0);
|
90
90
|
__decorate([
|
91
|
-
typeorm_1.OneToOne(() => column_definition_entity_1.ColumnDefinitionEntity),
|
92
|
-
typeorm_1.JoinColumn({ name: 'type_id' }),
|
91
|
+
(0, typeorm_1.OneToOne)(() => column_definition_entity_1.ColumnDefinitionEntity),
|
92
|
+
(0, typeorm_1.JoinColumn)({ name: 'type_id' }),
|
93
93
|
__metadata("design:type", column_definition_entity_1.ColumnDefinitionEntity)
|
94
94
|
], ColumnEntity.prototype, "type", void 0);
|
95
95
|
__decorate([
|
96
|
-
typeorm_1.OneToOne(() => model_entity_1.ModelEntity),
|
97
|
-
typeorm_1.JoinColumn({ name: 'reference_model_id' }),
|
96
|
+
(0, typeorm_1.OneToOne)(() => model_entity_1.ModelEntity),
|
97
|
+
(0, typeorm_1.JoinColumn)({ name: 'reference_model_id' }),
|
98
98
|
__metadata("design:type", model_entity_1.ModelEntity)
|
99
99
|
], ColumnEntity.prototype, "reference_model", void 0);
|
100
100
|
ColumnEntity = __decorate([
|
101
|
-
typeorm_1.Entity('sys_column_details')
|
101
|
+
(0, typeorm_1.Entity)('sys_column_details')
|
102
102
|
], ColumnEntity);
|
103
103
|
exports.ColumnEntity = ColumnEntity;
|
104
104
|
//# sourceMappingURL=column.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"column.entity.js","sourceRoot":"","sources":["../../../src/system/entities/column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAA+D;AAC/D,wEAAoE;AACpE,yEAAoE;AACpE,iDAA6C;AAS7C,IAAa,YAAY,GAAzB,MAAa,YAAa,SAAQ,4BAAY;CAwB7C,CAAA;AAvB0C;IAAtC,4BAAU,
|
1
|
+
{"version":3,"file":"column.entity.js","sourceRoot":"","sources":["../../../src/system/entities/column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,qDAA6C;AAC7C,qCAA+D;AAC/D,wEAAoE;AACpE,yEAAoE;AACpE,iDAA6C;AAS7C,IAAa,YAAY,GAAzB,MAAa,YAAa,SAAQ,4BAAY;CAwB7C,CAAA;AAvB0C;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;iDAAqB;AAC1B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;+CAAmB;AACZ;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;0CAAc;AACb;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;kDAAsB;AACrB;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;iDAAqB;AAC1B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;gDAAqB;AACpB;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;8CAAmB;AAClB;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;8CAAmB;AAClB;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;6CAAiB;AACV;IAAtC,IAAA,4BAAU,GAAE;IAAE,IAAA,qBAAW,GAAE;IAAE,IAAA,gBAAM,GAAE;;kDAAsB;AAC3B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;wDAA4B;AAC3B;IAAhC,IAAA,6BAAmB,GAAE;IAAE,IAAA,gBAAM,GAAE;;sDAA2B;AAE3C;IAAf,IAAA,gBAAM,EAAC,MAAM,CAAC;;gDAAiB;AAKhC;IAFC,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,iDAAsB,CAAC;IACtC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,iDAAsB;0CAAC;AAI7B;IAFC,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC3B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,CAAC;8BAC1B,0BAAW;qDAAC;AAvBpB,YAAY;IADxB,IAAA,gBAAM,EAAC,oBAAoB,CAAC;GAChB,YAAY,CAwBxB;AAxBY,oCAAY"}
|
@@ -16,27 +16,27 @@ const common_entity_1 = require("../../common/libraries/common.entity");
|
|
16
16
|
let CommentEntity = class CommentEntity extends common_entity_1.CommonEntity {
|
17
17
|
};
|
18
18
|
__decorate([
|
19
|
-
typeorm_1.Column(),
|
20
|
-
class_validator_1.IsNotEmpty(),
|
19
|
+
(0, typeorm_1.Column)(),
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
21
21
|
__metadata("design:type", String)
|
22
22
|
], CommentEntity.prototype, "source_type", void 0);
|
23
23
|
__decorate([
|
24
|
-
typeorm_1.Column(),
|
25
|
-
class_validator_1.IsNotEmpty(),
|
26
|
-
class_validator_1.IsNumber(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
|
+
(0, class_validator_1.IsNotEmpty)(),
|
26
|
+
(0, class_validator_1.IsNumber)(),
|
27
27
|
__metadata("design:type", Number)
|
28
28
|
], CommentEntity.prototype, "source_id", void 0);
|
29
29
|
__decorate([
|
30
|
-
typeorm_1.Column(),
|
31
|
-
class_validator_1.IsNotEmpty(),
|
30
|
+
(0, typeorm_1.Column)(),
|
31
|
+
(0, class_validator_1.IsNotEmpty)(),
|
32
32
|
__metadata("design:type", String)
|
33
33
|
], CommentEntity.prototype, "comments", void 0);
|
34
34
|
__decorate([
|
35
|
-
typeorm_1.Column(),
|
35
|
+
(0, typeorm_1.Column)(),
|
36
36
|
__metadata("design:type", Boolean)
|
37
37
|
], CommentEntity.prototype, "is_system_generated", void 0);
|
38
38
|
CommentEntity = __decorate([
|
39
|
-
typeorm_1.Entity('sys_comments')
|
39
|
+
(0, typeorm_1.Entity)('sys_comments')
|
40
40
|
], CommentEntity);
|
41
41
|
exports.CommentEntity = CommentEntity;
|
42
42
|
//# sourceMappingURL=comment.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"comment.entity.js","sourceRoot":"","sources":["../../../src/system/entities/comment.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,aAAa,GAA1B,MAAa,aAAc,SAAQ,4BAAY;CAkB9C,CAAA;AAfG;IAFC,gBAAM,
|
1
|
+
{"version":3,"file":"comment.entity.js","sourceRoot":"","sources":["../../../src/system/entities/comment.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,aAAa,GAA1B,MAAa,aAAc,SAAQ,4BAAY;CAkB9C,CAAA;AAfG;IAFC,IAAA,gBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;kDACO;AAKpB;IAHC,IAAA,gBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;gDACO;AAIlB;IAFC,IAAA,gBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;+CACI;AAGjB;IADC,IAAA,gBAAM,GAAE;;0DACoB;AAfpB,aAAa;IADzB,IAAA,gBAAM,EAAC,cAAc,CAAC;GACV,aAAa,CAkBzB;AAlBY,sCAAa"}
|
@@ -16,32 +16,32 @@ const lookup_value_entity_1 = require("./lookup.value.entity");
|
|
16
16
|
let DocumentEntity = class DocumentEntity 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
|
], DocumentEntity.prototype, "source_type", void 0);
|
22
22
|
__decorate([
|
23
|
-
typeorm_1.Column(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", Number)
|
25
25
|
], DocumentEntity.prototype, "source_id", void 0);
|
26
26
|
__decorate([
|
27
|
-
typeorm_1.Column(),
|
27
|
+
(0, typeorm_1.Column)(),
|
28
28
|
__metadata("design:type", String)
|
29
29
|
], DocumentEntity.prototype, "document_url", void 0);
|
30
30
|
__decorate([
|
31
|
-
typeorm_1.Column(),
|
31
|
+
(0, typeorm_1.Column)(),
|
32
32
|
__metadata("design:type", Number)
|
33
33
|
], DocumentEntity.prototype, "type_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
|
], DocumentEntity.prototype, "attributes", void 0);
|
38
38
|
__decorate([
|
39
|
-
typeorm_1.ManyToOne(() => lookup_value_entity_1.LookupValueEntity),
|
40
|
-
typeorm_1.JoinColumn({ name: 'type_id' }),
|
39
|
+
(0, typeorm_1.ManyToOne)(() => lookup_value_entity_1.LookupValueEntity),
|
40
|
+
(0, typeorm_1.JoinColumn)({ name: 'type_id' }),
|
41
41
|
__metadata("design:type", lookup_value_entity_1.LookupValueEntity)
|
42
42
|
], DocumentEntity.prototype, "type", void 0);
|
43
43
|
DocumentEntity = __decorate([
|
44
|
-
typeorm_1.Entity('sys_documents')
|
44
|
+
(0, typeorm_1.Entity)('sys_documents')
|
45
45
|
], DocumentEntity);
|
46
46
|
exports.DocumentEntity = DocumentEntity;
|
47
47
|
//# sourceMappingURL=document.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"document.entity.js","sourceRoot":"","sources":["../../../src/system/entities/document.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAS1D,IAAa,cAAc,GAA3B,MAAa,cAAe,SAAQ,4BAAY;CAoB/C,CAAA;AAlBG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"document.entity.js","sourceRoot":"","sources":["../../../src/system/entities/document.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAS1D,IAAa,cAAc,GAA3B,MAAa,cAAe,SAAQ,4BAAY;CAoB/C,CAAA;AAlBG;IADC,IAAA,gBAAM,GAAE;;mDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;iDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;oDACY;AAGrB;IADC,IAAA,gBAAM,GAAE;;+CACO;AAGhB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;kDACC;AAKhB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,uCAAiB;4CAAC;AAnBf,cAAc;IAD1B,IAAA,gBAAM,EAAC,eAAe,CAAC;GACX,cAAc,CAoB1B;AApBY,wCAAc"}
|
@@ -15,19 +15,19 @@ const common_entity_1 = require("../../common/libraries/common.entity");
|
|
15
15
|
let EventDetailEntity = class EventDetailEntity 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
|
], EventDetailEntity.prototype, "name", void 0);
|
21
21
|
__decorate([
|
22
|
-
typeorm_1.Column(),
|
22
|
+
(0, typeorm_1.Column)(),
|
23
23
|
__metadata("design:type", String)
|
24
24
|
], EventDetailEntity.prototype, "description", void 0);
|
25
25
|
__decorate([
|
26
|
-
typeorm_1.Column(),
|
26
|
+
(0, typeorm_1.Column)(),
|
27
27
|
__metadata("design:type", String)
|
28
28
|
], EventDetailEntity.prototype, "identifier", void 0);
|
29
29
|
EventDetailEntity = __decorate([
|
30
|
-
typeorm_1.Entity('sys_event_details')
|
30
|
+
(0, typeorm_1.Entity)('sys_event_details')
|
31
31
|
], EventDetailEntity);
|
32
32
|
exports.EventDetailEntity = EventDetailEntity;
|
33
33
|
//# sourceMappingURL=event.detail.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"event.detail.entity.js","sourceRoot":"","sources":["../../../src/system/entities/event.detail.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,4BAAY;CAUlD,CAAA;AARG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"event.detail.entity.js","sourceRoot":"","sources":["../../../src/system/entities/event.detail.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,4BAAY;CAUlD,CAAA;AARG;IADC,IAAA,gBAAM,GAAE;;+CACI;AAGb;IADC,IAAA,gBAAM,GAAE;;sDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;qDACU;AARV,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,iBAAiB,CAU7B;AAVY,8CAAiB"}
|
@@ -16,44 +16,44 @@ const event_detail_entity_1 = require("./event.detail.entity");
|
|
16
16
|
let EventQueueEntity = class EventQueueEntity 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
|
], EventQueueEntity.prototype, "name", void 0);
|
22
22
|
__decorate([
|
23
|
-
typeorm_1.Column(),
|
23
|
+
(0, typeorm_1.Column)(),
|
24
24
|
__metadata("design:type", Number)
|
25
25
|
], EventQueueEntity.prototype, "event_id", void 0);
|
26
26
|
__decorate([
|
27
|
-
typeorm_1.Column(),
|
27
|
+
(0, typeorm_1.Column)(),
|
28
28
|
__metadata("design:type", String)
|
29
29
|
], EventQueueEntity.prototype, "parameter", void 0);
|
30
30
|
__decorate([
|
31
|
-
typeorm_1.Column(),
|
31
|
+
(0, typeorm_1.Column)(),
|
32
32
|
__metadata("design:type", Date)
|
33
33
|
], EventQueueEntity.prototype, "start_time", void 0);
|
34
34
|
__decorate([
|
35
|
-
typeorm_1.Column(),
|
35
|
+
(0, typeorm_1.Column)(),
|
36
36
|
__metadata("design:type", Date)
|
37
37
|
], EventQueueEntity.prototype, "end_time", void 0);
|
38
38
|
__decorate([
|
39
|
-
typeorm_1.Column(),
|
39
|
+
(0, typeorm_1.Column)(),
|
40
40
|
__metadata("design:type", Date)
|
41
41
|
], EventQueueEntity.prototype, "scheduled_start_time", void 0);
|
42
42
|
__decorate([
|
43
|
-
typeorm_1.Column(),
|
43
|
+
(0, typeorm_1.Column)(),
|
44
44
|
__metadata("design:type", String)
|
45
45
|
], EventQueueEntity.prototype, "source_type", void 0);
|
46
46
|
__decorate([
|
47
|
-
typeorm_1.Column(),
|
47
|
+
(0, typeorm_1.Column)(),
|
48
48
|
__metadata("design:type", Number)
|
49
49
|
], EventQueueEntity.prototype, "source_id", void 0);
|
50
50
|
__decorate([
|
51
|
-
typeorm_1.ManyToOne(() => event_detail_entity_1.EventDetailEntity),
|
52
|
-
typeorm_1.JoinColumn({ name: 'event_id' }),
|
51
|
+
(0, typeorm_1.ManyToOne)(() => event_detail_entity_1.EventDetailEntity),
|
52
|
+
(0, typeorm_1.JoinColumn)({ name: 'event_id' }),
|
53
53
|
__metadata("design:type", event_detail_entity_1.EventDetailEntity)
|
54
54
|
], EventQueueEntity.prototype, "event", void 0);
|
55
55
|
EventQueueEntity = __decorate([
|
56
|
-
typeorm_1.Entity('sys_event_queues')
|
56
|
+
(0, typeorm_1.Entity)('sys_event_queues')
|
57
57
|
], EventQueueEntity);
|
58
58
|
exports.EventQueueEntity = EventQueueEntity;
|
59
59
|
//# sourceMappingURL=event.queue.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"event.queue.entity.js","sourceRoot":"","sources":["../../../src/system/entities/event.queue.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAS1D,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CA6BjD,CAAA;AA3BG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"event.queue.entity.js","sourceRoot":"","sources":["../../../src/system/entities/event.queue.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAS1D,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CA6BjD,CAAA;AA3BG;IADC,IAAA,gBAAM,GAAE;;8CACI;AAGb;IADC,IAAA,gBAAM,GAAE;;kDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;mDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;8BACG,IAAI;oDAAC;AAGjB;IADC,IAAA,gBAAM,GAAE;8BACC,IAAI;kDAAC;AAGf;IADC,IAAA,gBAAM,GAAE;8BACa,IAAI;8DAAC;AAG3B;IADC,IAAA,gBAAM,GAAE;;qDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;mDACS;AAKlB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,uCAAiB;+CAAC;AA5BhB,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,kBAAkB,CAAC;GACd,gBAAgB,CA6B5B;AA7BY,4CAAgB"}
|
@@ -17,25 +17,25 @@ const form_entity_1 = require("./form.entity");
|
|
17
17
|
let FormColumnEntity = class FormColumnEntity 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
|
], FormColumnEntity.prototype, "form_id", void 0);
|
23
23
|
__decorate([
|
24
|
-
typeorm_1.Column(),
|
24
|
+
(0, typeorm_1.Column)(),
|
25
25
|
__metadata("design:type", Number)
|
26
26
|
], FormColumnEntity.prototype, "column_id", void 0);
|
27
27
|
__decorate([
|
28
|
-
typeorm_1.ManyToOne(() => form_entity_1.FormEntity),
|
29
|
-
typeorm_1.JoinColumn({ name: 'form_id' }),
|
28
|
+
(0, typeorm_1.ManyToOne)(() => form_entity_1.FormEntity),
|
29
|
+
(0, typeorm_1.JoinColumn)({ name: 'form_id' }),
|
30
30
|
__metadata("design:type", form_entity_1.FormEntity)
|
31
31
|
], FormColumnEntity.prototype, "form", void 0);
|
32
32
|
__decorate([
|
33
|
-
typeorm_1.ManyToOne(() => column_entity_1.ColumnEntity),
|
34
|
-
typeorm_1.JoinColumn({ name: 'column_id' }),
|
33
|
+
(0, typeorm_1.ManyToOne)(() => column_entity_1.ColumnEntity),
|
34
|
+
(0, typeorm_1.JoinColumn)({ name: 'column_id' }),
|
35
35
|
__metadata("design:type", column_entity_1.ColumnEntity)
|
36
36
|
], FormColumnEntity.prototype, "column", void 0);
|
37
37
|
FormColumnEntity = __decorate([
|
38
|
-
typeorm_1.Entity('sys_form_columns')
|
38
|
+
(0, typeorm_1.Entity)('sys_form_columns')
|
39
39
|
], FormColumnEntity);
|
40
40
|
exports.FormColumnEntity = FormColumnEntity;
|
41
41
|
//# sourceMappingURL=form.column.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"form.column.entity.js","sourceRoot":"","sources":["../../../src/system/entities/form.column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAC/C,+CAA2C;AAS3C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAejD,CAAA;AAbG;IADC,gBAAM,
|
1
|
+
{"version":3,"file":"form.column.entity.js","sourceRoot":"","sources":["../../../src/system/entities/form.column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,mDAA+C;AAC/C,+CAA2C;AAS3C,IAAa,gBAAgB,GAA7B,MAAa,gBAAiB,SAAQ,4BAAY;CAejD,CAAA;AAbG;IADC,IAAA,gBAAM,GAAE;;iDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;mDACS;AAKlB;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;AAdZ,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,kBAAkB,CAAC;GACd,gBAAgB,CAe5B;AAfY,4CAAgB"}
|
@@ -18,46 +18,46 @@ const lookup_value_entity_1 = require("./lookup.value.entity");
|
|
18
18
|
let FormEntity = class FormEntity extends common_entity_1.CommonEntity {
|
19
19
|
};
|
20
20
|
__decorate([
|
21
|
-
typeorm_1.Column(),
|
21
|
+
(0, typeorm_1.Column)(),
|
22
22
|
__metadata("design:type", String)
|
23
23
|
], FormEntity.prototype, "name", void 0);
|
24
24
|
__decorate([
|
25
|
-
typeorm_1.Column(),
|
25
|
+
(0, typeorm_1.Column)(),
|
26
26
|
__metadata("design:type", String)
|
27
27
|
], FormEntity.prototype, "description", void 0);
|
28
28
|
__decorate([
|
29
|
-
typeorm_1.Column(),
|
29
|
+
(0, typeorm_1.Column)(),
|
30
30
|
__metadata("design:type", String)
|
31
31
|
], FormEntity.prototype, "identifier", void 0);
|
32
32
|
__decorate([
|
33
|
-
typeorm_1.Column(),
|
33
|
+
(0, typeorm_1.Column)(),
|
34
34
|
__metadata("design:type", String)
|
35
35
|
], FormEntity.prototype, "route_url", void 0);
|
36
36
|
__decorate([
|
37
|
-
typeorm_1.Column(),
|
37
|
+
(0, typeorm_1.Column)(),
|
38
38
|
__metadata("design:type", Number)
|
39
39
|
], FormEntity.prototype, "method_id", void 0);
|
40
40
|
__decorate([
|
41
|
-
typeorm_1.Column(),
|
41
|
+
(0, typeorm_1.Column)(),
|
42
42
|
__metadata("design:type", Number)
|
43
43
|
], FormEntity.prototype, "type_id", void 0);
|
44
44
|
__decorate([
|
45
|
-
typeorm_1.ManyToOne(() => lookup_value_entity_1.LookupValueEntity),
|
46
|
-
typeorm_1.JoinColumn({ name: 'method_id' }),
|
45
|
+
(0, typeorm_1.ManyToOne)(() => lookup_value_entity_1.LookupValueEntity),
|
46
|
+
(0, typeorm_1.JoinColumn)({ name: 'method_id' }),
|
47
47
|
__metadata("design:type", lookup_value_entity_1.LookupValueEntity)
|
48
48
|
], FormEntity.prototype, "method", void 0);
|
49
49
|
__decorate([
|
50
|
-
typeorm_1.ManyToOne(() => lookup_value_entity_1.LookupValueEntity),
|
51
|
-
typeorm_1.JoinColumn({ name: 'type_id' }),
|
50
|
+
(0, typeorm_1.ManyToOne)(() => lookup_value_entity_1.LookupValueEntity),
|
51
|
+
(0, typeorm_1.JoinColumn)({ name: 'type_id' }),
|
52
52
|
__metadata("design:type", lookup_value_entity_1.LookupValueEntity)
|
53
53
|
], FormEntity.prototype, "type", void 0);
|
54
54
|
__decorate([
|
55
|
-
typeorm_1.OneToMany(() => form_column_entity_1.FormColumnEntity, (form_columns) => form_columns.form),
|
55
|
+
(0, typeorm_1.OneToMany)(() => form_column_entity_1.FormColumnEntity, (form_columns) => form_columns.form),
|
56
56
|
__metadata("design:type", Array)
|
57
57
|
], FormEntity.prototype, "form_columns", void 0);
|
58
58
|
__decorate([
|
59
|
-
typeorm_1.ManyToMany(() => column_entity_1.ColumnEntity),
|
60
|
-
typeorm_1.JoinTable({
|
59
|
+
(0, typeorm_1.ManyToMany)(() => column_entity_1.ColumnEntity),
|
60
|
+
(0, typeorm_1.JoinTable)({
|
61
61
|
name: 'sys_form_columns',
|
62
62
|
joinColumn: { name: 'form_id' },
|
63
63
|
inverseJoinColumn: { name: 'column_id' },
|
@@ -65,7 +65,7 @@ __decorate([
|
|
65
65
|
__metadata("design:type", Array)
|
66
66
|
], FormEntity.prototype, "columns", void 0);
|
67
67
|
FormEntity = __decorate([
|
68
|
-
typeorm_1.Entity('sys_form_details')
|
68
|
+
(0, typeorm_1.Entity)('sys_form_details')
|
69
69
|
], FormEntity);
|
70
70
|
exports.FormEntity = FormEntity;
|
71
71
|
//# sourceMappingURL=form.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"form.entity.js","sourceRoot":"","sources":["../../../src/system/entities/form.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAkG;AAClG,wEAAoE;AACpE,mDAA+C;AAC/C,6DAAwD;AACxD,+DAA0D;AAS1D,IAAa,UAAU,GAAvB,MAAa,UAAW,SAAQ,4BAAY;CA6B3C,CAAA;AA5Ba;IAAT,gBAAM,
|
1
|
+
{"version":3,"file":"form.entity.js","sourceRoot":"","sources":["../../../src/system/entities/form.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAkG;AAClG,wEAAoE;AACpE,mDAA+C;AAC/C,6DAAwD;AACxD,+DAA0D;AAS1D,IAAa,UAAU,GAAvB,MAAa,UAAW,SAAQ,4BAAY;CA6B3C,CAAA;AA5Ba;IAAT,IAAA,gBAAM,GAAE;;wCAAc;AACb;IAAT,IAAA,gBAAM,GAAE;;+CAAqB;AAEpB;IAAT,IAAA,gBAAM,GAAE;;8CAAoB;AACnB;IAAT,IAAA,gBAAM,GAAE;;6CAAmB;AAElB;IAAT,IAAA,gBAAM,GAAE;;6CAAmB;AAClB;IAAT,IAAA,gBAAM,GAAE;;2CAAiB;AAK1B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,uCAAiB;0CAAC;AAI1B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,uCAAiB;wCAAC;AAGxB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,qCAAgB,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC;;gDACtC;AAQjC;IANC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC9B,IAAA,mBAAS,EAAC;QACP,IAAI,EAAE,kBAAkB;QACxB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;QAC/B,iBAAiB,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;KAC3C,CAAC;;2CACsB;AA5Bf,UAAU;IADtB,IAAA,gBAAM,EAAC,kBAAkB,CAAC;GACd,UAAU,CA6BtB;AA7BY,gCAAU"}
|
@@ -15,23 +15,23 @@ const common_entity_1 = require("../../common/libraries/common.entity");
|
|
15
15
|
let FormPreferenceEntity = class FormPreferenceEntity 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
|
], FormPreferenceEntity.prototype, "source_type", void 0);
|
21
21
|
__decorate([
|
22
|
-
typeorm_1.Column(),
|
22
|
+
(0, typeorm_1.Column)(),
|
23
23
|
__metadata("design:type", Number)
|
24
24
|
], FormPreferenceEntity.prototype, "source_id", void 0);
|
25
25
|
__decorate([
|
26
|
-
typeorm_1.Column(),
|
26
|
+
(0, typeorm_1.Column)(),
|
27
27
|
__metadata("design:type", String)
|
28
28
|
], FormPreferenceEntity.prototype, "name", void 0);
|
29
29
|
__decorate([
|
30
|
-
typeorm_1.Column('json'),
|
30
|
+
(0, typeorm_1.Column)('json'),
|
31
31
|
__metadata("design:type", Object)
|
32
32
|
], FormPreferenceEntity.prototype, "column_definition", void 0);
|
33
33
|
FormPreferenceEntity = __decorate([
|
34
|
-
typeorm_1.Entity('sys_form_preferences')
|
34
|
+
(0, typeorm_1.Entity)('sys_form_preferences')
|
35
35
|
], FormPreferenceEntity);
|
36
36
|
exports.FormPreferenceEntity = FormPreferenceEntity;
|
37
37
|
//# sourceMappingURL=form.preference.entity.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"form.preference.entity.js","sourceRoot":"","sources":["../../../src/system/entities/form.preference.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,4BAAY;CASrD,CAAA;AARa;IAAT,gBAAM,
|
1
|
+
{"version":3,"file":"form.preference.entity.js","sourceRoot":"","sources":["../../../src/system/entities/form.preference.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AASpE,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,4BAAY;CASrD,CAAA;AARa;IAAT,IAAA,gBAAM,GAAE;;yDAAqB;AAEpB;IAAT,IAAA,gBAAM,GAAE;;uDAAmB;AAElB;IAAT,IAAA,gBAAM,GAAE;;kDAAc;AAEP;IAAf,IAAA,gBAAM,EAAC,MAAM,CAAC;;+DAAwB;AAP9B,oBAAoB;IADhC,IAAA,gBAAM,EAAC,sBAAsB,CAAC;GAClB,oBAAoB,CAShC;AATY,oDAAoB"}
|