@servicelabsco/slabs-access-manager 0.1.228 → 0.1.229

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 (66) hide show
  1. package/dist/access/controllers/business.report.controller.d.ts +17 -0
  2. package/dist/access/controllers/business.report.controller.js +96 -0
  3. package/dist/access/controllers/business.report.controller.js.map +1 -0
  4. package/dist/access/controllers/index.d.ts +1 -0
  5. package/dist/access/controllers/index.js +1 -0
  6. package/dist/access/controllers/index.js.map +1 -1
  7. package/dist/access/dtos/add.custom.field.dto.d.ts +1 -0
  8. package/dist/access/dtos/add.custom.field.dto.js +5 -0
  9. package/dist/access/dtos/add.custom.field.dto.js.map +1 -1
  10. package/dist/access/dtos/generate.business.report.dto.d.ts +4 -0
  11. package/dist/access/dtos/generate.business.report.dto.js +28 -0
  12. package/dist/access/dtos/generate.business.report.dto.js.map +1 -0
  13. package/dist/access/dtos/index.d.ts +1 -0
  14. package/dist/access/dtos/index.js +1 -0
  15. package/dist/access/dtos/index.js.map +1 -1
  16. package/dist/access/entities/business.downloadable.report.entity.d.ts +10 -0
  17. package/dist/access/entities/business.downloadable.report.entity.js +48 -0
  18. package/dist/access/entities/business.downloadable.report.entity.js.map +1 -0
  19. package/dist/access/entities/business.report.entity.d.ts +15 -0
  20. package/dist/access/entities/business.report.entity.js +69 -0
  21. package/dist/access/entities/business.report.entity.js.map +1 -0
  22. package/dist/access/entities/index.d.ts +2 -0
  23. package/dist/access/entities/index.js +2 -0
  24. package/dist/access/entities/index.js.map +1 -1
  25. package/dist/access/es6.classes.d.ts +14 -5
  26. package/dist/access/es6.classes.js +18 -0
  27. package/dist/access/es6.classes.js.map +1 -1
  28. package/dist/access/jobs/business.downloadable.report.job.d.ts +7 -0
  29. package/dist/access/jobs/business.downloadable.report.job.js +29 -0
  30. package/dist/access/jobs/business.downloadable.report.job.js.map +1 -0
  31. package/dist/access/jobs/business.report.job.d.ts +10 -0
  32. package/dist/access/jobs/business.report.job.js +41 -0
  33. package/dist/access/jobs/business.report.job.js.map +1 -0
  34. package/dist/access/jobs/generate.business.report.job.d.ts +16 -0
  35. package/dist/access/jobs/generate.business.report.job.js +52 -0
  36. package/dist/access/jobs/generate.business.report.job.js.map +1 -0
  37. package/dist/access/jobs/index.d.ts +3 -0
  38. package/dist/access/jobs/index.js +3 -0
  39. package/dist/access/jobs/index.js.map +1 -1
  40. package/dist/access/libraries/process.custom.field.creation.js +4 -3
  41. package/dist/access/libraries/process.custom.field.creation.js.map +1 -1
  42. package/dist/access/services/access.report.service.d.ts +2 -0
  43. package/dist/access/services/access.report.service.js +17 -0
  44. package/dist/access/services/access.report.service.js.map +1 -1
  45. package/dist/access/services/es6.jobs.service.d.ts +7 -1
  46. package/dist/access/services/es6.jobs.service.js +13 -1
  47. package/dist/access/services/es6.jobs.service.js.map +1 -1
  48. package/dist/access/subscribers/business.downloadable.report.subscriber.d.ts +10 -0
  49. package/dist/access/subscribers/business.downloadable.report.subscriber.js +34 -0
  50. package/dist/access/subscribers/business.downloadable.report.subscriber.js.map +1 -0
  51. package/dist/access/subscribers/business.report.subscriber.d.ts +10 -0
  52. package/dist/access/subscribers/business.report.subscriber.js +34 -0
  53. package/dist/access/subscribers/business.report.subscriber.js.map +1 -0
  54. package/dist/access/subscribers/index.d.ts +2 -0
  55. package/dist/access/subscribers/index.js +2 -0
  56. package/dist/access/subscribers/index.js.map +1 -1
  57. package/dist/config/entity.constants.d.ts +4 -0
  58. package/dist/config/entity.constants.js +4 -0
  59. package/dist/config/entity.constants.js.map +1 -1
  60. package/dist/migrations/1733723463746-CreateBusinessDownloadableReportTable.d.ts +5 -0
  61. package/dist/migrations/1733723463746-CreateBusinessDownloadableReportTable.js +20 -0
  62. package/dist/migrations/1733723463746-CreateBusinessDownloadableReportTable.js.map +1 -0
  63. package/dist/migrations/1733724130691-CreateBusinessReportTable.d.ts +5 -0
  64. package/dist/migrations/1733724130691-CreateBusinessReportTable.js +24 -0
  65. package/dist/migrations/1733724130691-CreateBusinessReportTable.js.map +1 -0
  66. package/package.json +1 -1
@@ -0,0 +1,17 @@
1
+ import { AwsS3Service } from '@servicelabsco/nestjs-utility-services';
2
+ import { BusinessParamDto } from '../dtos/business.param.dto';
3
+ import { GenerateBusinessReportDto } from '../dtos/generate.business.report.dto';
4
+ import { BusinessDownloadableReportEntity } from '../entities/business.downloadable.report.entity';
5
+ import { BusinessReportEntity } from '../entities/business.report.entity';
6
+ import { AccessBusinessService } from '../services/access.business.service';
7
+ export declare class BusinessReportController {
8
+ private readonly accessBusinessService;
9
+ private readonly awsS3Service;
10
+ constructor(accessBusinessService: AccessBusinessService, awsS3Service: AwsS3Service);
11
+ getAvailableReport(): Promise<BusinessDownloadableReportEntity[]>;
12
+ getGeneratedReport(): Promise<BusinessReportEntity[]>;
13
+ downloadReport(param: BusinessParamDto): Promise<{
14
+ url: string;
15
+ }>;
16
+ generateReport(body: GenerateBusinessReportDto, param: BusinessParamDto): Promise<BusinessReportEntity>;
17
+ }
@@ -0,0 +1,96 @@
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
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.BusinessReportController = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
18
+ const business_param_dto_1 = require("../dtos/business.param.dto");
19
+ const generate_business_report_dto_1 = require("../dtos/generate.business.report.dto");
20
+ const business_downloadable_report_entity_1 = require("../entities/business.downloadable.report.entity");
21
+ const business_report_entity_1 = require("../entities/business.report.entity");
22
+ const access_business_service_1 = require("../services/access.business.service");
23
+ let BusinessReportController = class BusinessReportController {
24
+ constructor(accessBusinessService, awsS3Service) {
25
+ this.accessBusinessService = accessBusinessService;
26
+ this.awsS3Service = awsS3Service;
27
+ }
28
+ async getAvailableReport() {
29
+ const business = await this.accessBusinessService.validateAccess();
30
+ return business_downloadable_report_entity_1.BusinessDownloadableReportEntity.find({
31
+ where: { active: true, business_id: business.id },
32
+ relations: ['sys_report'],
33
+ });
34
+ }
35
+ async getGeneratedReport() {
36
+ const business = await this.accessBusinessService.validateAccess();
37
+ return business_report_entity_1.BusinessReportEntity.find({
38
+ where: { business_id: business.id },
39
+ relations: ['business', 'creator', 'sys_report'],
40
+ order: { updated_at: 'DESC' },
41
+ });
42
+ }
43
+ async downloadReport(param) {
44
+ const business = await this.accessBusinessService.validateAccess();
45
+ const rep = await business_report_entity_1.BusinessReportEntity.findOne({ where: { business_id: business.id, id: param.id } });
46
+ if (!rep?.url)
47
+ throw new nestjs_utility_services_1.OperationException('no report url found');
48
+ const attributes = this.awsS3Service.getS3BucketKeyFromUrl(rep.url);
49
+ const url = await this.awsS3Service.getPublicUrl(attributes.bucket, attributes.key);
50
+ return { url };
51
+ }
52
+ async generateReport(body, param) {
53
+ const business = await this.accessBusinessService.validateAccess();
54
+ const businessReport = await business_downloadable_report_entity_1.BusinessDownloadableReportEntity.findOne({ where: { id: param.id, active: true } });
55
+ if (!businessReport)
56
+ throw new nestjs_utility_services_1.OperationException('This report is cannot be downloaded');
57
+ const newReport = business_report_entity_1.BusinessReportEntity.create({ business_id: business.id, sys_report_id: businessReport.sys_report_id });
58
+ newReport.params = body.params;
59
+ newReport.comment = body?.comment;
60
+ return newReport.save();
61
+ }
62
+ };
63
+ exports.BusinessReportController = BusinessReportController;
64
+ __decorate([
65
+ (0, common_1.Get)('available-report'),
66
+ __metadata("design:type", Function),
67
+ __metadata("design:paramtypes", []),
68
+ __metadata("design:returntype", Promise)
69
+ ], BusinessReportController.prototype, "getAvailableReport", null);
70
+ __decorate([
71
+ (0, common_1.Get)('generated-report'),
72
+ __metadata("design:type", Function),
73
+ __metadata("design:paramtypes", []),
74
+ __metadata("design:returntype", Promise)
75
+ ], BusinessReportController.prototype, "getGeneratedReport", null);
76
+ __decorate([
77
+ (0, common_1.Get)(':id/download-report'),
78
+ __param(0, (0, common_1.Param)()),
79
+ __metadata("design:type", Function),
80
+ __metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
81
+ __metadata("design:returntype", Promise)
82
+ ], BusinessReportController.prototype, "downloadReport", null);
83
+ __decorate([
84
+ (0, common_1.Post)(':id/generate-report'),
85
+ __param(0, (0, common_1.Body)()),
86
+ __param(1, (0, common_1.Param)()),
87
+ __metadata("design:type", Function),
88
+ __metadata("design:paramtypes", [generate_business_report_dto_1.GenerateBusinessReportDto, business_param_dto_1.BusinessParamDto]),
89
+ __metadata("design:returntype", Promise)
90
+ ], BusinessReportController.prototype, "generateReport", null);
91
+ exports.BusinessReportController = BusinessReportController = __decorate([
92
+ (0, common_1.Controller)('api/b/report'),
93
+ __metadata("design:paramtypes", [access_business_service_1.AccessBusinessService,
94
+ nestjs_utility_services_1.AwsS3Service])
95
+ ], BusinessReportController);
96
+ //# sourceMappingURL=business.report.controller.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.report.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/business.report.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAAoE;AACpE,oFAA0F;AAC1F,mEAA8D;AAC9D,uFAAiF;AACjF,yGAAmG;AACnG,+EAA0E;AAC1E,iFAA4E;AAQrE,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;IACjC,YACqB,qBAA4C,EAC5C,YAA0B;QAD1B,0BAAqB,GAArB,qBAAqB,CAAuB;QAC5C,iBAAY,GAAZ,YAAY,CAAc;IAC5C,CAAC;IAGE,AAAN,KAAK,CAAC,kBAAkB;QACpB,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,OAAO,sEAAgC,CAAC,IAAI,CAAC;YACzC,KAAK,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,EAAE;YACjD,SAAS,EAAE,CAAC,YAAY,CAAC;SAC5B,CAAC,CAAC;IACP,CAAC;IAGK,AAAN,KAAK,CAAC,kBAAkB;QACpB,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,OAAO,6CAAoB,CAAC,IAAI,CAAC;YAC7B,KAAK,EAAE,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,EAAE;YACnC,SAAS,EAAE,CAAC,UAAU,EAAE,SAAS,EAAE,YAAY,CAAC;YAChD,KAAK,EAAE,EAAE,UAAU,EAAE,MAAM,EAAE;SAChC,CAAC,CAAC;IACP,CAAC;IAGK,AAAN,KAAK,CAAC,cAAc,CAAU,KAAuB;QACjD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QAEnE,MAAM,GAAG,GAAG,MAAM,6CAAoB,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QACtG,IAAI,CAAC,GAAG,EAAE,GAAG;YAAE,MAAM,IAAI,4CAAkB,CAAC,qBAAqB,CAAC,CAAC;QAEnE,MAAM,UAAU,GAAG,IAAI,CAAC,YAAY,CAAC,qBAAqB,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACpE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,YAAY,CAAC,YAAY,CAAC,UAAU,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;QAEpF,OAAO,EAAE,GAAG,EAAE,CAAC;IACnB,CAAC;IAGK,AAAN,KAAK,CAAC,cAAc,CAAS,IAA+B,EAAW,KAAuB;QAC1F,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QAEnE,MAAM,cAAc,GAAG,MAAM,sEAAgC,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;QACjH,IAAI,CAAC,cAAc;YAAE,MAAM,IAAI,4CAAkB,CAAC,qCAAqC,CAAC,CAAC;QAEzF,MAAM,SAAS,GAAG,6CAAoB,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,EAAE,aAAa,EAAE,cAAc,CAAC,aAAa,EAAE,CAAC,CAAC;QAEzH,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC/B,SAAS,CAAC,OAAO,GAAG,IAAI,EAAE,OAAO,CAAC;QAElC,OAAO,SAAS,CAAC,IAAI,EAAE,CAAC;IAC5B,CAAC;CACJ,CAAA;AApDY,4DAAwB;AAO3B;IADL,IAAA,YAAG,EAAC,kBAAkB,CAAC;;;;kEAOvB;AAGK;IADL,IAAA,YAAG,EAAC,kBAAkB,CAAC;;;;kEAQvB;AAGK;IADL,IAAA,YAAG,EAAC,qBAAqB,CAAC;IACL,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAQ,qCAAgB;;8DAUpD;AAGK;IADL,IAAA,aAAI,EAAC,qBAAqB,CAAC;IACN,WAAA,IAAA,aAAI,GAAE,CAAA;IAAmC,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAnC,wDAAyB,EAAkB,qCAAgB;;8DAY7F;mCAnDQ,wBAAwB;IADpC,IAAA,mBAAU,EAAC,cAAc,CAAC;qCAGqB,+CAAqB;QAC9B,sCAAY;GAHtC,wBAAwB,CAoDpC"}
@@ -5,6 +5,7 @@ export * from './bulk.upload.item.controller';
5
5
  export * from './business.app.integration.controller';
6
6
  export * from './business.notification.channel.preference.controller';
7
7
  export * from './business.preference.controller';
8
+ export * from './business.report.controller';
8
9
  export * from './business.user.group.controller';
9
10
  export * from './business.user.notification.preference.controller';
10
11
  export * from './business.webhook.controller';
@@ -21,6 +21,7 @@ __exportStar(require("./bulk.upload.item.controller"), exports);
21
21
  __exportStar(require("./business.app.integration.controller"), exports);
22
22
  __exportStar(require("./business.notification.channel.preference.controller"), exports);
23
23
  __exportStar(require("./business.preference.controller"), exports);
24
+ __exportStar(require("./business.report.controller"), exports);
24
25
  __exportStar(require("./business.user.group.controller"), exports);
25
26
  __exportStar(require("./business.user.notification.preference.controller"), exports);
26
27
  __exportStar(require("./business.webhook.controller"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/controllers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,wEAAsD;AAAA,wFAAsE;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,qFAAmE;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,uDAAqC;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,qEAAmD;AAAA,mDAAiC;AAAA,iEAA+C;AAAA,+DAA4C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/controllers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,wEAAsD;AAAA,wFAAsE;AAAA,mEAAiD;AAAA,+DAA6C;AAAA,mEAAiD;AAAA,qFAAmE;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,uDAAqC;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,qEAAmD;AAAA,mDAAiC;AAAA,iEAA+C;AAAA,+DAA4C"}
@@ -4,6 +4,7 @@ export declare class AddCustomFieldDto extends ModifyCustomFieldStatusDto {
4
4
  type_id: number;
5
5
  column_type_id: number;
6
6
  choice_type_id?: number;
7
+ identifier?: string;
7
8
  name: string;
8
9
  priority: number;
9
10
  default_value: string;
@@ -42,6 +42,11 @@ __decorate([
42
42
  (0, class_transformer_1.Expose)(),
43
43
  __metadata("design:type", Number)
44
44
  ], AddCustomFieldDto.prototype, "choice_type_id", void 0);
45
+ __decorate([
46
+ (0, class_transformer_1.Expose)(),
47
+ (0, class_validator_1.IsOptional)(),
48
+ __metadata("design:type", String)
49
+ ], AddCustomFieldDto.prototype, "identifier", void 0);
45
50
  __decorate([
46
51
  (0, class_validator_1.IsNotEmpty)(),
47
52
  (0, class_transformer_1.Expose)(),
@@ -1 +1 @@
1
- {"version":3,"file":"add.custom.field.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/add.custom.field.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAA2E;AAC3E,8EAAwE;AACxE,qFAA8E;AAE9E,MAAa,iBAAkB,SAAQ,2DAA0B;CAkChE;AAlCD,8CAkCC;AA9BG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;6CACC;AAKZ;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;kDACG;AAMhB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;IACR,IAAA,wBAAM,EAAC,8CAAoB,CAAC;;yDACN;AAKvB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;yDACe;AAIxB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;+CACI;AAKb;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;;mDACM;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;wDACa"}
1
+ {"version":3,"file":"add.custom.field.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/add.custom.field.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAA2E;AAC3E,8EAAwE;AACxE,qFAA8E;AAE9E,MAAa,iBAAkB,SAAQ,2DAA0B;CAsChE;AAtCD,8CAsCC;AAlCG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;6CACC;AAKZ;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;kDACG;AAMhB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;IACR,IAAA,wBAAM,EAAC,8CAAoB,CAAC;;yDACN;AAKvB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;yDACe;AAIxB;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;qDACO;AAIpB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;+CACI;AAKb;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;;mDACM;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;wDACa"}
@@ -0,0 +1,4 @@
1
+ export declare class GenerateBusinessReportDto {
2
+ params: any;
3
+ comment: string;
4
+ }
@@ -0,0 +1,28 @@
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.GenerateBusinessReportDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const class_validator_1 = require("class-validator");
15
+ class GenerateBusinessReportDto {
16
+ }
17
+ exports.GenerateBusinessReportDto = GenerateBusinessReportDto;
18
+ __decorate([
19
+ (0, class_transformer_1.Expose)(),
20
+ (0, class_validator_1.IsNotEmpty)(),
21
+ __metadata("design:type", Object)
22
+ ], GenerateBusinessReportDto.prototype, "params", void 0);
23
+ __decorate([
24
+ (0, class_transformer_1.Expose)(),
25
+ (0, class_validator_1.IsOptional)(),
26
+ __metadata("design:type", String)
27
+ ], GenerateBusinessReportDto.prototype, "comment", void 0);
28
+ //# sourceMappingURL=generate.business.report.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate.business.report.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/generate.business.report.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAyD;AAEzD,MAAa,yBAAyB;CAQrC;AARD,8DAQC;AALG;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;yDACD;AAIZ;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;0DACG"}
@@ -83,6 +83,7 @@ export * from './gchat.template.attributes.dto';
83
83
  export * from './gchat.user.attributes.dto';
84
84
  export * from './gchat.webhook.attributes.dto';
85
85
  export * from './gchat.webhook.message.attributes.dto';
86
+ export * from './generate.business.report.dto';
86
87
  export * from './get.nsql.response.dto';
87
88
  export * from './get.script.values.dto';
88
89
  export * from './group.member.attributes.dto';
@@ -99,6 +99,7 @@ __exportStar(require("./gchat.template.attributes.dto"), exports);
99
99
  __exportStar(require("./gchat.user.attributes.dto"), exports);
100
100
  __exportStar(require("./gchat.webhook.attributes.dto"), exports);
101
101
  __exportStar(require("./gchat.webhook.message.attributes.dto"), exports);
102
+ __exportStar(require("./generate.business.report.dto"), exports);
102
103
  __exportStar(require("./get.nsql.response.dto"), exports);
103
104
  __exportStar(require("./get.script.values.dto"), exports);
104
105
  __exportStar(require("./group.member.attributes.dto"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,kFAAgE;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,2EAAyD;AAAA,uDAAqC;AAAA,yDAAuC;AAAA,mEAAiD;AAAA,+DAA6C;AAAA,4EAA0D;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,sDAAoC;AAAA,gDAA8B;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,2EAAyD;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,4EAA0D;AAAA,uFAAqE;AAAA,iFAA+D;AAAA,qFAAmE;AAAA,kEAAgD;AAAA,iEAA+C;AAAA,6FAA2E;AAAA,uDAAqC;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,wEAAsD;AAAA,yFAAuE;AAAA,0FAAwE;AAAA,sEAAoD;AAAA,oEAAkD;AAAA,sFAAoE;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,gDAA8B;AAAA,wDAAsC;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,0DAAwC;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,mEAAiD;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,wDAAsC;AAAA,6DAA2C;AAAA,mEAAiD;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yEAAuD;AAAA,oEAAkD;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,+DAA6C;AAAA,4DAA0C;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,0EAAwD;AAAA,yEAAuD;AAAA,0EAAwD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,sEAAoD;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,2DAAyC;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,iEAA+C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,qEAAmD;AAAA,+EAA4D"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,kFAAgE;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,2EAAyD;AAAA,uDAAqC;AAAA,yDAAuC;AAAA,mEAAiD;AAAA,+DAA6C;AAAA,4EAA0D;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,sDAAoC;AAAA,gDAA8B;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,2EAAyD;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,4EAA0D;AAAA,uFAAqE;AAAA,iFAA+D;AAAA,qFAAmE;AAAA,kEAAgD;AAAA,iEAA+C;AAAA,6FAA2E;AAAA,uDAAqC;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,wEAAsD;AAAA,yFAAuE;AAAA,0FAAwE;AAAA,sEAAoD;AAAA,oEAAkD;AAAA,sFAAoE;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,gDAA8B;AAAA,wDAAsC;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,iEAA+C;AAAA,0DAAwC;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,mEAAiD;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,wDAAsC;AAAA,6DAA2C;AAAA,mEAAiD;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yEAAuD;AAAA,oEAAkD;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,+DAA6C;AAAA,4DAA0C;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,0EAAwD;AAAA,yEAAuD;AAAA,0EAAwD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,sEAAoD;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,2DAAyC;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,iEAA+C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,qEAAmD;AAAA,+EAA4D"}
@@ -0,0 +1,10 @@
1
+ import { CommonAttributesDto, CommonEntity, ReportEntity } from '@servicelabsco/nestjs-utility-services';
2
+ import { AccessBusinessEntity } from './access.business.entity';
3
+ export declare class BusinessDownloadableReportEntity extends CommonEntity {
4
+ sys_report_id: number;
5
+ business_id: number;
6
+ active: boolean;
7
+ attributes: CommonAttributesDto;
8
+ sys_report: ReportEntity;
9
+ business: AccessBusinessEntity;
10
+ }
@@ -0,0 +1,48 @@
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.BusinessDownloadableReportEntity = void 0;
13
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
14
+ const typeorm_1 = require("typeorm");
15
+ const access_business_entity_1 = require("./access.business.entity");
16
+ let BusinessDownloadableReportEntity = class BusinessDownloadableReportEntity extends nestjs_utility_services_1.CommonEntity {
17
+ };
18
+ exports.BusinessDownloadableReportEntity = BusinessDownloadableReportEntity;
19
+ __decorate([
20
+ (0, typeorm_1.Column)(),
21
+ __metadata("design:type", Number)
22
+ ], BusinessDownloadableReportEntity.prototype, "sys_report_id", void 0);
23
+ __decorate([
24
+ (0, typeorm_1.Column)(),
25
+ __metadata("design:type", Number)
26
+ ], BusinessDownloadableReportEntity.prototype, "business_id", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)(),
29
+ __metadata("design:type", Boolean)
30
+ ], BusinessDownloadableReportEntity.prototype, "active", void 0);
31
+ __decorate([
32
+ (0, typeorm_1.Column)('json'),
33
+ __metadata("design:type", nestjs_utility_services_1.CommonAttributesDto)
34
+ ], BusinessDownloadableReportEntity.prototype, "attributes", void 0);
35
+ __decorate([
36
+ (0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.ReportEntity),
37
+ (0, typeorm_1.JoinColumn)({ name: 'sys_report_id' }),
38
+ __metadata("design:type", nestjs_utility_services_1.ReportEntity)
39
+ ], BusinessDownloadableReportEntity.prototype, "sys_report", void 0);
40
+ __decorate([
41
+ (0, typeorm_1.ManyToOne)(() => access_business_entity_1.AccessBusinessEntity),
42
+ (0, typeorm_1.JoinColumn)({ name: 'business_id' }),
43
+ __metadata("design:type", access_business_entity_1.AccessBusinessEntity)
44
+ ], BusinessDownloadableReportEntity.prototype, "business", void 0);
45
+ exports.BusinessDownloadableReportEntity = BusinessDownloadableReportEntity = __decorate([
46
+ (0, typeorm_1.Entity)('utl_business_downloadable_reports')
47
+ ], BusinessDownloadableReportEntity);
48
+ //# sourceMappingURL=business.downloadable.report.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.downloadable.report.entity.js","sourceRoot":"","sources":["../../../src/access/entities/business.downloadable.report.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAyG;AACzG,qCAAgE;AAChE,qEAAgE;AASzD,IAAM,gCAAgC,GAAtC,MAAM,gCAAiC,SAAQ,sCAAY;CAgBjE,CAAA;AAhBY,4EAAgC;AAEzC;IADC,IAAA,gBAAM,GAAE;;uEACa;AAGtB;IADC,IAAA,gBAAM,GAAE;;qEACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;gEACO;AAGhB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,6CAAmB;oEAAC;AAGsC;IAArE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,sCAAY,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;8BAAa,sCAAY;oEAAC;AACnB;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,6CAAoB;kEAAC;2CAflG,gCAAgC;IAD5C,IAAA,gBAAM,EAAC,mCAAmC,CAAC;GAC/B,gCAAgC,CAgB5C"}
@@ -0,0 +1,15 @@
1
+ import { CommonAttributesDto, CommonEntity, LookupValueEntity, ReportEntity } from '@servicelabsco/nestjs-utility-services';
2
+ import { AccessBusinessEntity } from './access.business.entity';
3
+ export declare class BusinessReportEntity extends CommonEntity {
4
+ business_id: number;
5
+ sys_report_id: number;
6
+ url: string;
7
+ processed_at: Date;
8
+ type_id: number;
9
+ comment: string;
10
+ params: any;
11
+ attributes: CommonAttributesDto;
12
+ sys_report: ReportEntity;
13
+ business: AccessBusinessEntity;
14
+ type: LookupValueEntity;
15
+ }
@@ -0,0 +1,69 @@
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.BusinessReportEntity = void 0;
13
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
14
+ const typeorm_1 = require("typeorm");
15
+ const access_business_entity_1 = require("./access.business.entity");
16
+ let BusinessReportEntity = class BusinessReportEntity extends nestjs_utility_services_1.CommonEntity {
17
+ };
18
+ exports.BusinessReportEntity = BusinessReportEntity;
19
+ __decorate([
20
+ (0, typeorm_1.Column)(),
21
+ __metadata("design:type", Number)
22
+ ], BusinessReportEntity.prototype, "business_id", void 0);
23
+ __decorate([
24
+ (0, typeorm_1.Column)(),
25
+ __metadata("design:type", Number)
26
+ ], BusinessReportEntity.prototype, "sys_report_id", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)(),
29
+ __metadata("design:type", String)
30
+ ], BusinessReportEntity.prototype, "url", void 0);
31
+ __decorate([
32
+ (0, typeorm_1.Column)(),
33
+ __metadata("design:type", Date)
34
+ ], BusinessReportEntity.prototype, "processed_at", void 0);
35
+ __decorate([
36
+ (0, typeorm_1.Column)(),
37
+ __metadata("design:type", Number)
38
+ ], BusinessReportEntity.prototype, "type_id", void 0);
39
+ __decorate([
40
+ (0, typeorm_1.Column)(),
41
+ __metadata("design:type", String)
42
+ ], BusinessReportEntity.prototype, "comment", void 0);
43
+ __decorate([
44
+ (0, typeorm_1.Column)('json'),
45
+ __metadata("design:type", Object)
46
+ ], BusinessReportEntity.prototype, "params", void 0);
47
+ __decorate([
48
+ (0, typeorm_1.Column)('json'),
49
+ __metadata("design:type", nestjs_utility_services_1.CommonAttributesDto)
50
+ ], BusinessReportEntity.prototype, "attributes", void 0);
51
+ __decorate([
52
+ (0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.ReportEntity),
53
+ (0, typeorm_1.JoinColumn)({ name: 'sys_report_id' }),
54
+ __metadata("design:type", nestjs_utility_services_1.ReportEntity)
55
+ ], BusinessReportEntity.prototype, "sys_report", void 0);
56
+ __decorate([
57
+ (0, typeorm_1.ManyToOne)(() => access_business_entity_1.AccessBusinessEntity),
58
+ (0, typeorm_1.JoinColumn)({ name: 'business_id' }),
59
+ __metadata("design:type", access_business_entity_1.AccessBusinessEntity)
60
+ ], BusinessReportEntity.prototype, "business", void 0);
61
+ __decorate([
62
+ (0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.LookupValueEntity),
63
+ (0, typeorm_1.JoinColumn)({ name: 'type_id' }),
64
+ __metadata("design:type", nestjs_utility_services_1.LookupValueEntity)
65
+ ], BusinessReportEntity.prototype, "type", void 0);
66
+ exports.BusinessReportEntity = BusinessReportEntity = __decorate([
67
+ (0, typeorm_1.Entity)('bz_business_reports')
68
+ ], BusinessReportEntity);
69
+ //# sourceMappingURL=business.report.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"business.report.entity.js","sourceRoot":"","sources":["../../../src/access/entities/business.report.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAA4H;AAC5H,qCAAgE;AAChE,qEAAgE;AASzD,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,sCAAY;CA6BrD,CAAA;AA7BY,oDAAoB;AAE7B;IADC,IAAA,gBAAM,GAAE;;yDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;2DACa;AAGtB;IADC,IAAA,gBAAM,GAAE;;iDACG;AAGZ;IADC,IAAA,gBAAM,GAAE;8BACK,IAAI;0DAAC;AAGnB;IADC,IAAA,gBAAM,GAAE;;qDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;qDACO;AAGhB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;oDACH;AAGZ;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,6CAAmB;wDAAC;AAGsC;IAArE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,sCAAY,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;8BAAa,sCAAY;wDAAC;AACnB;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,6CAAoB;sDAAC;AACtC;IAApE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,2CAAiB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAAO,2CAAiB;kDAAC;+BA5BpF,oBAAoB;IADhC,IAAA,gBAAM,EAAC,qBAAqB,CAAC;GACjB,oBAAoB,CA6BhC"}
@@ -4,10 +4,12 @@ export * from './app.integration.entity';
4
4
  export * from './business.app.integration.credential.entity';
5
5
  export * from './business.app.integration.entity';
6
6
  export * from './business.app.integration.messages.entity';
7
+ export * from './business.downloadable.report.entity';
7
8
  export * from './business.email.entity';
8
9
  export * from './business.group.role.entity';
9
10
  export * from './business.menu.entity';
10
11
  export * from './business.preference.entity';
12
+ export * from './business.report.entity';
11
13
  export * from './business.user.entity';
12
14
  export * from './business.user.group.entity';
13
15
  export * from './business.user.notification.preference.entity';
@@ -20,10 +20,12 @@ __exportStar(require("./app.integration.entity"), exports);
20
20
  __exportStar(require("./business.app.integration.credential.entity"), exports);
21
21
  __exportStar(require("./business.app.integration.entity"), exports);
22
22
  __exportStar(require("./business.app.integration.messages.entity"), exports);
23
+ __exportStar(require("./business.downloadable.report.entity"), exports);
23
24
  __exportStar(require("./business.email.entity"), exports);
24
25
  __exportStar(require("./business.group.role.entity"), exports);
25
26
  __exportStar(require("./business.menu.entity"), exports);
26
27
  __exportStar(require("./business.preference.entity"), exports);
28
+ __exportStar(require("./business.report.entity"), exports);
27
29
  __exportStar(require("./business.user.entity"), exports);
28
30
  __exportStar(require("./business.user.group.entity"), exports);
29
31
  __exportStar(require("./business.user.notification.preference.entity"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,+EAA6D;AAAA,oEAAkD;AAAA,6EAA2D;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iFAA+D;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,8EAA4D;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,uDAAqC;AAAA,sDAAoC;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,yDAAuC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,uEAAoD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,+EAA6D;AAAA,oEAAkD;AAAA,6EAA2D;AAAA,wEAAsD;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,2DAAyC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iFAA+D;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,8EAA4D;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,uDAAqC;AAAA,sDAAoC;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,yDAAuC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,uEAAoD"}
@@ -6,6 +6,7 @@ import { BulkUploadItemController } from './controllers/bulk.upload.item.control
6
6
  import { BusinessAppIntegrationController } from './controllers/business.app.integration.controller';
7
7
  import { BusinessNotificationChannelPreferenceController } from './controllers/business.notification.channel.preference.controller';
8
8
  import { BusinessPreferenceController } from './controllers/business.preference.controller';
9
+ import { BusinessReportController } from './controllers/business.report.controller';
9
10
  import { BusinessUserGroupController } from './controllers/business.user.group.controller';
10
11
  import { BusinessUserNotificationPreferenceController } from './controllers/business.user.notification.preference.controller';
11
12
  import { BusinessWebhookController } from './controllers/business.webhook.controller';
@@ -56,6 +57,7 @@ import { EditQueryDto } from './dtos/edit.query.dto';
56
57
  import { EmailMessageNormalizedDto } from './dtos/email.message.normalized.dto';
57
58
  import { FcmTemplateAttributesDto } from './dtos/fcm.template.attributes.dto';
58
59
  import { GchatPostingPayloadDto } from './dtos/gchat.posting.payload.dto';
60
+ import { GenerateBusinessReportDto } from './dtos/generate.business.report.dto';
59
61
  import { GetScriptValuesDto } from './dtos/get.script.values.dto';
60
62
  import { ListResponseDto } from './dtos/list.response.dto';
61
63
  import { ListResponseFormatDto } from './dtos/list.response.format.dto';
@@ -77,9 +79,11 @@ import { TokenPayloadDto } from './dtos/token.payload.dto';
77
79
  import { AccessBusinessEntity } from './entities/access.business.entity';
78
80
  import { BusinessAppIntegrationCredentialEntity } from './entities/business.app.integration.credential.entity';
79
81
  import { BusinessAppIntegrationMessagesEntity } from './entities/business.app.integration.messages.entity';
82
+ import { BusinessDownloadableReportEntity } from './entities/business.downloadable.report.entity';
80
83
  import { BusinessEmailEntity } from './entities/business.email.entity';
81
84
  import { BusinessGroupRoleEntity } from './entities/business.group.role.entity';
82
85
  import { BusinessMenuEntity } from './entities/business.menu.entity';
86
+ import { BusinessReportEntity } from './entities/business.report.entity';
83
87
  import { BusinessUserEntity } from './entities/business.user.entity';
84
88
  import { BusinessUserRoleEntity } from './entities/business.user.role.entity';
85
89
  import { BusinessWebhookEntity } from './entities/business.webhook.entity';
@@ -134,10 +138,12 @@ import { AppIntegrationJob } from './jobs/app.integration.job';
134
138
  import { BusinessAppIntegrationCredentialJob } from './jobs/business.app.integration.credential.job';
135
139
  import { BusinessAppIntegrationJob } from './jobs/business.app.integration.job';
136
140
  import { BusinessAppIntegrationMessagesJob } from './jobs/business.app.integration.messages.job';
141
+ import { BusinessDownloadableReportJob } from './jobs/business.downloadable.report.job';
137
142
  import { BusinessEmailJob } from './jobs/business.email.job';
138
143
  import { BusinessGroupRoleJob } from './jobs/business.group.role.job';
139
144
  import { BusinessMenuJob } from './jobs/business.menu.job';
140
145
  import { BusinessPreferenceJob } from './jobs/business.preference.job';
146
+ import { BusinessReportJob } from './jobs/business.report.job';
141
147
  import { BusinessUserGroupJob } from './jobs/business.user.group.job';
142
148
  import { BusinessUserJob } from './jobs/business.user.job';
143
149
  import { BusinessUserNotificationPreferenceJob } from './jobs/business.user.notification.preference.job';
@@ -170,6 +176,7 @@ import { GchatTemplateJob } from './jobs/gchat.template.job';
170
176
  import { GchatUserJob } from './jobs/gchat.user.job';
171
177
  import { GchatWebhookJob } from './jobs/gchat.webhook.job';
172
178
  import { GchatWebhookMessageJob } from './jobs/gchat.webhook.message.job';
179
+ import { GenerateBusinessReportJob } from './jobs/generate.business.report.job';
173
180
  import { GroupMemberJob } from './jobs/group.member.job';
174
181
  import { GroupRoleJob } from './jobs/group.role.job';
175
182
  import { ListPreferenceJob } from './jobs/list.preference.job';
@@ -311,10 +318,12 @@ import { AppIntegrationSubscriber } from './subscribers/app.integration.subscrib
311
318
  import { BusinessAppIntegrationCredentialSubscriber } from './subscribers/business.app.integration.credential.subscriber';
312
319
  import { BusinessAppIntegrationMessagesSubscriber } from './subscribers/business.app.integration.messages.subscriber';
313
320
  import { BusinessAppIntegrationSubscriber } from './subscribers/business.app.integration.subscriber';
321
+ import { BusinessDownloadableReportSubscriber } from './subscribers/business.downloadable.report.subscriber';
314
322
  import { BusinessEmailSubscriber } from './subscribers/business.email.subscriber';
315
323
  import { BusinessGroupRoleSubscriber } from './subscribers/business.group.role.subscriber';
316
324
  import { BusinessMenuSubscriber } from './subscribers/business.menu.subscriber';
317
325
  import { BusinessPreferenceSubscriber } from './subscribers/business.preference.subscriber';
326
+ import { BusinessReportSubscriber } from './subscribers/business.report.subscriber';
318
327
  import { BusinessUserGroupSubscriber } from './subscribers/business.user.group.subscriber';
319
328
  import { BusinessUserNotificationPreferenceSubscriber } from './subscribers/business.user.notification.preference.subscriber';
320
329
  import { BusinessUserRoleSubscriber } from './subscribers/business.user.role.subscriber';
@@ -385,14 +394,14 @@ import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subs
385
394
  import { WhitelistedWhatsappNumberSubscriber } from './subscribers/whitelisted.whatsapp.number.subscriber';
386
395
  declare const es6Classes: {
387
396
  commands: (typeof WebhookPollCommand)[];
388
- controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | typeof BusinessWebhookController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CommonWebhookController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DownloadLogController | typeof EmailRuleController | typeof FcmTokenController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserNotificationController | typeof UserPreferenceController)[];
389
- dtos: (typeof FcmTemplateAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof BoardCastInternalStatusMessageDto | typeof SendWhatsappMessagePayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof EmailMessageNormalizedDto | typeof SendWebhookRequestPayload | typeof AccessBusinessParamDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof DbFindDto | typeof ListResponseDto | typeof AddListingPreferenceDto | typeof ProcessCommonListConfigDto | typeof AddIntegrationPreferenceDto | typeof AddBusinessPreferenceDto | typeof AddBusinessUserNotificationPreferenceDto | typeof AddWebhookDto | typeof ModifyCustomFieldStatusDto | typeof GetScriptValuesDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof TokenPayloadDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddBusinessAppIntegrationDto | typeof AddConversationDto | typeof AddTagDto | typeof BusinessAppIntegrationMessagePayloadDto | typeof ProcessListingPayloadDto | typeof RequestLogOptionsDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto | typeof SlackMessageDataDto)[];
390
- entities: (typeof AccessBusinessEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof EmailStyleEntity | typeof EmailTemplateLogEntity | typeof FcmMessageEntity | typeof FcmTokenEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackMessageEntity | typeof BzNotificationChannelPreferenceEntity | typeof SlackIntegrationEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof BusinessAppIntegrationCredentialEntity | typeof BusinessAppIntegrationMessagesEntity | typeof BusinessEmailEntity | typeof BusinessGroupRoleEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof BusinessMenuEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BusinessWebhookEntity | typeof ConversationEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof EmailRecipientEntity | typeof EmailMessageEntity | typeof GroupMemberEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof RequestLogEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookLogEntity | typeof WebhookSlugEntity)[];
397
+ controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessReportController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | typeof BusinessWebhookController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CommonWebhookController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DownloadLogController | typeof EmailRuleController | typeof FcmTokenController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserNotificationController | typeof UserPreferenceController)[];
398
+ dtos: (typeof FcmTemplateAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof BoardCastInternalStatusMessageDto | typeof SendWhatsappMessagePayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof EmailMessageNormalizedDto | typeof SendWebhookRequestPayload | typeof AccessBusinessParamDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof DbFindDto | typeof ListResponseDto | typeof AddListingPreferenceDto | typeof ProcessCommonListConfigDto | typeof AddIntegrationPreferenceDto | typeof AddBusinessPreferenceDto | typeof GenerateBusinessReportDto | typeof AddBusinessUserNotificationPreferenceDto | typeof AddWebhookDto | typeof ModifyCustomFieldStatusDto | typeof GetScriptValuesDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof TokenPayloadDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddBusinessAppIntegrationDto | typeof AddConversationDto | typeof AddTagDto | typeof BusinessAppIntegrationMessagePayloadDto | typeof ProcessListingPayloadDto | typeof RequestLogOptionsDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto | typeof SlackMessageDataDto)[];
399
+ entities: (typeof AccessBusinessEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof EmailStyleEntity | typeof EmailTemplateLogEntity | typeof FcmMessageEntity | typeof FcmTokenEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackMessageEntity | typeof BzNotificationChannelPreferenceEntity | typeof SlackIntegrationEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof BusinessAppIntegrationCredentialEntity | typeof BusinessAppIntegrationMessagesEntity | typeof BusinessDownloadableReportEntity | typeof BusinessEmailEntity | typeof BusinessGroupRoleEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof BusinessMenuEntity | typeof BusinessReportEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BusinessWebhookEntity | typeof ConversationEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof EmailRecipientEntity | typeof EmailMessageEntity | typeof GroupMemberEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof RequestLogEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookLogEntity | typeof WebhookSlugEntity)[];
391
400
  enums: (typeof NotificationTypeEnum | typeof NotificationChannelTypeEnum | typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum | typeof ProductTypeEnum | typeof PlatformTypeEnum)[];
392
- jobs: (typeof WhatsappMessagePayloadDto | typeof EvaluateEmailRuleJob | typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessMenuJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserNotificationPreferenceJob | typeof BusinessUserRoleJob | typeof BusinessWebhookJob | typeof BzNotificationChannelPreferenceJob | typeof ChildMenuJob | typeof ChoiceListJob | typeof ChoiceTypeJob | typeof ConversationJob | typeof CustomFieldJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof EmailAttachmentJob | typeof EmailMessageJob | typeof EmailRecipientJob | typeof EmailRuleJob | typeof EmailStyleJob | typeof EmailTemplateLogJob | typeof FcmMessageJob | typeof FcmNotificationJob | typeof FcmTemplateJob | typeof FcmTokenJob | typeof GchatIncomingWebhookJob | typeof GchatMessageJob | typeof GchatTemplateJob | typeof GchatUserJob | typeof GchatWebhookJob | typeof GchatWebhookMessageJob | typeof GroupMemberJob | typeof GroupRoleJob | typeof ListPreferenceJob | typeof ListingColumnJob | typeof ListingPageJob | typeof ListingPreferenceJob | typeof MenuActionJob | typeof MenuJob | typeof MenuRoleJob | typeof ModuleJob | typeof ModuleMenuJob | typeof PreferenceUserGroupJob | typeof PreferenceUsersJob | typeof ProcessServerEmailJob | typeof ProductJob | typeof RequestLogJob | typeof RoleGroupJob | typeof ScheduledReportEmailJob | typeof ScheduledReportItemJob | typeof ScheduledReportJob | typeof SlackIncomingWebhookJob | typeof SlackIntegrationJob | typeof SlackMessageJob | typeof SlackTemplateJob | typeof SlackUserJob | typeof SlackWebhookJob | typeof SlackWebhookMessageJob | typeof SyncBURoleJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookEventJob | typeof WebhookLogJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob | typeof WhitelistedWhatsappNumberJob)[];
401
+ jobs: (typeof WhatsappMessagePayloadDto | typeof EvaluateEmailRuleJob | typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | typeof BusinessDownloadableReportJob | typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessMenuJob | typeof BusinessPreferenceJob | typeof GenerateBusinessReportJob | typeof BusinessReportJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserNotificationPreferenceJob | typeof BusinessUserRoleJob | typeof BusinessWebhookJob | typeof BzNotificationChannelPreferenceJob | typeof ChildMenuJob | typeof ChoiceListJob | typeof ChoiceTypeJob | typeof ConversationJob | typeof CustomFieldJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof EmailAttachmentJob | typeof EmailMessageJob | typeof EmailRecipientJob | typeof EmailRuleJob | typeof EmailStyleJob | typeof EmailTemplateLogJob | typeof FcmMessageJob | typeof FcmNotificationJob | typeof FcmTemplateJob | typeof FcmTokenJob | typeof GchatIncomingWebhookJob | typeof GchatMessageJob | typeof GchatTemplateJob | typeof GchatUserJob | typeof GchatWebhookJob | typeof GchatWebhookMessageJob | typeof GroupMemberJob | typeof GroupRoleJob | typeof ListPreferenceJob | typeof ListingColumnJob | typeof ListingPageJob | typeof ListingPreferenceJob | typeof MenuActionJob | typeof MenuJob | typeof MenuRoleJob | typeof ModuleJob | typeof ModuleMenuJob | typeof PreferenceUserGroupJob | typeof PreferenceUsersJob | typeof ProcessServerEmailJob | typeof ProductJob | typeof RequestLogJob | typeof RoleGroupJob | typeof ScheduledReportEmailJob | typeof ScheduledReportItemJob | typeof ScheduledReportJob | typeof SlackIncomingWebhookJob | typeof SlackIntegrationJob | typeof SlackMessageJob | typeof SlackTemplateJob | typeof SlackUserJob | typeof SlackWebhookJob | typeof SlackWebhookMessageJob | typeof SyncBURoleJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookEventJob | typeof WebhookLogJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob | typeof WhitelistedWhatsappNumberJob)[];
393
402
  libraries: (typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendFcmNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof ProcessWhatsappMessage | typeof SendWhatsappMessageNotification | typeof EvaluateEmailRule | typeof SendWebhookRequest | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessListingCsvFile | typeof ProcessApiAccountList | typeof ProcessDbFind | typeof ProcessBulkUploadList | typeof ProcessBulkUploadItemList | typeof ProcessWhatsappIntegration | typeof ProcessAppIntegration | typeof ProcessBusinessNotificationChannelPreferenceList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessBusinessUserNotificationPreferenceList | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessSlackIntegration | typeof ProcessZohoIntegration | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardReportData | typeof ProcessReportData | typeof ProcessCreateDashboardComponent | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessEmailRuleList | typeof ProcessEmailRuleData | typeof SetFcmToken | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessPreferenceData | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof ProcessUserNotificationList | typeof ProcessRevokeSlackIntegration | typeof ProcessRevokeZohoIntegration | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessSlackMessage | typeof ProcessTestList)[];
394
403
  middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware)[];
395
404
  services: (typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof SlabsService | typeof WebhookService | typeof AccessBusinessService | typeof ListingService | typeof AuditLogService | typeof AccessReportService | typeof PlatformService | typeof ListingPreferenceService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof UtilityService | typeof CustomFieldService | typeof ApiAccountService | typeof AppIntegrationService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof GptService | typeof LoadEntityService | typeof RequestLogService | typeof UserNotificationService | typeof UserPreferenceService | typeof Es6Service)[];
396
- subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessMenuSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserNotificationPreferenceSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof BusinessWebhookSubscriber | typeof BzNotificationChannelPreferenceSubscriber | typeof ChildMenuSubscriber | typeof ChoiceListSubscriber | typeof ChoiceTypeSubscriber | typeof ConversationSubscriber | typeof CustomFieldSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | typeof EmailRuleSubscriber | typeof EmailStyleSubscriber | typeof EmailTemplateLogSubscriber | typeof FcmMessageSubscriber | typeof FcmNotificationSubscriber | typeof FcmTemplateSubscriber | typeof FcmTokenSubscriber | typeof GchatMessageSubscriber | typeof GchatTemplateSubscriber | typeof GchatUserSubscriber | typeof GchatWebhookMessageSubscriber | typeof GchatWebhookSubscriber | typeof GroupMemberSubscriber | typeof GroupRoleSubscriber | typeof ListPreferenceSubscriber | typeof ListingColumnSubscriber | typeof ListingPageSubscriber | typeof ListingPreferenceSubscriber | typeof MenuActionSubscriber | typeof MenuRoleSubscriber | typeof MenuSubscriber | typeof ModuleMenuSubscriber | typeof ModuleSubscriber | typeof PreferenceUserGroupSubscriber | typeof PreferenceUserSubscriber | typeof ProductSubscriber | typeof RequestLogSubscriber | typeof RoleGroupSubscriber | typeof ScheduledReportEmailSubscriber | typeof ScheduledReportItemSubscriber | typeof ScheduledReportSubscriber | typeof SlackIntegrationSubscriber | typeof SlackMessageSubscriber | typeof SlackTemplateSubscriber | typeof SlackUserSubscriber | typeof SlackWebhookMessageSubscriber | typeof SlackWebhookSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookEventSubscriber | typeof WebhookLogSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber | typeof WhitelistedWhatsappNumberSubscriber)[];
405
+ subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | typeof BusinessDownloadableReportSubscriber | typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessMenuSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessReportSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserNotificationPreferenceSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof BusinessWebhookSubscriber | typeof BzNotificationChannelPreferenceSubscriber | typeof ChildMenuSubscriber | typeof ChoiceListSubscriber | typeof ChoiceTypeSubscriber | typeof ConversationSubscriber | typeof CustomFieldSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | typeof EmailRuleSubscriber | typeof EmailStyleSubscriber | typeof EmailTemplateLogSubscriber | typeof FcmMessageSubscriber | typeof FcmNotificationSubscriber | typeof FcmTemplateSubscriber | typeof FcmTokenSubscriber | typeof GchatMessageSubscriber | typeof GchatTemplateSubscriber | typeof GchatUserSubscriber | typeof GchatWebhookMessageSubscriber | typeof GchatWebhookSubscriber | typeof GroupMemberSubscriber | typeof GroupRoleSubscriber | typeof ListPreferenceSubscriber | typeof ListingColumnSubscriber | typeof ListingPageSubscriber | typeof ListingPreferenceSubscriber | typeof MenuActionSubscriber | typeof MenuRoleSubscriber | typeof MenuSubscriber | typeof ModuleMenuSubscriber | typeof ModuleSubscriber | typeof PreferenceUserGroupSubscriber | typeof PreferenceUserSubscriber | typeof ProductSubscriber | typeof RequestLogSubscriber | typeof RoleGroupSubscriber | typeof ScheduledReportEmailSubscriber | typeof ScheduledReportItemSubscriber | typeof ScheduledReportSubscriber | typeof SlackIntegrationSubscriber | typeof SlackMessageSubscriber | typeof SlackTemplateSubscriber | typeof SlackUserSubscriber | typeof SlackWebhookMessageSubscriber | typeof SlackWebhookSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookEventSubscriber | typeof WebhookLogSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber | typeof WhitelistedWhatsappNumberSubscriber)[];
397
406
  };
398
407
  export default es6Classes;