@servicelabsco/slabs-access-manager 0.1.93 → 0.1.94
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/index.d.ts +1 -0
- package/dist/access/controllers/index.js +1 -0
- package/dist/access/controllers/index.js.map +1 -1
- package/dist/access/controllers/tag.controller.d.ts +11 -0
- package/dist/access/controllers/tag.controller.js +52 -0
- package/dist/access/controllers/tag.controller.js.map +1 -0
- package/dist/access/dtos/add.business.user.group.dto.js +1 -1
- package/dist/access/dtos/add.tag.dto.d.ts +3 -0
- package/dist/access/dtos/add.tag.dto.js +23 -0
- package/dist/access/dtos/add.tag.dto.js.map +1 -0
- package/dist/access/dtos/index.d.ts +1 -0
- package/dist/access/dtos/index.js +1 -0
- package/dist/access/dtos/index.js.map +1 -1
- package/dist/access/es6.classes.d.ts +6 -4
- package/dist/access/es6.classes.js +6 -0
- package/dist/access/es6.classes.js.map +1 -1
- package/dist/access/libraries/common.tag.controller.d.ts +11 -0
- package/dist/access/libraries/common.tag.controller.js +75 -0
- package/dist/access/libraries/common.tag.controller.js.map +1 -0
- 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/package.json +1 -1
|
@@ -15,5 +15,6 @@ export * from './listing.controller';
|
|
|
15
15
|
export * from './listing.preference.controller';
|
|
16
16
|
export * from './scheduled.report.controller';
|
|
17
17
|
export * from './scheduled.report.item.controller';
|
|
18
|
+
export * from './tag.controller';
|
|
18
19
|
export * from './user.notification.controller';
|
|
19
20
|
export * from './user.preference.controller';
|
|
@@ -31,6 +31,7 @@ __exportStar(require("./listing.controller"), exports);
|
|
|
31
31
|
__exportStar(require("./listing.preference.controller"), exports);
|
|
32
32
|
__exportStar(require("./scheduled.report.controller"), exports);
|
|
33
33
|
__exportStar(require("./scheduled.report.item.controller"), exports);
|
|
34
|
+
__exportStar(require("./tag.controller"), exports);
|
|
34
35
|
__exportStar(require("./user.notification.controller"), exports);
|
|
35
36
|
__exportStar(require("./user.preference.controller"), exports);
|
|
36
37
|
//# sourceMappingURL=index.js.map
|
|
@@ -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,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,yDAAuC;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,uDAAqC;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,qEAAmD;AAAA,mDAAiC;AAAA,iEAA+C;AAAA,+DAA4C"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AccessBusinessService } from '../services/access.business.service';
|
|
2
|
+
import { SqlService } from '@servicelabsco/nestjs-utility-services';
|
|
3
|
+
import { StringSearchDto } from '../dtos/string.search.dto';
|
|
4
|
+
export declare class TagController {
|
|
5
|
+
private readonly accessBusinessService;
|
|
6
|
+
private readonly sqlService;
|
|
7
|
+
constructor(accessBusinessService: AccessBusinessService, sqlService: SqlService);
|
|
8
|
+
find(body: StringSearchDto & {
|
|
9
|
+
source_type: string;
|
|
10
|
+
}): Promise<any>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
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.TagController = void 0;
|
|
16
|
+
const common_1 = require("@nestjs/common");
|
|
17
|
+
const access_business_service_1 = require("../services/access.business.service");
|
|
18
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
19
|
+
let TagController = class TagController {
|
|
20
|
+
constructor(accessBusinessService, sqlService) {
|
|
21
|
+
this.accessBusinessService = accessBusinessService;
|
|
22
|
+
this.sqlService = sqlService;
|
|
23
|
+
}
|
|
24
|
+
async find(body) {
|
|
25
|
+
const business = await this.accessBusinessService.validateAccess();
|
|
26
|
+
const str = body.str;
|
|
27
|
+
const sourceType = body.source_type;
|
|
28
|
+
const limit = body.limit || 10;
|
|
29
|
+
let sql = `select name, count(1) from utl_tag_assignments a where a.deleted_at is null and a.business_id = ${business.id}`;
|
|
30
|
+
if (sourceType) {
|
|
31
|
+
sql = `${sql} and a.source_type = '${sourceType}'`;
|
|
32
|
+
}
|
|
33
|
+
if (str) {
|
|
34
|
+
sql = `${sql} and (a.name ilike '%${str}%')`;
|
|
35
|
+
}
|
|
36
|
+
return this.sqlService.read(`${sql} group by 1 order by name asc limit ${limit}`);
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
exports.TagController = TagController;
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, common_1.Post)('find'),
|
|
42
|
+
__param(0, (0, common_1.Body)()),
|
|
43
|
+
__metadata("design:type", Function),
|
|
44
|
+
__metadata("design:paramtypes", [Object]),
|
|
45
|
+
__metadata("design:returntype", Promise)
|
|
46
|
+
], TagController.prototype, "find", null);
|
|
47
|
+
exports.TagController = TagController = __decorate([
|
|
48
|
+
(0, common_1.Controller)('api/b/tag'),
|
|
49
|
+
__metadata("design:paramtypes", [access_business_service_1.AccessBusinessService,
|
|
50
|
+
nestjs_utility_services_1.SqlService])
|
|
51
|
+
], TagController);
|
|
52
|
+
//# sourceMappingURL=tag.controller.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tag.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/tag.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAAwD;AACxD,iFAA4E;AAC5E,oFAAoE;AAI7D,IAAM,aAAa,GAAnB,MAAM,aAAa;IACtB,YACqB,qBAA4C,EAC5C,UAAsB;QADtB,0BAAqB,GAArB,qBAAqB,CAAuB;QAC5C,eAAU,GAAV,UAAU,CAAY;IACxC,CAAC;IAGE,AAAN,KAAK,CAAC,IAAI,CAAS,IAA+C;QAC9D,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QAEnE,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;QACrB,MAAM,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC;QACpC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,IAAI,EAAE,CAAC;QAE/B,IAAI,GAAG,GAAG,mGAAmG,QAAQ,CAAC,EAAE,EAAE,CAAC;QAE3H,IAAI,UAAU,EAAE,CAAC;YACb,GAAG,GAAG,GAAG,GAAG,yBAAyB,UAAU,GAAG,CAAC;QACvD,CAAC;QAED,IAAI,GAAG,EAAE,CAAC;YACN,GAAG,GAAG,GAAG,GAAG,wBAAwB,GAAG,KAAK,CAAC;QACjD,CAAC;QAED,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,GAAG,uCAAuC,KAAK,EAAE,CAAC,CAAC;IACtF,CAAC;CACJ,CAAA;AA1BY,sCAAa;AAOhB;IADL,IAAA,aAAI,EAAC,MAAM,CAAC;IACD,WAAA,IAAA,aAAI,GAAE,CAAA;;;;yCAkBjB;wBAzBQ,aAAa;IADzB,IAAA,mBAAU,EAAC,WAAW,CAAC;qCAGwB,+CAAqB;QAChC,oCAAU;GAHlC,aAAa,CA0BzB"}
|
|
@@ -34,7 +34,7 @@ __decorate([
|
|
|
34
34
|
], AddBusinessUserGroupDto.prototype, "name", void 0);
|
|
35
35
|
__decorate([
|
|
36
36
|
(0, class_transformer_1.Expose)(),
|
|
37
|
-
(0, class_validator_1.
|
|
37
|
+
(0, class_validator_1.IsOptional)(),
|
|
38
38
|
__metadata("design:type", String)
|
|
39
39
|
], AddBusinessUserGroupDto.prototype, "description", void 0);
|
|
40
40
|
//# sourceMappingURL=add.business.user.group.dto.js.map
|
|
@@ -0,0 +1,23 @@
|
|
|
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.AddTagDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class AddTagDto {
|
|
16
|
+
}
|
|
17
|
+
exports.AddTagDto = AddTagDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
20
|
+
(0, class_transformer_1.Expose)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], AddTagDto.prototype, "name", void 0);
|
|
23
|
+
//# sourceMappingURL=add.tag.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.tag.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/add.tag.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAA6C;AAE7C,MAAa,SAAS;CAIrB;AAJD,8BAIC;AADG;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;uCACK"}
|
|
@@ -10,6 +10,7 @@ export * from './add.group.member.dto';
|
|
|
10
10
|
export * from './add.listing.preference.dto';
|
|
11
11
|
export * from './add.role.dto';
|
|
12
12
|
export * from './add.scheduled.report.dto';
|
|
13
|
+
export * from './add.tag.dto';
|
|
13
14
|
export * from './add.user.preference.dto';
|
|
14
15
|
export * from './api.account.attributes.dto';
|
|
15
16
|
export * from './api.account.list.filter.dto';
|
|
@@ -26,6 +26,7 @@ __exportStar(require("./add.group.member.dto"), exports);
|
|
|
26
26
|
__exportStar(require("./add.listing.preference.dto"), exports);
|
|
27
27
|
__exportStar(require("./add.role.dto"), exports);
|
|
28
28
|
__exportStar(require("./add.scheduled.report.dto"), exports);
|
|
29
|
+
__exportStar(require("./add.tag.dto"), exports);
|
|
29
30
|
__exportStar(require("./add.user.preference.dto"), exports);
|
|
30
31
|
__exportStar(require("./api.account.attributes.dto"), exports);
|
|
31
32
|
__exportStar(require("./api.account.list.filter.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,4DAA0C;AAAA,+DAA6C;AAAA,gEAA8C;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,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,4DAA0C;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,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,gEAA8C;AAAA,gEAA6C"}
|
|
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,gDAA8B;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,gEAA8C;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,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,4DAA0C;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,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,gEAA8C;AAAA,gEAA6C"}
|
|
@@ -16,16 +16,17 @@ import { ListingController } from './controllers/listing.controller';
|
|
|
16
16
|
import { ListingPreferenceController } from './controllers/listing.preference.controller';
|
|
17
17
|
import { ScheduledReportController } from './controllers/scheduled.report.controller';
|
|
18
18
|
import { ScheduledReportItemController } from './controllers/scheduled.report.item.controller';
|
|
19
|
+
import { TagController } from './controllers/tag.controller';
|
|
19
20
|
import { UserNotificationController } from './controllers/user.notification.controller';
|
|
20
21
|
import { UserPreferenceController } from './controllers/user.preference.controller';
|
|
21
22
|
import { AccessBusinessParamDto } from './dtos/access.business.param.dto';
|
|
22
|
-
import { AddApiAccountDto } from './dtos/add.api.account.dto';
|
|
23
23
|
import { AddBusinessPreferenceDto } from './dtos/add.business.preference.dto';
|
|
24
24
|
import { AddConversationDto } from './dtos/add.conversation.dto';
|
|
25
25
|
import { AddGroupMemberDto } from './dtos/add.group.member.dto';
|
|
26
26
|
import { AddListingPreferenceDto } from './dtos/add.listing.preference.dto';
|
|
27
27
|
import { AddRoleDto } from './dtos/add.role.dto';
|
|
28
28
|
import { AddScheduledReportDto } from './dtos/add.scheduled.report.dto';
|
|
29
|
+
import { AddTagDto } from './dtos/add.tag.dto';
|
|
29
30
|
import { ApiAccountAttributesDto } from './dtos/api.account.attributes.dto';
|
|
30
31
|
import { CommonListFilterDto } from './dtos/common.list.filter.dto';
|
|
31
32
|
import { DateFilterDto } from './dtos/date.filter.dto';
|
|
@@ -116,6 +117,7 @@ import { UserRoleJob } from './jobs/user.role.job';
|
|
|
116
117
|
import { WatchlistAssignmentJob } from './jobs/watchlist.assignment.job';
|
|
117
118
|
import { WebhookSlugJob } from './jobs/webhook.slug.job';
|
|
118
119
|
import { WebhookTypeJob } from './jobs/webhook.type.job';
|
|
120
|
+
import { CommonTagController } from './libraries/common.tag.controller';
|
|
119
121
|
import { ConversationController } from './libraries/conversation.controller';
|
|
120
122
|
import { ProcessApiAccountData } from './libraries/process.api.account.data';
|
|
121
123
|
import { ProcessApiAccountList } from './libraries/process.api.account.list';
|
|
@@ -216,12 +218,12 @@ import { WebhookSlugSubscriber } from './subscribers/webhook.slug.subscriber';
|
|
|
216
218
|
import { WebhookTypeSubscriber } from './subscribers/webhook.type.subscriber';
|
|
217
219
|
declare const es6Classes: {
|
|
218
220
|
commands: (typeof WebhookPollCommand)[];
|
|
219
|
-
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 UserNotificationController | typeof UserPreferenceController)[];
|
|
220
|
-
dtos: (typeof ApiAccountAttributesDto | typeof RecurringDefinitionDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof AccessBusinessParamDto | typeof
|
|
221
|
+
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)[];
|
|
222
|
+
dtos: (typeof ApiAccountAttributesDto | 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)[];
|
|
221
223
|
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 PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookSlugEntity)[];
|
|
222
224
|
enums: (typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum)[];
|
|
223
225
|
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 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 SyncBURoleJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookSlugJob | typeof WebhookTypeJob)[];
|
|
224
|
-
libraries: (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 ProcessConversationData | typeof ConversationController | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessTestList)[];
|
|
226
|
+
libraries: (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 ProcessTestList)[];
|
|
225
227
|
middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware)[];
|
|
226
228
|
services: (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)[];
|
|
227
229
|
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 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 UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber)[];
|
|
@@ -18,6 +18,7 @@ const listing_controller_1 = require("./controllers/listing.controller");
|
|
|
18
18
|
const listing_preference_controller_1 = require("./controllers/listing.preference.controller");
|
|
19
19
|
const scheduled_report_controller_1 = require("./controllers/scheduled.report.controller");
|
|
20
20
|
const scheduled_report_item_controller_1 = require("./controllers/scheduled.report.item.controller");
|
|
21
|
+
const tag_controller_1 = require("./controllers/tag.controller");
|
|
21
22
|
const user_notification_controller_1 = require("./controllers/user.notification.controller");
|
|
22
23
|
const user_preference_controller_1 = require("./controllers/user.preference.controller");
|
|
23
24
|
const access_business_param_dto_1 = require("./dtos/access.business.param.dto");
|
|
@@ -32,6 +33,7 @@ const add_group_member_dto_1 = require("./dtos/add.group.member.dto");
|
|
|
32
33
|
const add_listing_preference_dto_1 = require("./dtos/add.listing.preference.dto");
|
|
33
34
|
const add_role_dto_1 = require("./dtos/add.role.dto");
|
|
34
35
|
const add_scheduled_report_dto_1 = require("./dtos/add.scheduled.report.dto");
|
|
36
|
+
const add_tag_dto_1 = require("./dtos/add.tag.dto");
|
|
35
37
|
const add_user_preference_dto_1 = require("./dtos/add.user.preference.dto");
|
|
36
38
|
const api_account_attributes_dto_1 = require("./dtos/api.account.attributes.dto");
|
|
37
39
|
const api_account_list_filter_dto_1 = require("./dtos/api.account.list.filter.dto");
|
|
@@ -199,6 +201,7 @@ const user_role_job_1 = require("./jobs/user.role.job");
|
|
|
199
201
|
const watchlist_assignment_job_1 = require("./jobs/watchlist.assignment.job");
|
|
200
202
|
const webhook_slug_job_1 = require("./jobs/webhook.slug.job");
|
|
201
203
|
const webhook_type_job_1 = require("./jobs/webhook.type.job");
|
|
204
|
+
const common_tag_controller_1 = require("./libraries/common.tag.controller");
|
|
202
205
|
const conversation_controller_1 = require("./libraries/conversation.controller");
|
|
203
206
|
const process_api_account_data_1 = require("./libraries/process.api.account.data");
|
|
204
207
|
const process_api_account_list_1 = require("./libraries/process.api.account.list");
|
|
@@ -317,6 +320,7 @@ const es6Classes = {
|
|
|
317
320
|
listing_preference_controller_1.ListingPreferenceController,
|
|
318
321
|
scheduled_report_controller_1.ScheduledReportController,
|
|
319
322
|
scheduled_report_item_controller_1.ScheduledReportItemController,
|
|
323
|
+
tag_controller_1.TagController,
|
|
320
324
|
user_notification_controller_1.UserNotificationController,
|
|
321
325
|
user_preference_controller_1.UserPreferenceController,
|
|
322
326
|
],
|
|
@@ -333,6 +337,7 @@ const es6Classes = {
|
|
|
333
337
|
add_listing_preference_dto_1.AddListingPreferenceDto,
|
|
334
338
|
add_role_dto_1.AddRoleDto,
|
|
335
339
|
add_scheduled_report_dto_1.AddScheduledReportDto,
|
|
340
|
+
add_tag_dto_1.AddTagDto,
|
|
336
341
|
add_user_preference_dto_1.AddUserPreferenceDto,
|
|
337
342
|
api_account_attributes_dto_1.ApiAccountAttributesDto,
|
|
338
343
|
api_account_list_filter_dto_1.ApiAccountListFilterDto,
|
|
@@ -505,6 +510,7 @@ const es6Classes = {
|
|
|
505
510
|
webhook_type_job_1.WebhookTypeJob,
|
|
506
511
|
],
|
|
507
512
|
libraries: [
|
|
513
|
+
common_tag_controller_1.CommonTagController,
|
|
508
514
|
conversation_controller_1.ConversationController,
|
|
509
515
|
process_api_account_data_1.ProcessApiAccountData,
|
|
510
516
|
process_api_account_list_1.ProcessApiAccountList,
|
|
@@ -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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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BusinessParamDto } from '../dtos/business.param.dto';
|
|
2
|
+
import { TagAssignmentEntity } from 'src/accessUtility/entities/tag.assignment.entity';
|
|
3
|
+
import { AddTagDto } from '../dtos/add.tag.dto';
|
|
4
|
+
export declare class CommonTagController {
|
|
5
|
+
protected sourceType: string;
|
|
6
|
+
protected parentValidator: any;
|
|
7
|
+
getAll(params: BusinessParamDto): Promise<TagAssignmentEntity[]>;
|
|
8
|
+
addTag(params: BusinessParamDto, body: AddTagDto): Promise<TagAssignmentEntity>;
|
|
9
|
+
deleteTag(params: BusinessParamDto): Promise<TagAssignmentEntity>;
|
|
10
|
+
protected checkAccess(params: BusinessParamDto): Promise<any>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
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.CommonTagController = void 0;
|
|
16
|
+
const common_1 = require("@nestjs/common");
|
|
17
|
+
const business_param_dto_1 = require("../dtos/business.param.dto");
|
|
18
|
+
const tag_assignment_entity_1 = require("../../accessUtility/entities/tag.assignment.entity");
|
|
19
|
+
const add_tag_dto_1 = require("../dtos/add.tag.dto");
|
|
20
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
21
|
+
class CommonTagController {
|
|
22
|
+
async getAll(params) {
|
|
23
|
+
await this.checkAccess(params);
|
|
24
|
+
return tag_assignment_entity_1.TagAssignmentEntity.find({
|
|
25
|
+
where: {
|
|
26
|
+
source_id: params.id,
|
|
27
|
+
source_type: this.sourceType,
|
|
28
|
+
},
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
async addTag(params, body) {
|
|
32
|
+
const validation = await this.checkAccess(params);
|
|
33
|
+
const tag = await tag_assignment_entity_1.TagAssignmentEntity.firstOrNew({
|
|
34
|
+
business_id: validation.business.id,
|
|
35
|
+
source_id: params.id,
|
|
36
|
+
source_type: this.sourceType,
|
|
37
|
+
name: body.name,
|
|
38
|
+
});
|
|
39
|
+
return tag.save();
|
|
40
|
+
}
|
|
41
|
+
async deleteTag(params) {
|
|
42
|
+
const validation = await this.checkAccess(params);
|
|
43
|
+
const tag = await tag_assignment_entity_1.TagAssignmentEntity.first(params.second_id);
|
|
44
|
+
if (tag.source_id !== validation.entity.id || tag.source_type !== this.sourceType)
|
|
45
|
+
throw new nestjs_utility_services_1.AccessException();
|
|
46
|
+
return tag.softDelete();
|
|
47
|
+
}
|
|
48
|
+
async checkAccess(params) {
|
|
49
|
+
return this.parentValidator(params.id);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.CommonTagController = CommonTagController;
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, common_1.Get)(),
|
|
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
|
+
], CommonTagController.prototype, "getAll", null);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, common_1.Post)(),
|
|
62
|
+
__param(0, (0, common_1.Param)()),
|
|
63
|
+
__param(1, (0, common_1.Body)()),
|
|
64
|
+
__metadata("design:type", Function),
|
|
65
|
+
__metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto, add_tag_dto_1.AddTagDto]),
|
|
66
|
+
__metadata("design:returntype", Promise)
|
|
67
|
+
], CommonTagController.prototype, "addTag", null);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, common_1.Delete)(':second_id'),
|
|
70
|
+
__param(0, (0, common_1.Param)()),
|
|
71
|
+
__metadata("design:type", Function),
|
|
72
|
+
__metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
|
|
73
|
+
__metadata("design:returntype", Promise)
|
|
74
|
+
], CommonTagController.prototype, "deleteTag", null);
|
|
75
|
+
//# sourceMappingURL=common.tag.controller.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.tag.controller.js","sourceRoot":"","sources":["../../../src/access/libraries/common.tag.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAAgE;AAChE,mEAA8D;AAC9D,8FAAuF;AACvF,qDAAgD;AAChD,oFAAyE;AAEzE,MAAa,mBAAmB;IAKtB,AAAN,KAAK,CAAC,MAAM,CAAU,MAAwB;QAC1C,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QAE/B,OAAO,2CAAmB,CAAC,IAAI,CAAC;YAC5B,KAAK,EAAE;gBACH,SAAS,EAAE,MAAM,CAAC,EAAE;gBACpB,WAAW,EAAE,IAAI,CAAC,UAAU;aAC/B;SACJ,CAAC,CAAC;IACP,CAAC;IAGK,AAAN,KAAK,CAAC,MAAM,CAAU,MAAwB,EAAU,IAAe;QACnE,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QAElD,MAAM,GAAG,GAAG,MAAM,2CAAmB,CAAC,UAAU,CAAC;YAC7C,WAAW,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE;YACnC,SAAS,EAAE,MAAM,CAAC,EAAE;YACpB,WAAW,EAAE,IAAI,CAAC,UAAU;YAC5B,IAAI,EAAE,IAAI,CAAC,IAAI;SAClB,CAAC,CAAC;QAEH,OAAO,GAAG,CAAC,IAAI,EAAE,CAAC;IACtB,CAAC;IAGK,AAAN,KAAK,CAAC,SAAS,CAAU,MAAwB;QAC7C,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QAElD,MAAM,GAAG,GAAG,MAAM,2CAAmB,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;QAC9D,IAAI,GAAG,CAAC,SAAS,KAAK,UAAU,CAAC,MAAM,CAAC,EAAE,IAAI,GAAG,CAAC,WAAW,KAAK,IAAI,CAAC,UAAU;YAAE,MAAM,IAAI,yCAAe,EAAE,CAAC;QAE/G,OAAO,GAAG,CAAC,UAAU,EAAE,CAAC;IAC5B,CAAC;IAES,KAAK,CAAC,WAAW,CAAC,MAAwB;QAChD,OAAO,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC3C,CAAC;CACJ;AA3CD,kDA2CC;AAtCS;IADL,IAAA,YAAG,GAAE;IACQ,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAS,qCAAgB;;iDAS7C;AAGK;IADL,IAAA,aAAI,GAAE;IACO,WAAA,IAAA,cAAK,GAAE,CAAA;IAA4B,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAzB,qCAAgB,EAAgB,uBAAS;;iDAWtE;AAGK;IADL,IAAA,eAAM,EAAC,YAAY,CAAC;IACJ,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAS,qCAAgB;;oDAOhD"}
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./common.tag.controller"), exports);
|
|
17
18
|
__exportStar(require("./conversation.controller"), exports);
|
|
18
19
|
__exportStar(require("./process.api.account.data"), exports);
|
|
19
20
|
__exportStar(require("./process.api.account.list"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;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,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;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,6DAA2C;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,4DAA0C;AAAA,+DAA4C"}
|
package/package.json
CHANGED