@servicelabsco/nestjs-utility-services 1.2.83 → 1.2.84
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/config/source.hash.d.ts +1 -0
- package/dist/config/source.hash.js +1 -0
- package/dist/config/source.hash.js.map +1 -1
- package/dist/system/dtos/add.comment.dto.d.ts +2 -0
- package/dist/system/dtos/add.comment.dto.js +8 -0
- package/dist/system/dtos/add.comment.dto.js.map +1 -1
- package/dist/system/entities/comment.entity.d.ts +2 -0
- package/dist/system/entities/comment.entity.js.map +1 -1
- package/dist/system/es6.classes.d.ts +3 -3
- package/dist/system/services/comment.service.d.ts +4 -0
- package/dist/system/services/comment.service.js +24 -3
- package/dist/system/services/comment.service.js.map +1 -1
- package/package.json +1 -1
@@ -11,6 +11,7 @@ const SourceHash = {
|
|
11
11
|
relationship: 'ca92f0ad887a73e9ffa448f5e4620c70',
|
12
12
|
mobileValidation: 'fa2bfeba4f8c0f5c4ec5bf9ca6c03771',
|
13
13
|
mailLog: 'a3da8b74348b592a71fe3667f5d92954',
|
14
|
+
comment: 'd77868f65dfb326a4cfb0378ff0c3ad8',
|
14
15
|
};
|
15
16
|
module.exports = SourceHash;
|
16
17
|
//# sourceMappingURL=source.hash.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"source.hash.js","sourceRoot":"","sources":["../../src/config/source.hash.ts"],"names":[],"mappings":";AAAA,MAAM,UAAU,GAAG;IACf,cAAc,EAAE,kCAAkC;IAClD,IAAI,EAAE,kCAAkC;IACxC,KAAK,EAAE,kCAAkC;IACzC,iBAAiB,EAAE,kCAAkC;IACrD,MAAM,EAAE,kCAAkC;IAC1C,MAAM,EAAE,kCAAkC;IAC1C,IAAI,EAAE,kCAAkC;IACxC,SAAS,EAAE,kCAAkC;IAC7C,YAAY,EAAE,kCAAkC;IAChD,gBAAgB,EAAE,kCAAkC;IACpD,OAAO,EAAE,kCAAkC;CAC9C,CAAC;AAEF,iBAAS,UAAU,CAAC"}
|
1
|
+
{"version":3,"file":"source.hash.js","sourceRoot":"","sources":["../../src/config/source.hash.ts"],"names":[],"mappings":";AAAA,MAAM,UAAU,GAAG;IACf,cAAc,EAAE,kCAAkC;IAClD,IAAI,EAAE,kCAAkC;IACxC,KAAK,EAAE,kCAAkC;IACzC,iBAAiB,EAAE,kCAAkC;IACrD,MAAM,EAAE,kCAAkC;IAC1C,MAAM,EAAE,kCAAkC;IAC1C,IAAI,EAAE,kCAAkC;IACxC,SAAS,EAAE,kCAAkC;IAC7C,YAAY,EAAE,kCAAkC;IAChD,gBAAgB,EAAE,kCAAkC;IACpD,OAAO,EAAE,kCAAkC;IAC3C,OAAO,EAAE,kCAAkC;CAC9C,CAAC;AAEF,iBAAS,UAAU,CAAC"}
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { FileUploadDto } from './file.upload.dto';
|
1
2
|
export declare class AddCommentDto {
|
2
3
|
id?: number;
|
3
4
|
comments: string;
|
@@ -6,4 +7,5 @@ export declare class AddCommentDto {
|
|
6
7
|
context?: any;
|
7
8
|
parent_id?: number;
|
8
9
|
is_conversation?: boolean;
|
10
|
+
files?: FileUploadDto[];
|
9
11
|
}
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.AddCommentDto = void 0;
|
13
13
|
const class_transformer_1 = require("class-transformer");
|
14
14
|
const class_validator_1 = require("class-validator");
|
15
|
+
const file_upload_dto_1 = require("./file.upload.dto");
|
15
16
|
class AddCommentDto {
|
16
17
|
}
|
17
18
|
exports.AddCommentDto = AddCommentDto;
|
@@ -55,4 +56,11 @@ __decorate([
|
|
55
56
|
(0, class_validator_1.IsBoolean)(),
|
56
57
|
__metadata("design:type", Boolean)
|
57
58
|
], AddCommentDto.prototype, "is_conversation", void 0);
|
59
|
+
__decorate([
|
60
|
+
(0, class_transformer_1.Expose)(),
|
61
|
+
(0, class_validator_1.IsOptional)(),
|
62
|
+
(0, class_validator_1.ValidateNested)(),
|
63
|
+
(0, class_transformer_1.Type)(() => file_upload_dto_1.FileUploadDto),
|
64
|
+
__metadata("design:type", Array)
|
65
|
+
], AddCommentDto.prototype, "files", void 0);
|
58
66
|
//# sourceMappingURL=add.comment.dto.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"add.comment.dto.js","sourceRoot":"","sources":["../../../src/system/dtos/add.comment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,qDAA8F;
|
1
|
+
{"version":3,"file":"add.comment.dto.js","sourceRoot":"","sources":["../../../src/system/dtos/add.comment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,qDAA8F;AAC9F,uDAAkD;AAElD,MAAa,aAAa;CAuCzB;AAvCD,sCAuCC;AAnCG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yCACD;AAIZ;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;+CACI;AAKjB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8CACI;AAKjB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACiB;AAI9B;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;8CACC;AAKd;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;gDACQ;AAKnB;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;sDACc;AAM1B;IAJC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;IAChB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAa,CAAC;;4CACF"}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { CommonEntity } from '../../common/libraries/common.entity';
|
2
2
|
import { LookupValueEntity } from './lookup.value.entity';
|
3
|
+
import { DocumentEntity } from './document.entity';
|
3
4
|
export declare class CommentEntity extends CommonEntity {
|
4
5
|
source_type: string;
|
5
6
|
source_id: number;
|
@@ -12,4 +13,5 @@ export declare class CommentEntity extends CommonEntity {
|
|
12
13
|
attributes: any;
|
13
14
|
type: LookupValueEntity;
|
14
15
|
parent: CommentEntity;
|
16
|
+
documents?: DocumentEntity[];
|
15
17
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"comment.entity.js","sourceRoot":"","sources":["../../../src/system/entities/comment.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;
|
1
|
+
{"version":3,"file":"comment.entity.js","sourceRoot":"","sources":["../../../src/system/entities/comment.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,qCAAgE;AAChE,wEAAoE;AACpE,+DAA0D;AAUnD,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,4BAAY;CAsC9C,CAAA;AAtCY,sCAAa;AAGtB;IAFC,IAAA,gBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;kDACO;AAKpB;IAHC,IAAA,gBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;gDACO;AAGlB;IADC,IAAA,gBAAM,GAAE;;8CACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;gDACS;AAIlB;IAFC,IAAA,gBAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;+CACI;AAGjB;IADC,IAAA,gBAAM,GAAE;;0DACoB;AAG7B;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;8CACF;AAGb;IADC,IAAA,gBAAM,GAAE;;sDACgB;AAGzB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;iDACC;AAGqD;IAApE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAiB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAAO,uCAAiB;2CAAC;AAE1B;IAAlE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,aAAa,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAAS,aAAa;6CAAC;wBAnChF,aAAa;IADzB,IAAA,gBAAM,EAAC,cAAc,CAAC;GACV,aAAa,CAsCzB"}
|
@@ -166,13 +166,13 @@ import { UserGroupRoleSubscriber } from './subscribers/user.group.role.subscribe
|
|
166
166
|
declare const es6Classes: {
|
167
167
|
commands: (typeof DbScannerCommand | typeof DynamoScannerCommand | typeof EventQueueCommand | typeof JobsScannerCommand | typeof ModelScannerCommand | typeof ReportScannerCommand | typeof ServiceScannerCommand | typeof SesEventTrackingCommand | typeof SyncAllCommand)[];
|
168
168
|
controllers: (typeof BaseController | typeof DataController | typeof FormController | typeof MenuController | typeof PreferenceController | typeof ReportController | typeof UploadController | typeof UserPreferenceController)[];
|
169
|
-
dtos: (typeof ClientCredentialAttributesDto | typeof FileUploadSpecDto | typeof S3UploadOptionsDto | typeof LocalFileS3UploadDto | typeof S3ObjectInfoDto | typeof AddDirectMenuDto | typeof ModelFormPreferenceCreationDto | typeof UserPreferenceCreationDto | typeof
|
170
|
-
entities: (typeof LookupTypeEntity | typeof UserGroupRoleEntity | typeof UserGroupEntity | typeof UserGroupMemberEntity | typeof BusinessRuleRoleEntity | typeof BusinessRuleEntity | typeof ColumnDefinitionEntity | typeof ColumnEntity | typeof ModelEntity | typeof FormPreferenceEntity | typeof ModelColumnEntity | typeof RelationshipEntity | typeof ModelRelationshipEntity | typeof ModelRoleEntity | typeof FormColumnEntity | typeof SystemScriptEntity | typeof UiActionPermissionEntity | typeof UiActionEntity | typeof UiActionRoleEntity | typeof PrimaryAxisEntity | typeof ChartEntity | typeof ClientEntity | typeof ClientCredentialEntity | typeof CredentialIpEntity | typeof ClientScriptEntity | typeof
|
169
|
+
dtos: (typeof ClientCredentialAttributesDto | typeof FileUploadSpecDto | typeof S3UploadOptionsDto | typeof LocalFileS3UploadDto | typeof S3ObjectInfoDto | typeof AddDirectMenuDto | typeof ModelFormPreferenceCreationDto | typeof UserPreferenceCreationDto | typeof FileUploadDto | typeof AddCommentDto | typeof ClientCredentialDto | typeof JobRecordParamDto | typeof MailValidationDto | typeof MobileValidationDto | typeof ModelAllowedColumnDto | typeof OtpGenerationDto | typeof ValidationOptionsDto)[];
|
170
|
+
entities: (typeof LookupTypeEntity | typeof UserGroupRoleEntity | typeof UserGroupEntity | typeof UserGroupMemberEntity | typeof BusinessRuleRoleEntity | typeof BusinessRuleEntity | typeof ColumnDefinitionEntity | typeof ColumnEntity | typeof ModelEntity | typeof FormPreferenceEntity | typeof ModelColumnEntity | typeof RelationshipEntity | typeof ModelRelationshipEntity | typeof ModelRoleEntity | typeof FormColumnEntity | typeof SystemScriptEntity | typeof UiActionPermissionEntity | typeof UiActionEntity | typeof UiActionRoleEntity | typeof PrimaryAxisEntity | typeof ChartEntity | typeof ClientEntity | typeof ClientCredentialEntity | typeof CredentialIpEntity | typeof ClientScriptEntity | typeof DocumentEntity | typeof CommentEntity | typeof DynamoTableEntity | typeof EventDetailEntity | typeof EventQueueEntity | typeof MailLogEntity | typeof MailEventEntity | typeof MailRecipientEntity | typeof MailValidationEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof ModuleEntity | typeof ModuleMenuEntity | typeof PageDefinitionEntity | typeof ParentMenuEntity | typeof MobileValidationEntity | typeof OpenPropertyEntity | typeof ReportFilterEntity | typeof ReportEntity | typeof ReportRelationshipEntity | typeof ReportRoleEntity | typeof ReportColumnEntity | typeof ScheduledEventEntity | typeof SecurityRuleEntity | typeof ServiceEntity | typeof SmsTemplateEntity | typeof SmsMessageEntity | typeof UserGroupPermissionEntity | typeof UserPreferenceEntity | typeof WhatsappTemplateEntity)[];
|
171
171
|
interceptors: (typeof SentryInterceptor)[];
|
172
172
|
jobs: (typeof SetScheduledEventJob | typeof ModelScannerJob | typeof ReportColumnSyncJob | typeof CleanScheduledEventJob | typeof ClientCredentialJob | typeof ClientJob | typeof ColumnMapperJob | typeof CommentJob | typeof CredentialIpJob | typeof DocumentJob | typeof MailEventJob | typeof MailRecipientJob | typeof MailValidationJob | typeof MobileValidationJob | typeof RefreshPropertyCacheJob | typeof PropertyJob | typeof RelationshipMapperJob | typeof ScheduledEventJob | typeof SmsMessageJob | typeof UserGroupMemberJob | typeof UserGroupPermissionJob | typeof UserGroupRoleJob)[];
|
173
173
|
libraries: (typeof SyncDynamoTables | typeof ModelSync | typeof SecurityRuleEvaluator | typeof ColumnManager | typeof BusinessRuleFilterValidator | typeof BusinessRuleQueryEvaluator | typeof ProcessMenuCreation)[];
|
174
174
|
modifiers: (typeof MenuListModifier | typeof ModuleListModifier)[];
|
175
|
-
services: (typeof PropertyService | typeof ScheduledEventService | typeof AwsS3Service | typeof UploadService | typeof EventQueueService | typeof EventDetailService | typeof SecurityRuleService | typeof UiActionService | typeof ModelService | typeof CommonService | typeof ClientScriptService | typeof PreferenceService | typeof BusinessRuleService | typeof ListService | typeof FormService | typeof MenuService | typeof UserPreferenceService | typeof ReportService | typeof ClientCredentialService | typeof ColumnService | typeof
|
175
|
+
services: (typeof PropertyService | typeof ScheduledEventService | typeof AwsS3Service | typeof UploadService | typeof EventQueueService | typeof EventDetailService | typeof SecurityRuleService | typeof UiActionService | typeof ModelService | typeof CommonService | typeof ClientScriptService | typeof PreferenceService | typeof BusinessRuleService | typeof ListService | typeof FormService | typeof MenuService | typeof UserPreferenceService | typeof ReportService | typeof ClientCredentialService | typeof ColumnService | typeof DocumentService | typeof CommentService | typeof Es6JobsService | typeof Es6Service | typeof InternalServerConnectService | typeof MailValidationService | typeof MobileValidationService)[];
|
176
176
|
subscribers: (typeof ClientCredentialSubscriber | typeof ClientSubscriber | typeof ColumnSubscriber | typeof CommentSubscriber | typeof CredentialIpSubscriber | typeof DocumentSubscriber | typeof MailEventSubscriber | typeof MailRecipientSubscriber | typeof MailValidationSubscriber | typeof MobileValidationSubscriber | typeof PropertySubscriber | typeof RelationshipSubscriber | typeof ScheduledEventSubscriber | typeof SmsMessageSubscriber | typeof UserGroupMemberSubscriber | typeof UserGroupPermissionSubscriber | typeof UserGroupRoleSubscriber)[];
|
177
177
|
};
|
178
178
|
export default es6Classes;
|
@@ -1,7 +1,10 @@
|
|
1
1
|
import { AddCommentDto } from '../dtos/add.comment.dto';
|
2
2
|
import { CommentEntity } from '../entities/comment.entity';
|
3
3
|
import { SourceColumnDto } from '../../platformUtility/dtos/source.column.dto';
|
4
|
+
import { DocumentService } from './document.service';
|
4
5
|
export declare class CommentService {
|
6
|
+
private readonly documentService;
|
7
|
+
constructor(documentService: DocumentService);
|
5
8
|
getComments(query: {
|
6
9
|
source_type: string;
|
7
10
|
source_id: number;
|
@@ -9,4 +12,5 @@ export declare class CommentService {
|
|
9
12
|
limit?: number;
|
10
13
|
}): Promise<any[]>;
|
11
14
|
setComment(body: AddCommentDto, source?: SourceColumnDto): Promise<CommentEntity>;
|
15
|
+
private setCommentDocuments;
|
12
16
|
}
|
@@ -5,13 +5,25 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
5
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
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
7
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
|
+
};
|
8
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
9
12
|
exports.CommentService = void 0;
|
10
13
|
const common_1 = require("@nestjs/common");
|
11
14
|
const comment_entity_1 = require("../entities/comment.entity");
|
15
|
+
const SourceHash = require("../../config/source.hash");
|
16
|
+
const document_service_1 = require("./document.service");
|
12
17
|
let CommentService = class CommentService {
|
18
|
+
constructor(documentService) {
|
19
|
+
this.documentService = documentService;
|
20
|
+
}
|
13
21
|
async getComments(query) {
|
14
|
-
|
22
|
+
const comments = await comment_entity_1.CommentEntity.find({ where: query, relations: ['creator'], take: query.limit || 100 });
|
23
|
+
for (const comment of comments) {
|
24
|
+
comment.documents = await this.documentService.getDocuments({ source_id: comment.id, source_type: SourceHash.comment });
|
25
|
+
}
|
26
|
+
return comments;
|
15
27
|
}
|
16
28
|
async setComment(body, source) {
|
17
29
|
if (!body.comments)
|
@@ -28,11 +40,20 @@ let CommentService = class CommentService {
|
|
28
40
|
record.context = body.context;
|
29
41
|
record.parent_id = body.parent_id;
|
30
42
|
record.is_conversation = body.is_conversation;
|
31
|
-
|
43
|
+
await record.save();
|
44
|
+
await this.setCommentDocuments(body.files, record.id);
|
45
|
+
return record;
|
46
|
+
}
|
47
|
+
async setCommentDocuments(files, id) {
|
48
|
+
if (!files?.length)
|
49
|
+
return;
|
50
|
+
const source = { source_type: SourceHash.comment, source_id: id };
|
51
|
+
return this.documentService.setDocuments(source, files);
|
32
52
|
}
|
33
53
|
};
|
34
54
|
exports.CommentService = CommentService;
|
35
55
|
exports.CommentService = CommentService = __decorate([
|
36
|
-
(0, common_1.Injectable)()
|
56
|
+
(0, common_1.Injectable)(),
|
57
|
+
__metadata("design:paramtypes", [document_service_1.DocumentService])
|
37
58
|
], CommentService);
|
38
59
|
//# sourceMappingURL=comment.service.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"comment.service.js","sourceRoot":"","sources":["../../../src/system/services/comment.service.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"comment.service.js","sourceRoot":"","sources":["../../../src/system/services/comment.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAE5C,+DAA2D;AAG3D,uDAAwD;AACxD,yDAAqD;AAQ9C,IAAM,cAAc,GAApB,MAAM,cAAc;IACvB,YAA6B,eAAgC;QAAhC,oBAAe,GAAf,eAAe,CAAiB;IAAG,CAAC;IASjE,KAAK,CAAC,WAAW,CAAC,KAAmF;QACjG,MAAM,QAAQ,GAAG,MAAM,8BAAa,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,KAAK,IAAI,GAAG,EAAE,CAAC,CAAC;QAE9G,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;YAC7B,OAAO,CAAC,SAAS,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,EAAE,WAAW,EAAE,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;QAC5H,CAAC;QAED,OAAO,QAAQ,CAAC;IACpB,CAAC;IASD,KAAK,CAAC,UAAU,CAAC,IAAmB,EAAE,MAAwB;QAC1D,IAAI,CAAC,IAAI,CAAC,QAAQ;YAAE,OAAO;QAE3B,IAAI,MAAM,GAAG,IAAI,8BAAa,EAAE,CAAC;QAEjC,IAAI,IAAI,CAAC,EAAE;YAAE,MAAM,GAAG,MAAM,8BAAa,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QAEzD,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,CAAC;YACd,MAAM,CAAC,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;YACxC,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;YAEpC,MAAM,CAAC,mBAAmB,GAAG,IAAI,CAAC,mBAAmB,IAAI,KAAK,CAAC;QACnE,CAAC;QAED,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAChC,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC9B,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;QAClC,MAAM,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,CAAC;QAE9C,MAAM,MAAM,CAAC,IAAI,EAAE,CAAC;QAEpB,MAAM,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC;QAEtD,OAAO,MAAM,CAAC;IAClB,CAAC;IAEO,KAAK,CAAC,mBAAmB,CAAC,KAAsB,EAAE,EAAU;QAChE,IAAI,CAAC,KAAK,EAAE,MAAM;YAAE,OAAO;QAE3B,MAAM,MAAM,GAAoB,EAAE,WAAW,EAAE,UAAU,CAAC,OAAO,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC;QAEnF,OAAO,IAAI,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IAC5D,CAAC;CACJ,CAAA;AA5DY,wCAAc;yBAAd,cAAc;IAD1B,IAAA,mBAAU,GAAE;qCAEqC,kCAAe;GADpD,cAAc,CA4D1B"}
|
package/package.json
CHANGED