@servicelabsco/slabs-access-manager 0.1.108 → 0.1.110
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/controllers/dashboard.component.controller.d.ts +12 -0
- package/dist/access/controllers/dashboard.component.controller.js +70 -0
- package/dist/access/controllers/dashboard.component.controller.js.map +1 -0
- package/dist/access/controllers/developer.mode.controller.d.ts +25 -0
- package/dist/access/controllers/developer.mode.controller.js +170 -0
- package/dist/access/controllers/developer.mode.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/dtos/add.dashboard.component.dto.d.ts +5 -0
- package/dist/access/dtos/add.dashboard.component.dto.js +30 -0
- package/dist/access/dtos/add.dashboard.component.dto.js.map +1 -0
- package/dist/access/dtos/add.dashboard.component.properties.dto.d.ts +7 -0
- package/dist/access/dtos/add.dashboard.component.properties.dto.js +47 -0
- package/dist/access/dtos/add.dashboard.component.properties.dto.js.map +1 -0
- package/dist/access/dtos/developer.mode.set.listing.dto.d.ts +22 -0
- package/dist/access/dtos/developer.mode.set.listing.dto.js +133 -0
- package/dist/access/dtos/developer.mode.set.listing.dto.js.map +1 -0
- package/dist/access/dtos/edit.query.dto.d.ts +3 -0
- package/dist/access/dtos/edit.query.dto.js +24 -0
- package/dist/access/dtos/edit.query.dto.js.map +1 -0
- package/dist/access/dtos/index.d.ts +4 -0
- package/dist/access/dtos/index.js +4 -0
- package/dist/access/dtos/index.js.map +1 -1
- package/dist/access/es6.classes.d.ts +9 -3
- package/dist/access/es6.classes.js +14 -0
- package/dist/access/es6.classes.js.map +1 -1
- package/dist/access/jobs/email.recipient.job.js +1 -1
- package/dist/access/jobs/email.recipient.job.js.map +1 -1
- package/dist/access/libraries/index.d.ts +1 -0
- package/dist/access/libraries/index.js +1 -0
- package/dist/access/libraries/index.js.map +1 -1
- package/dist/access/libraries/process.dashboard.component.d.ts +6 -0
- package/dist/access/libraries/process.dashboard.component.js +39 -0
- package/dist/access/libraries/process.dashboard.component.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AddDashboardComponentDto } from '../dtos/add.dashboard.component.dto';
|
|
2
|
+
import { BusinessParamDto } from '../dtos/business.param.dto';
|
|
3
|
+
import { CustomReportEntity } from '../entities/custom.report.entity';
|
|
4
|
+
import { DashboardEntity } from '../entities/dashboard.entity';
|
|
5
|
+
import { AccessBusinessService } from '../services/access.business.service';
|
|
6
|
+
export declare class DashboardComponentController {
|
|
7
|
+
private readonly accessBusinessService;
|
|
8
|
+
constructor(accessBusinessService: AccessBusinessService);
|
|
9
|
+
create(body: AddDashboardComponentDto): Promise<DashboardEntity>;
|
|
10
|
+
getAllDashboards(params: BusinessParamDto): Promise<DashboardEntity>;
|
|
11
|
+
allReports(): Promise<CustomReportEntity[]>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
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.DashboardComponentController = void 0;
|
|
16
|
+
const common_1 = require("@nestjs/common");
|
|
17
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
18
|
+
const add_dashboard_component_dto_1 = require("../dtos/add.dashboard.component.dto");
|
|
19
|
+
const business_param_dto_1 = require("../dtos/business.param.dto");
|
|
20
|
+
const custom_report_entity_1 = require("../entities/custom.report.entity");
|
|
21
|
+
const dashboard_entity_1 = require("../entities/dashboard.entity");
|
|
22
|
+
const process_dashboard_component_1 = require("../libraries/process.dashboard.component");
|
|
23
|
+
const access_business_service_1 = require("../services/access.business.service");
|
|
24
|
+
let DashboardComponentController = class DashboardComponentController {
|
|
25
|
+
constructor(accessBusinessService) {
|
|
26
|
+
this.accessBusinessService = accessBusinessService;
|
|
27
|
+
}
|
|
28
|
+
async create(body) {
|
|
29
|
+
const business = await this.accessBusinessService.validateAccess();
|
|
30
|
+
if (!business)
|
|
31
|
+
return;
|
|
32
|
+
return new process_dashboard_component_1.ProcessDashboardComponent().process(body);
|
|
33
|
+
}
|
|
34
|
+
async getAllDashboards(params) {
|
|
35
|
+
const business = await this.accessBusinessService.validateAccess();
|
|
36
|
+
const user = nestjs_utility_services_1.Auth.user();
|
|
37
|
+
return dashboard_entity_1.DashboardEntity.findOne({ where: { identifier: params.slug }, relations: ['components.custom_report'] });
|
|
38
|
+
}
|
|
39
|
+
async allReports() {
|
|
40
|
+
const business = await this.accessBusinessService.validateAccess();
|
|
41
|
+
const user = nestjs_utility_services_1.Auth.user();
|
|
42
|
+
return custom_report_entity_1.CustomReportEntity.find({ where: { product_id: user?.attributes?.product_id } });
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
exports.DashboardComponentController = DashboardComponentController;
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, common_1.Post)(),
|
|
48
|
+
__param(0, (0, common_1.Body)()),
|
|
49
|
+
__metadata("design:type", Function),
|
|
50
|
+
__metadata("design:paramtypes", [add_dashboard_component_dto_1.AddDashboardComponentDto]),
|
|
51
|
+
__metadata("design:returntype", Promise)
|
|
52
|
+
], DashboardComponentController.prototype, "create", null);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, common_1.Get)(':slug/dashboard-detail'),
|
|
55
|
+
__param(0, (0, common_1.Param)()),
|
|
56
|
+
__metadata("design:type", Function),
|
|
57
|
+
__metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
|
|
58
|
+
__metadata("design:returntype", Promise)
|
|
59
|
+
], DashboardComponentController.prototype, "getAllDashboards", null);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, common_1.Get)('all-report'),
|
|
62
|
+
__metadata("design:type", Function),
|
|
63
|
+
__metadata("design:paramtypes", []),
|
|
64
|
+
__metadata("design:returntype", Promise)
|
|
65
|
+
], DashboardComponentController.prototype, "allReports", null);
|
|
66
|
+
exports.DashboardComponentController = DashboardComponentController = __decorate([
|
|
67
|
+
(0, common_1.Controller)('api/b/dashboard-component'),
|
|
68
|
+
__metadata("design:paramtypes", [access_business_service_1.AccessBusinessService])
|
|
69
|
+
], DashboardComponentController);
|
|
70
|
+
//# sourceMappingURL=dashboard.component.controller.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard.component.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/dashboard.component.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAAoE;AACpE,oFAA8D;AAC9D,qFAA+E;AAC/E,mEAA8D;AAC9D,2EAAsE;AACtE,mEAA+D;AAC/D,0FAAqF;AACrF,iFAA4E;AAQrE,IAAM,4BAA4B,GAAlC,MAAM,4BAA4B;IACrC,YAA6B,qBAA4C;QAA5C,0BAAqB,GAArB,qBAAqB,CAAuB;IAAG,CAAC;IAGvE,AAAN,KAAK,CAAC,MAAM,CAAS,IAA8B;QAC/C,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,IAAI,CAAC,QAAQ;YAAE,OAAO;QAEtB,OAAO,IAAI,uDAAyB,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACzD,CAAC;IAGK,AAAN,KAAK,CAAC,gBAAgB,CAAU,MAAwB;QACpD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,MAAM,IAAI,GAAG,8BAAI,CAAC,IAAI,EAAE,CAAC;QAEzB,OAAO,kCAAe,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,UAAU,EAAE,MAAM,CAAC,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,0BAA0B,CAAC,EAAE,CAAC,CAAC;IACpH,CAAC;IAGK,AAAN,KAAK,CAAC,UAAU;QACZ,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,MAAM,IAAI,GAAG,8BAAI,CAAC,IAAI,EAAE,CAAC;QAEzB,OAAO,yCAAkB,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,UAAU,EAAE,UAAU,EAAE,EAAE,CAAC,CAAC;IAC5F,CAAC;CACJ,CAAA;AA1BY,oEAA4B;AAI/B;IADL,IAAA,aAAI,GAAE;IACO,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAO,sDAAwB;;0DAKlD;AAGK;IADL,IAAA,YAAG,EAAC,wBAAwB,CAAC;IACN,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAS,qCAAgB;;oEAKvD;AAGK;IADL,IAAA,YAAG,EAAC,YAAY,CAAC;;;;8DAMjB;uCAzBQ,4BAA4B;IADxC,IAAA,mBAAU,EAAC,2BAA2B,CAAC;qCAEgB,+CAAqB;GADhE,4BAA4B,CA0BxC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { PropertyService, ReportEntity, SqlService, StringSearchDto, SystemScriptEntity } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { AddListingPreferenceDto } from '../dtos/add.listing.preference.dto';
|
|
3
|
+
import { BusinessParamDto } from '../dtos/business.param.dto';
|
|
4
|
+
import { DeveloperModeSetListingDto } from '../dtos/developer.mode.set.listing.dto';
|
|
5
|
+
import { ListingColumnEntity } from '../entities/listing.column.entity';
|
|
6
|
+
import { AccessBusinessService } from '../services/access.business.service';
|
|
7
|
+
import { EditQueryDto } from '../dtos/edit.query.dto';
|
|
8
|
+
export declare class DeveloperModeController {
|
|
9
|
+
private readonly accessBusinessService;
|
|
10
|
+
private readonly propertyService;
|
|
11
|
+
private readonly sqlService;
|
|
12
|
+
constructor(accessBusinessService: AccessBusinessService, propertyService: PropertyService, sqlService: SqlService);
|
|
13
|
+
setListing(body: DeveloperModeSetListingDto): Promise<ListingColumnEntity>;
|
|
14
|
+
setListingColumnPriority(body: AddListingPreferenceDto & {
|
|
15
|
+
definitionKey: string;
|
|
16
|
+
}): Promise<{
|
|
17
|
+
success: boolean;
|
|
18
|
+
}>;
|
|
19
|
+
getListingColumns(param: BusinessParamDto): Promise<ListingColumnEntity>;
|
|
20
|
+
findColumnType(body: StringSearchDto): Promise<any>;
|
|
21
|
+
findListingModal(body: StringSearchDto): Promise<any>;
|
|
22
|
+
editQuery(params: BusinessParamDto, body: EditQueryDto): Promise<SystemScriptEntity>;
|
|
23
|
+
getDetail(params: BusinessParamDto): Promise<ReportEntity>;
|
|
24
|
+
private validate;
|
|
25
|
+
}
|
|
@@ -0,0 +1,170 @@
|
|
|
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.DeveloperModeController = 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 developer_mode_set_listing_dto_1 = require("../dtos/developer.mode.set.listing.dto");
|
|
20
|
+
const listing_column_entity_1 = require("../entities/listing.column.entity");
|
|
21
|
+
const listing_page_entity_1 = require("../entities/listing.page.entity");
|
|
22
|
+
const process_db_find_1 = require("../libraries/process.db.find");
|
|
23
|
+
const access_business_service_1 = require("../services/access.business.service");
|
|
24
|
+
const edit_query_dto_1 = require("../dtos/edit.query.dto");
|
|
25
|
+
let DeveloperModeController = class DeveloperModeController {
|
|
26
|
+
constructor(accessBusinessService, propertyService, sqlService) {
|
|
27
|
+
this.accessBusinessService = accessBusinessService;
|
|
28
|
+
this.propertyService = propertyService;
|
|
29
|
+
this.sqlService = sqlService;
|
|
30
|
+
}
|
|
31
|
+
async setListing(body) {
|
|
32
|
+
await this.validate();
|
|
33
|
+
let listing = listing_column_entity_1.ListingColumnEntity.create();
|
|
34
|
+
if (body?.id)
|
|
35
|
+
listing = await listing_column_entity_1.ListingColumnEntity.findOne({ where: { id: body.id } });
|
|
36
|
+
Object.keys(body).map((key) => {
|
|
37
|
+
listing[key] = body[key];
|
|
38
|
+
});
|
|
39
|
+
return listing.save();
|
|
40
|
+
}
|
|
41
|
+
async setListingColumnPriority(body) {
|
|
42
|
+
await this.validate();
|
|
43
|
+
const listing = await listing_page_entity_1.ListingPageEntity.findOne({ where: { identifier: body.definitionKey } });
|
|
44
|
+
if (!listing)
|
|
45
|
+
throw new nestjs_utility_services_1.OperationException('No Listing');
|
|
46
|
+
let priority = 1;
|
|
47
|
+
for await (const cd of body.column_definition) {
|
|
48
|
+
const column = await listing_column_entity_1.ListingColumnEntity.findOne({
|
|
49
|
+
where: { listing_id: listing.id, identifier: cd.identifier },
|
|
50
|
+
});
|
|
51
|
+
if (!column)
|
|
52
|
+
continue;
|
|
53
|
+
column.priority = priority;
|
|
54
|
+
await column.save();
|
|
55
|
+
priority++;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
success: true,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
async getListingColumns(param) {
|
|
62
|
+
await this.validate();
|
|
63
|
+
const listing = await listing_column_entity_1.ListingColumnEntity.findOne({ where: { id: param.id }, relations: ['listing'] });
|
|
64
|
+
if (!listing)
|
|
65
|
+
throw new nestjs_utility_services_1.OperationException('No listing defined');
|
|
66
|
+
return listing;
|
|
67
|
+
}
|
|
68
|
+
async findColumnType(body) {
|
|
69
|
+
await this.validate();
|
|
70
|
+
const config = {
|
|
71
|
+
primaryCondition: `a.deleted_at is null`,
|
|
72
|
+
searchCompareKeys: ['a.name'],
|
|
73
|
+
tableName: 'sys_column_definitions a',
|
|
74
|
+
columns: ['a.name', 'a.id'],
|
|
75
|
+
order: `a.name asc`,
|
|
76
|
+
idsCompareKey: 'a.id',
|
|
77
|
+
...body,
|
|
78
|
+
};
|
|
79
|
+
return new process_db_find_1.ProcessDbFind(this.sqlService).process(config);
|
|
80
|
+
}
|
|
81
|
+
async findListingModal(body) {
|
|
82
|
+
await this.validate();
|
|
83
|
+
const config = {
|
|
84
|
+
primaryCondition: `a.deleted_at is null`,
|
|
85
|
+
searchCompareKeys: ['a.name'],
|
|
86
|
+
tableName: 'utl_listing_models a',
|
|
87
|
+
columns: ['a.name', 'a.id', 'a.identifier'],
|
|
88
|
+
order: `a.name asc`,
|
|
89
|
+
idsCompareKey: 'a.id',
|
|
90
|
+
...body,
|
|
91
|
+
};
|
|
92
|
+
return new process_db_find_1.ProcessDbFind(this.sqlService).process(config);
|
|
93
|
+
}
|
|
94
|
+
async editQuery(params, body) {
|
|
95
|
+
await this.validate();
|
|
96
|
+
const script = await nestjs_utility_services_1.SystemScriptEntity.first(params?.id);
|
|
97
|
+
script.script = body?.query;
|
|
98
|
+
return script.save();
|
|
99
|
+
}
|
|
100
|
+
async getDetail(params) {
|
|
101
|
+
await this.validate();
|
|
102
|
+
return nestjs_utility_services_1.ReportEntity.findOne({ where: { name: params.slug }, relations: ['query'] });
|
|
103
|
+
}
|
|
104
|
+
async validate() {
|
|
105
|
+
const business = await this.accessBusinessService.validateAccess();
|
|
106
|
+
const auth = nestjs_utility_services_1.Auth.user();
|
|
107
|
+
const email = await this.propertyService.get('developer.mode.email', 'hemant.sah@finnoto.com');
|
|
108
|
+
const user = await nestjs_utility_services_1.UserEntity.findOne({ where: { email: email } });
|
|
109
|
+
if (user?.id !== auth.id)
|
|
110
|
+
throw new nestjs_utility_services_1.OperationException('You dont have access for this operation');
|
|
111
|
+
}
|
|
112
|
+
};
|
|
113
|
+
exports.DeveloperModeController = DeveloperModeController;
|
|
114
|
+
__decorate([
|
|
115
|
+
(0, common_1.Post)('set-columns'),
|
|
116
|
+
__param(0, (0, common_1.Body)()),
|
|
117
|
+
__metadata("design:type", Function),
|
|
118
|
+
__metadata("design:paramtypes", [developer_mode_set_listing_dto_1.DeveloperModeSetListingDto]),
|
|
119
|
+
__metadata("design:returntype", Promise)
|
|
120
|
+
], DeveloperModeController.prototype, "setListing", null);
|
|
121
|
+
__decorate([
|
|
122
|
+
(0, common_1.Post)('set-columns-priority'),
|
|
123
|
+
__param(0, (0, common_1.Body)()),
|
|
124
|
+
__metadata("design:type", Function),
|
|
125
|
+
__metadata("design:paramtypes", [Object]),
|
|
126
|
+
__metadata("design:returntype", Promise)
|
|
127
|
+
], DeveloperModeController.prototype, "setListingColumnPriority", null);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, common_1.Get)(':id/columns'),
|
|
130
|
+
__param(0, (0, common_1.Param)()),
|
|
131
|
+
__metadata("design:type", Function),
|
|
132
|
+
__metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
|
|
133
|
+
__metadata("design:returntype", Promise)
|
|
134
|
+
], DeveloperModeController.prototype, "getListingColumns", null);
|
|
135
|
+
__decorate([
|
|
136
|
+
(0, common_1.Post)('find-column-type'),
|
|
137
|
+
__param(0, (0, common_1.Body)()),
|
|
138
|
+
__metadata("design:type", Function),
|
|
139
|
+
__metadata("design:paramtypes", [nestjs_utility_services_1.StringSearchDto]),
|
|
140
|
+
__metadata("design:returntype", Promise)
|
|
141
|
+
], DeveloperModeController.prototype, "findColumnType", null);
|
|
142
|
+
__decorate([
|
|
143
|
+
(0, common_1.Post)('find-listing-modal'),
|
|
144
|
+
__param(0, (0, common_1.Body)()),
|
|
145
|
+
__metadata("design:type", Function),
|
|
146
|
+
__metadata("design:paramtypes", [nestjs_utility_services_1.StringSearchDto]),
|
|
147
|
+
__metadata("design:returntype", Promise)
|
|
148
|
+
], DeveloperModeController.prototype, "findListingModal", null);
|
|
149
|
+
__decorate([
|
|
150
|
+
(0, common_1.Post)(':id/edit-script'),
|
|
151
|
+
__param(0, (0, common_1.Param)()),
|
|
152
|
+
__param(1, (0, common_1.Body)()),
|
|
153
|
+
__metadata("design:type", Function),
|
|
154
|
+
__metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto, edit_query_dto_1.EditQueryDto]),
|
|
155
|
+
__metadata("design:returntype", Promise)
|
|
156
|
+
], DeveloperModeController.prototype, "editQuery", null);
|
|
157
|
+
__decorate([
|
|
158
|
+
(0, common_1.Get)(':slug/get-detail'),
|
|
159
|
+
__param(0, (0, common_1.Param)()),
|
|
160
|
+
__metadata("design:type", Function),
|
|
161
|
+
__metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
|
|
162
|
+
__metadata("design:returntype", Promise)
|
|
163
|
+
], DeveloperModeController.prototype, "getDetail", null);
|
|
164
|
+
exports.DeveloperModeController = DeveloperModeController = __decorate([
|
|
165
|
+
(0, common_1.Controller)('api/b/developer-mode'),
|
|
166
|
+
__metadata("design:paramtypes", [access_business_service_1.AccessBusinessService,
|
|
167
|
+
nestjs_utility_services_1.PropertyService,
|
|
168
|
+
nestjs_utility_services_1.SqlService])
|
|
169
|
+
], DeveloperModeController);
|
|
170
|
+
//# sourceMappingURL=developer.mode.controller.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developer.mode.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/developer.mode.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAAoE;AACpE,oFASgD;AAEhD,mEAA8D;AAE9D,2FAAoF;AAEpF,6EAAwE;AACxE,yEAAoE;AACpE,kEAA6D;AAC7D,iFAA4E;AAC5E,2DAAsD;AAG/C,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;IAChC,YACqB,qBAA4C,EAC5C,eAAgC,EAChC,UAAsB;QAFtB,0BAAqB,GAArB,qBAAqB,CAAuB;QAC5C,oBAAe,GAAf,eAAe,CAAiB;QAChC,eAAU,GAAV,UAAU,CAAY;IACxC,CAAC;IAGE,AAAN,KAAK,CAAC,UAAU,CAAS,IAAgC;QACrD,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEtB,IAAI,OAAO,GAAG,2CAAmB,CAAC,MAAM,EAAE,CAAC;QAC3C,IAAI,IAAI,EAAE,EAAE;YAAE,OAAO,GAAG,MAAM,2CAAmB,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QAEtF,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAW,EAAE,EAAE;YAClC,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;QAC7B,CAAC,CAAC,CAAC;QAEH,OAAO,OAAO,CAAC,IAAI,EAAE,CAAC;IAC1B,CAAC;IAGK,AAAN,KAAK,CAAC,wBAAwB,CAAS,IAAyD;QAC5F,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEtB,MAAM,OAAO,GAAG,MAAM,uCAAiB,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,UAAU,EAAG,IAAY,CAAC,aAAa,EAAE,EAAE,CAAC,CAAC;QACxG,IAAI,CAAC,OAAO;YAAE,MAAM,IAAI,4CAAkB,CAAC,YAAY,CAAC,CAAC;QAEzD,IAAI,QAAQ,GAAW,CAAC,CAAC;QAEzB,IAAI,KAAK,EAAE,MAAM,EAAE,IAAI,IAAI,CAAC,iBAAiB,EAAE,CAAC;YAC5C,MAAM,MAAM,GAAG,MAAM,2CAAmB,CAAC,OAAO,CAAC;gBAC7C,KAAK,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,EAAE,UAAU,EAAE,EAAE,CAAC,UAAU,EAAE;aAC/D,CAAC,CAAC;YACH,IAAI,CAAC,MAAM;gBAAE,SAAS;YAEtB,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC;YAC3B,MAAM,MAAM,CAAC,IAAI,EAAE,CAAC;YAEpB,QAAQ,EAAE,CAAC;QACf,CAAC;QAED,OAAO;YACH,OAAO,EAAE,IAAI;SAChB,CAAC;IACN,CAAC;IAGK,AAAN,KAAK,CAAC,iBAAiB,CAAU,KAAuB;QACpD,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEtB,MAAM,OAAO,GAAG,MAAM,2CAAmB,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;QACvG,IAAI,CAAC,OAAO;YAAE,MAAM,IAAI,4CAAkB,CAAC,oBAAoB,CAAC,CAAC;QAEjE,OAAO,OAAO,CAAC;IACnB,CAAC;IAGK,AAAN,KAAK,CAAC,cAAc,CAAS,IAAqB;QAC9C,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEtB,MAAM,MAAM,GAAqB;YAC7B,gBAAgB,EAAE,sBAAsB;YACxC,iBAAiB,EAAE,CAAC,QAAQ,CAAC;YAC7B,SAAS,EAAE,0BAA0B;YACrC,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;YAC3B,KAAK,EAAE,YAAY;YACnB,aAAa,EAAE,MAAM;YACrB,GAAG,IAAI;SACV,CAAC;QAEF,OAAO,IAAI,+BAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IAC9D,CAAC;IAGK,AAAN,KAAK,CAAC,gBAAgB,CAAS,IAAqB;QAChD,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEtB,MAAM,MAAM,GAAqB;YAC7B,gBAAgB,EAAE,sBAAsB;YACxC,iBAAiB,EAAE,CAAC,QAAQ,CAAC;YAC7B,SAAS,EAAE,sBAAsB;YACjC,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,cAAc,CAAC;YAC3C,KAAK,EAAE,YAAY;YACnB,aAAa,EAAE,MAAM;YACrB,GAAG,IAAI;SACV,CAAC;QAEF,OAAO,IAAI,+BAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IAC9D,CAAC;IAGK,AAAN,KAAK,CAAC,SAAS,CAAU,MAAwB,EAAU,IAAkB;QACzE,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEtB,MAAM,MAAM,GAAG,MAAM,4CAAkB,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;QAC1D,MAAM,CAAC,MAAM,GAAG,IAAI,EAAE,KAAK,CAAC;QAE5B,OAAO,MAAM,CAAC,IAAI,EAAE,CAAC;IACzB,CAAC;IAGK,AAAN,KAAK,CAAC,SAAS,CAAU,MAAwB;QAC7C,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAC;QACtB,OAAO,sCAAY,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IACxF,CAAC;IAEO,KAAK,CAAC,QAAQ;QAClB,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,MAAM,IAAI,GAAG,8BAAI,CAAC,IAAI,EAAE,CAAC;QAEzB,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,sBAAsB,EAAE,wBAAwB,CAAC,CAAC;QAE/F,MAAM,IAAI,GAAG,MAAM,oCAAU,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC;QACnE,IAAI,IAAI,EAAE,EAAE,KAAK,IAAI,CAAC,EAAE;YAAE,MAAM,IAAI,4CAAkB,CAAC,yCAAyC,CAAC,CAAC;IACtG,CAAC;CACJ,CAAA;AApHY,0DAAuB;AAQ1B;IADL,IAAA,aAAI,EAAC,aAAa,CAAC;IACF,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAO,2DAA0B;;yDAWxD;AAGK;IADL,IAAA,aAAI,EAAC,sBAAsB,CAAC;IACG,WAAA,IAAA,aAAI,GAAE,CAAA;;;;uEAuBrC;AAGK;IADL,IAAA,YAAG,EAAC,aAAa,CAAC;IACM,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAQ,qCAAgB;;gEAOvD;AAGK;IADL,IAAA,aAAI,EAAC,kBAAkB,CAAC;IACH,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAO,yCAAe;;6DAcjD;AAGK;IADL,IAAA,aAAI,EAAC,oBAAoB,CAAC;IACH,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAO,yCAAe;;+DAcnD;AAGK;IADL,IAAA,aAAI,EAAC,iBAAiB,CAAC;IACP,WAAA,IAAA,cAAK,GAAE,CAAA;IAA4B,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAzB,qCAAgB,EAAgB,6BAAY;;wDAO5E;AAGK;IADL,IAAA,YAAG,EAAC,kBAAkB,CAAC;IACP,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAS,qCAAgB;;wDAGhD;kCAzGQ,uBAAuB;IADnC,IAAA,mBAAU,EAAC,sBAAsB,CAAC;qCAGa,+CAAqB;QAC3B,yCAAe;QACpB,oCAAU;GAJlC,uBAAuB,CAoHnC"}
|
|
@@ -7,7 +7,9 @@ export * from './business.user.group.controller';
|
|
|
7
7
|
export * from './choice.list.controller';
|
|
8
8
|
export * from './choice.type.controller';
|
|
9
9
|
export * from './custom.field.controller';
|
|
10
|
+
export * from './dashboard.component.controller';
|
|
10
11
|
export * from './dashboard.controller';
|
|
12
|
+
export * from './developer.mode.controller';
|
|
11
13
|
export * from './download.log.controller';
|
|
12
14
|
export * from './group.member.controller';
|
|
13
15
|
export * from './group.role.controller';
|
|
@@ -23,7 +23,9 @@ __exportStar(require("./business.user.group.controller"), exports);
|
|
|
23
23
|
__exportStar(require("./choice.list.controller"), exports);
|
|
24
24
|
__exportStar(require("./choice.type.controller"), exports);
|
|
25
25
|
__exportStar(require("./custom.field.controller"), exports);
|
|
26
|
+
__exportStar(require("./dashboard.component.controller"), exports);
|
|
26
27
|
__exportStar(require("./dashboard.controller"), exports);
|
|
28
|
+
__exportStar(require("./developer.mode.controller"), exports);
|
|
27
29
|
__exportStar(require("./download.log.controller"), exports);
|
|
28
30
|
__exportStar(require("./group.member.controller"), exports);
|
|
29
31
|
__exportStar(require("./group.role.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,mEAAiD;AAAA,mEAAiD;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,4DAA0C;AAAA,yDAAuC;AAAA,4DAA0C;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,mEAAiD;AAAA,mEAAiD;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,4DAA0C;AAAA,mEAAiD;AAAA,yDAAuC;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,uDAAqC;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,qEAAmD;AAAA,mDAAiC;AAAA,iEAA+C;AAAA,+DAA4C"}
|
|
@@ -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.AddDashboardComponentDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class AddDashboardComponentDto {
|
|
16
|
+
}
|
|
17
|
+
exports.AddDashboardComponentDto = AddDashboardComponentDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsNumber)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", Number)
|
|
23
|
+
], AddDashboardComponentDto.prototype, "dashboard_id", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsArray)(),
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
28
|
+
__metadata("design:type", Array)
|
|
29
|
+
], AddDashboardComponentDto.prototype, "components", void 0);
|
|
30
|
+
//# sourceMappingURL=add.dashboard.component.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.dashboard.component.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/add.dashboard.component.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAgE;AAGhE,MAAa,wBAAwB;CAUpC;AAVD,4DAUC;AANG;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;8DACY;AAKrB;IAHC,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;4DACoC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
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.AddDashboardComponentPropertiesDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class AddDashboardComponentPropertiesDto {
|
|
16
|
+
}
|
|
17
|
+
exports.AddDashboardComponentPropertiesDto = AddDashboardComponentPropertiesDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_transformer_1.Expose)(),
|
|
20
|
+
(0, class_validator_1.IsOptional)(),
|
|
21
|
+
(0, class_validator_1.IsNumber)(),
|
|
22
|
+
__metadata("design:type", Number)
|
|
23
|
+
], AddDashboardComponentPropertiesDto.prototype, "id", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsNumber)(),
|
|
26
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", Number)
|
|
29
|
+
], AddDashboardComponentPropertiesDto.prototype, "custom_report_id", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsString)(),
|
|
32
|
+
(0, class_transformer_1.Expose)(),
|
|
33
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], AddDashboardComponentPropertiesDto.prototype, "identifier", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
38
|
+
(0, class_transformer_1.Expose)(),
|
|
39
|
+
__metadata("design:type", Object)
|
|
40
|
+
], AddDashboardComponentPropertiesDto.prototype, "properties", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_transformer_1.Expose)(),
|
|
43
|
+
(0, class_validator_1.IsBoolean)(),
|
|
44
|
+
(0, class_validator_1.IsOptional)(),
|
|
45
|
+
__metadata("design:type", Boolean)
|
|
46
|
+
], AddDashboardComponentPropertiesDto.prototype, "active", void 0);
|
|
47
|
+
//# sourceMappingURL=add.dashboard.component.properties.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.dashboard.component.properties.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/add.dashboard.component.properties.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwF;AAExF,MAAa,kCAAkC;CAwB9C;AAxBD,gFAwBC;AApBG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8DACC;AAKZ;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;4EACgB;AAKzB;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;sEACM;AAInB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;sEACO;AAKhB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kEACI"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ColumnDefinitionEntity } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
export declare class DeveloperModeSetListingDto {
|
|
3
|
+
id?: number;
|
|
4
|
+
listing_id?: number;
|
|
5
|
+
name?: string;
|
|
6
|
+
filter_name?: number;
|
|
7
|
+
identifier?: string;
|
|
8
|
+
filter_identifier?: string;
|
|
9
|
+
column_type_id?: number;
|
|
10
|
+
macro?: string;
|
|
11
|
+
reference_url?: string;
|
|
12
|
+
reference_column?: string;
|
|
13
|
+
priority?: number;
|
|
14
|
+
is_sortable?: boolean;
|
|
15
|
+
is_db_sortable?: boolean;
|
|
16
|
+
active?: boolean;
|
|
17
|
+
is_visible?: boolean;
|
|
18
|
+
is_report_enabled?: boolean;
|
|
19
|
+
reference_model_id?: number;
|
|
20
|
+
default?: boolean;
|
|
21
|
+
column_type?: ColumnDefinitionEntity;
|
|
22
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
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.DeveloperModeSetListingDto = void 0;
|
|
13
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const class_validator_1 = require("class-validator");
|
|
16
|
+
class DeveloperModeSetListingDto {
|
|
17
|
+
}
|
|
18
|
+
exports.DeveloperModeSetListingDto = DeveloperModeSetListingDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_transformer_1.Expose)(),
|
|
21
|
+
(0, class_validator_1.IsOptional)(),
|
|
22
|
+
(0, class_validator_1.IsNumber)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], DeveloperModeSetListingDto.prototype, "id", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
(0, class_validator_1.IsOptional)(),
|
|
28
|
+
(0, class_validator_1.IsNumber)(),
|
|
29
|
+
__metadata("design:type", Number)
|
|
30
|
+
], DeveloperModeSetListingDto.prototype, "listing_id", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_transformer_1.Expose)(),
|
|
33
|
+
(0, class_validator_1.IsOptional)(),
|
|
34
|
+
(0, class_validator_1.IsString)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], DeveloperModeSetListingDto.prototype, "name", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_transformer_1.Expose)(),
|
|
39
|
+
(0, class_validator_1.IsOptional)(),
|
|
40
|
+
(0, class_validator_1.IsString)(),
|
|
41
|
+
__metadata("design:type", Number)
|
|
42
|
+
], DeveloperModeSetListingDto.prototype, "filter_name", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, class_transformer_1.Expose)(),
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
46
|
+
(0, class_validator_1.IsString)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], DeveloperModeSetListingDto.prototype, "identifier", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, class_transformer_1.Expose)(),
|
|
51
|
+
(0, class_validator_1.IsOptional)(),
|
|
52
|
+
(0, class_validator_1.IsString)(),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], DeveloperModeSetListingDto.prototype, "filter_identifier", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_transformer_1.Expose)(),
|
|
57
|
+
(0, class_validator_1.IsOptional)(),
|
|
58
|
+
(0, class_validator_1.IsNumber)(),
|
|
59
|
+
__metadata("design:type", Number)
|
|
60
|
+
], DeveloperModeSetListingDto.prototype, "column_type_id", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_transformer_1.Expose)(),
|
|
63
|
+
(0, class_validator_1.IsOptional)(),
|
|
64
|
+
(0, class_validator_1.IsString)(),
|
|
65
|
+
__metadata("design:type", String)
|
|
66
|
+
], DeveloperModeSetListingDto.prototype, "macro", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, class_transformer_1.Expose)(),
|
|
69
|
+
(0, class_validator_1.IsOptional)(),
|
|
70
|
+
(0, class_validator_1.IsString)(),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], DeveloperModeSetListingDto.prototype, "reference_url", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, class_transformer_1.Expose)(),
|
|
75
|
+
(0, class_validator_1.IsOptional)(),
|
|
76
|
+
(0, class_validator_1.IsString)(),
|
|
77
|
+
__metadata("design:type", String)
|
|
78
|
+
], DeveloperModeSetListingDto.prototype, "reference_column", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, class_transformer_1.Expose)(),
|
|
81
|
+
(0, class_validator_1.IsOptional)(),
|
|
82
|
+
(0, class_validator_1.IsNumber)(),
|
|
83
|
+
__metadata("design:type", Number)
|
|
84
|
+
], DeveloperModeSetListingDto.prototype, "priority", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, class_transformer_1.Expose)(),
|
|
87
|
+
(0, class_validator_1.IsOptional)(),
|
|
88
|
+
(0, class_validator_1.IsBoolean)(),
|
|
89
|
+
__metadata("design:type", Boolean)
|
|
90
|
+
], DeveloperModeSetListingDto.prototype, "is_sortable", void 0);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, class_transformer_1.Expose)(),
|
|
93
|
+
(0, class_validator_1.IsOptional)(),
|
|
94
|
+
(0, class_validator_1.IsBoolean)(),
|
|
95
|
+
__metadata("design:type", Boolean)
|
|
96
|
+
], DeveloperModeSetListingDto.prototype, "is_db_sortable", void 0);
|
|
97
|
+
__decorate([
|
|
98
|
+
(0, class_transformer_1.Expose)(),
|
|
99
|
+
(0, class_validator_1.IsOptional)(),
|
|
100
|
+
(0, class_validator_1.IsBoolean)(),
|
|
101
|
+
__metadata("design:type", Boolean)
|
|
102
|
+
], DeveloperModeSetListingDto.prototype, "active", void 0);
|
|
103
|
+
__decorate([
|
|
104
|
+
(0, class_transformer_1.Expose)(),
|
|
105
|
+
(0, class_validator_1.IsOptional)(),
|
|
106
|
+
(0, class_validator_1.IsBoolean)(),
|
|
107
|
+
__metadata("design:type", Boolean)
|
|
108
|
+
], DeveloperModeSetListingDto.prototype, "is_visible", void 0);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, class_transformer_1.Expose)(),
|
|
111
|
+
(0, class_validator_1.IsOptional)(),
|
|
112
|
+
(0, class_validator_1.IsBoolean)(),
|
|
113
|
+
__metadata("design:type", Boolean)
|
|
114
|
+
], DeveloperModeSetListingDto.prototype, "is_report_enabled", void 0);
|
|
115
|
+
__decorate([
|
|
116
|
+
(0, class_transformer_1.Expose)(),
|
|
117
|
+
(0, class_validator_1.IsOptional)(),
|
|
118
|
+
(0, class_validator_1.IsBoolean)(),
|
|
119
|
+
__metadata("design:type", Number)
|
|
120
|
+
], DeveloperModeSetListingDto.prototype, "reference_model_id", void 0);
|
|
121
|
+
__decorate([
|
|
122
|
+
(0, class_transformer_1.Expose)(),
|
|
123
|
+
(0, class_validator_1.IsOptional)(),
|
|
124
|
+
(0, class_validator_1.IsBoolean)(),
|
|
125
|
+
__metadata("design:type", Boolean)
|
|
126
|
+
], DeveloperModeSetListingDto.prototype, "default", void 0);
|
|
127
|
+
__decorate([
|
|
128
|
+
(0, class_transformer_1.Expose)(),
|
|
129
|
+
(0, class_validator_1.IsOptional)(),
|
|
130
|
+
(0, class_validator_1.IsBoolean)(),
|
|
131
|
+
__metadata("design:type", nestjs_utility_services_1.ColumnDefinitionEntity)
|
|
132
|
+
], DeveloperModeSetListingDto.prototype, "column_type", void 0);
|
|
133
|
+
//# sourceMappingURL=developer.mode.set.listing.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developer.mode.set.listing.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/developer.mode.set.listing.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAgF;AAChF,yDAA2C;AAC3C,qDAA4E;AAE5E,MAAa,0BAA0B;CA+FtC;AA/FD,gEA+FC;AA3FG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;sDACC;AAKZ;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8DACS;AAKpB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACG;AAKd;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;+DACU;AAKrB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8DACS;AAKpB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;qEACgB;AAK3B;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;kEACa;AAKxB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;yDACI;AAKf;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;iEACY;AAKvB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;oEACe;AAK1B;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;4DACO;AAKlB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;+DACU;AAKtB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;kEACa;AAKzB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;0DACK;AAKjB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;8DACS;AAKrB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;qEACgB;AAK5B;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;sEACgB;AAK5B;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;2DACM;AAKlB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;8BACE,gDAAsB;+DAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
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.EditQueryDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class EditQueryDto {
|
|
16
|
+
}
|
|
17
|
+
exports.EditQueryDto = EditQueryDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_transformer_1.Expose)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
(0, class_validator_1.IsString)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], EditQueryDto.prototype, "query", void 0);
|
|
24
|
+
//# sourceMappingURL=edit.query.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"edit.query.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/edit.query.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAuD;AAEvD,MAAa,YAAY;CAKxB;AALD,oCAKC;AADG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2CACG"}
|
|
@@ -6,6 +6,8 @@ export * from './add.choice.list.dto';
|
|
|
6
6
|
export * from './add.choice.type.dto';
|
|
7
7
|
export * from './add.conversation.dto';
|
|
8
8
|
export * from './add.custom.field.dto';
|
|
9
|
+
export * from './add.dashboard.component.dto';
|
|
10
|
+
export * from './add.dashboard.component.properties.dto';
|
|
9
11
|
export * from './add.group.member.dto';
|
|
10
12
|
export * from './add.listing.preference.dto';
|
|
11
13
|
export * from './add.role.dto';
|
|
@@ -40,8 +42,10 @@ export * from './date.filter.dto';
|
|
|
40
42
|
export * from './date.range.filter.dto';
|
|
41
43
|
export * from './db.find.dto';
|
|
42
44
|
export * from './db.find.options.dto';
|
|
45
|
+
export * from './developer.mode.set.listing.dto';
|
|
43
46
|
export * from './download.log.attributes.dto';
|
|
44
47
|
export * from './download.log.list.filter.dto';
|
|
48
|
+
export * from './edit.query.dto';
|
|
45
49
|
export * from './email.attachment.attributes.dto';
|
|
46
50
|
export * from './email.message.attributes.dto';
|
|
47
51
|
export * from './email.notification.payload.dto';
|
|
@@ -22,6 +22,8 @@ __exportStar(require("./add.choice.list.dto"), exports);
|
|
|
22
22
|
__exportStar(require("./add.choice.type.dto"), exports);
|
|
23
23
|
__exportStar(require("./add.conversation.dto"), exports);
|
|
24
24
|
__exportStar(require("./add.custom.field.dto"), exports);
|
|
25
|
+
__exportStar(require("./add.dashboard.component.dto"), exports);
|
|
26
|
+
__exportStar(require("./add.dashboard.component.properties.dto"), exports);
|
|
25
27
|
__exportStar(require("./add.group.member.dto"), exports);
|
|
26
28
|
__exportStar(require("./add.listing.preference.dto"), exports);
|
|
27
29
|
__exportStar(require("./add.role.dto"), exports);
|
|
@@ -56,8 +58,10 @@ __exportStar(require("./date.filter.dto"), exports);
|
|
|
56
58
|
__exportStar(require("./date.range.filter.dto"), exports);
|
|
57
59
|
__exportStar(require("./db.find.dto"), exports);
|
|
58
60
|
__exportStar(require("./db.find.options.dto"), exports);
|
|
61
|
+
__exportStar(require("./developer.mode.set.listing.dto"), exports);
|
|
59
62
|
__exportStar(require("./download.log.attributes.dto"), exports);
|
|
60
63
|
__exportStar(require("./download.log.list.filter.dto"), exports);
|
|
64
|
+
__exportStar(require("./edit.query.dto"), exports);
|
|
61
65
|
__exportStar(require("./email.attachment.attributes.dto"), exports);
|
|
62
66
|
__exportStar(require("./email.message.attributes.dto"), exports);
|
|
63
67
|
__exportStar(require("./email.notification.payload.dto"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,wDAAsC;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,sDAAoC;AAAA,gDAA8B;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,uDAAqC;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,wEAAsD;AAAA,sEAAoD;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,gDAA8B;AAAA,wDAAsC;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;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,8DAA4C;AAAA,oEAAkD;AAAA,0EAAwD;AAAA,yEAAuD;AAAA,0EAAwD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,qEAAkD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,wDAAsC;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,2EAAyD;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,sDAAoC;AAAA,gDAA8B;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,uDAAqC;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,wEAAsD;AAAA,sEAAoD;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,gEAA8C;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,mEAAiD;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;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,8DAA4C;AAAA,oEAAkD;AAAA,0EAAwD;AAAA,yEAAuD;AAAA,0EAAwD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,qEAAkD"}
|
|
@@ -8,7 +8,9 @@ import { BusinessUserGroupController } from './controllers/business.user.group.c
|
|
|
8
8
|
import { ChoiceListController } from './controllers/choice.list.controller';
|
|
9
9
|
import { ChoiceTypeController } from './controllers/choice.type.controller';
|
|
10
10
|
import { CustomFieldController } from './controllers/custom.field.controller';
|
|
11
|
+
import { DashboardComponentController } from './controllers/dashboard.component.controller';
|
|
11
12
|
import { DashboardController } from './controllers/dashboard.controller';
|
|
13
|
+
import { DeveloperModeController } from './controllers/developer.mode.controller';
|
|
12
14
|
import { DownloadLogController } from './controllers/download.log.controller';
|
|
13
15
|
import { GroupMemberController } from './controllers/group.member.controller';
|
|
14
16
|
import { GroupRoleController } from './controllers/group.role.controller';
|
|
@@ -22,6 +24,8 @@ import { UserPreferenceController } from './controllers/user.preference.controll
|
|
|
22
24
|
import { AccessBusinessParamDto } from './dtos/access.business.param.dto';
|
|
23
25
|
import { AddBusinessPreferenceDto } from './dtos/add.business.preference.dto';
|
|
24
26
|
import { AddConversationDto } from './dtos/add.conversation.dto';
|
|
27
|
+
import { AddDashboardComponentDto } from './dtos/add.dashboard.component.dto';
|
|
28
|
+
import { AddDashboardComponentPropertiesDto } from './dtos/add.dashboard.component.properties.dto';
|
|
25
29
|
import { AddGroupMemberDto } from './dtos/add.group.member.dto';
|
|
26
30
|
import { AddListingPreferenceDto } from './dtos/add.listing.preference.dto';
|
|
27
31
|
import { AddRoleDto } from './dtos/add.role.dto';
|
|
@@ -33,6 +37,7 @@ import { CommonListFilterDto } from './dtos/common.list.filter.dto';
|
|
|
33
37
|
import { DateFilterDto } from './dtos/date.filter.dto';
|
|
34
38
|
import { DateRangeFilterDto } from './dtos/date.range.filter.dto';
|
|
35
39
|
import { DbFindDto } from './dtos/db.find.dto';
|
|
40
|
+
import { EditQueryDto } from './dtos/edit.query.dto';
|
|
36
41
|
import { GchatPostingPayloadDto } from './dtos/gchat.posting.payload.dto';
|
|
37
42
|
import { ListResponseDto } from './dtos/list.response.dto';
|
|
38
43
|
import { ListResponseFormatDto } from './dtos/list.response.format.dto';
|
|
@@ -167,6 +172,7 @@ import { ProcessCommonList } from './libraries/process.common.list';
|
|
|
167
172
|
import { ProcessConversationData } from './libraries/process.conversation.data';
|
|
168
173
|
import { ProcessCustomFieldCreation } from './libraries/process.custom.field.creation';
|
|
169
174
|
import { ProcessCustomFieldList } from './libraries/process.custom.field.list';
|
|
175
|
+
import { ProcessDashboardComponent } from './libraries/process.dashboard.component';
|
|
170
176
|
import { ProcessDashboardReport } from './libraries/process.dashboard.report';
|
|
171
177
|
import { ProcessDateFilter } from './libraries/process.date.filter';
|
|
172
178
|
import { ProcessDbFind } from './libraries/process.db.find';
|
|
@@ -277,12 +283,12 @@ import { WhatsappMessageSubscriber } from './subscribers/whatsapp.message.subscr
|
|
|
277
283
|
import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subscriber';
|
|
278
284
|
declare const es6Classes: {
|
|
279
285
|
commands: (typeof WebhookPollCommand)[];
|
|
280
|
-
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CustomFieldController | typeof DashboardController | typeof DownloadLogController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserNotificationController | typeof UserPreferenceController)[];
|
|
281
|
-
dtos: (typeof SlackTemplateAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof SlackPostingPayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof AccessBusinessParamDto | typeof DbFindDto | typeof AddBusinessPreferenceDto | typeof ModifyCustomFieldStatusDto | typeof StringSearchDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddConversationDto | typeof AddTagDto | typeof ProcessListingPayloadDto)[];
|
|
286
|
+
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CustomFieldController | typeof DashboardComponentController | typeof DashboardController | typeof DeveloperModeController | typeof DownloadLogController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserNotificationController | typeof UserPreferenceController)[];
|
|
287
|
+
dtos: (typeof SlackTemplateAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof SlackPostingPayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof AccessBusinessParamDto | typeof DbFindDto | typeof AddBusinessPreferenceDto | typeof ModifyCustomFieldStatusDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddConversationDto | typeof AddTagDto | typeof ProcessListingPayloadDto)[];
|
|
282
288
|
entities: (typeof AccessBusinessEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackIntegrationEntity | typeof SlackMessageEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof BusinessEmailEntity | typeof BusinessGroupRoleEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof ConversationEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof EmailRecipientEntity | typeof EmailMessageEntity | typeof GroupMemberEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookSlugEntity)[];
|
|
283
289
|
enums: (typeof NotificationTypeEnum | typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum)[];
|
|
284
290
|
jobs: (typeof AccessTestJob | typeof ApiAccountJob | typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserRoleJob | 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 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 ProductJob | 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 WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob)[];
|
|
285
|
-
libraries: (typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof SendWhatsappMessageNotification | typeof ProcessListingCsvFile | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessReportData | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessApiAccountList | typeof ProcessDbFind | typeof ProcessBulkUploadList | typeof ProcessBulkUploadItemList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessPreferenceData | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof ProcessUserNotificationList | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessTestList)[];
|
|
291
|
+
libraries: (typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof SendWhatsappMessageNotification | typeof ProcessListingCsvFile | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessReportData | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessApiAccountList | typeof ProcessDbFind | typeof ProcessBulkUploadList | typeof ProcessBulkUploadItemList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessPreferenceData | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof ProcessUserNotificationList | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessTestList)[];
|
|
286
292
|
middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware)[];
|
|
287
293
|
services: (typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof SlabsService | typeof AccessBusinessService | typeof ListingService | typeof WebhookService | typeof AuditLogService | typeof ListingPreferenceService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof UtilityService | typeof CustomFieldService | typeof ApiAccountService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof LoadEntityService | typeof UserNotificationService | typeof UserPreferenceService)[];
|
|
288
294
|
subscribers: (typeof ApiAccountSubscriber | typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | 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 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 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 WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber)[];
|
|
@@ -10,7 +10,9 @@ const business_user_group_controller_1 = require("./controllers/business.user.gr
|
|
|
10
10
|
const choice_list_controller_1 = require("./controllers/choice.list.controller");
|
|
11
11
|
const choice_type_controller_1 = require("./controllers/choice.type.controller");
|
|
12
12
|
const custom_field_controller_1 = require("./controllers/custom.field.controller");
|
|
13
|
+
const dashboard_component_controller_1 = require("./controllers/dashboard.component.controller");
|
|
13
14
|
const dashboard_controller_1 = require("./controllers/dashboard.controller");
|
|
15
|
+
const developer_mode_controller_1 = require("./controllers/developer.mode.controller");
|
|
14
16
|
const download_log_controller_1 = require("./controllers/download.log.controller");
|
|
15
17
|
const group_member_controller_1 = require("./controllers/group.member.controller");
|
|
16
18
|
const group_role_controller_1 = require("./controllers/group.role.controller");
|
|
@@ -29,6 +31,8 @@ const add_choice_list_dto_1 = require("./dtos/add.choice.list.dto");
|
|
|
29
31
|
const add_choice_type_dto_1 = require("./dtos/add.choice.type.dto");
|
|
30
32
|
const add_conversation_dto_1 = require("./dtos/add.conversation.dto");
|
|
31
33
|
const add_custom_field_dto_1 = require("./dtos/add.custom.field.dto");
|
|
34
|
+
const add_dashboard_component_dto_1 = require("./dtos/add.dashboard.component.dto");
|
|
35
|
+
const add_dashboard_component_properties_dto_1 = require("./dtos/add.dashboard.component.properties.dto");
|
|
32
36
|
const add_group_member_dto_1 = require("./dtos/add.group.member.dto");
|
|
33
37
|
const add_listing_preference_dto_1 = require("./dtos/add.listing.preference.dto");
|
|
34
38
|
const add_role_dto_1 = require("./dtos/add.role.dto");
|
|
@@ -63,8 +67,10 @@ const date_filter_dto_1 = require("./dtos/date.filter.dto");
|
|
|
63
67
|
const date_range_filter_dto_1 = require("./dtos/date.range.filter.dto");
|
|
64
68
|
const db_find_dto_1 = require("./dtos/db.find.dto");
|
|
65
69
|
const db_find_options_dto_1 = require("./dtos/db.find.options.dto");
|
|
70
|
+
const developer_mode_set_listing_dto_1 = require("./dtos/developer.mode.set.listing.dto");
|
|
66
71
|
const download_log_attributes_dto_1 = require("./dtos/download.log.attributes.dto");
|
|
67
72
|
const download_log_list_filter_dto_1 = require("./dtos/download.log.list.filter.dto");
|
|
73
|
+
const edit_query_dto_1 = require("./dtos/edit.query.dto");
|
|
68
74
|
const email_attachment_attributes_dto_1 = require("./dtos/email.attachment.attributes.dto");
|
|
69
75
|
const email_message_attributes_dto_1 = require("./dtos/email.message.attributes.dto");
|
|
70
76
|
const email_notification_payload_dto_1 = require("./dtos/email.notification.payload.dto");
|
|
@@ -273,6 +279,7 @@ const process_common_list_1 = require("./libraries/process.common.list");
|
|
|
273
279
|
const process_conversation_data_1 = require("./libraries/process.conversation.data");
|
|
274
280
|
const process_custom_field_creation_1 = require("./libraries/process.custom.field.creation");
|
|
275
281
|
const process_custom_field_list_1 = require("./libraries/process.custom.field.list");
|
|
282
|
+
const process_dashboard_component_1 = require("./libraries/process.dashboard.component");
|
|
276
283
|
const process_dashboard_report_1 = require("./libraries/process.dashboard.report");
|
|
277
284
|
const process_date_filter_1 = require("./libraries/process.date.filter");
|
|
278
285
|
const process_db_find_1 = require("./libraries/process.db.find");
|
|
@@ -393,7 +400,9 @@ const es6Classes = {
|
|
|
393
400
|
choice_list_controller_1.ChoiceListController,
|
|
394
401
|
choice_type_controller_1.ChoiceTypeController,
|
|
395
402
|
custom_field_controller_1.CustomFieldController,
|
|
403
|
+
dashboard_component_controller_1.DashboardComponentController,
|
|
396
404
|
dashboard_controller_1.DashboardController,
|
|
405
|
+
developer_mode_controller_1.DeveloperModeController,
|
|
397
406
|
download_log_controller_1.DownloadLogController,
|
|
398
407
|
group_member_controller_1.GroupMemberController,
|
|
399
408
|
group_role_controller_1.GroupRoleController,
|
|
@@ -414,6 +423,8 @@ const es6Classes = {
|
|
|
414
423
|
add_choice_type_dto_1.AddChoiceTypeDto,
|
|
415
424
|
add_conversation_dto_1.AddConversationDto,
|
|
416
425
|
add_custom_field_dto_1.AddCustomFieldDto,
|
|
426
|
+
add_dashboard_component_dto_1.AddDashboardComponentDto,
|
|
427
|
+
add_dashboard_component_properties_dto_1.AddDashboardComponentPropertiesDto,
|
|
417
428
|
add_group_member_dto_1.AddGroupMemberDto,
|
|
418
429
|
add_listing_preference_dto_1.AddListingPreferenceDto,
|
|
419
430
|
add_role_dto_1.AddRoleDto,
|
|
@@ -448,8 +459,10 @@ const es6Classes = {
|
|
|
448
459
|
date_range_filter_dto_1.DateRangeFilterDto,
|
|
449
460
|
db_find_dto_1.DbFindDto,
|
|
450
461
|
db_find_options_dto_1.DbFindOptionsDto,
|
|
462
|
+
developer_mode_set_listing_dto_1.DeveloperModeSetListingDto,
|
|
451
463
|
download_log_attributes_dto_1.DownloadLogAttributesDto,
|
|
452
464
|
download_log_list_filter_dto_1.DownloadLogListFilterDto,
|
|
465
|
+
edit_query_dto_1.EditQueryDto,
|
|
453
466
|
email_attachment_attributes_dto_1.EmailAttachmentAttributesDto,
|
|
454
467
|
email_message_attributes_dto_1.EmailMessageAttributesDto,
|
|
455
468
|
email_notification_payload_dto_1.EmailNotificationPayloadDto,
|
|
@@ -662,6 +675,7 @@ const es6Classes = {
|
|
|
662
675
|
process_conversation_data_1.ProcessConversationData,
|
|
663
676
|
process_custom_field_creation_1.ProcessCustomFieldCreation,
|
|
664
677
|
process_custom_field_list_1.ProcessCustomFieldList,
|
|
678
|
+
process_dashboard_component_1.ProcessDashboardComponent,
|
|
665
679
|
process_dashboard_report_1.ProcessDashboardReport,
|
|
666
680
|
process_date_filter_1.ProcessDateFilter,
|
|
667
681
|
process_db_find_1.ProcessDbFind,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es6.classes.js","sourceRoot":"","sources":["../../src/access/es6.classes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"es6.classes.js","sourceRoot":"","sources":["../../src/access/es6.classes.ts"],"names":[],"mappings":"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"}
|
|
@@ -27,7 +27,7 @@ let EmailRecipientJob = class EmailRecipientJob extends nestjs_utility_services_
|
|
|
27
27
|
return;
|
|
28
28
|
const count = await email_recipient_entity_1.EmailRecipientEntity.count({ where: { message_id: evt.entity.message_id } });
|
|
29
29
|
const r = await email_message_entity_1.EmailMessageEntity.first(evt.entity.message_id);
|
|
30
|
-
r.attributes = { ...r.attributes,
|
|
30
|
+
r.attributes = { ...r.attributes, recipients_count: count };
|
|
31
31
|
await r.save();
|
|
32
32
|
}
|
|
33
33
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"email.recipient.job.js","sourceRoot":"","sources":["../../../src/access/jobs/email.recipient.job.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAAmG;AACnG,+EAA0E;AAC1E,2EAAsE;AAG/D,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,mCAAS;IAC5C,YAA+B,YAA0B;QACrD,KAAK,CAAC,kCAAkC,CAAC,CAAC;QADf,iBAAY,GAAZ,YAAY,CAAc;IAEzD,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,GAA2C;QACpD,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC;IACjC,CAAC;IAEO,KAAK,CAAC,kBAAkB,CAAC,GAA2C;QACxE,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC;YAAE,OAAO;QACnC,MAAM,KAAK,GAAG,MAAM,6CAAoB,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,EAAE,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;QAEjG,MAAM,CAAC,GAAG,MAAM,yCAAkB,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;QAEhE,CAAC,CAAC,UAAU,GAAG,EAAE,GAAG,CAAC,CAAC,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"email.recipient.job.js","sourceRoot":"","sources":["../../../src/access/jobs/email.recipient.job.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAAmG;AACnG,+EAA0E;AAC1E,2EAAsE;AAG/D,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,mCAAS;IAC5C,YAA+B,YAA0B;QACrD,KAAK,CAAC,kCAAkC,CAAC,CAAC;QADf,iBAAY,GAAZ,YAAY,CAAc;IAEzD,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,GAA2C;QACpD,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC;IACjC,CAAC;IAEO,KAAK,CAAC,kBAAkB,CAAC,GAA2C;QACxE,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC;YAAE,OAAO;QACnC,MAAM,KAAK,GAAG,MAAM,6CAAoB,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,EAAE,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;QAEjG,MAAM,CAAC,GAAG,MAAM,yCAAkB,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;QAEhE,CAAC,CAAC,UAAU,GAAG,EAAE,GAAG,CAAC,CAAC,UAAU,EAAE,gBAAgB,EAAE,KAAK,EAAE,CAAC;QAE5D,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC;IACnB,CAAC;CACJ,CAAA;AAnBY,8CAAiB;4BAAjB,iBAAiB;IAD7B,IAAA,mBAAU,GAAE;qCAEoC,sCAAY;GADhD,iBAAiB,CAmB7B"}
|
|
@@ -16,6 +16,7 @@ export * from './process.common.list';
|
|
|
16
16
|
export * from './process.conversation.data';
|
|
17
17
|
export * from './process.custom.field.creation';
|
|
18
18
|
export * from './process.custom.field.list';
|
|
19
|
+
export * from './process.dashboard.component';
|
|
19
20
|
export * from './process.dashboard.report';
|
|
20
21
|
export * from './process.date.filter';
|
|
21
22
|
export * from './process.db.find';
|
|
@@ -32,6 +32,7 @@ __exportStar(require("./process.common.list"), exports);
|
|
|
32
32
|
__exportStar(require("./process.conversation.data"), exports);
|
|
33
33
|
__exportStar(require("./process.custom.field.creation"), exports);
|
|
34
34
|
__exportStar(require("./process.custom.field.list"), exports);
|
|
35
|
+
__exportStar(require("./process.dashboard.component"), exports);
|
|
35
36
|
__exportStar(require("./process.dashboard.report"), exports);
|
|
36
37
|
__exportStar(require("./process.date.filter"), exports);
|
|
37
38
|
__exportStar(require("./process.db.find"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,yEAAuD;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,4DAA0C;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,uEAAqD;AAAA,4DAA0C;AAAA,+DAA4C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,yEAAuD;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,4DAA0C;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,uEAAqD;AAAA,4DAA0C;AAAA,+DAA4C"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AddDashboardComponentDto } from '../dtos/add.dashboard.component.dto';
|
|
2
|
+
import { DashboardEntity } from '../entities/dashboard.entity';
|
|
3
|
+
export declare class ProcessDashboardComponent {
|
|
4
|
+
process(payload: AddDashboardComponentDto): Promise<DashboardEntity>;
|
|
5
|
+
private deleteDashboard;
|
|
6
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ProcessDashboardComponent = void 0;
|
|
4
|
+
const typeorm_1 = require("typeorm");
|
|
5
|
+
const dashboard_component_entity_1 = require("../entities/dashboard.component.entity");
|
|
6
|
+
const dashboard_entity_1 = require("../entities/dashboard.entity");
|
|
7
|
+
class ProcessDashboardComponent {
|
|
8
|
+
async process(payload) {
|
|
9
|
+
const dashboard = await dashboard_entity_1.DashboardEntity.first(payload.dashboard_id);
|
|
10
|
+
if (!dashboard)
|
|
11
|
+
return;
|
|
12
|
+
const ids = [];
|
|
13
|
+
for await (const component of payload.components) {
|
|
14
|
+
let dc = await dashboard_component_entity_1.DashboardComponentEntity.create({
|
|
15
|
+
dashboard_id: payload?.dashboard_id,
|
|
16
|
+
custom_report_id: component?.custom_report_id,
|
|
17
|
+
});
|
|
18
|
+
if (component?.id)
|
|
19
|
+
dc = await dashboard_component_entity_1.DashboardComponentEntity.first(component?.id);
|
|
20
|
+
dc.properties = component.properties;
|
|
21
|
+
dc.active = component?.active ?? true;
|
|
22
|
+
dc.identifier = component.identifier;
|
|
23
|
+
await dc.save();
|
|
24
|
+
if (dc.active)
|
|
25
|
+
ids.push(dc.id);
|
|
26
|
+
}
|
|
27
|
+
await this.deleteDashboard(ids, payload?.dashboard_id);
|
|
28
|
+
return dashboard;
|
|
29
|
+
}
|
|
30
|
+
async deleteDashboard(ids, dashboard_id) {
|
|
31
|
+
const unwantedComponents = await dashboard_component_entity_1.DashboardComponentEntity.find({ where: { id: (0, typeorm_1.Not)((0, typeorm_1.In)(ids)), dashboard_id: dashboard_id } });
|
|
32
|
+
for await (const unwantedComponent of unwantedComponents) {
|
|
33
|
+
const r = await dashboard_component_entity_1.DashboardComponentEntity.first(unwantedComponent?.id);
|
|
34
|
+
await r.softDelete();
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.ProcessDashboardComponent = ProcessDashboardComponent;
|
|
39
|
+
//# sourceMappingURL=process.dashboard.component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"process.dashboard.component.js","sourceRoot":"","sources":["../../../src/access/libraries/process.dashboard.component.ts"],"names":[],"mappings":";;;AAAA,qCAAkC;AAElC,uFAAkF;AAClF,mEAA+D;AAE/D,MAAa,yBAAyB;IAWlC,KAAK,CAAC,OAAO,CAAC,OAAiC;QAC3C,MAAM,SAAS,GAAG,MAAM,kCAAe,CAAC,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;QACpE,IAAI,CAAC,SAAS;YAAE,OAAO;QAEvB,MAAM,GAAG,GAAG,EAAE,CAAC;QACf,IAAI,KAAK,EAAE,MAAM,SAAS,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;YAC/C,IAAI,EAAE,GAAG,MAAM,qDAAwB,CAAC,MAAM,CAAC;gBAC3C,YAAY,EAAE,OAAO,EAAE,YAAY;gBACnC,gBAAgB,EAAE,SAAS,EAAE,gBAAgB;aAChD,CAAC,CAAC;YAEH,IAAI,SAAS,EAAE,EAAE;gBAAE,EAAE,GAAG,MAAM,qDAAwB,CAAC,KAAK,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;YAE5E,EAAE,CAAC,UAAU,GAAG,SAAS,CAAC,UAAU,CAAC;YACrC,EAAE,CAAC,MAAM,GAAG,SAAS,EAAE,MAAM,IAAI,IAAI,CAAC;YACtC,EAAE,CAAC,UAAU,GAAG,SAAS,CAAC,UAAU,CAAC;YAErC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;YAChB,IAAI,EAAE,CAAC,MAAM;gBAAE,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;QACnC,CAAC;QAED,MAAM,IAAI,CAAC,eAAe,CAAC,GAAG,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC;QAEvD,OAAO,SAAS,CAAC;IACrB,CAAC;IASO,KAAK,CAAC,eAAe,CAAC,GAAa,EAAE,YAAoB;QAC7D,MAAM,kBAAkB,GAAG,MAAM,qDAAwB,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,IAAA,aAAG,EAAC,IAAA,YAAE,EAAC,GAAG,CAAC,CAAC,EAAE,YAAY,EAAE,YAAY,EAAE,EAAE,CAAC,CAAC;QAE5H,IAAI,KAAK,EAAE,MAAM,iBAAiB,IAAI,kBAAkB,EAAE,CAAC;YACvD,MAAM,CAAC,GAAG,MAAM,qDAAwB,CAAC,KAAK,CAAC,iBAAiB,EAAE,EAAE,CAAC,CAAC;YACtE,MAAM,CAAC,CAAC,UAAU,EAAE,CAAC;QACzB,CAAC;IACL,CAAC;CACJ;AApDD,8DAoDC"}
|
package/package.json
CHANGED