@yolo-croket-dev/amqp-access 0.5.50 → 0.5.51-jun.1
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/package.json +1 -1
- package/store-item-server/dto/store-item/command/copy-store-item-list.dto.d.ts +16 -0
- package/store-item-server/dto/store-item/command/copy-store-item-list.dto.js +47 -0
- package/store-item-server/dto/store-item/command/index.d.ts +1 -0
- package/store-item-server/dto/store-item/command/index.js +1 -0
- package/store-item-server/services/amqp.store-item.service.d.ts +3 -1
- package/store-item-server/services/amqp.store-item.service.js +6 -0
- package/user-service/dto/chat.modules/chat-content-group/command/index.d.ts +1 -0
- package/user-service/dto/chat.modules/chat-content-group/command/index.js +17 -0
- package/user-service/dto/chat.modules/chat-content-group/command/sync-chat-content-group.dto.d.ts +3 -0
- package/user-service/dto/chat.modules/chat-content-group/command/sync-chat-content-group.dto.js +21 -0
- package/user-service/dto/chat.modules/chat-content-group/index.d.ts +2 -0
- package/user-service/dto/chat.modules/chat-content-group/index.js +18 -0
- package/user-service/dto/chat.modules/chat-content-group/query/get-chat-content-group.dto.d.ts +13 -0
- package/user-service/dto/chat.modules/chat-content-group/query/get-chat-content-group.dto.js +46 -0
- package/user-service/dto/chat.modules/chat-content-group/query/index.d.ts +1 -0
- package/user-service/dto/chat.modules/chat-content-group/query/index.js +17 -0
- package/user-service/dto/chat.modules/index.d.ts +1 -0
- package/user-service/dto/chat.modules/index.js +17 -0
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class CopyStoreItemListPayloadData {
|
|
2
|
+
/** 상품 아이디 */
|
|
3
|
+
itemId: string;
|
|
4
|
+
/** 등록하고자 하는 셀러 아이디 */
|
|
5
|
+
sellerId: string;
|
|
6
|
+
/** 상품 이름 */
|
|
7
|
+
itemName?: string;
|
|
8
|
+
/** 판매 여부 */
|
|
9
|
+
isSelling?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class CopyStoreItemListPayload {
|
|
12
|
+
items: CopyStoreItemListPayloadData[];
|
|
13
|
+
}
|
|
14
|
+
export declare class CopyStoreItemListResult {
|
|
15
|
+
itemIds: string[];
|
|
16
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CopyStoreItemListResult = exports.CopyStoreItemListPayload = exports.CopyStoreItemListPayloadData = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
class CopyStoreItemListPayloadData {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsMongoId)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], CopyStoreItemListPayloadData.prototype, "itemId", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsMongoId)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], CopyStoreItemListPayloadData.prototype, "sellerId", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
(0, class_validator_1.IsOptional)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], CopyStoreItemListPayloadData.prototype, "itemName", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsBoolean)(),
|
|
32
|
+
(0, class_validator_1.IsOptional)(),
|
|
33
|
+
__metadata("design:type", Boolean)
|
|
34
|
+
], CopyStoreItemListPayloadData.prototype, "isSelling", void 0);
|
|
35
|
+
exports.CopyStoreItemListPayloadData = CopyStoreItemListPayloadData;
|
|
36
|
+
class CopyStoreItemListPayload {
|
|
37
|
+
}
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, class_validator_1.IsArray)(),
|
|
40
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
41
|
+
(0, class_transformer_1.Type)(() => CopyStoreItemListPayloadData),
|
|
42
|
+
__metadata("design:type", Array)
|
|
43
|
+
], CopyStoreItemListPayload.prototype, "items", void 0);
|
|
44
|
+
exports.CopyStoreItemListPayload = CopyStoreItemListPayload;
|
|
45
|
+
class CopyStoreItemListResult {
|
|
46
|
+
}
|
|
47
|
+
exports.CopyStoreItemListResult = CopyStoreItemListResult;
|
|
@@ -28,3 +28,4 @@ __exportStar(require("./patch-store-item-option-remain-count-by-change-purchased
|
|
|
28
28
|
__exportStar(require("./update-is-selling-bulk.dto"), exports);
|
|
29
29
|
__exportStar(require("./update-brand-id-bulk.dto"), exports);
|
|
30
30
|
__exportStar(require("./copy-store-item.dto"), exports);
|
|
31
|
+
__exportStar(require("./copy-store-item-list.dto"), exports);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
-
import { GetStoreItemLegaciesPayload, GetStoreItemLegaciesResult, GetSellingItemIdsByStoreIdPayload, GetSellingItemIdsByStoreIdResult, SearchSellingStoreItemsPayload, SearchSellingStoreItemsResult, GetStoreItemsForESPayload, GetStoreItemsForESResult, GetLegacyStoreItemsByAtlasSearchPayload, GetLegacyStoreItemsByAtlasSearchResult, GetStoreItemIdsByAtlasSearchPayload, GetStoreItemIdsByAtlasSearchResult, GetStoreItemInfoByIdPayload, GetStoreItemInfoByIdResult, GetSellingItemIdsByThemeIdPayload, GetSellingItemIdsByThemeIdResult, SearchStoreItemNameByIdPayload, SearchStoreItemNameByIdResult, GetItemGroupNumsPayload, GetItemGroupNumsResult, GetRandomItemIdsPayload, GetRandomItemIdsResult, GetUsedImgItemIdsPayload, GetUsedImgItemIdsResult, GetUsedImgsItemIdsPayload, GetUsedImgsItemIdsResult, GetSellingItemIdsByCatagoryPayload, GetSellingItemIdsByCatagoryResult, PatchSoldOutItemOptionsPayload, PatchSoldOutItemOptionsResult, RegStoreItemPayload, RegStoreItemResult, EditStoreItemPayload, EditItemResult, UpdateBrandInfosPayload, GetStoreItemsForUpdateBrandPayload, GetStoreItemsForUpdateBrandResult, RegStoreItemBulkPayload, RegStoreItemBulkResult, GetStoreItemInfoByIdsPayload, GetStoreItemInfoByIdsResult, SearchStoreItemsForSeduceAddCartPayload, SearchStoreItemsForSeduceAddCartResult, GetStoreItemBindIssuedCouponForPaymentPayload, GetStoreItemBindIssuedCouponForPaymentResult, GetStaleStoreItemsForExcelResult, GetStaleStoreItemsForExcelPayload, GetStoreItemTooltipForCartPayload, GetStoreItemTooltipForCartResult, GetStoreItemsByBrandNamePayload, GetStoreItemsByBrandNameResult, SearchStoreItemsForTestApiPayload, SearchStoreItemsForTestApiResult, UpdateBrandNameBulkPayload, UpdateBrandEngNameBulkPayload, DeleteBrandInfoBulkPayload, DalphaUpdateBrandNameBulkPayload, PatchStoreItemOptionRemainCountByChangePurchasedOptionPayload, UpdateIsSellingBulkPayload, GetAreaResult, GetCityPayload, GetCityResult, GetNationPayload, GetNationResult, GetStoreItemsForExtractionByTypeResult, ResizeItemImgPayload, GetStoreInfosByItemIdsPayload, GetStoreInfosByItemIdsResult, CopyStoreItemPayload } from '../dto/store-item';
|
|
3
|
+
import { GetStoreItemLegaciesPayload, GetStoreItemLegaciesResult, GetSellingItemIdsByStoreIdPayload, GetSellingItemIdsByStoreIdResult, SearchSellingStoreItemsPayload, SearchSellingStoreItemsResult, GetStoreItemsForESPayload, GetStoreItemsForESResult, GetLegacyStoreItemsByAtlasSearchPayload, GetLegacyStoreItemsByAtlasSearchResult, GetStoreItemIdsByAtlasSearchPayload, GetStoreItemIdsByAtlasSearchResult, GetStoreItemInfoByIdPayload, GetStoreItemInfoByIdResult, GetSellingItemIdsByThemeIdPayload, GetSellingItemIdsByThemeIdResult, SearchStoreItemNameByIdPayload, SearchStoreItemNameByIdResult, GetItemGroupNumsPayload, GetItemGroupNumsResult, GetRandomItemIdsPayload, GetRandomItemIdsResult, GetUsedImgItemIdsPayload, GetUsedImgItemIdsResult, GetUsedImgsItemIdsPayload, GetUsedImgsItemIdsResult, GetSellingItemIdsByCatagoryPayload, GetSellingItemIdsByCatagoryResult, PatchSoldOutItemOptionsPayload, PatchSoldOutItemOptionsResult, RegStoreItemPayload, RegStoreItemResult, EditStoreItemPayload, EditItemResult, UpdateBrandInfosPayload, GetStoreItemsForUpdateBrandPayload, GetStoreItemsForUpdateBrandResult, RegStoreItemBulkPayload, RegStoreItemBulkResult, GetStoreItemInfoByIdsPayload, GetStoreItemInfoByIdsResult, SearchStoreItemsForSeduceAddCartPayload, SearchStoreItemsForSeduceAddCartResult, GetStoreItemBindIssuedCouponForPaymentPayload, GetStoreItemBindIssuedCouponForPaymentResult, GetStaleStoreItemsForExcelResult, GetStaleStoreItemsForExcelPayload, GetStoreItemTooltipForCartPayload, GetStoreItemTooltipForCartResult, GetStoreItemsByBrandNamePayload, GetStoreItemsByBrandNameResult, SearchStoreItemsForTestApiPayload, SearchStoreItemsForTestApiResult, UpdateBrandNameBulkPayload, UpdateBrandEngNameBulkPayload, DeleteBrandInfoBulkPayload, DalphaUpdateBrandNameBulkPayload, PatchStoreItemOptionRemainCountByChangePurchasedOptionPayload, UpdateIsSellingBulkPayload, GetAreaResult, GetCityPayload, GetCityResult, GetNationPayload, GetNationResult, GetStoreItemsForExtractionByTypeResult, ResizeItemImgPayload, GetStoreInfosByItemIdsPayload, GetStoreInfosByItemIdsResult, CopyStoreItemPayload, CopyStoreItemListPayload, GetCouponCodesBySellingItemPayload, GetCouponCodesBySellingItemResult } from '../dto/store-item';
|
|
4
4
|
export declare class AmqpStoreItemService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -54,4 +54,6 @@ export declare class AmqpStoreItemService {
|
|
|
54
54
|
resizeItemImg(payload: ResizeItemImgPayload, param: AbstractParam): Promise<void>;
|
|
55
55
|
resizeItemImgOnlyPublish(payload: ResizeItemImgPayload, param: AbstractParam): Promise<boolean>;
|
|
56
56
|
getStoreInfosByItemIds(payload: GetStoreInfosByItemIdsPayload, param: AbstractParam): Promise<GetStoreInfosByItemIdsResult[]>;
|
|
57
|
+
getCouponCodesBySellingItem(payload: GetCouponCodesBySellingItemPayload, param: AbstractParam): Promise<GetCouponCodesBySellingItemResult>;
|
|
58
|
+
copyStoreItemList(payload: CopyStoreItemListPayload, param: AbstractParam): Promise<void>;
|
|
57
59
|
}
|
|
@@ -162,6 +162,12 @@ let AmqpStoreItemService = class AmqpStoreItemService {
|
|
|
162
162
|
async getStoreInfosByItemIds(payload, param) {
|
|
163
163
|
return this.amqpManager.call('상품 아이디 리스트로 해당 상품 스토어 정보 검색', 'store-item.get.store-infos-by-item-ids', payload, param, { isErrorThrowing: true });
|
|
164
164
|
}
|
|
165
|
+
async getCouponCodesBySellingItem(payload, param) {
|
|
166
|
+
return this.amqpManager.call('상품 아이디 리스트로 해당 상품 쿠폰 코드 검색', 'store-item.get.coupon-codes-by-selling-item', payload, param, { isErrorThrowing: true });
|
|
167
|
+
}
|
|
168
|
+
async copyStoreItemList(payload, param) {
|
|
169
|
+
return this.amqpManager.call('상품 복사 대량', 'store-item.copy.list', payload, param, { isErrorThrowing: true });
|
|
170
|
+
}
|
|
165
171
|
};
|
|
166
172
|
AmqpStoreItemService = __decorate([
|
|
167
173
|
(0, common_1.Injectable)(),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './sync-chat-content-group.dto';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./sync-chat-content-group.dto"), exports);
|
package/user-service/dto/chat.modules/chat-content-group/command/sync-chat-content-group.dto.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
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.SyncChatContentGroupPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class SyncChatContentGroupPayload {
|
|
15
|
+
}
|
|
16
|
+
__decorate([
|
|
17
|
+
(0, class_validator_1.IsArray)(),
|
|
18
|
+
(0, class_validator_1.IsMongoId)({ each: true }),
|
|
19
|
+
__metadata("design:type", Array)
|
|
20
|
+
], SyncChatContentGroupPayload.prototype, "chatRoomIds", void 0);
|
|
21
|
+
exports.SyncChatContentGroupPayload = SyncChatContentGroupPayload;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./command"), exports);
|
|
18
|
+
__exportStar(require("./query"), exports);
|
package/user-service/dto/chat.modules/chat-content-group/query/get-chat-content-group.dto.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ChatContentGroupForSabangDomain } from '@yolo-croket-dev/domain/chat/interface/chat-content-froup-for-sabang.domain';
|
|
2
|
+
export declare class GetChatContentGroupPayload {
|
|
3
|
+
startDate: string;
|
|
4
|
+
endDate: string;
|
|
5
|
+
isSellerAnswer?: boolean;
|
|
6
|
+
itemId?: string;
|
|
7
|
+
page: number;
|
|
8
|
+
limit: number;
|
|
9
|
+
}
|
|
10
|
+
export declare class GetChatContentGroupResult {
|
|
11
|
+
totalCount: number;
|
|
12
|
+
list: ChatContentGroupForSabangDomain[];
|
|
13
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.GetChatContentGroupResult = exports.GetChatContentGroupPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const decorator_1 = require("@yolo-croket-dev/amqp-access/decorator");
|
|
15
|
+
class GetChatContentGroupPayload {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, decorator_1.IsIso8601Utc)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], GetChatContentGroupPayload.prototype, "startDate", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, decorator_1.IsIso8601Utc)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], GetChatContentGroupPayload.prototype, "endDate", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsBoolean)(),
|
|
27
|
+
(0, class_validator_1.IsOptional)(),
|
|
28
|
+
__metadata("design:type", Boolean)
|
|
29
|
+
], GetChatContentGroupPayload.prototype, "isSellerAnswer", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsMongoId)(),
|
|
32
|
+
(0, class_validator_1.IsOptional)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], GetChatContentGroupPayload.prototype, "itemId", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsNumber)(),
|
|
37
|
+
__metadata("design:type", Number)
|
|
38
|
+
], GetChatContentGroupPayload.prototype, "page", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, class_validator_1.IsNumber)(),
|
|
41
|
+
__metadata("design:type", Number)
|
|
42
|
+
], GetChatContentGroupPayload.prototype, "limit", void 0);
|
|
43
|
+
exports.GetChatContentGroupPayload = GetChatContentGroupPayload;
|
|
44
|
+
class GetChatContentGroupResult {
|
|
45
|
+
}
|
|
46
|
+
exports.GetChatContentGroupResult = GetChatContentGroupResult;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './get-chat-content-group.dto';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./get-chat-content-group.dto"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chat-content-group';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./chat-content-group"), exports);
|