@yolo-croket-dev/amqp-access 0.1.6-jun.0 → 0.1.7
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
CHANGED
|
@@ -18,4 +18,5 @@ export declare class AmqpStoreItemService {
|
|
|
18
18
|
getStoreItemInfoById(payload: GetStoreItemInfoByIdPayload, param: AbstractParam): Promise<GetStoreItemInfoByIdResult>;
|
|
19
19
|
searchStoreItemNameById(payload: SearchStoreItemNameByIdPayload, param: AbstractParam): Promise<SearchStoreItemNameByIdResult>;
|
|
20
20
|
migrationStoreItemBrandInfo(param: AbstractParam): Promise<void>;
|
|
21
|
+
processSoldNumsLastNDays(param: AbstractParam): Promise<void>;
|
|
21
22
|
}
|
|
@@ -54,6 +54,9 @@ let AmqpStoreItemService = class AmqpStoreItemService {
|
|
|
54
54
|
async migrationStoreItemBrandInfo(param) {
|
|
55
55
|
return this.amqpManager.call('상품 브랜드 정보 마이그레이션', 'store-item.migration.brand-info', {}, param, { isErrorThrowing: true });
|
|
56
56
|
}
|
|
57
|
+
async processSoldNumsLastNDays(param) {
|
|
58
|
+
return this.amqpManager.call('상품 판매량 N일간 집계', 'store-item.process.sold-nums-last-n-days', {}, param, { isErrorThrowing: true });
|
|
59
|
+
}
|
|
57
60
|
};
|
|
58
61
|
exports.AmqpStoreItemService = AmqpStoreItemService;
|
|
59
62
|
exports.AmqpStoreItemService = AmqpStoreItemService = __decorate([
|