@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.
Files changed (508) hide show
  1. package/dist/app.controller.js +3 -3
  2. package/dist/app.controller.js.map +1 -1
  3. package/dist/app.module.js +1 -1
  4. package/dist/app.module.js.map +1 -1
  5. package/dist/app.service.js +1 -1
  6. package/dist/app.service.js.map +1 -1
  7. package/dist/auth/auth.module.js +2 -2
  8. package/dist/auth/auth.module.js.map +1 -1
  9. package/dist/auth/controllers/auth.controller.js +15 -15
  10. package/dist/auth/controllers/auth.controller.js.map +1 -1
  11. package/dist/auth/controllers/index.d.ts +1 -1
  12. package/dist/auth/controllers/index.js +1 -1
  13. package/dist/auth/controllers/index.js.map +1 -1
  14. package/dist/auth/controllers/social.controller.js +17 -17
  15. package/dist/auth/controllers/social.controller.js.map +1 -1
  16. package/dist/auth/controllers/user.controller.js +4 -4
  17. package/dist/auth/controllers/user.controller.js.map +1 -1
  18. package/dist/auth/dtos/create.user.dto.js +3 -3
  19. package/dist/auth/dtos/create.user.dto.js.map +1 -1
  20. package/dist/auth/dtos/index.d.ts +2 -2
  21. package/dist/auth/dtos/index.js +2 -2
  22. package/dist/auth/dtos/index.js.map +1 -1
  23. package/dist/auth/dtos/offline.user.dto.js +3 -3
  24. package/dist/auth/dtos/offline.user.dto.js.map +1 -1
  25. package/dist/auth/dtos/permission.assignment.dto.js +1 -1
  26. package/dist/auth/dtos/permission.assignment.dto.js.map +1 -1
  27. package/dist/auth/dtos/role.assignment.dto.js +1 -1
  28. package/dist/auth/dtos/role.assignment.dto.js.map +1 -1
  29. package/dist/auth/dtos/update.user.dto.js +3 -3
  30. package/dist/auth/dtos/update.user.dto.js.map +1 -1
  31. package/dist/auth/dtos/user.login.dto.js +2 -2
  32. package/dist/auth/dtos/user.login.dto.js.map +1 -1
  33. package/dist/auth/entities/country.entity.d.ts +1 -0
  34. package/dist/auth/entities/country.entity.js +16 -12
  35. package/dist/auth/entities/country.entity.js.map +1 -1
  36. package/dist/auth/entities/creator.entity.js +7 -7
  37. package/dist/auth/entities/creator.entity.js.map +1 -1
  38. package/dist/auth/entities/device.token.entity.js +19 -19
  39. package/dist/auth/entities/device.token.entity.js.map +1 -1
  40. package/dist/auth/entities/index.d.ts +4 -4
  41. package/dist/auth/entities/index.js +4 -4
  42. package/dist/auth/entities/index.js.map +1 -1
  43. package/dist/auth/entities/refresh.token.entity.js +12 -12
  44. package/dist/auth/entities/refresh.token.entity.js.map +1 -1
  45. package/dist/auth/entities/user.entity.js +23 -23
  46. package/dist/auth/entities/user.entity.js.map +1 -1
  47. package/dist/auth/entities/user.referral.entity.js +9 -9
  48. package/dist/auth/entities/user.referral.entity.js.map +1 -1
  49. package/dist/auth/es6.classes.d.ts +3 -3
  50. package/dist/auth/index.d.ts +5 -6
  51. package/dist/auth/index.js +5 -6
  52. package/dist/auth/index.js.map +1 -1
  53. package/dist/auth/middlewares/basic.auth.middleware.d.ts +3 -4
  54. package/dist/auth/middlewares/basic.auth.middleware.js +4 -8
  55. package/dist/auth/middlewares/basic.auth.middleware.js.map +1 -1
  56. package/dist/auth/middlewares/index.d.ts +1 -1
  57. package/dist/auth/middlewares/index.js +1 -1
  58. package/dist/auth/middlewares/index.js.map +1 -1
  59. package/dist/auth/middlewares/jwt.middleware.js +2 -2
  60. package/dist/auth/middlewares/jwt.middleware.js.map +1 -1
  61. package/dist/auth/middlewares/restricted.middleware.js +1 -1
  62. package/dist/auth/middlewares/restricted.middleware.js.map +1 -1
  63. package/dist/auth/services/access.manager.js +1 -1
  64. package/dist/auth/services/access.manager.js.map +1 -1
  65. package/dist/auth/services/auth.service.js +1 -1
  66. package/dist/auth/services/auth.service.js.map +1 -1
  67. package/dist/auth/services/device.token.service.js +2 -2
  68. package/dist/auth/services/device.token.service.js.map +1 -1
  69. package/dist/auth/services/es6.service.js +1 -1
  70. package/dist/auth/services/es6.service.js.map +1 -1
  71. package/dist/auth/services/index.d.ts +3 -4
  72. package/dist/auth/services/index.js +3 -4
  73. package/dist/auth/services/index.js.map +1 -1
  74. package/dist/auth/services/refresh.token.service.js +2 -2
  75. package/dist/auth/services/refresh.token.service.js.map +1 -1
  76. package/dist/auth/services/role.manager.js +1 -1
  77. package/dist/auth/services/role.manager.js.map +1 -1
  78. package/dist/auth/services/social.service.d.ts +3 -3
  79. package/dist/auth/services/social.service.js +17 -6
  80. package/dist/auth/services/social.service.js.map +1 -1
  81. package/dist/auth/strategies/fb.strategy.js +2 -2
  82. package/dist/auth/strategies/fb.strategy.js.map +1 -1
  83. package/dist/auth/strategies/google.strategy.js +2 -2
  84. package/dist/auth/strategies/google.strategy.js.map +1 -1
  85. package/dist/common/common.module.js +1 -1
  86. package/dist/common/common.module.js.map +1 -1
  87. package/dist/common/dtos/aggregation.param.dto.js +3 -3
  88. package/dist/common/dtos/aggregation.param.dto.js.map +1 -1
  89. package/dist/common/dtos/generic.index.param.dto.js +11 -11
  90. package/dist/common/dtos/generic.index.param.dto.js.map +1 -1
  91. package/dist/common/dtos/group.param.dto.js +2 -2
  92. package/dist/common/dtos/group.param.dto.js.map +1 -1
  93. package/dist/common/dtos/index.d.ts +10 -10
  94. package/dist/common/dtos/index.js +10 -10
  95. package/dist/common/dtos/index.js.map +1 -1
  96. package/dist/common/dtos/index.params.dto.js +1 -1
  97. package/dist/common/dtos/index.params.dto.js.map +1 -1
  98. package/dist/common/dtos/key.value.param.dto.js +2 -2
  99. package/dist/common/dtos/key.value.param.dto.js.map +1 -1
  100. package/dist/common/dtos/report.body.dto.js +10 -10
  101. package/dist/common/dtos/report.body.dto.js.map +1 -1
  102. package/dist/common/es6.classes.d.ts +3 -3
  103. package/dist/common/exceptions/index.d.ts +1 -1
  104. package/dist/common/exceptions/index.js +1 -1
  105. package/dist/common/exceptions/index.js.map +1 -1
  106. package/dist/common/guards/login.guard.js +2 -2
  107. package/dist/common/guards/login.guard.js.map +1 -1
  108. package/dist/common/index.d.ts +2 -3
  109. package/dist/common/index.js +2 -3
  110. package/dist/common/index.js.map +1 -1
  111. package/dist/common/libraries/base.migration.utility.js +10 -9
  112. package/dist/common/libraries/base.migration.utility.js.map +1 -1
  113. package/dist/common/libraries/class.mapper.d.ts +1 -0
  114. package/dist/common/libraries/class.mapper.js +9 -0
  115. package/dist/common/libraries/class.mapper.js.map +1 -1
  116. package/dist/common/libraries/common.entity.js +13 -13
  117. package/dist/common/libraries/common.entity.js.map +1 -1
  118. package/dist/common/libraries/date.util.js +6 -6
  119. package/dist/common/libraries/date.util.js.map +1 -1
  120. package/dist/common/libraries/index.d.ts +13 -14
  121. package/dist/common/libraries/index.js +13 -14
  122. package/dist/common/libraries/index.js.map +1 -1
  123. package/dist/config/cache.config.d.ts +1 -0
  124. package/dist/config/cache.config.js +2 -0
  125. package/dist/config/cache.config.js.map +1 -1
  126. package/dist/config/platform.constants.d.ts +1 -0
  127. package/dist/config/platform.constants.js +1 -0
  128. package/dist/config/platform.constants.js.map +1 -1
  129. package/dist/config/typeorm.config.js +2 -2
  130. package/dist/config/typeorm.config.js.map +1 -1
  131. package/dist/migrations/1633602353156-AddWhatsAppNumberSysCountriesTable.ts.d.ts +5 -0
  132. package/dist/migrations/1633602353156-AddWhatsAppNumberSysCountriesTable.ts.js +15 -0
  133. package/dist/migrations/1633602353156-AddWhatsAppNumberSysCountriesTable.ts.js.map +1 -0
  134. package/dist/platformUtility/commands/entity.generator.command.d.ts +1 -2
  135. package/dist/platformUtility/commands/entity.generator.command.js +21 -19
  136. package/dist/platformUtility/commands/entity.generator.command.js.map +1 -1
  137. package/dist/platformUtility/commands/index.d.ts +2 -1
  138. package/dist/platformUtility/commands/index.js +2 -1
  139. package/dist/platformUtility/commands/index.js.map +1 -1
  140. package/dist/platformUtility/commands/maintenance.command.js +6 -6
  141. package/dist/platformUtility/commands/maintenance.command.js.map +1 -1
  142. package/dist/platformUtility/commands/sync.class.command.js +14 -5
  143. package/dist/platformUtility/commands/sync.class.command.js.map +1 -1
  144. package/dist/platformUtility/consumers/event.consumer.js +6 -6
  145. package/dist/platformUtility/consumers/event.consumer.js.map +1 -1
  146. package/dist/platformUtility/consumers/job.consumer.js +3 -3
  147. package/dist/platformUtility/consumers/job.consumer.js.map +1 -1
  148. package/dist/platformUtility/dtos/index.d.ts +2 -2
  149. package/dist/platformUtility/dtos/index.js +2 -2
  150. package/dist/platformUtility/dtos/index.js.map +1 -1
  151. package/dist/platformUtility/dtos/queue.options.dto.js +10 -10
  152. package/dist/platformUtility/dtos/queue.options.dto.js.map +1 -1
  153. package/dist/platformUtility/es6.classes.d.ts +8 -7
  154. package/dist/platformUtility/es6.classes.js +7 -6
  155. package/dist/platformUtility/es6.classes.js.map +1 -1
  156. package/dist/platformUtility/index.d.ts +7 -7
  157. package/dist/platformUtility/index.js +7 -7
  158. package/dist/platformUtility/index.js.map +1 -1
  159. package/dist/platformUtility/jobs/record.watcher.job.js +1 -1
  160. package/dist/platformUtility/jobs/record.watcher.job.js.map +1 -1
  161. package/dist/platformUtility/libraries/{scan.entity.d.ts → create.entity.constants.file.d.ts} +1 -1
  162. package/dist/platformUtility/libraries/{scan.entity.js → create.entity.constants.file.js} +12 -14
  163. package/dist/platformUtility/libraries/create.entity.constants.file.js.map +1 -0
  164. package/dist/platformUtility/libraries/{scan.class.d.ts → create.es6.classes.file.d.ts} +3 -2
  165. package/dist/platformUtility/libraries/{scan.class.js → create.es6.classes.file.js} +18 -21
  166. package/dist/platformUtility/libraries/create.es6.classes.file.js.map +1 -0
  167. package/dist/platformUtility/libraries/create.es6.jobs.file.d.ts +9 -0
  168. package/dist/platformUtility/libraries/{scan.job.js → create.es6.jobs.file.js} +16 -13
  169. package/dist/platformUtility/libraries/create.es6.jobs.file.js.map +1 -0
  170. package/dist/platformUtility/libraries/{scan.service.d.ts → create.es6.service.file.d.ts} +1 -1
  171. package/dist/platformUtility/libraries/{scan.service.js → create.es6.service.file.js} +16 -13
  172. package/dist/platformUtility/libraries/create.es6.service.file.js.map +1 -0
  173. package/dist/platformUtility/libraries/create.index.file.d.ts +12 -0
  174. package/dist/platformUtility/libraries/create.index.file.js +78 -0
  175. package/dist/platformUtility/libraries/create.index.file.js.map +1 -0
  176. package/dist/platformUtility/libraries/file.system.utility.d.ts +13 -0
  177. package/dist/platformUtility/libraries/{dev.utility.js → file.system.utility.js} +21 -13
  178. package/dist/platformUtility/libraries/file.system.utility.js.map +1 -0
  179. package/dist/platformUtility/libraries/index.d.ts +6 -5
  180. package/dist/platformUtility/libraries/index.js +6 -5
  181. package/dist/platformUtility/libraries/index.js.map +1 -1
  182. package/dist/platformUtility/middlewares/maintenance.middleware.js +1 -1
  183. package/dist/platformUtility/middlewares/maintenance.middleware.js.map +1 -1
  184. package/dist/platformUtility/platform.utility.module.js +3 -4
  185. package/dist/platformUtility/platform.utility.module.js.map +1 -1
  186. package/dist/platformUtility/services/audit.service.js +2 -2
  187. package/dist/platformUtility/services/audit.service.js.map +1 -1
  188. package/dist/platformUtility/services/cache.service.d.ts +4 -5
  189. package/dist/platformUtility/services/cache.service.js +10 -7
  190. package/dist/platformUtility/services/cache.service.js.map +1 -1
  191. package/dist/platformUtility/services/dynamo.service.js +1 -1
  192. package/dist/platformUtility/services/dynamo.service.js.map +1 -1
  193. package/dist/platformUtility/services/es6.jobs.service.js +1 -1
  194. package/dist/platformUtility/services/es6.jobs.service.js.map +1 -1
  195. package/dist/platformUtility/services/es6.service.js +1 -1
  196. package/dist/platformUtility/services/es6.service.js.map +1 -1
  197. package/dist/platformUtility/services/fcm.notification.service.js +1 -1
  198. package/dist/platformUtility/services/fcm.notification.service.js.map +1 -1
  199. package/dist/platformUtility/services/index.d.ts +8 -8
  200. package/dist/platformUtility/services/index.js +8 -8
  201. package/dist/platformUtility/services/index.js.map +1 -1
  202. package/dist/platformUtility/services/local.property.service.js +1 -1
  203. package/dist/platformUtility/services/local.property.service.js.map +1 -1
  204. package/dist/platformUtility/services/mail.service.d.ts +1 -1
  205. package/dist/platformUtility/services/mail.service.js +1 -22
  206. package/dist/platformUtility/services/mail.service.js.map +1 -1
  207. package/dist/platformUtility/services/maintenance.service.js +1 -1
  208. package/dist/platformUtility/services/maintenance.service.js.map +1 -1
  209. package/dist/platformUtility/services/queue.service.d.ts +11 -0
  210. package/dist/platformUtility/services/queue.service.js +86 -2
  211. package/dist/platformUtility/services/queue.service.js.map +1 -1
  212. package/dist/platformUtility/services/remote.request.service.js +4 -5
  213. package/dist/platformUtility/services/remote.request.service.js.map +1 -1
  214. package/dist/platformUtility/services/shutdown.service.js +1 -1
  215. package/dist/platformUtility/services/shutdown.service.js.map +1 -1
  216. package/dist/platformUtility/services/sql.service.js +2 -2
  217. package/dist/platformUtility/services/sql.service.js.map +1 -1
  218. package/dist/platformUtility/services/startup.service.js +1 -1
  219. package/dist/platformUtility/services/startup.service.js.map +1 -1
  220. package/dist/platformUtility/subscribers/base.subscriber.js +1 -1
  221. package/dist/platformUtility/subscribers/base.subscriber.js.map +1 -1
  222. package/dist/security/entities/index.d.ts +2 -2
  223. package/dist/security/entities/index.js +2 -2
  224. package/dist/security/entities/index.js.map +1 -1
  225. package/dist/security/entities/permission.entity.js +10 -10
  226. package/dist/security/entities/permission.entity.js.map +1 -1
  227. package/dist/security/entities/role.entity.js +13 -13
  228. package/dist/security/entities/role.entity.js.map +1 -1
  229. package/dist/security/entities/user.permission.entity.js +11 -11
  230. package/dist/security/entities/user.permission.entity.js.map +1 -1
  231. package/dist/security/entities/user.role.entity.js +11 -11
  232. package/dist/security/entities/user.role.entity.js.map +1 -1
  233. package/dist/security/index.d.ts +1 -2
  234. package/dist/security/index.js +1 -2
  235. package/dist/security/index.js.map +1 -1
  236. package/dist/security/security.module.js +1 -1
  237. package/dist/security/security.module.js.map +1 -1
  238. package/dist/system/commands/db.scanner.command.d.ts +5 -5
  239. package/dist/system/commands/db.scanner.command.js +18 -15
  240. package/dist/system/commands/db.scanner.command.js.map +1 -1
  241. package/dist/system/commands/event.queue.command.js +3 -3
  242. package/dist/system/commands/event.queue.command.js.map +1 -1
  243. package/dist/system/commands/index.d.ts +3 -3
  244. package/dist/system/commands/index.js +3 -3
  245. package/dist/system/commands/index.js.map +1 -1
  246. package/dist/system/commands/jobs.scanner.command.js +1 -1
  247. package/dist/system/commands/jobs.scanner.command.js.map +1 -1
  248. package/dist/system/commands/model.scanner.command.js +1 -1
  249. package/dist/system/commands/model.scanner.command.js.map +1 -1
  250. package/dist/system/commands/report.scanner.command.js +1 -1
  251. package/dist/system/commands/report.scanner.command.js.map +1 -1
  252. package/dist/system/commands/service.scanner.command.js +1 -1
  253. package/dist/system/commands/service.scanner.command.js.map +1 -1
  254. package/dist/system/commands/vaccine.command.js +1 -1
  255. package/dist/system/commands/vaccine.command.js.map +1 -1
  256. package/dist/system/controllers/base.controller.js +27 -27
  257. package/dist/system/controllers/base.controller.js.map +1 -1
  258. package/dist/system/controllers/data.controller.js +8 -8
  259. package/dist/system/controllers/data.controller.js.map +1 -1
  260. package/dist/system/controllers/form.controller.js +3 -3
  261. package/dist/system/controllers/form.controller.js.map +1 -1
  262. package/dist/system/controllers/index.d.ts +7 -6
  263. package/dist/system/controllers/index.js +7 -6
  264. package/dist/system/controllers/index.js.map +1 -1
  265. package/dist/system/controllers/job.controller.d.ts +17 -0
  266. package/dist/system/controllers/job.controller.js +137 -0
  267. package/dist/system/controllers/job.controller.js.map +1 -0
  268. package/dist/system/controllers/menu.controller.js +4 -4
  269. package/dist/system/controllers/menu.controller.js.map +1 -1
  270. package/dist/system/controllers/preference.controller.js +17 -17
  271. package/dist/system/controllers/preference.controller.js.map +1 -1
  272. package/dist/system/controllers/report.controller.js +11 -11
  273. package/dist/system/controllers/report.controller.js.map +1 -1
  274. package/dist/system/controllers/upload.controller.js +7 -7
  275. package/dist/system/controllers/upload.controller.js.map +1 -1
  276. package/dist/system/controllers/user.preference.controller.js +4 -4
  277. package/dist/system/controllers/user.preference.controller.js.map +1 -1
  278. package/dist/system/dtos/index.d.ts +3 -2
  279. package/dist/system/dtos/index.js +3 -2
  280. package/dist/system/dtos/index.js.map +1 -1
  281. package/dist/system/dtos/job.record.param.dto.d.ts +4 -0
  282. package/dist/system/dtos/job.record.param.dto.js +29 -0
  283. package/dist/system/dtos/job.record.param.dto.js.map +1 -0
  284. package/dist/system/dtos/menu.list.preference.creation.dto.js +7 -7
  285. package/dist/system/dtos/menu.list.preference.creation.dto.js.map +1 -1
  286. package/dist/system/dtos/model.form.preference.creation.dto.js +4 -4
  287. package/dist/system/dtos/model.form.preference.creation.dto.js.map +1 -1
  288. package/dist/system/dtos/user.preference.creation.dto.js +2 -2
  289. package/dist/system/dtos/user.preference.creation.dto.js.map +1 -1
  290. package/dist/system/entities/business.rule.entity.js +39 -39
  291. package/dist/system/entities/business.rule.entity.js.map +1 -1
  292. package/dist/system/entities/business.rule.role.entity.js +7 -7
  293. package/dist/system/entities/business.rule.role.entity.js.map +1 -1
  294. package/dist/system/entities/chart.entity.js +19 -19
  295. package/dist/system/entities/chart.entity.js.map +1 -1
  296. package/dist/system/entities/client.script.entity.js +12 -12
  297. package/dist/system/entities/client.script.entity.js.map +1 -1
  298. package/dist/system/entities/column.definition.entity.js +10 -10
  299. package/dist/system/entities/column.definition.entity.js.map +1 -1
  300. package/dist/system/entities/column.entity.js +35 -35
  301. package/dist/system/entities/column.entity.js.map +1 -1
  302. package/dist/system/entities/comment.entity.js +9 -9
  303. package/dist/system/entities/comment.entity.js.map +1 -1
  304. package/dist/system/entities/document.entity.js +8 -8
  305. package/dist/system/entities/document.entity.js.map +1 -1
  306. package/dist/system/entities/event.detail.entity.js +4 -4
  307. package/dist/system/entities/event.detail.entity.js.map +1 -1
  308. package/dist/system/entities/event.queue.entity.js +11 -11
  309. package/dist/system/entities/event.queue.entity.js.map +1 -1
  310. package/dist/system/entities/form.column.entity.js +7 -7
  311. package/dist/system/entities/form.column.entity.js.map +1 -1
  312. package/dist/system/entities/form.entity.js +14 -14
  313. package/dist/system/entities/form.entity.js.map +1 -1
  314. package/dist/system/entities/form.preference.entity.js +5 -5
  315. package/dist/system/entities/form.preference.entity.js.map +1 -1
  316. package/dist/system/entities/index.d.ts +36 -36
  317. package/dist/system/entities/index.js +36 -36
  318. package/dist/system/entities/index.js.map +1 -1
  319. package/dist/system/entities/list.preference.entity.js +14 -14
  320. package/dist/system/entities/list.preference.entity.js.map +1 -1
  321. package/dist/system/entities/lookup.type.entity.js +8 -8
  322. package/dist/system/entities/lookup.type.entity.js.map +1 -1
  323. package/dist/system/entities/lookup.value.entity.js +15 -15
  324. package/dist/system/entities/lookup.value.entity.js.map +1 -1
  325. package/dist/system/entities/menu.entity.js +23 -23
  326. package/dist/system/entities/menu.entity.js.map +1 -1
  327. package/dist/system/entities/menu.role.entity.js +11 -11
  328. package/dist/system/entities/menu.role.entity.js.map +1 -1
  329. package/dist/system/entities/model.column.entity.js +7 -7
  330. package/dist/system/entities/model.column.entity.js.map +1 -1
  331. package/dist/system/entities/model.entity.js +37 -37
  332. package/dist/system/entities/model.entity.js.map +1 -1
  333. package/dist/system/entities/model.relationship.entity.js +8 -8
  334. package/dist/system/entities/model.relationship.entity.js.map +1 -1
  335. package/dist/system/entities/model.role.entity.js +8 -8
  336. package/dist/system/entities/model.role.entity.js.map +1 -1
  337. package/dist/system/entities/module.entity.js +11 -11
  338. package/dist/system/entities/module.entity.js.map +1 -1
  339. package/dist/system/entities/module.menu.entity.js +13 -13
  340. package/dist/system/entities/module.menu.entity.js.map +1 -1
  341. package/dist/system/entities/open.property.entity.js +4 -4
  342. package/dist/system/entities/open.property.entity.js.map +1 -1
  343. package/dist/system/entities/page.definition.entity.js +9 -9
  344. package/dist/system/entities/page.definition.entity.js.map +1 -1
  345. package/dist/system/entities/parent.menu.entity.js +11 -11
  346. package/dist/system/entities/parent.menu.entity.js.map +1 -1
  347. package/dist/system/entities/primary.axis.entity.js +7 -7
  348. package/dist/system/entities/primary.axis.entity.js.map +1 -1
  349. package/dist/system/entities/property.entity.js +8 -8
  350. package/dist/system/entities/property.entity.js.map +1 -1
  351. package/dist/system/entities/relationship.entity.js +35 -35
  352. package/dist/system/entities/relationship.entity.js.map +1 -1
  353. package/dist/system/entities/report.column.entity.js +5 -5
  354. package/dist/system/entities/report.column.entity.js.map +1 -1
  355. package/dist/system/entities/report.entity.js +22 -22
  356. package/dist/system/entities/report.entity.js.map +1 -1
  357. package/dist/system/entities/report.param.entity.js +9 -9
  358. package/dist/system/entities/report.param.entity.js.map +1 -1
  359. package/dist/system/entities/report.relationship.entity.js +7 -7
  360. package/dist/system/entities/report.relationship.entity.js.map +1 -1
  361. package/dist/system/entities/report.role.entity.js +7 -7
  362. package/dist/system/entities/report.role.entity.js.map +1 -1
  363. package/dist/system/entities/scheduled.event.entity.js +12 -12
  364. package/dist/system/entities/scheduled.event.entity.js.map +1 -1
  365. package/dist/system/entities/secondary.axis.entity.js +8 -8
  366. package/dist/system/entities/secondary.axis.entity.js.map +1 -1
  367. package/dist/system/entities/security.rule.entity.js +26 -26
  368. package/dist/system/entities/security.rule.entity.js.map +1 -1
  369. package/dist/system/entities/service.entity.js +4 -4
  370. package/dist/system/entities/service.entity.js.map +1 -1
  371. package/dist/system/entities/sms.template.entity.js +10 -10
  372. package/dist/system/entities/sms.template.entity.js.map +1 -1
  373. package/dist/system/entities/system.script.entity.js +16 -16
  374. package/dist/system/entities/system.script.entity.js.map +1 -1
  375. package/dist/system/entities/ui.action.entity.js +25 -25
  376. package/dist/system/entities/ui.action.entity.js.map +1 -1
  377. package/dist/system/entities/ui.action.permission.entity.js +7 -7
  378. package/dist/system/entities/ui.action.permission.entity.js.map +1 -1
  379. package/dist/system/entities/ui.action.role.entity.js +7 -7
  380. package/dist/system/entities/ui.action.role.entity.js.map +1 -1
  381. package/dist/system/entities/user.group.entity.js +15 -15
  382. package/dist/system/entities/user.group.entity.js.map +1 -1
  383. package/dist/system/entities/user.group.member.entity.js +9 -9
  384. package/dist/system/entities/user.group.member.entity.js.map +1 -1
  385. package/dist/system/entities/user.group.permission.entity.js +3 -3
  386. package/dist/system/entities/user.group.permission.entity.js.map +1 -1
  387. package/dist/system/entities/user.group.role.entity.js +9 -9
  388. package/dist/system/entities/user.group.role.entity.js.map +1 -1
  389. package/dist/system/entities/user.preference.entity.js +9 -9
  390. package/dist/system/entities/user.preference.entity.js.map +1 -1
  391. package/dist/system/es6.classes.d.ts +4 -2
  392. package/dist/system/es6.classes.js +4 -1
  393. package/dist/system/es6.classes.js.map +1 -1
  394. package/dist/system/index.d.ts +7 -7
  395. package/dist/system/index.js +7 -7
  396. package/dist/system/index.js.map +1 -1
  397. package/dist/system/jobs/clean.scheduled.event.job.js +1 -1
  398. package/dist/system/jobs/clean.scheduled.event.job.js.map +1 -1
  399. package/dist/system/jobs/column.mapper.job.js +1 -1
  400. package/dist/system/jobs/column.mapper.job.js.map +1 -1
  401. package/dist/system/jobs/index.d.ts +4 -4
  402. package/dist/system/jobs/index.js +4 -4
  403. package/dist/system/jobs/index.js.map +1 -1
  404. package/dist/system/jobs/model.scanner.job.js +1 -1
  405. package/dist/system/jobs/model.scanner.job.js.map +1 -1
  406. package/dist/system/jobs/relationship.mapper.job.js +1 -1
  407. package/dist/system/jobs/relationship.mapper.job.js.map +1 -1
  408. package/dist/system/jobs/report.column.sync.job.js +1 -1
  409. package/dist/system/jobs/report.column.sync.job.js.map +1 -1
  410. package/dist/system/jobs/scheduled.event.job.js +1 -1
  411. package/dist/system/jobs/scheduled.event.job.js.map +1 -1
  412. package/dist/system/jobs/scheduled.events.job.js +1 -1
  413. package/dist/system/jobs/scheduled.events.job.js.map +1 -1
  414. package/dist/system/jobs/user.group.member.job.js +1 -1
  415. package/dist/system/jobs/user.group.member.job.js.map +1 -1
  416. package/dist/system/jobs/user.group.permission.job.js +1 -1
  417. package/dist/system/jobs/user.group.permission.job.js.map +1 -1
  418. package/dist/system/jobs/user.group.role.job.js +1 -1
  419. package/dist/system/jobs/user.group.role.job.js.map +1 -1
  420. package/dist/system/libraries/index.d.ts +3 -3
  421. package/dist/system/libraries/index.js +3 -3
  422. package/dist/system/libraries/index.js.map +1 -1
  423. package/dist/system/libraries/model.sync.js +1 -1
  424. package/dist/system/libraries/model.sync.js.map +1 -1
  425. package/dist/system/modifiers/index.d.ts +1 -1
  426. package/dist/system/modifiers/index.js +1 -1
  427. package/dist/system/modifiers/index.js.map +1 -1
  428. package/dist/system/modifiers/menu.list.modifier.js +7 -7
  429. package/dist/system/modifiers/menu.list.modifier.js.map +1 -1
  430. package/dist/system/modifiers/module.list.modifier.js +5 -5
  431. package/dist/system/modifiers/module.list.modifier.js.map +1 -1
  432. package/dist/system/services/business.rule.service.js +1 -1
  433. package/dist/system/services/business.rule.service.js.map +1 -1
  434. package/dist/system/services/client.script.service.js +2 -2
  435. package/dist/system/services/client.script.service.js.map +1 -1
  436. package/dist/system/services/column.service.js +1 -1
  437. package/dist/system/services/column.service.js.map +1 -1
  438. package/dist/system/services/comment.service.d.ts +1 -2
  439. package/dist/system/services/comment.service.js +1 -1
  440. package/dist/system/services/comment.service.js.map +1 -1
  441. package/dist/system/services/common.service.js +2 -2
  442. package/dist/system/services/common.service.js.map +1 -1
  443. package/dist/system/services/document.service.d.ts +1 -2
  444. package/dist/system/services/document.service.js +1 -1
  445. package/dist/system/services/document.service.js.map +1 -1
  446. package/dist/system/services/es6.jobs.service.js +1 -1
  447. package/dist/system/services/es6.jobs.service.js.map +1 -1
  448. package/dist/system/services/es6.service.js +1 -1
  449. package/dist/system/services/es6.service.js.map +1 -1
  450. package/dist/system/services/event.detail.service.js +2 -2
  451. package/dist/system/services/event.detail.service.js.map +1 -1
  452. package/dist/system/services/event.queue.service.js +3 -3
  453. package/dist/system/services/event.queue.service.js.map +1 -1
  454. package/dist/system/services/form.service.js +1 -1
  455. package/dist/system/services/form.service.js.map +1 -1
  456. package/dist/system/services/index.d.ts +13 -13
  457. package/dist/system/services/index.js +13 -13
  458. package/dist/system/services/index.js.map +1 -1
  459. package/dist/system/services/list.service.js +2 -2
  460. package/dist/system/services/list.service.js.map +1 -1
  461. package/dist/system/services/menu.service.js +5 -5
  462. package/dist/system/services/menu.service.js.map +1 -1
  463. package/dist/system/services/model.service.js +1 -1
  464. package/dist/system/services/model.service.js.map +1 -1
  465. package/dist/system/services/preference.service.js +2 -2
  466. package/dist/system/services/preference.service.js.map +1 -1
  467. package/dist/system/services/property.service.d.ts +1 -1
  468. package/dist/system/services/property.service.js +1 -1
  469. package/dist/system/services/property.service.js.map +1 -1
  470. package/dist/system/services/report.service.js +1 -1
  471. package/dist/system/services/report.service.js.map +1 -1
  472. package/dist/system/services/scheduled.event.service.js +5 -5
  473. package/dist/system/services/scheduled.event.service.js.map +1 -1
  474. package/dist/system/services/security.rule.service.js +1 -1
  475. package/dist/system/services/security.rule.service.js.map +1 -1
  476. package/dist/system/services/ui.action.service.js +1 -1
  477. package/dist/system/services/ui.action.service.js.map +1 -1
  478. package/dist/system/services/upload.service.js +1 -1
  479. package/dist/system/services/upload.service.js.map +1 -1
  480. package/dist/system/services/user.preference.service.js +2 -2
  481. package/dist/system/services/user.preference.service.js.map +1 -1
  482. package/dist/system/subscribers/column.subscriber.js +1 -1
  483. package/dist/system/subscribers/column.subscriber.js.map +1 -1
  484. package/dist/system/subscribers/index.d.ts +3 -3
  485. package/dist/system/subscribers/index.js +3 -3
  486. package/dist/system/subscribers/index.js.map +1 -1
  487. package/dist/system/subscribers/property.subscriber.js +1 -1
  488. package/dist/system/subscribers/property.subscriber.js.map +1 -1
  489. package/dist/system/subscribers/relationship.subscriber.js +1 -1
  490. package/dist/system/subscribers/relationship.subscriber.js.map +1 -1
  491. package/dist/system/subscribers/scheduled.event.subscriber.js +1 -1
  492. package/dist/system/subscribers/scheduled.event.subscriber.js.map +1 -1
  493. package/dist/system/subscribers/user.group.member.subscriber.js +1 -1
  494. package/dist/system/subscribers/user.group.member.subscriber.js.map +1 -1
  495. package/dist/system/subscribers/user.group.permission.subscriber.js +1 -1
  496. package/dist/system/subscribers/user.group.permission.subscriber.js.map +1 -1
  497. package/dist/system/subscribers/user.group.role.subscriber.js +1 -1
  498. package/dist/system/subscribers/user.group.role.subscriber.js.map +1 -1
  499. package/dist/system/system.module.js +1 -1
  500. package/dist/system/system.module.js.map +1 -1
  501. package/package.json +44 -45
  502. package/dist/platformUtility/libraries/dev.utility.d.ts +0 -11
  503. package/dist/platformUtility/libraries/dev.utility.js.map +0 -1
  504. package/dist/platformUtility/libraries/scan.class.js.map +0 -1
  505. package/dist/platformUtility/libraries/scan.entity.js.map +0 -1
  506. package/dist/platformUtility/libraries/scan.job.d.ts +0 -9
  507. package/dist/platformUtility/libraries/scan.job.js.map +0 -1
  508. 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,EAAE;;uDACW;AAGpB;IADC,gBAAM,EAAE;;qDACS;AAKlB;IAHC,4BAAU,EAAE;IACZ,qBAAW,EAAE;IACb,gBAAM,EAAE;;gDACI;AAE0B;IAAtC,4BAAU,EAAE;IAAE,qBAAW,EAAE;IAAE,gBAAM,EAAE;;wDAAsB;AACrB;IAAtC,4BAAU,EAAE;IAAE,qBAAW,EAAE;IAAE,gBAAM,EAAE;;uDAAqB;AACpB;IAAtC,4BAAU,EAAE;IAAE,qBAAW,EAAE;IAAE,gBAAM,EAAE;;2DAAyB;AAC9B;IAAhC,6BAAmB,EAAE;IAAE,gBAAM,EAAE;;6DAA2B;AAC1B;IAAhC,6BAAmB,EAAE;IAAE,gBAAM,EAAE;;8DAA4B;AAC3B;IAAhC,6BAAmB,EAAE;IAAE,gBAAM,EAAE;;4DAA0B;AACzB;IAAhC,6BAAmB,EAAE;IAAE,gBAAM,EAAE;;2DAAyB;AAClB;IAAtC,4BAAU,EAAE;IAAE,qBAAW,EAAE;IAAE,gBAAM,EAAE;;4DAA0B;AAEhD;IAAf,gBAAM,CAAC,MAAM,CAAC;;sDAAiB;AAKhC;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,oBAAU,CAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,CAAC;8BAC1B,uCAAiB;0DAAC;AAIlC;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC5B,oBAAU,CAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,CAAC;8BAC1B,0BAAW;2DAAC;AAI7B;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,oBAAU,CAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;8BAC1B,4BAAY;yDAAC;AAI5B;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,oBAAU,CAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;8BAC1B,4BAAY;wDAAC;AAtClB,kBAAkB;IAD9B,gBAAM,CAAC,0BAA0B,CAAC;GACtB,kBAAkB,CAuC9B;AAvCY,gDAAkB"}
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,EAAE;;qDACS;AAGlB;IADC,gBAAM,EAAE;;qDACS;AAKlB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,oBAAU,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;kDAAC;AAVZ,kBAAkB;IAD9B,gBAAM,CAAC,oBAAoB,CAAC;GAChB,kBAAkB,CAW9B;AAXY,gDAAkB"}
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,EAAE;;0CACI;AAGb;IADC,gBAAM,EAAE;;iDACW;AAGpB;IADC,gBAAM,EAAE;;8CACQ;AAGjB;IADC,gBAAM,EAAE;;2CACK;AAGd;IADC,gBAAM,EAAE;;sDACgB;AAGzB;IADC,gBAAM,EAAE;;wDACkB;AAG3B;IADC,gBAAM,EAAE;;uDACiB;AAG1B;IADC,gBAAM,EAAE;;sDACgB;AAGzB;IADC,gBAAM,EAAE;;8CACQ;AAKjB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,yCAAkB,CAAC;IACnC,oBAAU,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,yCAAkB;2CAAC;AAG1B;IADC,mBAAS,CAAC,GAAG,EAAE,CAAC,yCAAkB,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC;;2CACjC;AAG5B;IADC,mBAAS,CAAC,GAAG,EAAE,CAAC,uCAAiB,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC;;4CAClC;AAQ5B;IANC,oBAAU,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC9B,mBAAS,CAAC;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,mBAAS,CAAC,GAAG,EAAE,CAAC,qDAAwB,EAAE,CAAC,oBAAoB,EAAE,EAAE,CAAC,oBAAoB,CAAC,MAAM,CAAC;;0DAChD;AAQjD;IANC,oBAAU,CAAC,GAAG,EAAE,CAAC,wCAAkB,CAAC;IACpC,mBAAS,CAAC;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,mBAAS,CAAC,GAAG,EAAE,CAAC,qCAAgB,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC;;kDACxC;AAQjC;IANC,oBAAU,CAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC5B,mBAAS,CAAC;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,gBAAM,CAAC,oBAAoB,CAAC;GAChB,YAAY,CAwExB;AAxEY,oCAAY"}
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,EAAE;;+CACI;AAGb;IADC,gBAAM,EAAE;;oDACS;AAGlB;IADC,gBAAM,EAAE;;oDACS;AAGlB;IADC,gBAAM,EAAE;;wDACa;AAKtB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,oBAAU,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;iDAAC;AAIrB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,oBAAU,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;iDAAC;AApBZ,iBAAiB;IAD7B,gBAAM,CAAC,mBAAmB,CAAC;GACf,iBAAiB,CAqB7B;AArBY,8CAAiB"}
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,EAAE;;2DACS;AAGlB;IADC,gBAAM,EAAE;;iEACe;AAKxB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,oBAAU,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;wDAAC;AAIrB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,wCAAkB,CAAC;IACnC,oBAAU,CAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;8BAC1B,wCAAkB;8DAAC;AAdxB,wBAAwB;IADpC,gBAAM,CAAC,0BAA0B,CAAC;GACtB,wBAAwB,CAepC;AAfY,4DAAwB"}
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,EAAE;;mDACS;AAGlB;IADC,gBAAM,EAAE;;iDACO;AAKhB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,oBAAU,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;gDAAC;AAIrB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;IAC3B,oBAAU,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,wBAAU;8CAAC;AAdR,gBAAgB;IAD5B,gBAAM,CAAC,kBAAkB,CAAC;GACd,gBAAgB,CAe5B;AAfY,4CAAgB"}
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,EAAE;;kDACI;AAGb;IADC,gBAAM,EAAE;;yDACW;AAGpB;IADC,gBAAM,EAAE;;sDACQ;AAGjB;IADC,gBAAM,EAAE;;uDACS;AAGlB;IADC,gBAAM,EAAE;;oDACM;AAGf;IADC,gBAAM,EAAE;8BACG,IAAI;wDAAC;AAGjB;IADC,gBAAM,EAAE;8BACC,IAAI;sDAAC;AAGf;IADC,gBAAM,EAAE;8BACY,IAAI;iEAAC;AAG1B;IADC,gBAAM,EAAE;;oDACO;AAKhB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAClC,oBAAU,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,uCAAiB;mDAAC;AA/BhB,oBAAoB;IADhC,gBAAM,CAAC,sBAAsB,CAAC;GAClB,oBAAoB,CAgChC;AAhCY,oDAAoB"}
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,EAAE;;iDACI;AAGb;IADC,gBAAM,EAAE;;wDACW;AAGpB;IADC,gBAAM,EAAE;;0DACa;AAGtB;IADC,gBAAM,EAAE;;qDACQ;AAGjB;IADC,gBAAM,CAAC,MAAM,CAAC;;uDACC;AAKhB;IAFC,mBAAS,CAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IAC5B,oBAAU,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,0BAAW;kDAAC;AAnBV,mBAAmB;IAD/B,gBAAM,CAAC,0BAA0B,CAAC;GACtB,mBAAmB,CAoB/B;AApBY,kDAAmB"}
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"}