@servicelabsco/nestjs-utility-services 1.2.121 → 1.2.123

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist/app.controller.d.ts +1 -1
  2. package/dist/app.controller.js +5 -2
  3. package/dist/app.controller.js.map +1 -1
  4. package/dist/config/entity.constants.d.ts +2 -0
  5. package/dist/config/entity.constants.js +2 -0
  6. package/dist/config/entity.constants.js.map +1 -1
  7. package/dist/config/source.hash.d.ts +1 -0
  8. package/dist/config/source.hash.js +1 -0
  9. package/dist/config/source.hash.js.map +1 -1
  10. package/dist/migrations/1742242110370-AddIsDownloadableSysReportDetailsTable.ts.d.ts +5 -0
  11. package/dist/migrations/1742242110370-AddIsDownloadableSysReportDetailsTable.ts.js +15 -0
  12. package/dist/migrations/1742242110370-AddIsDownloadableSysReportDetailsTable.ts.js.map +1 -0
  13. package/dist/migrations/1742242204141-CreateReportSheetTable.d.ts +5 -0
  14. package/dist/migrations/1742242204141-CreateReportSheetTable.js +24 -0
  15. package/dist/migrations/1742242204141-CreateReportSheetTable.js.map +1 -0
  16. package/dist/platformUtility/entities/failed.bull.job.entity.js.map +1 -1
  17. package/dist/platformUtility/jobs/reload.pending.bull.job.d.ts +5 -1
  18. package/dist/platformUtility/jobs/reload.pending.bull.job.js +40 -8
  19. package/dist/platformUtility/jobs/reload.pending.bull.job.js.map +1 -1
  20. package/dist/system/dtos/index.d.ts +1 -0
  21. package/dist/system/dtos/index.js +1 -0
  22. package/dist/system/dtos/index.js.map +1 -1
  23. package/dist/system/dtos/report.sheet.attributes.dto.d.ts +3 -0
  24. package/dist/system/dtos/report.sheet.attributes.dto.js +8 -0
  25. package/dist/system/dtos/report.sheet.attributes.dto.js.map +1 -0
  26. package/dist/system/entities/index.d.ts +1 -0
  27. package/dist/system/entities/index.js +1 -0
  28. package/dist/system/entities/index.js.map +1 -1
  29. package/dist/system/entities/report.entity.d.ts +1 -0
  30. package/dist/system/entities/report.entity.js +4 -0
  31. package/dist/system/entities/report.entity.js.map +1 -1
  32. package/dist/system/entities/report.sheet.entity.d.ts +18 -0
  33. package/dist/system/entities/report.sheet.entity.js +76 -0
  34. package/dist/system/entities/report.sheet.entity.js.map +1 -0
  35. package/dist/system/es6.classes.d.ts +9 -4
  36. package/dist/system/es6.classes.js +12 -0
  37. package/dist/system/es6.classes.js.map +1 -1
  38. package/dist/system/jobs/index.d.ts +1 -0
  39. package/dist/system/jobs/index.js +1 -0
  40. package/dist/system/jobs/index.js.map +1 -1
  41. package/dist/system/jobs/report.sheet.job.d.ts +9 -0
  42. package/dist/system/jobs/report.sheet.job.js +30 -0
  43. package/dist/system/jobs/report.sheet.job.js.map +1 -0
  44. package/dist/system/libraries/generate.downloadable.report.file.d.ts +28 -0
  45. package/dist/system/libraries/generate.downloadable.report.file.js +120 -0
  46. package/dist/system/libraries/generate.downloadable.report.file.js.map +1 -0
  47. package/dist/system/libraries/get.report.query.d.ts +11 -0
  48. package/dist/system/libraries/get.report.query.js +65 -0
  49. package/dist/system/libraries/get.report.query.js.map +1 -0
  50. package/dist/system/libraries/index.d.ts +2 -0
  51. package/dist/system/libraries/index.js +2 -0
  52. package/dist/system/libraries/index.js.map +1 -1
  53. package/dist/system/services/es6.jobs.service.d.ts +3 -1
  54. package/dist/system/services/es6.jobs.service.js +5 -1
  55. package/dist/system/services/es6.jobs.service.js.map +1 -1
  56. package/dist/system/subscribers/index.d.ts +1 -0
  57. package/dist/system/subscribers/index.js +1 -0
  58. package/dist/system/subscribers/index.js.map +1 -1
  59. package/dist/system/subscribers/report.sheet.subscriber.d.ts +10 -0
  60. package/dist/system/subscribers/report.sheet.subscriber.js +34 -0
  61. package/dist/system/subscribers/report.sheet.subscriber.js.map +1 -0
  62. package/package.json +2 -1
@@ -28,7 +28,7 @@ export declare class AppController {
28
28
  getQueueInstance(): Promise<any>;
29
29
  queue(id: string): Promise<any>;
30
30
  set(req: Request): Promise<any>;
31
- test(): Promise<any>;
31
+ test(): Promise<void>;
32
32
  pause(query: any): Promise<any>;
33
33
  resume(query: any): Promise<any>;
34
34
  }
@@ -24,6 +24,8 @@ const set_scheduled_event_job_1 = require("./system/jobs/set.scheduled.event.job
24
24
  const property_service_1 = require("./system/services/property.service");
25
25
  const sync_all_code_job_1 = require("./system/jobs/sync.all.code.job");
26
26
  const audit_service_1 = require("./platformUtility/services/audit.service");
27
+ const report_entity_1 = require("./system/entities/report.entity");
28
+ const generate_downloadable_report_file_1 = require("./system/libraries/generate.downloadable.report.file");
27
29
  let AppController = class AppController {
28
30
  constructor(queueService, testJob, setScheduledEventJob, mailService, propertyService, sqlService, executeCodeFixJob, syncAllCodeJob, auditService) {
29
31
  this.queueService = queueService;
@@ -53,11 +55,12 @@ let AppController = class AppController {
53
55
  return this.queueService.getJobDetails(id);
54
56
  }
55
57
  async set(req) {
58
+ const report = await report_entity_1.ReportEntity.first(648);
59
+ return new generate_downloadable_report_file_1.GenerateDownloadableReportFile(report, this.sqlService).generate({});
60
+ return this.syncAllCodeJob.dispatch();
56
61
  return this.setScheduledEventJob.dispatch();
57
62
  }
58
63
  async test() {
59
- return this.auditService.isLocallyAuditEnabled();
60
- return this.syncAllCodeJob.dispatch();
61
64
  }
62
65
  async pause(query) {
63
66
  return this.queueService.pause();
@@ -1 +1 @@
1
- {"version":3,"file":"app.controller.js","sourceRoot":"","sources":["../src/app.controller.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"app.controller.js","sourceRoot":"","sources":["../src/app.controller.ts"],"names":[],"mappings":"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"}
@@ -62,6 +62,7 @@ import { ReportFilterEntity } from '../system/entities/report.filter.entity';
62
62
  import { ReportParamEntity } from '../system/entities/report.param.entity';
63
63
  import { ReportRelationshipEntity } from '../system/entities/report.relationship.entity';
64
64
  import { ReportRoleEntity } from '../system/entities/report.role.entity';
65
+ import { ReportSheetEntity } from '../system/entities/report.sheet.entity';
65
66
  import { ScheduledEventEntity } from '../system/entities/scheduled.event.entity';
66
67
  import { SecondaryAxisEntity } from '../system/entities/secondary.axis.entity';
67
68
  import { SecurityRuleEntity } from '../system/entities/security.rule.entity';
@@ -143,6 +144,7 @@ declare const entityConstants: {
143
144
  '6edc679d259360e2ece49bef05f1db97': typeof ReportParamEntity;
144
145
  '45c1be0b7838f73932409208d1b410a3': typeof ReportRelationshipEntity;
145
146
  dc12027edb3c185e5048f361f39954c1: typeof ReportRoleEntity;
147
+ '8368af51d42be9a8b569aa8541b57e1f': typeof ReportSheetEntity;
146
148
  c2b08dc02f61d371c33b7b816503798b: typeof ScheduledEventEntity;
147
149
  '5a9e26a3e98768593496d8198341948c': typeof SecondaryAxisEntity;
148
150
  b8c2814298e294ec2d41bbd40bbcc330: typeof SecurityRuleEntity;
@@ -63,6 +63,7 @@ const report_filter_entity_1 = require("../system/entities/report.filter.entity"
63
63
  const report_param_entity_1 = require("../system/entities/report.param.entity");
64
64
  const report_relationship_entity_1 = require("../system/entities/report.relationship.entity");
65
65
  const report_role_entity_1 = require("../system/entities/report.role.entity");
66
+ const report_sheet_entity_1 = require("../system/entities/report.sheet.entity");
66
67
  const scheduled_event_entity_1 = require("../system/entities/scheduled.event.entity");
67
68
  const secondary_axis_entity_1 = require("../system/entities/secondary.axis.entity");
68
69
  const security_rule_entity_1 = require("../system/entities/security.rule.entity");
@@ -144,6 +145,7 @@ const entityConstants = {
144
145
  '6edc679d259360e2ece49bef05f1db97': report_param_entity_1.ReportParamEntity,
145
146
  '45c1be0b7838f73932409208d1b410a3': report_relationship_entity_1.ReportRelationshipEntity,
146
147
  dc12027edb3c185e5048f361f39954c1: report_role_entity_1.ReportRoleEntity,
148
+ '8368af51d42be9a8b569aa8541b57e1f': report_sheet_entity_1.ReportSheetEntity,
147
149
  c2b08dc02f61d371c33b7b816503798b: scheduled_event_entity_1.ScheduledEventEntity,
148
150
  '5a9e26a3e98768593496d8198341948c': secondary_axis_entity_1.SecondaryAxisEntity,
149
151
  b8c2814298e294ec2d41bbd40bbcc330: security_rule_entity_1.SecurityRuleEntity,
@@ -1 +1 @@
1
- {"version":3,"file":"entity.constants.js","sourceRoot":"","sources":["../../src/config/entity.constants.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"entity.constants.js","sourceRoot":"","sources":["../../src/config/entity.constants.ts"],"names":[],"mappings":"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"}
@@ -17,5 +17,6 @@ declare const SourceHash: {
17
17
  codeFixExecutionEvent: string;
18
18
  materialView: string;
19
19
  materialViewEvent: string;
20
+ reportSheet: string;
20
21
  };
21
22
  export = SourceHash;
@@ -18,6 +18,7 @@ const SourceHash = {
18
18
  codeFixExecutionEvent: '66b85ebd2f93d8d9ad74f91dd448fc10',
19
19
  materialView: '6cc76494999951a1ac3631ca815c1786',
20
20
  materialViewEvent: '4231f833daffa443023e954b0eb026c4',
21
+ reportSheet: '8368af51d42be9a8b569aa8541b57e1f',
21
22
  };
22
23
  module.exports = SourceHash;
23
24
  //# sourceMappingURL=source.hash.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"source.hash.js","sourceRoot":"","sources":["../../src/config/source.hash.ts"],"names":[],"mappings":";AAAA,MAAM,UAAU,GAAG;IACf,cAAc,EAAE,kCAAkC;IAClD,IAAI,EAAE,kCAAkC;IACxC,KAAK,EAAE,kCAAkC;IACzC,iBAAiB,EAAE,kCAAkC;IACrD,MAAM,EAAE,kCAAkC;IAC1C,MAAM,EAAE,kCAAkC;IAC1C,IAAI,EAAE,kCAAkC;IACxC,SAAS,EAAE,kCAAkC;IAC7C,YAAY,EAAE,kCAAkC;IAChD,gBAAgB,EAAE,kCAAkC;IACpD,OAAO,EAAE,kCAAkC;IAC3C,OAAO,EAAE,kCAAkC;IAC3C,cAAc,EAAE,kCAAkC;IAClD,mBAAmB,EAAE,kCAAkC;IACvD,aAAa,EAAE,kCAAkC;IACjD,qBAAqB,EAAE,kCAAkC;IACzD,YAAY,EAAE,kCAAkC;IAChD,iBAAiB,EAAE,kCAAkC;CACxD,CAAC;AAEF,iBAAS,UAAU,CAAC"}
1
+ {"version":3,"file":"source.hash.js","sourceRoot":"","sources":["../../src/config/source.hash.ts"],"names":[],"mappings":";AAAA,MAAM,UAAU,GAAG;IACf,cAAc,EAAE,kCAAkC;IAClD,IAAI,EAAE,kCAAkC;IACxC,KAAK,EAAE,kCAAkC;IACzC,iBAAiB,EAAE,kCAAkC;IACrD,MAAM,EAAE,kCAAkC;IAC1C,MAAM,EAAE,kCAAkC;IAC1C,IAAI,EAAE,kCAAkC;IACxC,SAAS,EAAE,kCAAkC;IAC7C,YAAY,EAAE,kCAAkC;IAChD,gBAAgB,EAAE,kCAAkC;IACpD,OAAO,EAAE,kCAAkC;IAC3C,OAAO,EAAE,kCAAkC;IAC3C,cAAc,EAAE,kCAAkC;IAClD,mBAAmB,EAAE,kCAAkC;IACvD,aAAa,EAAE,kCAAkC;IACjD,qBAAqB,EAAE,kCAAkC;IACzD,YAAY,EAAE,kCAAkC;IAChD,iBAAiB,EAAE,kCAAkC;IACrD,WAAW,EAAE,kCAAkC;CAClD,CAAC;AAEF,iBAAS,UAAU,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { MigrationUtility } from '../common/libraries/migration.utility';
2
+ export declare class AddIsDownloadableSysReportDetailsTable1742242110370 extends MigrationUtility {
3
+ constructor();
4
+ process(): void;
5
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AddIsDownloadableSysReportDetailsTable1742242110370 = void 0;
4
+ const migration_utility_1 = require("../common/libraries/migration.utility");
5
+ class AddIsDownloadableSysReportDetailsTable1742242110370 extends migration_utility_1.MigrationUtility {
6
+ constructor() {
7
+ super('sys_report_details');
8
+ this.process();
9
+ }
10
+ process() {
11
+ this.boolean('is_downloadable', false);
12
+ }
13
+ }
14
+ exports.AddIsDownloadableSysReportDetailsTable1742242110370 = AddIsDownloadableSysReportDetailsTable1742242110370;
15
+ //# sourceMappingURL=1742242110370-AddIsDownloadableSysReportDetailsTable.ts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"1742242110370-AddIsDownloadableSysReportDetailsTable.ts.js","sourceRoot":"","sources":["../../src/migrations/1742242110370-AddIsDownloadableSysReportDetailsTable.ts.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,mDAAoD,SAAQ,oCAAgB;IACrF;QACI,KAAK,CAAC,oBAAoB,CAAC,CAAC;QAC5B,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;IAC3C,CAAC;CACJ;AATD,kHASC"}
@@ -0,0 +1,5 @@
1
+ import { MigrationUtility } from '../common/libraries/migration.utility';
2
+ export declare class CreateReportSheetTable1742242204141 extends MigrationUtility {
3
+ constructor();
4
+ process(): void;
5
+ }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateReportSheetTable1742242204141 = void 0;
4
+ const migration_utility_1 = require("../common/libraries/migration.utility");
5
+ class CreateReportSheetTable1742242204141 extends migration_utility_1.MigrationUtility {
6
+ constructor() {
7
+ super('sys_report_sheets');
8
+ this.process();
9
+ }
10
+ process() {
11
+ this.primary();
12
+ this.foreign({ name: 'report_id', foreignTable: 'sys_report_details' });
13
+ this.string('name');
14
+ this.foreign({ name: 'query_id', foreignTable: 'sys_system_scripts' });
15
+ this.foreign({ name: 'pre_script_id', foreignTable: 'sys_system_scripts' });
16
+ this.foreign({ name: 'post_script_id', foreignTable: 'sys_system_scripts' });
17
+ this.boolean('active');
18
+ this.number('priority');
19
+ this.json('attributes');
20
+ this.whoColumns();
21
+ }
22
+ }
23
+ exports.CreateReportSheetTable1742242204141 = CreateReportSheetTable1742242204141;
24
+ //# sourceMappingURL=1742242204141-CreateReportSheetTable.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"1742242204141-CreateReportSheetTable.js","sourceRoot":"","sources":["../../src/migrations/1742242204141-CreateReportSheetTable.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,mCAAoC,SAAQ,oCAAgB;IACrE;QACI,KAAK,CAAC,mBAAmB,CAAC,CAAC;QAC3B,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;QAEf,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,YAAY,EAAE,oBAAoB,EAAE,CAAC,CAAC;QACxE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QAEpB,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,YAAY,EAAE,oBAAoB,EAAE,CAAC,CAAC;QACvE,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,YAAY,EAAE,oBAAoB,EAAE,CAAC,CAAC;QAC5E,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,YAAY,EAAE,oBAAoB,EAAE,CAAC,CAAC;QAE7E,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QACvB,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;QAExB,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,EAAE,CAAC;IACtB,CAAC;CACJ;AAtBD,kFAsBC"}
@@ -1 +1 @@
1
- {"version":3,"file":"failed.bull.job.entity.js","sourceRoot":"","sources":["../../../src/platformUtility/entities/failed.bull.job.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AACpE,2FAAoF;AAS7E,IAAM,mBAAmB,GAAzB,MAAM,mBAAoB,SAAQ,4BAAY;IAA9C;;QAOO,wBAAmB,GAAY,KAAK,CAAC;IAmCnD,CAAC;CAAA,CAAA;AA1CY,kDAAmB;AAU5B;IADC,IAAA,gBAAM,GAAE;;mDACM;AAGf;IADC,IAAA,gBAAM,GAAE;;uDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;;iDACI;AAGb;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;oDACF;AAGb;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;oDACF;AAGb;IADC,IAAA,gBAAM,GAAE;;qDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;0DACa;AAGtB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;wDACE;AAGjB;IADC,IAAA,gBAAM,GAAE;8BACK,IAAI;yDAAC;AAGnB;IADC,IAAA,gBAAM,GAAE;;2DACc;AAEvB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,2DAA0B;uDAAC;8BAvC9B,mBAAmB;IAD/B,IAAA,gBAAM,EAAC,sBAAsB,CAAC;GAClB,mBAAmB,CA0C/B"}
1
+ {"version":3,"file":"failed.bull.job.entity.js","sourceRoot":"","sources":["../../../src/platformUtility/entities/failed.bull.job.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AACpE,2FAAoF;AAS7E,IAAM,mBAAmB,GAAzB,MAAM,mBAAoB,SAAQ,4BAAY;IAA9C;;QAOO,wBAAmB,GAAY,KAAK,CAAC;IAoCnD,CAAC;CAAA,CAAA;AA3CY,kDAAmB;AAU5B;IADC,IAAA,gBAAM,GAAE;;mDACM;AAGf;IADC,IAAA,gBAAM,GAAE;;uDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;;iDACI;AAGb;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;oDACF;AAGb;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;oDACF;AAGb;IADC,IAAA,gBAAM,GAAE;;qDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;0DACa;AAGtB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;wDACE;AAGjB;IADC,IAAA,gBAAM,GAAE;8BACK,IAAI;yDAAC;AAGnB;IADC,IAAA,gBAAM,GAAE;;2DACc;AAGvB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,2DAA0B;uDAAC;8BAxC9B,mBAAmB;IAD/B,IAAA,gBAAM,EAAC,sBAAsB,CAAC;GAClB,mBAAmB,CA2C/B"}
@@ -1,8 +1,12 @@
1
+ import { Logger } from '@nestjs/common';
1
2
  import { CommonJob } from '../../common/libraries/common.job';
2
3
  import { QueueService } from '../services/queue.service';
3
4
  export declare class ReloadPendingBullJob extends CommonJob {
4
5
  protected readonly queueService: QueueService;
6
+ protected readonly logger: Logger;
5
7
  protected disableDraining: boolean;
8
+ private readonly BATCH_SIZE;
6
9
  constructor(queueService: QueueService);
7
- handle(): Promise<void>;
10
+ handle(identifier?: string): Promise<void>;
11
+ private processPendingJobs;
8
12
  }
@@ -8,32 +8,64 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8
8
  var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
+ var ReloadPendingBullJob_1;
11
12
  Object.defineProperty(exports, "__esModule", { value: true });
12
13
  exports.ReloadPendingBullJob = void 0;
13
14
  const common_1 = require("@nestjs/common");
14
15
  const common_job_1 = require("../../common/libraries/common.job");
15
16
  const pending_bull_job_entity_1 = require("../entities/pending.bull.job.entity");
16
17
  const queue_service_1 = require("../services/queue.service");
17
- let ReloadPendingBullJob = class ReloadPendingBullJob extends common_job_1.CommonJob {
18
+ let ReloadPendingBullJob = ReloadPendingBullJob_1 = class ReloadPendingBullJob extends common_job_1.CommonJob {
18
19
  constructor(queueService) {
19
20
  super('2585362654581cff4f70fffe0249af26');
20
21
  this.queueService = queueService;
22
+ this.logger = new common_1.Logger(ReloadPendingBullJob_1.name);
21
23
  this.disableDraining = true;
24
+ this.BATCH_SIZE = 500;
22
25
  }
23
- async handle() {
26
+ async handle(identifier) {
27
+ try {
28
+ if (identifier) {
29
+ this.logger.log(`Starting reload for specific job type: ${identifier}`);
30
+ await this.processPendingJobs({ identifier });
31
+ }
32
+ else {
33
+ this.logger.log('Starting reload for all pending jobs');
34
+ await this.processPendingJobs();
35
+ }
36
+ }
37
+ catch (error) {
38
+ this.logger.error('Error processing pending jobs', error);
39
+ throw error;
40
+ }
41
+ }
42
+ async processPendingJobs(whereClause = {}) {
24
43
  while (true) {
25
- const records = await pending_bull_job_entity_1.PendingBullJobEntity.find({ order: { job_id: 'ASC' }, take: 500 });
26
- if (!records.length)
44
+ const records = await pending_bull_job_entity_1.PendingBullJobEntity.find({
45
+ where: whereClause,
46
+ order: { job_id: 'ASC' },
47
+ take: this.BATCH_SIZE,
48
+ });
49
+ if (!records.length) {
50
+ this.logger.log('No more pending jobs to process');
27
51
  return;
28
- for (const record of records) {
29
- await this.queueService.addJob(record.identifier, record.payload.data);
30
- await record.remove();
52
+ }
53
+ this.logger.debug(`Processing batch of ${records.length} jobs`);
54
+ try {
55
+ await Promise.all(records.map(async (record) => {
56
+ await this.queueService.addJob(record.identifier, record.payload.data);
57
+ await record.remove();
58
+ }));
59
+ }
60
+ catch (error) {
61
+ this.logger.error(`Error processing batch: ${error.message}`, error);
62
+ throw error;
31
63
  }
32
64
  }
33
65
  }
34
66
  };
35
67
  exports.ReloadPendingBullJob = ReloadPendingBullJob;
36
- exports.ReloadPendingBullJob = ReloadPendingBullJob = __decorate([
68
+ exports.ReloadPendingBullJob = ReloadPendingBullJob = ReloadPendingBullJob_1 = __decorate([
37
69
  (0, common_1.Injectable)(),
38
70
  __metadata("design:paramtypes", [queue_service_1.QueueService])
39
71
  ], ReloadPendingBullJob);
@@ -1 +1 @@
1
- {"version":3,"file":"reload.pending.bull.job.js","sourceRoot":"","sources":["../../../src/platformUtility/jobs/reload.pending.bull.job.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,kEAA8D;AAC9D,iFAA2E;AAC3E,6DAAyD;AAGlD,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,sBAAS;IAG/C,YAA+B,YAA0B;QACrD,KAAK,CAAC,kCAAkC,CAAC,CAAC;QADf,iBAAY,GAAZ,YAAY,CAAc;QAF/C,oBAAe,GAAY,IAAI,CAAC;IAI1C,CAAC;IAED,KAAK,CAAC,MAAM;QACR,OAAO,IAAI,EAAE,CAAC;YACV,MAAM,OAAO,GAAG,MAAM,8CAAoB,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;YAEzF,IAAI,CAAC,OAAO,CAAC,MAAM;gBAAE,OAAO;YAE5B,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;gBAC3B,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;gBACvE,MAAM,MAAM,CAAC,MAAM,EAAE,CAAC;YAC1B,CAAC;QACL,CAAC;IACL,CAAC;CACJ,CAAA;AAnBY,oDAAoB;+BAApB,oBAAoB;IADhC,IAAA,mBAAU,GAAE;qCAIoC,4BAAY;GAHhD,oBAAoB,CAmBhC"}
1
+ {"version":3,"file":"reload.pending.bull.job.js","sourceRoot":"","sources":["../../../src/platformUtility/jobs/reload.pending.bull.job.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,2CAAoD;AACpD,kEAA8D;AAC9D,iFAA2E;AAC3E,6DAAyD;AAGlD,IAAM,oBAAoB,4BAA1B,MAAM,oBAAqB,SAAQ,sBAAS;IAK/C,YAA+B,YAA0B;QACrD,KAAK,CAAC,kCAAkC,CAAC,CAAC;QADf,iBAAY,GAAZ,YAAY,CAAc;QAJtC,WAAM,GAAG,IAAI,eAAM,CAAC,sBAAoB,CAAC,IAAI,CAAC,CAAC;QACxD,oBAAe,GAAY,IAAI,CAAC;QACzB,eAAU,GAAG,GAAG,CAAC;IAIlC,CAAC;IAMD,KAAK,CAAC,MAAM,CAAC,UAAmB;QAC5B,IAAI,CAAC;YACD,IAAI,UAAU,EAAE,CAAC;gBACb,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,0CAA0C,UAAU,EAAE,CAAC,CAAC;gBACxE,MAAM,IAAI,CAAC,kBAAkB,CAAC,EAAE,UAAU,EAAE,CAAC,CAAC;YAClD,CAAC;iBAAM,CAAC;gBACJ,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;gBACxD,MAAM,IAAI,CAAC,kBAAkB,EAAE,CAAC;YACpC,CAAC;QACL,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,+BAA+B,EAAE,KAAK,CAAC,CAAC;YAC1D,MAAM,KAAK,CAAC;QAChB,CAAC;IACL,CAAC;IAMO,KAAK,CAAC,kBAAkB,CAAC,cAAuC,EAAE;QACtE,OAAO,IAAI,EAAE,CAAC;YACV,MAAM,OAAO,GAAG,MAAM,8CAAoB,CAAC,IAAI,CAAC;gBAC5C,KAAK,EAAE,WAAW;gBAClB,KAAK,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE;gBACxB,IAAI,EAAE,IAAI,CAAC,UAAU;aACxB,CAAC,CAAC;YAEH,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;gBAClB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;gBACnD,OAAO;YACX,CAAC;YAED,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,uBAAuB,OAAO,CAAC,MAAM,OAAO,CAAC,CAAC;YAEhE,IAAI,CAAC;gBACD,MAAM,OAAO,CAAC,GAAG,CACb,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE;oBACzB,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;oBACvE,MAAM,MAAM,CAAC,MAAM,EAAE,CAAC;gBAC1B,CAAC,CAAC,CACL,CAAC;YACN,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,2BAA2B,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,CAAC,CAAC;gBACrE,MAAM,KAAK,CAAC;YAChB,CAAC;QACL,CAAC;IACL,CAAC;CACJ,CAAA;AA5DY,oDAAoB;+BAApB,oBAAoB;IADhC,IAAA,mBAAU,GAAE;qCAMoC,4BAAY;GALhD,oBAAoB,CA4DhC"}
@@ -23,6 +23,7 @@ export * from './model.allowed.column.dto';
23
23
  export * from './model.form.preference.creation.dto';
24
24
  export * from './otp.generation.dto';
25
25
  export * from './recurring.query.attributes.dto';
26
+ export * from './report.sheet.attributes.dto';
26
27
  export * from './s3.object.info.dto';
27
28
  export * from './s3.upload.options.dto';
28
29
  export * from './sms.message.attributes.dto';
@@ -39,6 +39,7 @@ __exportStar(require("./model.allowed.column.dto"), exports);
39
39
  __exportStar(require("./model.form.preference.creation.dto"), exports);
40
40
  __exportStar(require("./otp.generation.dto"), exports);
41
41
  __exportStar(require("./recurring.query.attributes.dto"), exports);
42
+ __exportStar(require("./report.sheet.attributes.dto"), exports);
42
43
  __exportStar(require("./s3.object.info.dto"), exports);
43
44
  __exportStar(require("./s3.upload.options.dto"), exports);
44
45
  __exportStar(require("./sms.message.attributes.dto"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,qEAAmD;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,iEAA+C;AAAA,sEAAoD;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,uDAAqC;AAAA,mEAAiD;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,iEAA+C;AAAA,2DAAwC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,qEAAmD;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,iEAA+C;AAAA,sEAAoD;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,uDAAqC;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,iEAA+C;AAAA,2DAAwC"}
@@ -0,0 +1,3 @@
1
+ import { CommonAttributesDto } from '../../platformUtility/dtos/common.attributes.dto';
2
+ export declare class ReportSheetAttributesDto extends CommonAttributesDto {
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReportSheetAttributesDto = void 0;
4
+ const common_attributes_dto_1 = require("../../platformUtility/dtos/common.attributes.dto");
5
+ class ReportSheetAttributesDto extends common_attributes_dto_1.CommonAttributesDto {
6
+ }
7
+ exports.ReportSheetAttributesDto = ReportSheetAttributesDto;
8
+ //# sourceMappingURL=report.sheet.attributes.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"report.sheet.attributes.dto.js","sourceRoot":"","sources":["../../../src/system/dtos/report.sheet.attributes.dto.ts"],"names":[],"mappings":";;;AAAA,4FAAuF;AAEvF,MAAa,wBAAyB,SAAQ,2CAAmB;CAAG;AAApE,4DAAoE"}
@@ -49,6 +49,7 @@ export * from './report.filter.entity';
49
49
  export * from './report.param.entity';
50
50
  export * from './report.relationship.entity';
51
51
  export * from './report.role.entity';
52
+ export * from './report.sheet.entity';
52
53
  export * from './scheduled.event.entity';
53
54
  export * from './secondary.axis.entity';
54
55
  export * from './security.rule.entity';
@@ -65,6 +65,7 @@ __exportStar(require("./report.filter.entity"), exports);
65
65
  __exportStar(require("./report.param.entity"), exports);
66
66
  __exportStar(require("./report.relationship.entity"), exports);
67
67
  __exportStar(require("./report.role.entity"), exports);
68
+ __exportStar(require("./report.sheet.entity"), exports);
68
69
  __exportStar(require("./scheduled.event.entity"), exports);
69
70
  __exportStar(require("./secondary.axis.entity"), exports);
70
71
  __exportStar(require("./security.rule.entity"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AAAA,8DAA4C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,mDAAiC;AAAA,yDAAuC;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,2DAAyC;AAAA,yDAAuC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,iDAA+B;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,2DAAyC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,+DAA6C;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,mDAAiC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,iEAA+C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,6DAA0C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AAAA,8DAA4C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,mDAAiC;AAAA,yDAAuC;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,2DAAyC;AAAA,yDAAuC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,iDAA+B;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,2DAAyC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,+DAA6C;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,mDAAiC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,iEAA+C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,6DAA0C"}
@@ -23,6 +23,7 @@ export declare class ReportEntity extends CommonEntity {
23
23
  documentation_url: string;
24
24
  order_definition: string;
25
25
  includes: string;
26
+ is_downloadable: boolean;
26
27
  attributes: any;
27
28
  query: SystemScriptEntity;
28
29
  pre_script: SystemScriptEntity;
@@ -68,6 +68,10 @@ __decorate([
68
68
  (0, typeorm_1.Column)(),
69
69
  __metadata("design:type", String)
70
70
  ], ReportEntity.prototype, "includes", void 0);
71
+ __decorate([
72
+ (0, typeorm_1.Column)(),
73
+ __metadata("design:type", Boolean)
74
+ ], ReportEntity.prototype, "is_downloadable", void 0);
71
75
  __decorate([
72
76
  (0, typeorm_1.Column)('json'),
73
77
  __metadata("design:type", Object)
@@ -1 +1 @@
1
- {"version":3,"file":"report.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.entity.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"report.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.entity.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ import { CommonEntity } from '../../common/libraries/common.entity';
2
+ import { ReportSheetAttributesDto } from '../dtos/report.sheet.attributes.dto';
3
+ import { ReportEntity } from './report.entity';
4
+ import { SystemScriptEntity } from './system.script.entity';
5
+ export declare class ReportSheetEntity extends CommonEntity {
6
+ name: string;
7
+ report_id: number;
8
+ query_id: number;
9
+ pre_script_id: number;
10
+ post_script_id: number;
11
+ active: boolean;
12
+ priority: number;
13
+ attributes: ReportSheetAttributesDto;
14
+ query: SystemScriptEntity;
15
+ pre_script: SystemScriptEntity;
16
+ post_script: SystemScriptEntity;
17
+ report: ReportEntity;
18
+ }
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ReportSheetEntity = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const common_entity_1 = require("../../common/libraries/common.entity");
15
+ const report_sheet_attributes_dto_1 = require("../dtos/report.sheet.attributes.dto");
16
+ const report_entity_1 = require("./report.entity");
17
+ const system_script_entity_1 = require("./system.script.entity");
18
+ let ReportSheetEntity = class ReportSheetEntity extends common_entity_1.CommonEntity {
19
+ };
20
+ exports.ReportSheetEntity = ReportSheetEntity;
21
+ __decorate([
22
+ (0, typeorm_1.Column)(),
23
+ __metadata("design:type", String)
24
+ ], ReportSheetEntity.prototype, "name", void 0);
25
+ __decorate([
26
+ (0, typeorm_1.Column)(),
27
+ __metadata("design:type", Number)
28
+ ], ReportSheetEntity.prototype, "report_id", void 0);
29
+ __decorate([
30
+ (0, typeorm_1.Column)(),
31
+ __metadata("design:type", Number)
32
+ ], ReportSheetEntity.prototype, "query_id", void 0);
33
+ __decorate([
34
+ (0, typeorm_1.Column)(),
35
+ __metadata("design:type", Number)
36
+ ], ReportSheetEntity.prototype, "pre_script_id", void 0);
37
+ __decorate([
38
+ (0, typeorm_1.Column)(),
39
+ __metadata("design:type", Number)
40
+ ], ReportSheetEntity.prototype, "post_script_id", void 0);
41
+ __decorate([
42
+ (0, typeorm_1.Column)(),
43
+ __metadata("design:type", Boolean)
44
+ ], ReportSheetEntity.prototype, "active", void 0);
45
+ __decorate([
46
+ (0, typeorm_1.Column)(),
47
+ __metadata("design:type", Number)
48
+ ], ReportSheetEntity.prototype, "priority", void 0);
49
+ __decorate([
50
+ (0, typeorm_1.Column)('json'),
51
+ __metadata("design:type", report_sheet_attributes_dto_1.ReportSheetAttributesDto)
52
+ ], ReportSheetEntity.prototype, "attributes", void 0);
53
+ __decorate([
54
+ (0, typeorm_1.ManyToOne)(() => system_script_entity_1.SystemScriptEntity),
55
+ (0, typeorm_1.JoinColumn)({ name: 'query_id' }),
56
+ __metadata("design:type", system_script_entity_1.SystemScriptEntity)
57
+ ], ReportSheetEntity.prototype, "query", void 0);
58
+ __decorate([
59
+ (0, typeorm_1.ManyToOne)(() => system_script_entity_1.SystemScriptEntity),
60
+ (0, typeorm_1.JoinColumn)({ name: 'pre_script_id' }),
61
+ __metadata("design:type", system_script_entity_1.SystemScriptEntity)
62
+ ], ReportSheetEntity.prototype, "pre_script", void 0);
63
+ __decorate([
64
+ (0, typeorm_1.ManyToOne)(() => system_script_entity_1.SystemScriptEntity),
65
+ (0, typeorm_1.JoinColumn)({ name: 'post_script_id' }),
66
+ __metadata("design:type", system_script_entity_1.SystemScriptEntity)
67
+ ], ReportSheetEntity.prototype, "post_script", void 0);
68
+ __decorate([
69
+ (0, typeorm_1.ManyToOne)(() => report_entity_1.ReportEntity),
70
+ (0, typeorm_1.JoinColumn)({ name: 'report_id' }),
71
+ __metadata("design:type", report_entity_1.ReportEntity)
72
+ ], ReportSheetEntity.prototype, "report", void 0);
73
+ exports.ReportSheetEntity = ReportSheetEntity = __decorate([
74
+ (0, typeorm_1.Entity)('sys_report_sheets')
75
+ ], ReportSheetEntity);
76
+ //# sourceMappingURL=report.sheet.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"report.sheet.entity.js","sourceRoot":"","sources":["../../../src/system/entities/report.sheet.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,wEAAoE;AACpE,qFAA+E;AAC/E,mDAA+C;AAC/C,iEAA4D;AASrD,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,4BAAY;CAwClD,CAAA;AAxCY,8CAAiB;AAE1B;IADC,IAAA,gBAAM,GAAE;;+CACI;AAGb;IADC,IAAA,gBAAM,GAAE;;oDACS;AAElB;IADC,IAAA,gBAAM,GAAE;;mDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;wDACa;AAGtB;IADC,IAAA,gBAAM,GAAE;;yDACc;AAGvB;IADC,IAAA,gBAAM,GAAE;;iDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;mDACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,sDAAwB;qDAAC;AAKrC;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,CAAC;IACnC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAC1B,yCAAkB;gDAAC;AAI1B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,CAAC;IACnC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;8BAC1B,yCAAkB;qDAAC;AAI/B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,CAAC;IACnC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;8BAC1B,yCAAkB;sDAAC;AAIhC;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IAC7B,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAC1B,4BAAY;iDAAC;4BAvCZ,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,iBAAiB,CAwC7B"}
@@ -77,6 +77,7 @@ import { ReportEntity } from './entities/report.entity';
77
77
  import { ReportFilterEntity } from './entities/report.filter.entity';
78
78
  import { ReportRelationshipEntity } from './entities/report.relationship.entity';
79
79
  import { ReportRoleEntity } from './entities/report.role.entity';
80
+ import { ReportSheetEntity } from './entities/report.sheet.entity';
80
81
  import { ScheduledEventEntity } from './entities/scheduled.event.entity';
81
82
  import { SecurityRuleEntity } from './entities/security.rule.entity';
82
83
  import { ServiceEntity } from './entities/service.entity';
@@ -117,6 +118,7 @@ import { RefreshMaterialViewJob } from './jobs/refresh.material.view.job';
117
118
  import { RefreshPropertyCacheJob } from './jobs/refresh.property.cache.job';
118
119
  import { RelationshipMapperJob } from './jobs/relationship.mapper.job';
119
120
  import { ReportColumnSyncJob } from './jobs/report.column.sync.job';
121
+ import { ReportSheetJob } from './jobs/report.sheet.job';
120
122
  import { ScheduledEventJob } from './jobs/scheduled.event.job';
121
123
  import { SetCodefixScriptEventJob } from './jobs/set.codefix.script.event.job';
122
124
  import { SetEventQueueJob } from './jobs/set.event.queue.job';
@@ -133,6 +135,8 @@ import { BusinessRuleQueryEvaluator } from './libraries/business.rule.query.eval
133
135
  import { CodeEvaluator } from './libraries/code.evaluator';
134
136
  import { ColumnManager } from './libraries/column.manager';
135
137
  import { ExecuteCodeFix } from './libraries/execute.code.fix';
138
+ import { GenerateDownloadableReportFile } from './libraries/generate.downloadable.report.file';
139
+ import { GetReportQuery } from './libraries/get.report.query';
136
140
  import { ModelSync } from './libraries/model.sync';
137
141
  import { ProcessMenuCreation } from './libraries/process.menu.creation';
138
142
  import { SecurityRuleEvaluator } from './libraries/security.rule.evaluator';
@@ -183,6 +187,7 @@ import { MobileValidationSubscriber } from './subscribers/mobile.validation.subs
183
187
  import { PropertySubscriber } from './subscribers/property.subscriber';
184
188
  import { RecurringQuerySubscriber } from './subscribers/recurring.query.subscriber';
185
189
  import { RelationshipSubscriber } from './subscribers/relationship.subscriber';
190
+ import { ReportSheetSubscriber } from './subscribers/report.sheet.subscriber';
186
191
  import { ScheduledEventSubscriber } from './subscribers/scheduled.event.subscriber';
187
192
  import { SmsMessageSubscriber } from './subscribers/sms.message.subscriber';
188
193
  import { UserGroupMemberSubscriber } from './subscribers/user.group.member.subscriber';
@@ -192,12 +197,12 @@ declare const es6Classes: {
192
197
  commands: (typeof DbScannerCommand | typeof DynamoScannerCommand | typeof EventQueueCommand | typeof JobsScannerCommand | typeof ModelScannerCommand | typeof ReportScannerCommand | typeof ServiceScannerCommand | typeof SesEventTrackingCommand | typeof SyncAllCommand)[];
193
198
  controllers: (typeof BaseController | typeof DataController | typeof FormController | typeof MenuController | typeof PreferenceController | typeof ReportController | typeof UploadController | typeof UserPreferenceController)[];
194
199
  dtos: (typeof ClientCredentialAttributesDto | typeof FileUploadSpecDto | typeof S3UploadOptionsDto | typeof LocalFileS3UploadDto | typeof S3ObjectInfoDto | typeof AddDirectMenuDto | typeof ModelFormPreferenceCreationDto | typeof UserPreferenceCreationDto | typeof FileUploadDto | typeof AddCommentDto | typeof ClientCredentialDto | typeof JobRecordParamDto | typeof MailValidationDto | typeof MobileValidationDto | typeof ModelAllowedColumnDto | typeof OtpGenerationDto | typeof ValidationOptionsDto)[];
195
- entities: (typeof LookupTypeEntity | typeof UserGroupRoleEntity | typeof UserGroupEntity | typeof UserGroupMemberEntity | typeof BusinessRuleRoleEntity | typeof BusinessRuleEntity | typeof ColumnDefinitionEntity | typeof ColumnEntity | typeof ModelEntity | typeof FormPreferenceEntity | typeof ModelColumnEntity | typeof RelationshipEntity | typeof ModelRelationshipEntity | typeof ModelRoleEntity | typeof FormColumnEntity | typeof SystemScriptEntity | typeof UiActionPermissionEntity | typeof UiActionEntity | typeof UiActionRoleEntity | typeof PrimaryAxisEntity | typeof ChartEntity | typeof ClientEntity | typeof ClientCredentialEntity | typeof CredentialIpEntity | typeof ClientScriptEntity | typeof CodeFixScriptEntity | typeof CodeFixLogEntity | typeof DocumentEntity | typeof CommentEntity | typeof DataLogEntity | typeof DynamoTableEntity | typeof EventDetailEntity | typeof EventQueueEntity | typeof MailLogEntity | typeof MailEventEntity | typeof MailRecipientEntity | typeof MailValidationEntity | typeof MaterialViewEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof ModuleEntity | typeof ModuleMenuEntity | typeof PageDefinitionEntity | typeof ParentMenuEntity | typeof MobileValidationEntity | typeof OpenPropertyEntity | typeof RecurringQueryEntity | typeof ReportFilterEntity | typeof ReportEntity | typeof ReportRelationshipEntity | typeof ReportRoleEntity | typeof ReportColumnEntity | typeof ScheduledEventEntity | typeof SecurityRuleEntity | typeof ServiceEntity | typeof SmsTemplateEntity | typeof SmsMessageEntity | typeof UserGroupPermissionEntity | typeof UserPreferenceEntity | typeof WhatsappTemplateEntity)[];
200
+ entities: (typeof LookupTypeEntity | typeof UserGroupRoleEntity | typeof UserGroupEntity | typeof UserGroupMemberEntity | typeof BusinessRuleRoleEntity | typeof BusinessRuleEntity | typeof ColumnDefinitionEntity | typeof ColumnEntity | typeof ModelEntity | typeof FormPreferenceEntity | typeof ModelColumnEntity | typeof RelationshipEntity | typeof ModelRelationshipEntity | typeof ModelRoleEntity | typeof FormColumnEntity | typeof SystemScriptEntity | typeof UiActionPermissionEntity | typeof UiActionEntity | typeof UiActionRoleEntity | typeof PrimaryAxisEntity | typeof ChartEntity | typeof ClientEntity | typeof ClientCredentialEntity | typeof CredentialIpEntity | typeof ClientScriptEntity | typeof CodeFixScriptEntity | typeof CodeFixLogEntity | typeof DocumentEntity | typeof CommentEntity | typeof DataLogEntity | typeof DynamoTableEntity | typeof EventDetailEntity | typeof EventQueueEntity | typeof MailLogEntity | typeof MailEventEntity | typeof MailRecipientEntity | typeof MailValidationEntity | typeof MaterialViewEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof ModuleEntity | typeof ModuleMenuEntity | typeof PageDefinitionEntity | typeof ParentMenuEntity | typeof MobileValidationEntity | typeof OpenPropertyEntity | typeof RecurringQueryEntity | typeof ReportFilterEntity | typeof ReportEntity | typeof ReportRelationshipEntity | typeof ReportRoleEntity | typeof ReportColumnEntity | typeof ReportSheetEntity | typeof ScheduledEventEntity | typeof SecurityRuleEntity | typeof ServiceEntity | typeof SmsTemplateEntity | typeof SmsMessageEntity | typeof UserGroupPermissionEntity | typeof UserPreferenceEntity | typeof WhatsappTemplateEntity)[];
196
201
  interceptors: (typeof SentryInterceptor)[];
197
- jobs: (typeof ExecuteCodeFixJob | typeof SetScheduledEventJob | typeof ModelScannerJob | typeof ReportColumnSyncJob | typeof SyncAllCodeJob | typeof ClientCredentialJob | typeof ClientJob | typeof CodeFixLogJob | typeof SetCodefixScriptEventJob | typeof CodeFixScriptJob | typeof ColumnMapperJob | typeof CommentJob | typeof CredentialIpJob | typeof DataLogJob | typeof DocumentJob | typeof ExecuteMaterialViewJob | typeof ExecuteRecurringQueryJob | typeof MailEventJob | typeof MailRecipientJob | typeof MailValidationJob | typeof RefreshMaterialViewJob | typeof MaterialViewJob | typeof MobileValidationJob | typeof RefreshPropertyCacheJob | typeof PropertyJob | typeof SetRecurringQueryEventJob | typeof RecurringQueryJob | typeof RelationshipMapperJob | typeof ScheduledEventJob | typeof SetEventQueueJob | typeof SmsMessageJob | typeof SqsPollingJob | typeof UserGroupMemberJob | typeof UserGroupPermissionJob | typeof UserGroupRoleJob)[];
198
- libraries: (typeof ExecuteCodeFix | typeof ModelSync | typeof SecurityRuleEvaluator | typeof ColumnManager | typeof SyncDynamoTables | typeof BusinessRuleFilterValidator | typeof BusinessRuleQueryEvaluator | typeof ProcessMenuCreation | typeof CodeEvaluator)[];
202
+ jobs: (typeof ExecuteCodeFixJob | typeof SetScheduledEventJob | typeof ModelScannerJob | typeof ReportColumnSyncJob | typeof SyncAllCodeJob | typeof ClientCredentialJob | typeof ClientJob | typeof CodeFixLogJob | typeof SetCodefixScriptEventJob | typeof CodeFixScriptJob | typeof ColumnMapperJob | typeof CommentJob | typeof CredentialIpJob | typeof DataLogJob | typeof DocumentJob | typeof ExecuteMaterialViewJob | typeof ExecuteRecurringQueryJob | typeof MailEventJob | typeof MailRecipientJob | typeof MailValidationJob | typeof RefreshMaterialViewJob | typeof MaterialViewJob | typeof MobileValidationJob | typeof RefreshPropertyCacheJob | typeof PropertyJob | typeof SetRecurringQueryEventJob | typeof RecurringQueryJob | typeof RelationshipMapperJob | typeof ReportSheetJob | typeof ScheduledEventJob | typeof SetEventQueueJob | typeof SmsMessageJob | typeof SqsPollingJob | typeof UserGroupMemberJob | typeof UserGroupPermissionJob | typeof UserGroupRoleJob)[];
203
+ libraries: (typeof ExecuteCodeFix | typeof ModelSync | typeof SecurityRuleEvaluator | typeof ColumnManager | typeof CodeEvaluator | typeof GetReportQuery | typeof GenerateDownloadableReportFile | typeof SyncDynamoTables | typeof BusinessRuleFilterValidator | typeof BusinessRuleQueryEvaluator | typeof ProcessMenuCreation)[];
199
204
  modifiers: (typeof MenuListModifier | typeof ModuleListModifier)[];
200
205
  services: (typeof PropertyService | typeof AwsS3Service | typeof UploadService | typeof ScheduledEventService | typeof SecurityRuleService | typeof UiActionService | typeof ModelService | typeof CommonService | typeof EventDetailService | typeof EventQueueService | typeof ClientScriptService | typeof PreferenceService | typeof BusinessRuleService | typeof ListService | typeof FormService | typeof MenuService | typeof UserPreferenceService | typeof ReportService | typeof ClientCredentialService | typeof ColumnService | typeof DocumentService | typeof CommentService | typeof Es6JobsService | typeof InternalServerConnectService | typeof MailValidationService | typeof MobileValidationService | typeof Es6Service)[];
201
- subscribers: (typeof ClientCredentialSubscriber | typeof ClientSubscriber | typeof CodeFixLogSubscriber | typeof CodeFixScriptSubscriber | typeof ColumnSubscriber | typeof CommentSubscriber | typeof CredentialIpSubscriber | typeof DataLogSubscriber | typeof DocumentSubscriber | typeof MailEventSubscriber | typeof MailRecipientSubscriber | typeof MailValidationSubscriber | typeof MaterialViewSubscriber | typeof MobileValidationSubscriber | typeof PropertySubscriber | typeof RecurringQuerySubscriber | typeof RelationshipSubscriber | typeof ScheduledEventSubscriber | typeof SmsMessageSubscriber | typeof UserGroupMemberSubscriber | typeof UserGroupPermissionSubscriber | typeof UserGroupRoleSubscriber)[];
206
+ subscribers: (typeof ClientCredentialSubscriber | typeof ClientSubscriber | typeof CodeFixLogSubscriber | typeof CodeFixScriptSubscriber | typeof ColumnSubscriber | typeof CommentSubscriber | typeof CredentialIpSubscriber | typeof DataLogSubscriber | typeof DocumentSubscriber | typeof MailEventSubscriber | typeof MailRecipientSubscriber | typeof MailValidationSubscriber | typeof MaterialViewSubscriber | typeof MobileValidationSubscriber | typeof PropertySubscriber | typeof RecurringQuerySubscriber | typeof RelationshipSubscriber | typeof ReportSheetSubscriber | typeof ScheduledEventSubscriber | typeof SmsMessageSubscriber | typeof UserGroupMemberSubscriber | typeof UserGroupPermissionSubscriber | typeof UserGroupRoleSubscriber)[];
202
207
  };
203
208
  export default es6Classes;