@yolo-croket-dev/amqp-access 0.6.80-sj2 → 0.6.80-sj4
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.
|
@@ -12,4 +12,5 @@ export declare class AmqpStoreItemExcelService {
|
|
|
12
12
|
uploadRegStoreItemBulkByExcelForAdminV3SingleOption(file: any, payload: UploadRegStoreItemBulkByExcelForAdminPayload, param: AbstractParam): Promise<UploadRegStoreItemBulkByExcelForAdminResult>;
|
|
13
13
|
makeAndUploadRegStoreItemResultByLog(payload: MakeAndUploadRegStoreItemResultByLogPayload, param: AbstractParam): Promise<void>;
|
|
14
14
|
makeAndUploadItemsForExpectGroupCreate(payload: MakeAndUploadItemsForExpectGroupCreatePayload, param: AbstractParam): Promise<MakeAndUploadItemsForExpectGroupCreateResult>;
|
|
15
|
+
syncProductFeed(payload: unknown, param: AbstractParam): Promise<boolean>;
|
|
15
16
|
}
|
|
@@ -50,6 +50,9 @@ let AmqpStoreItemExcelService = class AmqpStoreItemExcelService {
|
|
|
50
50
|
async makeAndUploadItemsForExpectGroupCreate(payload, param) {
|
|
51
51
|
return this.amqpManager.call('상품 그룹 생성을 위한 상품 조회 및 Excel 업로드', 'store-item-excel.make-and-upload.items-for-expect-group-create', payload, param, { isErrorThrowing: true });
|
|
52
52
|
}
|
|
53
|
+
async syncProductFeed(payload, param) {
|
|
54
|
+
return this.amqpManager.call('메타/구글 상품 피드 통합 동기화', 'store-item-excel.sync.product-feed', payload, param, { isErrorThrowing: true });
|
|
55
|
+
}
|
|
53
56
|
};
|
|
54
57
|
exports.AmqpStoreItemExcelService = AmqpStoreItemExcelService;
|
|
55
58
|
exports.AmqpStoreItemExcelService = AmqpStoreItemExcelService = __decorate([
|
package/package.json
CHANGED
|
@@ -10,7 +10,8 @@ export declare class GetStoreItemsForProductFeedPayload {
|
|
|
10
10
|
paginationToken?: string;
|
|
11
11
|
limit: number;
|
|
12
12
|
}
|
|
13
|
-
export interface GetStoreItemsForProductFeedItem extends Pick<StoreItem, '_id' | 'isSelling' | 'isDelete' | 'itemPriceForBuyer' | 'itemPrice' | 'itemPriceForBuyerWithShippingFee' | 'itemName' | 'remainCount' | 'contents' | 'itemImg' | 'mainCategory' | 'subCategory' | 'sellingInfo' | 'brandInfo' | 'storeId' | 'sellerId' | 'storeItemGroupId'
|
|
13
|
+
export interface GetStoreItemsForProductFeedItem extends Pick<StoreItem, '_id' | 'isSelling' | 'isDelete' | 'itemPriceForBuyer' | 'itemPrice' | 'itemPriceForBuyerWithShippingFee' | 'itemName' | 'remainCount' | 'contents' | 'itemImg' | 'mainCategory' | 'subCategory' | 'sellingInfo' | 'brandInfo' | 'storeId' | 'sellerId' | 'storeItemGroupId' | // item_group_id (메타에서만 사용)
|
|
14
|
+
'optionInfo'> {
|
|
14
15
|
}
|
|
15
16
|
export declare class GetStoreItemsForProductFeedResult {
|
|
16
17
|
/** 전체 페이지 수 (첫 페이지 조회 시에만 반환) */
|