@yolo-croket-dev/amqp-access 0.7.241 → 0.7.243
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/index.d.ts +1 -0
- package/store-item-server/dto/store-item/command/index.js +1 -0
- package/store-item-server/dto/store-item/command/resume-selling-bulk.dto.d.ts +1 -0
- package/store-item-server/dto/store-item/command/resume-selling-bulk.dto.js +1 -0
- package/store-item-server/dto/store-item/command/stop-selling-bulk.dto.d.ts +24 -0
- package/store-item-server/dto/store-item/command/stop-selling-bulk.dto.js +39 -0
- package/store-item-server/dto/store-item/query/index.d.ts +1 -0
- package/store-item-server/dto/store-item/query/index.js +1 -0
- package/store-item-server/dto/store-item/query/search-normal-selling-store-items-for-bulk-stop.dto.d.ts +9 -0
- package/store-item-server/dto/store-item/query/search-normal-selling-store-items-for-bulk-stop.dto.js +36 -0
- package/store-item-server/services/amqp.store-item.service.d.ts +7 -1
- package/store-item-server/services/amqp.store-item.service.js +12 -0
package/package.json
CHANGED
|
@@ -24,4 +24,5 @@ export * from './update-item-keywords-bulk.dto';
|
|
|
24
24
|
export * from './update-is-required-pccc-bulk.dto';
|
|
25
25
|
export * from './update-store-item-seller-memo.dto';
|
|
26
26
|
export * from './resume-selling-bulk.dto';
|
|
27
|
+
export * from './stop-selling-bulk.dto';
|
|
27
28
|
export * from './refresh-shipping-lead-time-stats.dto';
|
|
@@ -40,4 +40,5 @@ __exportStar(require("./update-item-keywords-bulk.dto"), exports);
|
|
|
40
40
|
__exportStar(require("./update-is-required-pccc-bulk.dto"), exports);
|
|
41
41
|
__exportStar(require("./update-store-item-seller-memo.dto"), exports);
|
|
42
42
|
__exportStar(require("./resume-selling-bulk.dto"), exports);
|
|
43
|
+
__exportStar(require("./stop-selling-bulk.dto"), exports);
|
|
43
44
|
__exportStar(require("./refresh-shipping-lead-time-stats.dto"), exports);
|
|
@@ -24,6 +24,7 @@ var ResumeSellingFailReasonEnum;
|
|
|
24
24
|
ResumeSellingFailReasonEnum["NOT_FOUND"] = "NOT_FOUND";
|
|
25
25
|
ResumeSellingFailReasonEnum["HAS_DUE_DATE"] = "HAS_DUE_DATE";
|
|
26
26
|
ResumeSellingFailReasonEnum["RESERVATION_ITEM"] = "RESERVATION_ITEM";
|
|
27
|
+
ResumeSellingFailReasonEnum["USED_ITEM"] = "USED_ITEM";
|
|
27
28
|
ResumeSellingFailReasonEnum["ALREADY_SELLING"] = "ALREADY_SELLING";
|
|
28
29
|
ResumeSellingFailReasonEnum["UNKNOWN_ERROR"] = "UNKNOWN_ERROR";
|
|
29
30
|
})(ResumeSellingFailReasonEnum || (exports.ResumeSellingFailReasonEnum = ResumeSellingFailReasonEnum = {}));
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare enum StopSellingBulkErrorTypeEnum {
|
|
2
|
+
NEED_LOGIN = "NEED_LOGIN"
|
|
3
|
+
}
|
|
4
|
+
export declare enum StopSellingFailReasonEnum {
|
|
5
|
+
NOT_OWNER = "NOT_OWNER",
|
|
6
|
+
NOT_FOUND = "NOT_FOUND",
|
|
7
|
+
USED_ITEM = "USED_ITEM",
|
|
8
|
+
ALREADY_STOPPED = "ALREADY_STOPPED",
|
|
9
|
+
UNKNOWN_ERROR = "UNKNOWN_ERROR"
|
|
10
|
+
}
|
|
11
|
+
export interface StopSellingFailedReason {
|
|
12
|
+
category: StopSellingFailReasonEnum;
|
|
13
|
+
count: number;
|
|
14
|
+
}
|
|
15
|
+
export interface StopSellingBulkResult {
|
|
16
|
+
succeededCount: number;
|
|
17
|
+
failedCount: number;
|
|
18
|
+
failedReasons: StopSellingFailedReason[];
|
|
19
|
+
}
|
|
20
|
+
export declare class StopSellingSelectedBulkPayload {
|
|
21
|
+
itemIds: string[];
|
|
22
|
+
}
|
|
23
|
+
export declare class StopSellingAllBulkPayload {
|
|
24
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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.StopSellingAllBulkPayload = exports.StopSellingSelectedBulkPayload = exports.StopSellingFailReasonEnum = exports.StopSellingBulkErrorTypeEnum = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
var StopSellingBulkErrorTypeEnum;
|
|
15
|
+
(function (StopSellingBulkErrorTypeEnum) {
|
|
16
|
+
StopSellingBulkErrorTypeEnum["NEED_LOGIN"] = "NEED_LOGIN";
|
|
17
|
+
})(StopSellingBulkErrorTypeEnum || (exports.StopSellingBulkErrorTypeEnum = StopSellingBulkErrorTypeEnum = {}));
|
|
18
|
+
var StopSellingFailReasonEnum;
|
|
19
|
+
(function (StopSellingFailReasonEnum) {
|
|
20
|
+
StopSellingFailReasonEnum["NOT_OWNER"] = "NOT_OWNER";
|
|
21
|
+
StopSellingFailReasonEnum["NOT_FOUND"] = "NOT_FOUND";
|
|
22
|
+
StopSellingFailReasonEnum["USED_ITEM"] = "USED_ITEM";
|
|
23
|
+
StopSellingFailReasonEnum["ALREADY_STOPPED"] = "ALREADY_STOPPED";
|
|
24
|
+
StopSellingFailReasonEnum["UNKNOWN_ERROR"] = "UNKNOWN_ERROR";
|
|
25
|
+
})(StopSellingFailReasonEnum || (exports.StopSellingFailReasonEnum = StopSellingFailReasonEnum = {}));
|
|
26
|
+
class StopSellingSelectedBulkPayload {
|
|
27
|
+
}
|
|
28
|
+
exports.StopSellingSelectedBulkPayload = StopSellingSelectedBulkPayload;
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsArray)(),
|
|
31
|
+
(0, class_validator_1.ArrayMinSize)(1),
|
|
32
|
+
(0, class_validator_1.ArrayMaxSize)(200),
|
|
33
|
+
(0, class_validator_1.ArrayUnique)(),
|
|
34
|
+
(0, class_validator_1.IsMongoId)({ each: true }),
|
|
35
|
+
__metadata("design:type", Array)
|
|
36
|
+
], StopSellingSelectedBulkPayload.prototype, "itemIds", void 0);
|
|
37
|
+
class StopSellingAllBulkPayload {
|
|
38
|
+
}
|
|
39
|
+
exports.StopSellingAllBulkPayload = StopSellingAllBulkPayload;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './get-store-item-legacies.dto';
|
|
2
2
|
export * from './get-selling-item-ids-by-store-id.dto';
|
|
3
3
|
export * from './search-selling-store-items.dto';
|
|
4
|
+
export * from './search-normal-selling-store-items-for-bulk-stop.dto';
|
|
4
5
|
export * from './for-es';
|
|
5
6
|
export * from './atlas-search';
|
|
6
7
|
export * from './get-store-item-info-by-id.dto';
|
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./get-store-item-legacies.dto"), exports);
|
|
18
18
|
__exportStar(require("./get-selling-item-ids-by-store-id.dto"), exports);
|
|
19
19
|
__exportStar(require("./search-selling-store-items.dto"), exports);
|
|
20
|
+
__exportStar(require("./search-normal-selling-store-items-for-bulk-stop.dto"), exports);
|
|
20
21
|
__exportStar(require("./for-es"), exports);
|
|
21
22
|
__exportStar(require("./atlas-search"), exports);
|
|
22
23
|
__exportStar(require("./get-store-item-info-by-id.dto"), exports);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SearchSellingStoreItemsResult, SearchSellingStoreItemsSortTypeEnum } from './search-selling-store-items.dto';
|
|
2
|
+
/** 일반 상품 일괄 판매 중지 대상 목록 조회 요청 */
|
|
3
|
+
export declare class SearchNormalSellingStoreItemsForBulkStopPayload {
|
|
4
|
+
page: number;
|
|
5
|
+
limit: number;
|
|
6
|
+
sortType: SearchSellingStoreItemsSortTypeEnum;
|
|
7
|
+
searchText?: string;
|
|
8
|
+
}
|
|
9
|
+
export type SearchNormalSellingStoreItemsForBulkStopResult = SearchSellingStoreItemsResult;
|
|
@@ -0,0 +1,36 @@
|
|
|
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.SearchNormalSellingStoreItemsForBulkStopPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const search_selling_store_items_dto_1 = require("./search-selling-store-items.dto");
|
|
15
|
+
/** 일반 상품 일괄 판매 중지 대상 목록 조회 요청 */
|
|
16
|
+
class SearchNormalSellingStoreItemsForBulkStopPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.SearchNormalSellingStoreItemsForBulkStopPayload = SearchNormalSellingStoreItemsForBulkStopPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsNumber)(),
|
|
21
|
+
__metadata("design:type", Number)
|
|
22
|
+
], SearchNormalSellingStoreItemsForBulkStopPayload.prototype, "page", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsNumber)(),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], SearchNormalSellingStoreItemsForBulkStopPayload.prototype, "limit", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsString)(),
|
|
29
|
+
(0, class_validator_1.IsEnum)(search_selling_store_items_dto_1.SearchSellingStoreItemsSortTypeEnum),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], SearchNormalSellingStoreItemsForBulkStopPayload.prototype, "sortType", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.IsString)(),
|
|
34
|
+
(0, class_validator_1.IsOptional)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], SearchNormalSellingStoreItemsForBulkStopPayload.prototype, "searchText", void 0);
|
|
@@ -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, 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, UpdateStoreItemSecretPayload, GetSellingStoreItemsForChatPayload, GetSellingStoreItemsForChatResult, GetStoreItemsByPreBlackFridayIdPayload, GetStoreItemsByPreBlackFridayIdResult, UpdateBrandInfosPayload, UpdateBrandInfosResult, SearchRegularPriceItemsForAdminResult, SearchRegularPriceItemsForAdminPayload, UpdateRegularPriceByAdminPayload, RegRegularPriceBulkByAdminPayload, DeleteRegularPriceByAdminPayload, SearchSecretItemsForAdminPayload, SearchSecretItemsForAdminResult, RegItemNameEngBulkByAdminPayload, UpdateStoreItemGlobalInfoBulkPayload, UpdateNaverEnabledBulkPayload, UpdateIsRequiredPCCCBulkPayload, UpdateIsRequiredPCCCBulkResult, UpdateStoreItemSellerMemoPayload, UpdateStoreItemSellerMemoResult, GetStoreItemSellerMemoPayload, GetStoreItemSellerMemoResult, ResumeSellingSelectedBulkPayload, ResumeSellingAllBulkPayload, ResumeSellingBulkResult, GetCroCareStoreItemInfoPayload, GetCroCareStoreItemInfoResult, GetStoreItemsForProductFeedPayload, GetStoreItemsForProductFeedResult, GetMetaProductFeedSyncStatusByItemIdsPayload, GetMetaProductFeedSyncStatusByItemIdsResult, UpdateItemKeywordsBulkPayload, UpdateItemKeywordsBulkResult, SearchStoreItemsForEnuriSummaryEpPayload, SearchStoreItemsForEnuriSummaryEpResult, RefreshShippingLeadTimeStatsPayload } from '../dto/store-item';
|
|
3
|
+
import { GetStoreItemLegaciesPayload, GetStoreItemLegaciesResult, GetSellingItemIdsByStoreIdPayload, GetSellingItemIdsByStoreIdResult, SearchSellingStoreItemsPayload, SearchSellingStoreItemsResult, SearchNormalSellingStoreItemsForBulkStopPayload, SearchNormalSellingStoreItemsForBulkStopResult, 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, 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, UpdateStoreItemSecretPayload, GetSellingStoreItemsForChatPayload, GetSellingStoreItemsForChatResult, GetStoreItemsByPreBlackFridayIdPayload, GetStoreItemsByPreBlackFridayIdResult, UpdateBrandInfosPayload, UpdateBrandInfosResult, SearchRegularPriceItemsForAdminResult, SearchRegularPriceItemsForAdminPayload, UpdateRegularPriceByAdminPayload, RegRegularPriceBulkByAdminPayload, DeleteRegularPriceByAdminPayload, SearchSecretItemsForAdminPayload, SearchSecretItemsForAdminResult, RegItemNameEngBulkByAdminPayload, UpdateStoreItemGlobalInfoBulkPayload, UpdateNaverEnabledBulkPayload, UpdateIsRequiredPCCCBulkPayload, UpdateIsRequiredPCCCBulkResult, UpdateStoreItemSellerMemoPayload, UpdateStoreItemSellerMemoResult, GetStoreItemSellerMemoPayload, GetStoreItemSellerMemoResult, ResumeSellingSelectedBulkPayload, ResumeSellingAllBulkPayload, ResumeSellingBulkResult, StopSellingSelectedBulkPayload, StopSellingAllBulkPayload, StopSellingBulkResult, GetCroCareStoreItemInfoPayload, GetCroCareStoreItemInfoResult, GetStoreItemsForProductFeedPayload, GetStoreItemsForProductFeedResult, GetMetaProductFeedSyncStatusByItemIdsPayload, GetMetaProductFeedSyncStatusByItemIdsResult, UpdateItemKeywordsBulkPayload, UpdateItemKeywordsBulkResult, SearchStoreItemsForEnuriSummaryEpPayload, SearchStoreItemsForEnuriSummaryEpResult, RefreshShippingLeadTimeStatsPayload } from '../dto/store-item';
|
|
4
4
|
export declare class AmqpStoreItemService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -14,6 +14,8 @@ export declare class AmqpStoreItemService {
|
|
|
14
14
|
getSellingItemIdsByStoreId(payload: GetSellingItemIdsByStoreIdPayload, param: AbstractParam): Promise<GetSellingItemIdsByStoreIdResult>;
|
|
15
15
|
getSellingItemIdsByThemeId(payload: GetSellingItemIdsByThemeIdPayload, param: AbstractParam): Promise<GetSellingItemIdsByThemeIdResult>;
|
|
16
16
|
searchSellingStoreItems(payload: SearchSellingStoreItemsPayload, param: AbstractParam): Promise<SearchSellingStoreItemsResult>;
|
|
17
|
+
/** 일반 상품 일괄 판매 중지 대상 목록을 조회한다. */
|
|
18
|
+
searchNormalSellingStoreItemsForBulkStop(payload: SearchNormalSellingStoreItemsForBulkStopPayload, param: AbstractParam): Promise<SearchNormalSellingStoreItemsForBulkStopResult>;
|
|
17
19
|
/**
|
|
18
20
|
* @author jun
|
|
19
21
|
* @description 셀러의 USED 상품 관리 목록을 조회한다.
|
|
@@ -82,6 +84,10 @@ export declare class AmqpStoreItemService {
|
|
|
82
84
|
updateIsRequiredPCCCBulk(payload: UpdateIsRequiredPCCCBulkPayload, param: AbstractParam): Promise<UpdateIsRequiredPCCCBulkResult>;
|
|
83
85
|
resumeSellingSelectedBulk(payload: ResumeSellingSelectedBulkPayload, param: AbstractParam): Promise<ResumeSellingBulkResult>;
|
|
84
86
|
resumeSellingAllBulk(payload: ResumeSellingAllBulkPayload, param: AbstractParam): Promise<ResumeSellingBulkResult>;
|
|
87
|
+
/** 선택한 일반 상품을 일괄 판매 중지한다. */
|
|
88
|
+
stopSellingSelectedBulk(payload: StopSellingSelectedBulkPayload, param: AbstractParam): Promise<StopSellingBulkResult>;
|
|
89
|
+
/** 판매중인 일반 상품 전체를 일괄 판매 중지한다. */
|
|
90
|
+
stopSellingAllBulk(payload: StopSellingAllBulkPayload, param: AbstractParam): Promise<StopSellingBulkResult>;
|
|
85
91
|
getCroCareStoreItemInfo(payload: GetCroCareStoreItemInfoPayload, param: AbstractParam): Promise<GetCroCareStoreItemInfoResult>;
|
|
86
92
|
getStoreItemsForProductFeed(payload: GetStoreItemsForProductFeedPayload, param: AbstractParam): Promise<GetStoreItemsForProductFeedResult>;
|
|
87
93
|
searchStoreItemsForEnuriSummaryEp(payload: SearchStoreItemsForEnuriSummaryEpPayload, param: AbstractParam): Promise<SearchStoreItemsForEnuriSummaryEpResult>;
|
|
@@ -42,6 +42,10 @@ let AmqpStoreItemService = class AmqpStoreItemService {
|
|
|
42
42
|
async searchSellingStoreItems(payload, param) {
|
|
43
43
|
return this.amqpManager.call('셀러 판매 상품 관리 리스트 호출', 'store-item.get.selling-store-item-list', payload, param, { isErrorThrowing: true });
|
|
44
44
|
}
|
|
45
|
+
/** 일반 상품 일괄 판매 중지 대상 목록을 조회한다. */
|
|
46
|
+
async searchNormalSellingStoreItemsForBulkStop(payload, param) {
|
|
47
|
+
return this.amqpManager.call('일반 상품 일괄 판매 중지 대상 목록 호출', 'store-item.get.selling-store-item-list-for-bulk-stop', payload, param, { isErrorThrowing: true });
|
|
48
|
+
}
|
|
45
49
|
/**
|
|
46
50
|
* @author jun
|
|
47
51
|
* @description 셀러의 USED 상품 관리 목록을 조회한다.
|
|
@@ -230,6 +234,14 @@ let AmqpStoreItemService = class AmqpStoreItemService {
|
|
|
230
234
|
async resumeSellingAllBulk(payload, param) {
|
|
231
235
|
return this.amqpManager.call('전체 상품 일괄 판매 개시', 'store-item.update.resume-selling-all', payload, param, { isErrorThrowing: true });
|
|
232
236
|
}
|
|
237
|
+
/** 선택한 일반 상품을 일괄 판매 중지한다. */
|
|
238
|
+
async stopSellingSelectedBulk(payload, param) {
|
|
239
|
+
return this.amqpManager.call('선택한 일반 상품 일괄 판매 중지', 'store-item.update.stop-selling-selected', payload, param, { isErrorThrowing: true });
|
|
240
|
+
}
|
|
241
|
+
/** 판매중인 일반 상품 전체를 일괄 판매 중지한다. */
|
|
242
|
+
async stopSellingAllBulk(payload, param) {
|
|
243
|
+
return this.amqpManager.call('일반 상품 전체 일괄 판매 중지', 'store-item.update.stop-selling-all', payload, param, { isErrorThrowing: true });
|
|
244
|
+
}
|
|
233
245
|
async getCroCareStoreItemInfo(payload, param) {
|
|
234
246
|
return this.amqpManager.call('크로케어 상품 정보 조회 -상품 상세 이벤트 배너 조회에서 사용 get-event-banner-for-buyer.service(manage-service)-', 'store-item.get.cro-care-store-item-info', payload, param, { isErrorThrowing: true });
|
|
235
247
|
}
|