@servicelabsco/slabs-access-manager 0.1.55 → 0.1.57
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/business.user.group.controller.d.ts +26 -0
- package/dist/access/controllers/business.user.group.controller.js +139 -0
- package/dist/access/controllers/business.user.group.controller.js.map +1 -0
- package/dist/access/controllers/group.member.controller.d.ts +21 -0
- package/dist/access/controllers/group.member.controller.js +160 -0
- package/dist/access/controllers/group.member.controller.js.map +1 -0
- package/dist/access/controllers/group.role.controller.d.ts +23 -0
- package/dist/access/controllers/group.role.controller.js +118 -0
- package/dist/access/controllers/group.role.controller.js.map +1 -0
- package/dist/access/controllers/index.d.ts +3 -0
- package/dist/access/controllers/index.js +3 -0
- package/dist/access/controllers/index.js.map +1 -1
- package/dist/access/dtos/add.business.user.group.dto.d.ts +6 -0
- package/dist/access/dtos/add.business.user.group.dto.js +40 -0
- package/dist/access/dtos/add.business.user.group.dto.js.map +1 -0
- package/dist/access/dtos/add.group.member.dto.d.ts +3 -0
- package/dist/access/dtos/add.group.member.dto.js +24 -0
- package/dist/access/dtos/add.group.member.dto.js.map +1 -0
- package/dist/access/dtos/add.role.dto.d.ts +3 -0
- package/dist/access/dtos/add.role.dto.js +24 -0
- package/dist/access/dtos/add.role.dto.js.map +1 -0
- package/dist/access/dtos/business.email.attributes.dto.d.ts +1 -0
- package/dist/access/dtos/business.email.attributes.dto.js +17 -0
- package/dist/access/dtos/business.email.attributes.dto.js.map +1 -1
- package/dist/access/dtos/business.param.dto.d.ts +7 -0
- package/dist/access/dtos/business.param.dto.js +53 -0
- package/dist/access/dtos/business.param.dto.js.map +1 -0
- package/dist/access/dtos/business.user.group.list.filter.dto.d.ts +4 -0
- package/dist/access/dtos/business.user.group.list.filter.dto.js +25 -0
- package/dist/access/dtos/business.user.group.list.filter.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 +6 -0
- package/dist/access/dtos/common.list.filter.dto.js.map +1 -1
- package/dist/access/dtos/db.find.dto.d.ts +4 -0
- package/dist/access/dtos/db.find.dto.js +25 -0
- package/dist/access/dtos/db.find.dto.js.map +1 -0
- package/dist/access/dtos/db.find.options.dto.d.ts +11 -0
- package/dist/access/dtos/db.find.options.dto.js +60 -0
- package/dist/access/dtos/db.find.options.dto.js.map +1 -0
- package/dist/access/dtos/group.member.list.filter.dto.d.ts +3 -0
- package/dist/access/dtos/group.member.list.filter.dto.js +8 -0
- package/dist/access/dtos/group.member.list.filter.dto.js.map +1 -0
- package/dist/access/dtos/group.role.list.filter.dto.d.ts +4 -0
- package/dist/access/dtos/group.role.list.filter.dto.js +25 -0
- package/dist/access/dtos/group.role.list.filter.dto.js.map +1 -0
- package/dist/access/dtos/index.d.ts +9 -0
- package/dist/access/dtos/index.js +9 -0
- package/dist/access/dtos/index.js.map +1 -1
- package/dist/access/es6.classes.d.ts +16 -5
- package/dist/access/es6.classes.js +34 -0
- package/dist/access/es6.classes.js.map +1 -1
- 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.business.user.group.list.d.ts +20 -0
- package/dist/access/libraries/process.business.user.group.list.js +35 -0
- package/dist/access/libraries/process.business.user.group.list.js.map +1 -0
- package/dist/access/libraries/process.common.list.d.ts +7 -0
- package/dist/access/libraries/process.common.list.js +44 -0
- package/dist/access/libraries/process.common.list.js.map +1 -1
- package/dist/access/libraries/process.db.find.d.ts +15 -0
- package/dist/access/libraries/process.db.find.js +67 -0
- package/dist/access/libraries/process.db.find.js.map +1 -0
- package/dist/access/libraries/process.group.member.list.d.ts +22 -0
- package/dist/access/libraries/process.group.member.list.js +36 -0
- package/dist/access/libraries/process.group.member.list.js.map +1 -0
- package/dist/access/libraries/process.group.role.list.d.ts +20 -0
- package/dist/access/libraries/process.group.role.list.js +34 -0
- package/dist/access/libraries/process.group.role.list.js.map +1 -0
- package/dist/access/libraries/process.user.group.creation.d.ts +13 -0
- package/dist/access/libraries/process.user.group.creation.js +39 -0
- package/dist/access/libraries/process.user.group.creation.js.map +1 -0
- package/package.json +1 -1
|
@@ -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.AddRoleDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class AddRoleDto {
|
|
16
|
+
}
|
|
17
|
+
exports.AddRoleDto = AddRoleDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
20
|
+
(0, class_validator_1.IsNumber)(),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", Number)
|
|
23
|
+
], AddRoleDto.prototype, "role_id", void 0);
|
|
24
|
+
//# sourceMappingURL=add.role.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.role.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/add.role.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAuD;AAEvD,MAAa,UAAU;CAKtB;AALD,gCAKC;AADG;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;2CACO"}
|
|
@@ -1,8 +1,25 @@
|
|
|
1
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
|
+
};
|
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
12
|
exports.BusinessEmailAttributesDto = void 0;
|
|
4
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");
|
|
5
16
|
class BusinessEmailAttributesDto extends nestjs_utility_services_1.CommonAttributesDto {
|
|
6
17
|
}
|
|
7
18
|
exports.BusinessEmailAttributesDto = BusinessEmailAttributesDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsNumber)(),
|
|
21
|
+
(0, class_validator_1.IsOptional)(),
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], BusinessEmailAttributesDto.prototype, "unread_count", void 0);
|
|
8
25
|
//# sourceMappingURL=business.email.attributes.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"business.email.attributes.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/business.email.attributes.dto.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"business.email.attributes.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/business.email.attributes.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAA6E;AAC7E,yDAA2C;AAC3C,qDAAuD;AACvD,MAAa,0BAA2B,SAAQ,6CAAmB;CAKlE;AALD,gEAKC;AADG;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;gEACa"}
|
|
@@ -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.BusinessParamDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class BusinessParamDto {
|
|
16
|
+
}
|
|
17
|
+
exports.BusinessParamDto = BusinessParamDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsOptional)(),
|
|
20
|
+
(0, class_transformer_1.Type)(() => Number),
|
|
21
|
+
(0, class_validator_1.IsNumber)(),
|
|
22
|
+
(0, class_validator_1.IsPositive)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], BusinessParamDto.prototype, "id", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsOptional)(),
|
|
27
|
+
(0, class_transformer_1.Type)(() => Number),
|
|
28
|
+
(0, class_validator_1.IsNumber)(),
|
|
29
|
+
(0, class_validator_1.IsPositive)(),
|
|
30
|
+
__metadata("design:type", Number)
|
|
31
|
+
], BusinessParamDto.prototype, "second_id", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.IsOptional)(),
|
|
34
|
+
(0, class_transformer_1.Type)(() => Number),
|
|
35
|
+
(0, class_validator_1.IsNumber)(),
|
|
36
|
+
(0, class_validator_1.IsPositive)(),
|
|
37
|
+
__metadata("design:type", Number)
|
|
38
|
+
], BusinessParamDto.prototype, "account_id", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, class_validator_1.IsOptional)(),
|
|
41
|
+
(0, class_transformer_1.Type)(() => Number),
|
|
42
|
+
(0, class_validator_1.IsNumber)(),
|
|
43
|
+
(0, class_validator_1.Max)(10000000),
|
|
44
|
+
(0, class_validator_1.IsPositive)(),
|
|
45
|
+
__metadata("design:type", Number)
|
|
46
|
+
], BusinessParamDto.prototype, "businessId", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_validator_1.IsOptional)(),
|
|
49
|
+
(0, class_transformer_1.Expose)(),
|
|
50
|
+
(0, class_validator_1.Length)(3, 10000),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], BusinessParamDto.prototype, "slug", void 0);
|
|
53
|
+
//# sourceMappingURL=business.param.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"business.param.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/business.param.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,qDAAgF;AAEhF,MAAa,gBAAgB;CA8B5B;AA9BD,4CA8BC;AAzBG;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4CACD;AAMZ;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACM;AAMnB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oDACO;AAOpB;IALC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,QAAQ,CAAC;IACb,IAAA,4BAAU,GAAE;;oDACO;AAKpB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;IACR,IAAA,wBAAM,EAAC,CAAC,EAAE,KAAK,CAAC;;8CACH"}
|
|
@@ -0,0 +1,25 @@
|
|
|
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.BusinessUserGroupListFilterDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const common_list_filter_dto_1 = require("./common.list.filter.dto");
|
|
16
|
+
class BusinessUserGroupListFilterDto extends common_list_filter_dto_1.CommonListFilterDto {
|
|
17
|
+
}
|
|
18
|
+
exports.BusinessUserGroupListFilterDto = BusinessUserGroupListFilterDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsOptional)(),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
(0, class_validator_1.IsBoolean)(),
|
|
23
|
+
__metadata("design:type", Boolean)
|
|
24
|
+
], BusinessUserGroupListFilterDto.prototype, "active", void 0);
|
|
25
|
+
//# sourceMappingURL=business.user.group.list.filter.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"business.user.group.list.filter.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/business.user.group.list.filter.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwD;AACxD,qEAA+D;AAE/D,MAAa,8BAA+B,SAAQ,4CAAmB;CAKtE;AALD,wEAKC;AADG;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;IACR,IAAA,2BAAS,GAAE;;8DACI"}
|
|
@@ -44,6 +44,12 @@ __decorate([
|
|
|
44
44
|
(0, class_transformer_1.Expose)(),
|
|
45
45
|
__metadata("design:type", Boolean)
|
|
46
46
|
], CommonListFilterDto.prototype, "stats", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_validator_1.IsOptional)(),
|
|
49
|
+
(0, class_validator_1.IsBoolean)(),
|
|
50
|
+
(0, class_transformer_1.Expose)(),
|
|
51
|
+
__metadata("design:type", Boolean)
|
|
52
|
+
], CommonListFilterDto.prototype, "active", void 0);
|
|
47
53
|
__decorate([
|
|
48
54
|
(0, class_validator_1.IsOptional)(),
|
|
49
55
|
(0, class_validator_1.IsBoolean)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.list.filter.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/common.list.filter.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,qDAA4G;AAC5G,uDAAkD;AAClD,yEAAmE;AACnE,uEAAiE;AAEjE,MAAa,mBAAmB;
|
|
1
|
+
{"version":3,"file":"common.list.filter.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/common.list.filter.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,qDAA4G;AAC5G,uDAAkD;AAClD,yEAAmE;AACnE,uEAAiE;AAEjE,MAAa,mBAAmB;CAqE/B;AArED,kDAqEC;AAhEG;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,2BAAS,EAAC,CAAC,CAAC;IACZ,IAAA,0BAAM,GAAE;;mDACO;AAKhB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;kDACM;AAMf;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;IACN,IAAA,0BAAM,GAAE;;iDACK;AAKd;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;IACX,IAAA,0BAAM,GAAE;;kDACO;AAKhB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;IACX,IAAA,0BAAM,GAAE;;mDACQ;AAKjB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;IACX,IAAA,0BAAM,GAAE;;uDACY;AAKrB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;IAChB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gDAAqB,CAAC;8BACzB,gDAAqB;mDAAC;AAM/B;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;IAChB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAa,CAAC;IACzB,IAAA,0BAAM,GAAE;8BACF,+BAAa;iDAAC;AAMrB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;IAChB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8CAAoB,CAAC;IAChC,IAAA,0BAAM,GAAE;8BACA,8CAAoB;mDAAC;AAI9B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;sDAC0B;AAInC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;yDACa;AAItB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;yDACa;AAItB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;2DACe;AAIxB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;oDACQ"}
|
|
@@ -0,0 +1,25 @@
|
|
|
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.DbFindDto = 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 DbFindDto extends nestjs_utility_services_1.StringSearchDto {
|
|
17
|
+
}
|
|
18
|
+
exports.DbFindDto = DbFindDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsBoolean)(),
|
|
21
|
+
(0, class_validator_1.IsOptional)(),
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", Boolean)
|
|
24
|
+
], DbFindDto.prototype, "active", void 0);
|
|
25
|
+
//# sourceMappingURL=db.find.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"db.find.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/db.find.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAyE;AACzE,yDAA2C;AAC3C,qDAAwD;AAExD,MAAa,SAAU,SAAQ,yCAAe;CAK7C;AALD,8BAKC;AADG;IAHC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;yCACQ"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DbFindDto } from './db.find.dto';
|
|
2
|
+
export declare class DbFindOptionsDto extends DbFindDto {
|
|
3
|
+
searchCompareKeys?: string[];
|
|
4
|
+
statusCompareKeys?: string[];
|
|
5
|
+
idsCompareKey?: string;
|
|
6
|
+
tableName?: string;
|
|
7
|
+
columns?: string[];
|
|
8
|
+
primaryCondition?: string;
|
|
9
|
+
order?: string;
|
|
10
|
+
active_key?: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
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.DbFindOptionsDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const db_find_dto_1 = require("./db.find.dto");
|
|
16
|
+
class DbFindOptionsDto extends db_find_dto_1.DbFindDto {
|
|
17
|
+
}
|
|
18
|
+
exports.DbFindOptionsDto = DbFindOptionsDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsOptional)(),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", Array)
|
|
23
|
+
], DbFindOptionsDto.prototype, "searchCompareKeys", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsOptional)(),
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
(0, class_validator_1.IsArray)(),
|
|
28
|
+
__metadata("design:type", Array)
|
|
29
|
+
], DbFindOptionsDto.prototype, "statusCompareKeys", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
(0, class_transformer_1.Expose)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], DbFindOptionsDto.prototype, "idsCompareKey", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
37
|
+
(0, class_transformer_1.Expose)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], DbFindOptionsDto.prototype, "tableName", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
42
|
+
(0, class_transformer_1.Expose)(),
|
|
43
|
+
__metadata("design:type", Array)
|
|
44
|
+
], DbFindOptionsDto.prototype, "columns", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
47
|
+
(0, class_transformer_1.Expose)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], DbFindOptionsDto.prototype, "primaryCondition", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
52
|
+
(0, class_transformer_1.Expose)(),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], DbFindOptionsDto.prototype, "order", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_validator_1.IsOptional)(),
|
|
57
|
+
(0, class_transformer_1.Expose)(),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], DbFindOptionsDto.prototype, "active_key", void 0);
|
|
60
|
+
//# sourceMappingURL=db.find.options.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"db.find.options.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/db.find.options.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAkE;AAClE,+CAA0C;AAE1C,MAAa,gBAAiB,SAAQ,uBAAS;CAiC9C;AAjCD,4CAiCC;AA9BG;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;2DACoB;AAK7B;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;IACR,IAAA,yBAAO,GAAE;;2DACmB;AAI7B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;uDACc;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;mDACU;AAInB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;iDACU;AAInB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;0DACiB;AAI1B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;+CACM;AAIf;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;oDACW"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GroupMemberListFilterDto = void 0;
|
|
4
|
+
const common_list_filter_dto_1 = require("./common.list.filter.dto");
|
|
5
|
+
class GroupMemberListFilterDto extends common_list_filter_dto_1.CommonListFilterDto {
|
|
6
|
+
}
|
|
7
|
+
exports.GroupMemberListFilterDto = GroupMemberListFilterDto;
|
|
8
|
+
//# sourceMappingURL=group.member.list.filter.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"group.member.list.filter.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/group.member.list.filter.dto.ts"],"names":[],"mappings":";;;AAAA,qEAA+D;AAE/D,MAAa,wBAAyB,SAAQ,4CAAmB;CAAG;AAApE,4DAAoE"}
|
|
@@ -0,0 +1,25 @@
|
|
|
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.GroupRoleListFilterDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const common_list_filter_dto_1 = require("./common.list.filter.dto");
|
|
16
|
+
class GroupRoleListFilterDto extends common_list_filter_dto_1.CommonListFilterDto {
|
|
17
|
+
}
|
|
18
|
+
exports.GroupRoleListFilterDto = GroupRoleListFilterDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsOptional)(),
|
|
21
|
+
(0, class_validator_1.IsNumber)(),
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], GroupRoleListFilterDto.prototype, "group_id", void 0);
|
|
25
|
+
//# sourceMappingURL=group.role.list.filter.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"group.role.list.filter.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/group.role.list.filter.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAuD;AACvD,qEAA+D;AAE/D,MAAa,sBAAuB,SAAQ,4CAAmB;CAK9D;AALD,wDAKC;AADG;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;wDACS"}
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
export * from './access.business.param.dto';
|
|
2
2
|
export * from './add.business.preference.dto';
|
|
3
|
+
export * from './add.business.user.group.dto';
|
|
3
4
|
export * from './add.conversation.dto';
|
|
5
|
+
export * from './add.group.member.dto';
|
|
4
6
|
export * from './add.listing.preference.dto';
|
|
7
|
+
export * from './add.role.dto';
|
|
5
8
|
export * from './add.scheduled.report.dto';
|
|
6
9
|
export * from './add.user.preference.dto';
|
|
7
10
|
export * from './business.email.attributes.dto';
|
|
11
|
+
export * from './business.param.dto';
|
|
8
12
|
export * from './business.preference.attributes.dto';
|
|
9
13
|
export * from './business.user.attributes.dto';
|
|
10
14
|
export * from './business.user.group.attributes.dto';
|
|
15
|
+
export * from './business.user.group.list.filter.dto';
|
|
11
16
|
export * from './business.user.role.attributes.dto';
|
|
12
17
|
export * from './child.menu.attributes.dto';
|
|
13
18
|
export * from './common.list.filter.dto';
|
|
@@ -17,13 +22,17 @@ export * from './dashboard.attributes.dto';
|
|
|
17
22
|
export * from './dashboard.component.attributes.dto';
|
|
18
23
|
export * from './date.filter.dto';
|
|
19
24
|
export * from './date.range.filter.dto';
|
|
25
|
+
export * from './db.find.dto';
|
|
26
|
+
export * from './db.find.options.dto';
|
|
20
27
|
export * from './download.log.attributes.dto';
|
|
21
28
|
export * from './download.log.list.filter.dto';
|
|
22
29
|
export * from './email.attachment.attributes.dto';
|
|
23
30
|
export * from './email.message.attributes.dto';
|
|
24
31
|
export * from './email.recipient.attributes.dto';
|
|
25
32
|
export * from './group.member.attributes.dto';
|
|
33
|
+
export * from './group.member.list.filter.dto';
|
|
26
34
|
export * from './group.role.attributes.dto';
|
|
35
|
+
export * from './group.role.list.filter.dto';
|
|
27
36
|
export * from './list.preference.attributes.dto';
|
|
28
37
|
export * from './list.response.dto';
|
|
29
38
|
export * from './list.response.format.dto';
|
|
@@ -16,14 +16,19 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./access.business.param.dto"), exports);
|
|
18
18
|
__exportStar(require("./add.business.preference.dto"), exports);
|
|
19
|
+
__exportStar(require("./add.business.user.group.dto"), exports);
|
|
19
20
|
__exportStar(require("./add.conversation.dto"), exports);
|
|
21
|
+
__exportStar(require("./add.group.member.dto"), exports);
|
|
20
22
|
__exportStar(require("./add.listing.preference.dto"), exports);
|
|
23
|
+
__exportStar(require("./add.role.dto"), exports);
|
|
21
24
|
__exportStar(require("./add.scheduled.report.dto"), exports);
|
|
22
25
|
__exportStar(require("./add.user.preference.dto"), exports);
|
|
23
26
|
__exportStar(require("./business.email.attributes.dto"), exports);
|
|
27
|
+
__exportStar(require("./business.param.dto"), exports);
|
|
24
28
|
__exportStar(require("./business.preference.attributes.dto"), exports);
|
|
25
29
|
__exportStar(require("./business.user.attributes.dto"), exports);
|
|
26
30
|
__exportStar(require("./business.user.group.attributes.dto"), exports);
|
|
31
|
+
__exportStar(require("./business.user.group.list.filter.dto"), exports);
|
|
27
32
|
__exportStar(require("./business.user.role.attributes.dto"), exports);
|
|
28
33
|
__exportStar(require("./child.menu.attributes.dto"), exports);
|
|
29
34
|
__exportStar(require("./common.list.filter.dto"), exports);
|
|
@@ -33,13 +38,17 @@ __exportStar(require("./dashboard.attributes.dto"), exports);
|
|
|
33
38
|
__exportStar(require("./dashboard.component.attributes.dto"), exports);
|
|
34
39
|
__exportStar(require("./date.filter.dto"), exports);
|
|
35
40
|
__exportStar(require("./date.range.filter.dto"), exports);
|
|
41
|
+
__exportStar(require("./db.find.dto"), exports);
|
|
42
|
+
__exportStar(require("./db.find.options.dto"), exports);
|
|
36
43
|
__exportStar(require("./download.log.attributes.dto"), exports);
|
|
37
44
|
__exportStar(require("./download.log.list.filter.dto"), exports);
|
|
38
45
|
__exportStar(require("./email.attachment.attributes.dto"), exports);
|
|
39
46
|
__exportStar(require("./email.message.attributes.dto"), exports);
|
|
40
47
|
__exportStar(require("./email.recipient.attributes.dto"), exports);
|
|
41
48
|
__exportStar(require("./group.member.attributes.dto"), exports);
|
|
49
|
+
__exportStar(require("./group.member.list.filter.dto"), exports);
|
|
42
50
|
__exportStar(require("./group.role.attributes.dto"), exports);
|
|
51
|
+
__exportStar(require("./group.role.list.filter.dto"), exports);
|
|
43
52
|
__exportStar(require("./list.preference.attributes.dto"), exports);
|
|
44
53
|
__exportStar(require("./list.response.dto"), exports);
|
|
45
54
|
__exportStar(require("./list.response.format.dto"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,gEAA8C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,sEAAoD;AAAA,8DAA4C;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,8DAA4C;AAAA,mEAAiD;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,wDAAsC;AAAA,6DAA2C;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,4DAA0C;AAAA,yEAAuD;AAAA,oEAAkD;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAqD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,kEAAgD;AAAA,uDAAqC;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,wEAAsD;AAAA,sEAAoD;AAAA,8DAA4C;AAAA,2DAAyC;AAAA,gEAA8C;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,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,0DAAwC;AAAA,+DAA6C;AAAA,4DAA0C;AAAA,yEAAuD;AAAA,oEAAkD;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAqD"}
|
|
@@ -1,27 +1,33 @@
|
|
|
1
1
|
import { AccessMenuController } from './controllers/access.menu.controller';
|
|
2
2
|
import { BusinessPreferenceController } from './controllers/business.preference.controller';
|
|
3
|
+
import { BusinessUserGroupController } from './controllers/business.user.group.controller';
|
|
3
4
|
import { DashboardController } from './controllers/dashboard.controller';
|
|
4
5
|
import { DownloadLogController } from './controllers/download.log.controller';
|
|
6
|
+
import { GroupMemberController } from './controllers/group.member.controller';
|
|
7
|
+
import { GroupRoleController } from './controllers/group.role.controller';
|
|
5
8
|
import { ListingController } from './controllers/listing.controller';
|
|
6
9
|
import { ListingPreferenceController } from './controllers/listing.preference.controller';
|
|
7
10
|
import { ScheduledReportController } from './controllers/scheduled.report.controller';
|
|
8
11
|
import { UserPreferenceController } from './controllers/user.preference.controller';
|
|
9
12
|
import { AccessBusinessParamDto } from './dtos/access.business.param.dto';
|
|
10
13
|
import { AddBusinessPreferenceDto } from './dtos/add.business.preference.dto';
|
|
14
|
+
import { AddBusinessUserGroupDto } from './dtos/add.business.user.group.dto';
|
|
11
15
|
import { AddConversationDto } from './dtos/add.conversation.dto';
|
|
16
|
+
import { AddGroupMemberDto } from './dtos/add.group.member.dto';
|
|
12
17
|
import { AddListingPreferenceDto } from './dtos/add.listing.preference.dto';
|
|
18
|
+
import { AddRoleDto } from './dtos/add.role.dto';
|
|
13
19
|
import { AddScheduledReportDto } from './dtos/add.scheduled.report.dto';
|
|
14
|
-
import { BusinessEmailAttributesDto } from './dtos/business.email.attributes.dto';
|
|
15
20
|
import { CommonListFilterDto } from './dtos/common.list.filter.dto';
|
|
16
21
|
import { DateFilterDto } from './dtos/date.filter.dto';
|
|
17
22
|
import { DateRangeFilterDto } from './dtos/date.range.filter.dto';
|
|
23
|
+
import { DbFindDto } from './dtos/db.find.dto';
|
|
24
|
+
import { GroupRoleAttributesDto } from './dtos/group.role.attributes.dto';
|
|
18
25
|
import { ListResponseDto } from './dtos/list.response.dto';
|
|
19
26
|
import { ListResponseFormatDto } from './dtos/list.response.format.dto';
|
|
20
27
|
import { NumberRangeFilterDto } from './dtos/number.range.filter.dto';
|
|
21
28
|
import { ProcessCommonListConfigDto } from './dtos/process.common.list.config.dto';
|
|
22
29
|
import { ProcessListingPayloadDto } from './dtos/process.listing.payload.dto';
|
|
23
30
|
import { StringSearchDto } from './dtos/string.search.dto';
|
|
24
|
-
import { TaggedUserDto } from './dtos/tagged.user.dto';
|
|
25
31
|
import { AccessBusinessEntity } from './entities/access.business.entity';
|
|
26
32
|
import { BusinessEmailEntity } from './entities/business.email.entity';
|
|
27
33
|
import { BusinessGroupRoleEntity } from './entities/business.group.role.entity';
|
|
@@ -87,13 +93,17 @@ import { WatchlistAssignmentJob } from './jobs/watchlist.assignment.job';
|
|
|
87
93
|
import { ConversationController } from './libraries/conversation.controller';
|
|
88
94
|
import { ProcessApplicationMenu } from './libraries/process.application.menu';
|
|
89
95
|
import { ProcessBusinessGroupRoleUpdation } from './libraries/process.business.group.role.updation';
|
|
96
|
+
import { ProcessBusinessUserGroupList } from './libraries/process.business.user.group.list';
|
|
90
97
|
import { ProcessBusinessUserRoleUpdate } from './libraries/process.business.user.role.update';
|
|
91
98
|
import { ProcessCommonList } from './libraries/process.common.list';
|
|
92
99
|
import { ProcessConversationData } from './libraries/process.conversation.data';
|
|
93
100
|
import { ProcessDashboardReport } from './libraries/process.dashboard.report';
|
|
94
101
|
import { ProcessDateFilter } from './libraries/process.date.filter';
|
|
102
|
+
import { ProcessDbFind } from './libraries/process.db.find';
|
|
95
103
|
import { ProcessDownloadLogList } from './libraries/process.download.log.list';
|
|
104
|
+
import { ProcessGroupMemberList } from './libraries/process.group.member.list';
|
|
96
105
|
import { ProcessGroupMemberUpdation } from './libraries/process.group.member.updation';
|
|
106
|
+
import { ProcessGroupRoleList } from './libraries/process.group.role.list';
|
|
97
107
|
import { ProcessListingCsvFile } from './libraries/process.listing.csv.file';
|
|
98
108
|
import { ProcessMenuDetails } from './libraries/process.menu.details';
|
|
99
109
|
import { ProcessPreferenceData } from './libraries/process.preference.data';
|
|
@@ -101,6 +111,7 @@ import { ProcessReportData } from './libraries/process.report.data';
|
|
|
101
111
|
import { ProcessScheduledReportData } from './libraries/process.scheduled.report.data';
|
|
102
112
|
import { ProcessScheduledReportList } from './libraries/process.scheduled.report.list';
|
|
103
113
|
import { ProcessTestList } from './libraries/process.test.list';
|
|
114
|
+
import { ProcessUserGroupCreation } from './libraries/process.user.group.creation';
|
|
104
115
|
import { BusinessMiddleware } from './middlewares/business.middleware';
|
|
105
116
|
import { AccessBusinessService } from './services/access.business.service';
|
|
106
117
|
import { BusinessPreferenceService } from './services/business.preference.service';
|
|
@@ -148,11 +159,11 @@ import { UserPreferenceSubscriber } from './subscribers/user.preference.subscrib
|
|
|
148
159
|
import { UserRoleSubscriber } from './subscribers/user.role.subscriber';
|
|
149
160
|
import { WatchlistAssignmentSubscriber } from './subscribers/watchlist.assignment.subscriber';
|
|
150
161
|
declare const es6Classes: {
|
|
151
|
-
controllers: (typeof AccessMenuController | typeof BusinessPreferenceController | typeof DashboardController | typeof DownloadLogController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof UserPreferenceController)[];
|
|
152
|
-
dtos: (typeof
|
|
162
|
+
controllers: (typeof AccessMenuController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof DashboardController | typeof DownloadLogController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof UserPreferenceController)[];
|
|
163
|
+
dtos: (typeof GroupRoleAttributesDto | typeof AccessBusinessParamDto | typeof AddBusinessPreferenceDto | typeof AddBusinessUserGroupDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof DbFindDto | typeof ListResponseDto | typeof AddListingPreferenceDto | typeof ProcessCommonListConfigDto | typeof ProcessListingPayloadDto | typeof StringSearchDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddConversationDto)[];
|
|
153
164
|
entities: (typeof AccessBusinessEntity | typeof BusinessEmailEntity | 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 EmailRecipientEntity | typeof EmailMessageEntity | typeof GroupMemberEntity | typeof PreferenceUserEntity | typeof ListingPreferenceEntity | typeof PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof ScheduledReportEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity)[];
|
|
154
165
|
jobs: (typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserRoleJob | typeof ChildMenuJob | typeof ConversationJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof EmailAttachmentJob | typeof EmailMessageJob | typeof EmailRecipientJob | 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 | typeof WatchlistAssignmentJob)[];
|
|
155
|
-
libraries: (typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof
|
|
166
|
+
libraries: (typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessListingCsvFile | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessBusinessUserGroupList | typeof ProcessDbFind | typeof ProcessUserGroupCreation | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessPreferenceData | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof ProcessReportData | typeof ProcessConversationData | typeof ConversationController | typeof ProcessTestList)[];
|
|
156
167
|
middlewares: (typeof BusinessMiddleware)[];
|
|
157
168
|
services: (typeof AccessBusinessService | typeof ListingService | typeof ListingPreferenceService | typeof BusinessUserRoleService | typeof UtilityService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof LoadEntityService | typeof UserPreferenceService)[];
|
|
158
169
|
subscribers: (typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof ChildMenuSubscriber | typeof ConversationSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | 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 | typeof WatchlistAssignmentSubscriber)[];
|