@servicelabsco/slabs-access-manager 0.1.48 → 0.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/access/access.module.js.map +1 -1
- package/dist/access/controllers/access.menu.controller.d.ts +2 -4
- package/dist/access/controllers/dashboard.controller.d.ts +2 -1
- package/dist/access/controllers/dashboard.controller.js.map +1 -1
- package/dist/access/controllers/download.log.controller.d.ts +11 -0
- package/dist/access/controllers/download.log.controller.js +46 -0
- package/dist/access/controllers/download.log.controller.js.map +1 -0
- package/dist/access/controllers/index.d.ts +2 -0
- package/dist/access/controllers/index.js +2 -0
- package/dist/access/controllers/index.js.map +1 -1
- package/dist/access/controllers/listing.controller.d.ts +3 -2
- package/dist/access/controllers/listing.controller.js.map +1 -1
- package/dist/access/controllers/scheduled.report.controller.d.ts +18 -0
- package/dist/access/controllers/scheduled.report.controller.js +91 -0
- package/dist/access/controllers/scheduled.report.controller.js.map +1 -0
- package/dist/access/dtos/add.conversation.dto.d.ts +7 -0
- package/dist/access/dtos/add.conversation.dto.js +43 -0
- package/dist/access/dtos/add.conversation.dto.js.map +1 -0
- package/dist/access/dtos/add.scheduled.report.dto.d.ts +7 -0
- package/dist/access/dtos/add.scheduled.report.dto.js +45 -0
- package/dist/access/dtos/add.scheduled.report.dto.js.map +1 -0
- package/dist/access/dtos/common.list.filter.dto.d.ts +1 -0
- package/dist/access/dtos/common.list.filter.dto.js +5 -0
- package/dist/access/dtos/common.list.filter.dto.js.map +1 -1
- package/dist/access/dtos/conversation.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/conversation.attributes.dto.js +8 -0
- package/dist/access/dtos/conversation.attributes.dto.js.map +1 -0
- package/dist/access/dtos/download.log.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/download.log.attributes.dto.js +8 -0
- package/dist/access/dtos/download.log.attributes.dto.js.map +1 -0
- package/dist/access/dtos/download.log.list.filter.dto.d.ts +3 -0
- package/dist/access/dtos/download.log.list.filter.dto.js +8 -0
- package/dist/access/dtos/download.log.list.filter.dto.js.map +1 -0
- package/dist/access/dtos/index.d.ts +8 -0
- package/dist/access/dtos/index.js +8 -0
- package/dist/access/dtos/index.js.map +1 -1
- package/dist/access/dtos/scheduled.report.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/scheduled.report.attributes.dto.js +8 -0
- package/dist/access/dtos/scheduled.report.attributes.dto.js.map +1 -0
- package/dist/access/dtos/scheduled.report.list.filter.dto.d.ts +3 -0
- package/dist/access/dtos/scheduled.report.list.filter.dto.js +8 -0
- package/dist/access/dtos/scheduled.report.list.filter.dto.js.map +1 -0
- package/dist/access/dtos/tagged.user.dto.d.ts +6 -0
- package/dist/access/dtos/tagged.user.dto.js +30 -0
- package/dist/access/dtos/tagged.user.dto.js.map +1 -0
- package/dist/access/entities/conversation.entity.d.ts +11 -0
- package/dist/access/entities/conversation.entity.js +46 -0
- package/dist/access/entities/conversation.entity.js.map +1 -0
- package/dist/access/entities/download.log.entity.d.ts +12 -0
- package/dist/access/entities/download.log.entity.js +53 -0
- package/dist/access/entities/download.log.entity.js.map +1 -0
- package/dist/access/entities/index.d.ts +3 -0
- package/dist/access/entities/index.js +3 -0
- package/dist/access/entities/index.js.map +1 -1
- package/dist/access/entities/scheduled.report.entity.d.ts +15 -0
- package/dist/access/entities/scheduled.report.entity.js +65 -0
- package/dist/access/entities/scheduled.report.entity.js.map +1 -0
- package/dist/access/es6.classes.d.ts +26 -6
- package/dist/access/es6.classes.js +50 -0
- package/dist/access/es6.classes.js.map +1 -1
- package/dist/access/jobs/conversation.job.d.ts +7 -0
- package/dist/access/jobs/conversation.job.js +29 -0
- package/dist/access/jobs/conversation.job.js.map +1 -0
- package/dist/access/jobs/download.log.job.d.ts +7 -0
- package/dist/access/jobs/download.log.job.js +29 -0
- package/dist/access/jobs/download.log.job.js.map +1 -0
- package/dist/access/jobs/index.d.ts +4 -0
- package/dist/access/jobs/index.js +4 -0
- package/dist/access/jobs/index.js.map +1 -1
- package/dist/access/jobs/scheduled.report.job.d.ts +10 -0
- package/dist/access/jobs/scheduled.report.job.js +37 -0
- package/dist/access/jobs/scheduled.report.job.js.map +1 -0
- package/dist/access/jobs/scheduled.report.processing.job.d.ts +10 -0
- package/dist/access/jobs/scheduled.report.processing.job.js +51 -0
- package/dist/access/jobs/scheduled.report.processing.job.js.map +1 -0
- package/dist/access/libraries/conversation.controller.d.ts +11 -0
- package/dist/access/libraries/conversation.controller.js +71 -0
- package/dist/access/libraries/conversation.controller.js.map +1 -0
- package/dist/access/libraries/index.d.ts +5 -0
- package/dist/access/libraries/index.js +5 -0
- package/dist/access/libraries/index.js.map +1 -1
- package/dist/access/libraries/process.conversation.data.d.ts +15 -0
- package/dist/access/libraries/process.conversation.data.js +67 -0
- package/dist/access/libraries/process.conversation.data.js.map +1 -0
- package/dist/access/libraries/process.download.log.list.d.ts +21 -0
- package/dist/access/libraries/process.download.log.list.js +35 -0
- package/dist/access/libraries/process.download.log.list.js.map +1 -0
- package/dist/access/libraries/process.listing.csv.file.d.ts +1 -0
- package/dist/access/libraries/process.listing.csv.file.js +13 -1
- package/dist/access/libraries/process.listing.csv.file.js.map +1 -1
- package/dist/access/libraries/process.report.data.js +2 -1
- package/dist/access/libraries/process.report.data.js.map +1 -1
- package/dist/access/libraries/process.scheduled.report.data.d.ts +23 -0
- package/dist/access/libraries/process.scheduled.report.data.js +76 -0
- package/dist/access/libraries/process.scheduled.report.data.js.map +1 -0
- package/dist/access/libraries/process.scheduled.report.list.d.ts +21 -0
- package/dist/access/libraries/process.scheduled.report.list.js +34 -0
- package/dist/access/libraries/process.scheduled.report.list.js.map +1 -0
- package/dist/access/libraries/process.test.list.d.ts +2 -1
- package/dist/access/libraries/process.test.list.js.map +1 -1
- package/dist/access/services/es6.jobs.service.d.ts +9 -1
- package/dist/access/services/es6.jobs.service.js +17 -1
- package/dist/access/services/es6.jobs.service.js.map +1 -1
- package/dist/access/services/listing.service.js.map +1 -1
- package/dist/access/subscribers/conversation.subscriber.d.ts +12 -0
- package/dist/access/subscribers/conversation.subscriber.js +40 -0
- package/dist/access/subscribers/conversation.subscriber.js.map +1 -0
- package/dist/access/subscribers/download.log.subscriber.d.ts +12 -0
- package/dist/access/subscribers/download.log.subscriber.js +40 -0
- package/dist/access/subscribers/download.log.subscriber.js.map +1 -0
- package/dist/access/subscribers/index.d.ts +3 -0
- package/dist/access/subscribers/index.js +3 -0
- package/dist/access/subscribers/index.js.map +1 -1
- package/dist/access/subscribers/scheduled.report.subscriber.d.ts +12 -0
- package/dist/access/subscribers/scheduled.report.subscriber.js +40 -0
- package/dist/access/subscribers/scheduled.report.subscriber.js.map +1 -0
- package/dist/config/entity.constants.d.ts +6 -0
- package/dist/config/entity.constants.js +6 -0
- package/dist/config/entity.constants.js.map +1 -1
- package/dist/migrations/1709547386675-CreateScheduledReportTable.d.ts +5 -0
- package/dist/migrations/1709547386675-CreateScheduledReportTable.js +24 -0
- package/dist/migrations/1709547386675-CreateScheduledReportTable.js.map +1 -0
- package/dist/migrations/1710140902345-CreateConversationTable.d.ts +5 -0
- package/dist/migrations/1710140902345-CreateConversationTable.js +22 -0
- package/dist/migrations/1710140902345-CreateConversationTable.js.map +1 -0
- package/dist/migrations/1710413708360-CreateDownloadLogTable.d.ts +5 -0
- package/dist/migrations/1710413708360-CreateDownloadLogTable.js +21 -0
- package/dist/migrations/1710413708360-CreateDownloadLogTable.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
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.TaggedUserDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class TaggedUserDto {
|
|
16
|
+
}
|
|
17
|
+
exports.TaggedUserDto = TaggedUserDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_transformer_1.Expose)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
(0, class_validator_1.IsNumber)(),
|
|
22
|
+
__metadata("design:type", Number)
|
|
23
|
+
], TaggedUserDto.prototype, "user_id", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_transformer_1.Expose)(),
|
|
26
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
27
|
+
(0, class_validator_1.IsNumber)({}, { each: true }),
|
|
28
|
+
__metadata("design:type", Array)
|
|
29
|
+
], TaggedUserDto.prototype, "indices", void 0);
|
|
30
|
+
//# sourceMappingURL=tagged.user.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tagged.user.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/tagged.user.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAgE;AAEhE,MAAa,aAAa;CAazB;AAbD,sCAaC;AATG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8CACK;AAKhB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,EAAC,EAAE,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;8CACX"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CommonEntity } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { ConversationAttributesDto } from '../dtos/conversation.attributes.dto';
|
|
3
|
+
import { TaggedUserDto } from '../dtos/tagged.user.dto';
|
|
4
|
+
export declare class ConversationEntity extends CommonEntity {
|
|
5
|
+
source_type: string;
|
|
6
|
+
source_id: number;
|
|
7
|
+
tagged_users: TaggedUserDto[];
|
|
8
|
+
comments: string;
|
|
9
|
+
parent_id: number;
|
|
10
|
+
attributes: ConversationAttributesDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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.ConversationEntity = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
const conversation_attributes_dto_1 = require("../dtos/conversation.attributes.dto");
|
|
16
|
+
let ConversationEntity = class ConversationEntity extends nestjs_utility_services_1.CommonEntity {
|
|
17
|
+
};
|
|
18
|
+
exports.ConversationEntity = ConversationEntity;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, typeorm_1.Column)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], ConversationEntity.prototype, "source_type", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, typeorm_1.Column)(),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], ConversationEntity.prototype, "source_id", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, typeorm_1.Column)('json'),
|
|
29
|
+
__metadata("design:type", Array)
|
|
30
|
+
], ConversationEntity.prototype, "tagged_users", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, typeorm_1.Column)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], ConversationEntity.prototype, "comments", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, typeorm_1.Column)(),
|
|
37
|
+
__metadata("design:type", Number)
|
|
38
|
+
], ConversationEntity.prototype, "parent_id", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, typeorm_1.Column)('json'),
|
|
41
|
+
__metadata("design:type", conversation_attributes_dto_1.ConversationAttributesDto)
|
|
42
|
+
], ConversationEntity.prototype, "attributes", void 0);
|
|
43
|
+
exports.ConversationEntity = ConversationEntity = __decorate([
|
|
44
|
+
(0, typeorm_1.Entity)('utl_conversations')
|
|
45
|
+
], ConversationEntity);
|
|
46
|
+
//# sourceMappingURL=conversation.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversation.entity.js","sourceRoot":"","sources":["../../../src/access/entities/conversation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,oFAAsE;AACtE,qFAAgF;AAUzE,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,sCAAY;CAoBnD,CAAA;AApBY,gDAAkB;AAE3B;IADC,IAAA,gBAAM,GAAE;;uDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;wDACe;AAG9B;IADC,IAAA,gBAAM,GAAE;;oDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,uDAAyB;sDAAC;6BAjB7B,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,kBAAkB,CAoB9B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CommonEntity, UserEntity } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { DownloadLogAttributesDto } from '../dtos/download.log.attributes.dto';
|
|
3
|
+
import { AccessBusinessEntity } from './access.business.entity';
|
|
4
|
+
export declare class DownloadLogEntity extends CommonEntity {
|
|
5
|
+
business_id: number;
|
|
6
|
+
user_id: number;
|
|
7
|
+
file_url: string;
|
|
8
|
+
slug: string;
|
|
9
|
+
attributes: DownloadLogAttributesDto;
|
|
10
|
+
business: AccessBusinessEntity;
|
|
11
|
+
user: UserEntity;
|
|
12
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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.DownloadLogEntity = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
const download_log_attributes_dto_1 = require("../dtos/download.log.attributes.dto");
|
|
16
|
+
const access_business_entity_1 = require("./access.business.entity");
|
|
17
|
+
let DownloadLogEntity = class DownloadLogEntity extends nestjs_utility_services_1.CommonEntity {
|
|
18
|
+
};
|
|
19
|
+
exports.DownloadLogEntity = DownloadLogEntity;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, typeorm_1.Column)(),
|
|
22
|
+
__metadata("design:type", Number)
|
|
23
|
+
], DownloadLogEntity.prototype, "business_id", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, typeorm_1.Column)(),
|
|
26
|
+
__metadata("design:type", Number)
|
|
27
|
+
], DownloadLogEntity.prototype, "user_id", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.Column)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], DownloadLogEntity.prototype, "file_url", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], DownloadLogEntity.prototype, "slug", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Column)('json'),
|
|
38
|
+
__metadata("design:type", download_log_attributes_dto_1.DownloadLogAttributesDto)
|
|
39
|
+
], DownloadLogEntity.prototype, "attributes", 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
|
+
], DownloadLogEntity.prototype, "business", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.UserEntity),
|
|
47
|
+
(0, typeorm_1.JoinColumn)({ name: 'user_id' }),
|
|
48
|
+
__metadata("design:type", nestjs_utility_services_1.UserEntity)
|
|
49
|
+
], DownloadLogEntity.prototype, "user", void 0);
|
|
50
|
+
exports.DownloadLogEntity = DownloadLogEntity = __decorate([
|
|
51
|
+
(0, typeorm_1.Entity)('bz_download_logs')
|
|
52
|
+
], DownloadLogEntity);
|
|
53
|
+
//# sourceMappingURL=download.log.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"download.log.entity.js","sourceRoot":"","sources":["../../../src/access/entities/download.log.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,oFAAkF;AAClF,qFAA+E;AAC/E,qEAAgE;AASzD,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,sCAAY;CAoBlD,CAAA;AApBY,8CAAiB;AAE1B;IADC,IAAA,gBAAM,GAAE;;sDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;kDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;mDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;+CACI;AAGb;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,sDAAwB;qDAAC;AAGuC;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,6CAAoB;mDAAC;AAE7C;IAA7D,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oCAAU,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAAO,oCAAU;+CAAC;4BAnBtE,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,kBAAkB,CAAC;GACd,iBAAiB,CAoB7B"}
|
|
@@ -5,9 +5,11 @@ export * from './business.user.entity';
|
|
|
5
5
|
export * from './business.user.group.entity';
|
|
6
6
|
export * from './business.user.role.entity';
|
|
7
7
|
export * from './child.menu.entity';
|
|
8
|
+
export * from './conversation.entity';
|
|
8
9
|
export * from './custom.report.entity';
|
|
9
10
|
export * from './dashboard.component.entity';
|
|
10
11
|
export * from './dashboard.entity';
|
|
12
|
+
export * from './download.log.entity';
|
|
11
13
|
export * from './group.member.entity';
|
|
12
14
|
export * from './group.role.entity';
|
|
13
15
|
export * from './list.preference.entity';
|
|
@@ -23,6 +25,7 @@ export * from './preference.user.entity';
|
|
|
23
25
|
export * from './preference.user.group.entity';
|
|
24
26
|
export * from './product.entity';
|
|
25
27
|
export * from './role.group.entity';
|
|
28
|
+
export * from './scheduled.report.entity';
|
|
26
29
|
export * from './ui.action.entity';
|
|
27
30
|
export * from './ui.action.role.entity';
|
|
28
31
|
export * from './user.preference.entity';
|
|
@@ -21,9 +21,11 @@ __exportStar(require("./business.user.entity"), exports);
|
|
|
21
21
|
__exportStar(require("./business.user.group.entity"), exports);
|
|
22
22
|
__exportStar(require("./business.user.role.entity"), exports);
|
|
23
23
|
__exportStar(require("./child.menu.entity"), exports);
|
|
24
|
+
__exportStar(require("./conversation.entity"), exports);
|
|
24
25
|
__exportStar(require("./custom.report.entity"), exports);
|
|
25
26
|
__exportStar(require("./dashboard.component.entity"), exports);
|
|
26
27
|
__exportStar(require("./dashboard.entity"), exports);
|
|
28
|
+
__exportStar(require("./download.log.entity"), exports);
|
|
27
29
|
__exportStar(require("./group.member.entity"), exports);
|
|
28
30
|
__exportStar(require("./group.role.entity"), exports);
|
|
29
31
|
__exportStar(require("./list.preference.entity"), exports);
|
|
@@ -39,6 +41,7 @@ __exportStar(require("./preference.user.entity"), exports);
|
|
|
39
41
|
__exportStar(require("./preference.user.group.entity"), exports);
|
|
40
42
|
__exportStar(require("./product.entity"), exports);
|
|
41
43
|
__exportStar(require("./role.group.entity"), exports);
|
|
44
|
+
__exportStar(require("./scheduled.report.entity"), exports);
|
|
42
45
|
__exportStar(require("./ui.action.entity"), exports);
|
|
43
46
|
__exportStar(require("./ui.action.role.entity"), exports);
|
|
44
47
|
__exportStar(require("./user.preference.entity"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;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,sDAAoC;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,2DAAyC;AAAA,qDAAkC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;AAAA,wDAAsC;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,sDAAoC;AAAA,4DAA0C;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,2DAAyC;AAAA,qDAAkC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CommonEntity, ReportEntity } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { ScheduledReportAttributesDto } from '../dtos/scheduled.report.attributes.dto';
|
|
3
|
+
import { AccessBusinessEntity } from './access.business.entity';
|
|
4
|
+
export declare class ScheduledReportEntity extends CommonEntity {
|
|
5
|
+
business_id: number;
|
|
6
|
+
report_id: number;
|
|
7
|
+
email: string;
|
|
8
|
+
scheduled_at: Date;
|
|
9
|
+
options: any;
|
|
10
|
+
processed_at: Date;
|
|
11
|
+
file_url: string;
|
|
12
|
+
attributes: ScheduledReportAttributesDto;
|
|
13
|
+
business: AccessBusinessEntity;
|
|
14
|
+
report: ReportEntity;
|
|
15
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
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.ScheduledReportEntity = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
const scheduled_report_attributes_dto_1 = require("../dtos/scheduled.report.attributes.dto");
|
|
16
|
+
const access_business_entity_1 = require("./access.business.entity");
|
|
17
|
+
let ScheduledReportEntity = class ScheduledReportEntity extends nestjs_utility_services_1.CommonEntity {
|
|
18
|
+
};
|
|
19
|
+
exports.ScheduledReportEntity = ScheduledReportEntity;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, typeorm_1.Column)(),
|
|
22
|
+
__metadata("design:type", Number)
|
|
23
|
+
], ScheduledReportEntity.prototype, "business_id", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, typeorm_1.Column)(),
|
|
26
|
+
__metadata("design:type", Number)
|
|
27
|
+
], ScheduledReportEntity.prototype, "report_id", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.Column)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ScheduledReportEntity.prototype, "email", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)(),
|
|
34
|
+
__metadata("design:type", Date)
|
|
35
|
+
], ScheduledReportEntity.prototype, "scheduled_at", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Column)('json'),
|
|
38
|
+
__metadata("design:type", Object)
|
|
39
|
+
], ScheduledReportEntity.prototype, "options", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.Column)(),
|
|
42
|
+
__metadata("design:type", Date)
|
|
43
|
+
], ScheduledReportEntity.prototype, "processed_at", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.Column)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], ScheduledReportEntity.prototype, "file_url", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.Column)('json'),
|
|
50
|
+
__metadata("design:type", scheduled_report_attributes_dto_1.ScheduledReportAttributesDto)
|
|
51
|
+
], ScheduledReportEntity.prototype, "attributes", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.ManyToOne)(() => access_business_entity_1.AccessBusinessEntity),
|
|
54
|
+
(0, typeorm_1.JoinColumn)({ name: 'business_id' }),
|
|
55
|
+
__metadata("design:type", access_business_entity_1.AccessBusinessEntity)
|
|
56
|
+
], ScheduledReportEntity.prototype, "business", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.ReportEntity),
|
|
59
|
+
(0, typeorm_1.JoinColumn)({ name: 'report_id' }),
|
|
60
|
+
__metadata("design:type", nestjs_utility_services_1.ReportEntity)
|
|
61
|
+
], ScheduledReportEntity.prototype, "report", void 0);
|
|
62
|
+
exports.ScheduledReportEntity = ScheduledReportEntity = __decorate([
|
|
63
|
+
(0, typeorm_1.Entity)('utl_scheduled_reports')
|
|
64
|
+
], ScheduledReportEntity);
|
|
65
|
+
//# sourceMappingURL=scheduled.report.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduled.report.entity.js","sourceRoot":"","sources":["../../../src/access/entities/scheduled.report.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,oFAAoF;AACpF,6FAAuF;AACvF,qEAAgE;AASzD,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,sCAAY;CA4BtD,CAAA;AA5BY,sDAAqB;AAE9B;IADC,IAAA,gBAAM,GAAE;;0DACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;wDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;oDACK;AAGd;IADC,IAAA,gBAAM,GAAE;8BACK,IAAI;2DAAC;AAGnB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;sDACF;AAGb;IADC,IAAA,gBAAM,GAAE;8BACK,IAAI;2DAAC;AAGnB;IADC,IAAA,gBAAM,GAAE;;uDACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,8DAA4B;yDAAC;AAGmC;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,6CAAoB;uDAAC;AACzC;IAAjE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,sCAAY,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAAS,sCAAY;qDAAC;gCA3B9E,qBAAqB;IADjC,IAAA,gBAAM,EAAC,uBAAuB,CAAC;GACnB,qBAAqB,CA4BjC"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import { AccessMenuController } from './controllers/access.menu.controller';
|
|
2
2
|
import { BusinessPreferenceController } from './controllers/business.preference.controller';
|
|
3
3
|
import { DashboardController } from './controllers/dashboard.controller';
|
|
4
|
+
import { DownloadLogController } from './controllers/download.log.controller';
|
|
4
5
|
import { ListingController } from './controllers/listing.controller';
|
|
5
6
|
import { ListingPreferenceController } from './controllers/listing.preference.controller';
|
|
7
|
+
import { ScheduledReportController } from './controllers/scheduled.report.controller';
|
|
6
8
|
import { UserPreferenceController } from './controllers/user.preference.controller';
|
|
7
9
|
import { AccessBusinessParamDto } from './dtos/access.business.param.dto';
|
|
8
10
|
import { AddBusinessPreferenceDto } from './dtos/add.business.preference.dto';
|
|
11
|
+
import { AddConversationDto } from './dtos/add.conversation.dto';
|
|
9
12
|
import { AddListingPreferenceDto } from './dtos/add.listing.preference.dto';
|
|
13
|
+
import { AddScheduledReportDto } from './dtos/add.scheduled.report.dto';
|
|
10
14
|
import { CommonListFilterDto } from './dtos/common.list.filter.dto';
|
|
11
15
|
import { DateFilterDto } from './dtos/date.filter.dto';
|
|
12
16
|
import { DateRangeFilterDto } from './dtos/date.range.filter.dto';
|
|
@@ -15,12 +19,15 @@ import { ListResponseDto } from './dtos/list.response.dto';
|
|
|
15
19
|
import { ListResponseFormatDto } from './dtos/list.response.format.dto';
|
|
16
20
|
import { NumberRangeFilterDto } from './dtos/number.range.filter.dto';
|
|
17
21
|
import { StringSearchDto } from './dtos/string.search.dto';
|
|
22
|
+
import { TaggedUserDto } from './dtos/tagged.user.dto';
|
|
18
23
|
import { AccessBusinessEntity } from './entities/access.business.entity';
|
|
19
24
|
import { BusinessGroupRoleEntity } from './entities/business.group.role.entity';
|
|
20
25
|
import { BusinessUserEntity } from './entities/business.user.entity';
|
|
21
26
|
import { BusinessUserRoleEntity } from './entities/business.user.role.entity';
|
|
22
27
|
import { ChildMenuEntity } from './entities/child.menu.entity';
|
|
28
|
+
import { ConversationEntity } from './entities/conversation.entity';
|
|
23
29
|
import { DashboardComponentEntity } from './entities/dashboard.component.entity';
|
|
30
|
+
import { DownloadLogEntity } from './entities/download.log.entity';
|
|
24
31
|
import { GroupMemberEntity } from './entities/group.member.entity';
|
|
25
32
|
import { GroupRoleEntity } from './entities/group.role.entity';
|
|
26
33
|
import { ListingPreferenceEntity } from './entities/listing.preference.entity';
|
|
@@ -31,6 +38,7 @@ import { ModuleMenuEntity } from './entities/module.menu.entity';
|
|
|
31
38
|
import { PreferenceUserEntity } from './entities/preference.user.entity';
|
|
32
39
|
import { PreferenceUserGroupEntity } from './entities/preference.user.group.entity';
|
|
33
40
|
import { ProductEntity } from './entities/product.entity';
|
|
41
|
+
import { ScheduledReportEntity } from './entities/scheduled.report.entity';
|
|
34
42
|
import { UiActionRoleEntity } from './entities/ui.action.role.entity';
|
|
35
43
|
import { UserRoleEntity } from './entities/user.role.entity';
|
|
36
44
|
import { BusinessGroupRoleJob } from './jobs/business.group.role.job';
|
|
@@ -39,9 +47,11 @@ import { BusinessUserGroupJob } from './jobs/business.user.group.job';
|
|
|
39
47
|
import { BusinessUserJob } from './jobs/business.user.job';
|
|
40
48
|
import { BusinessUserRoleJob } from './jobs/business.user.role.job';
|
|
41
49
|
import { ChildMenuJob } from './jobs/child.menu.job';
|
|
50
|
+
import { ConversationJob } from './jobs/conversation.job';
|
|
42
51
|
import { CustomReportJob } from './jobs/custom.report.job';
|
|
43
52
|
import { DashboardComponentJob } from './jobs/dashboard.component.job';
|
|
44
53
|
import { DashboardJob } from './jobs/dashboard.job';
|
|
54
|
+
import { DownloadLogJob } from './jobs/download.log.job';
|
|
45
55
|
import { GroupMemberJob } from './jobs/group.member.job';
|
|
46
56
|
import { GroupRoleJob } from './jobs/group.role.job';
|
|
47
57
|
import { ListPreferenceJob } from './jobs/list.preference.job';
|
|
@@ -57,21 +67,28 @@ import { PreferenceUserGroupJob } from './jobs/preference.user.group.job';
|
|
|
57
67
|
import { PreferenceUsersJob } from './jobs/preference.users.job';
|
|
58
68
|
import { ProductJob } from './jobs/product.job';
|
|
59
69
|
import { RoleGroupJob } from './jobs/role.group.job';
|
|
70
|
+
import { ScheduledReportJob } from './jobs/scheduled.report.job';
|
|
71
|
+
import { ScheduledReportProcessingJob } from './jobs/scheduled.report.processing.job';
|
|
60
72
|
import { UiActionJob } from './jobs/ui.action.job';
|
|
61
73
|
import { UiActionRoleJob } from './jobs/ui.action.role.job';
|
|
62
74
|
import { UserPreferenceJob } from './jobs/user.preference.job';
|
|
63
75
|
import { UserRoleJob } from './jobs/user.role.job';
|
|
76
|
+
import { ConversationController } from './libraries/conversation.controller';
|
|
64
77
|
import { ProcessApplicationMenu } from './libraries/process.application.menu';
|
|
65
78
|
import { ProcessBusinessGroupRoleUpdation } from './libraries/process.business.group.role.updation';
|
|
66
79
|
import { ProcessBusinessUserRoleUpdate } from './libraries/process.business.user.role.update';
|
|
67
80
|
import { ProcessCommonList } from './libraries/process.common.list';
|
|
81
|
+
import { ProcessConversationData } from './libraries/process.conversation.data';
|
|
68
82
|
import { ProcessDashboardReport } from './libraries/process.dashboard.report';
|
|
69
83
|
import { ProcessDateFilter } from './libraries/process.date.filter';
|
|
84
|
+
import { ProcessDownloadLogList } from './libraries/process.download.log.list';
|
|
70
85
|
import { ProcessGroupMemberUpdation } from './libraries/process.group.member.updation';
|
|
71
86
|
import { ProcessListingCsvFile } from './libraries/process.listing.csv.file';
|
|
72
87
|
import { ProcessMenuDetails } from './libraries/process.menu.details';
|
|
73
88
|
import { ProcessPreferenceData } from './libraries/process.preference.data';
|
|
74
89
|
import { ProcessReportData } from './libraries/process.report.data';
|
|
90
|
+
import { ProcessScheduledReportData } from './libraries/process.scheduled.report.data';
|
|
91
|
+
import { ProcessScheduledReportList } from './libraries/process.scheduled.report.list';
|
|
75
92
|
import { ProcessTestList } from './libraries/process.test.list';
|
|
76
93
|
import { BusinessMiddleware } from './middlewares/business.middleware';
|
|
77
94
|
import { AccessBusinessService } from './services/access.business.service';
|
|
@@ -88,9 +105,11 @@ import { BusinessUserGroupSubscriber } from './subscribers/business.user.group.s
|
|
|
88
105
|
import { BusinessUserRoleSubscriber } from './subscribers/business.user.role.subscriber';
|
|
89
106
|
import { BusinessUserSubscriber } from './subscribers/business.user.subscriber';
|
|
90
107
|
import { ChildMenuSubscriber } from './subscribers/child.menu.subscriber';
|
|
108
|
+
import { ConversationSubscriber } from './subscribers/conversation.subscriber';
|
|
91
109
|
import { CustomReportSubscriber } from './subscribers/custom.report.subscriber';
|
|
92
110
|
import { DashboardComponentSubscriber } from './subscribers/dashboard.component.subscriber';
|
|
93
111
|
import { DashboardSubscriber } from './subscribers/dashboard.subscriber';
|
|
112
|
+
import { DownloadLogSubscriber } from './subscribers/download.log.subscriber';
|
|
94
113
|
import { GroupMemberSubscriber } from './subscribers/group.member.subscriber';
|
|
95
114
|
import { GroupRoleSubscriber } from './subscribers/group.role.subscriber';
|
|
96
115
|
import { ListPreferenceSubscriber } from './subscribers/list.preference.subscriber';
|
|
@@ -106,18 +125,19 @@ import { PreferenceUserGroupSubscriber } from './subscribers/preference.user.gro
|
|
|
106
125
|
import { PreferenceUserSubscriber } from './subscribers/preference.user.subscriber';
|
|
107
126
|
import { ProductSubscriber } from './subscribers/product.subscriber';
|
|
108
127
|
import { RoleGroupSubscriber } from './subscribers/role.group.subscriber';
|
|
128
|
+
import { ScheduledReportSubscriber } from './subscribers/scheduled.report.subscriber';
|
|
109
129
|
import { UiActionRoleSubscriber } from './subscribers/ui.action.role.subscriber';
|
|
110
130
|
import { UiActionSubscriber } from './subscribers/ui.action.subscriber';
|
|
111
131
|
import { UserPreferenceSubscriber } from './subscribers/user.preference.subscriber';
|
|
112
132
|
import { UserRoleSubscriber } from './subscribers/user.role.subscriber';
|
|
113
133
|
declare const es6Classes: {
|
|
114
|
-
controllers: (typeof AccessMenuController | typeof BusinessPreferenceController | typeof DashboardController | typeof ListingController | typeof ListingPreferenceController | typeof UserPreferenceController)[];
|
|
115
|
-
dtos: (typeof GroupRoleAttributesDto | typeof
|
|
116
|
-
entities: (typeof AccessBusinessEntity | typeof BusinessGroupRoleEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof DashboardComponentEntity | typeof GroupMemberEntity | typeof PreferenceUserEntity | typeof ListingPreferenceEntity | typeof PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof UserRoleEntity)[];
|
|
117
|
-
jobs: (typeof BusinessGroupRoleJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserRoleJob | typeof ChildMenuJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | 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 ProductJob | typeof RoleGroupJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserPreferenceJob | typeof UserRoleJob)[];
|
|
118
|
-
libraries: (typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessDashboardReport | typeof
|
|
134
|
+
controllers: (typeof AccessMenuController | typeof BusinessPreferenceController | typeof DashboardController | typeof DownloadLogController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof UserPreferenceController)[];
|
|
135
|
+
dtos: (typeof GroupRoleAttributesDto | typeof TaggedUserDto | typeof AccessBusinessParamDto | typeof AddBusinessPreferenceDto | typeof StringSearchDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ListResponseDto | typeof AddListingPreferenceDto | typeof AddScheduledReportDto | typeof AddConversationDto)[];
|
|
136
|
+
entities: (typeof AccessBusinessEntity | typeof BusinessGroupRoleEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof ConversationEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof GroupMemberEntity | typeof PreferenceUserEntity | typeof ListingPreferenceEntity | typeof PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof ScheduledReportEntity | typeof UserRoleEntity)[];
|
|
137
|
+
jobs: (typeof BusinessGroupRoleJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserRoleJob | typeof ChildMenuJob | typeof ConversationJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | 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 ProductJob | typeof RoleGroupJob | typeof ScheduledReportProcessingJob | typeof ScheduledReportJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserPreferenceJob | typeof UserRoleJob)[];
|
|
138
|
+
libraries: (typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessDashboardReport | typeof ProcessDateFilter | typeof ProcessListingCsvFile | typeof ProcessCommonList | typeof ProcessDownloadLogList | typeof ProcessPreferenceData | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof ProcessReportData | typeof ProcessConversationData | typeof ConversationController | typeof ProcessTestList)[];
|
|
119
139
|
middlewares: (typeof BusinessMiddleware)[];
|
|
120
140
|
services: (typeof AccessBusinessService | typeof ListingService | typeof ListingPreferenceService | typeof BusinessUserRoleService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof LoadEntityService | typeof UserPreferenceService)[];
|
|
121
|
-
subscribers: (typeof BusinessGroupRoleSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof ChildMenuSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | 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 RoleGroupSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber)[];
|
|
141
|
+
subscribers: (typeof BusinessGroupRoleSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof ChildMenuSubscriber | typeof ConversationSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | 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 RoleGroupSubscriber | typeof ScheduledReportSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber)[];
|
|
122
142
|
};
|
|
123
143
|
export default es6Classes;
|