@yolo-croket-dev/amqp-access 0.4.113 → 0.4.114
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
|
@@ -51,4 +51,5 @@ export declare class AmqpStoreItemService {
|
|
|
51
51
|
syncSeduceAddCartItemIds(param: AbstractParam): Promise<void>;
|
|
52
52
|
getStoreItemsForExtractionByType(param: AbstractParam): Promise<GetStoreItemsForExtractionByTypeResult>;
|
|
53
53
|
resizeItemImg(payload: ResizeItemImgPayload, param: AbstractParam): Promise<void>;
|
|
54
|
+
resizeItemImgOnlyPublish(payload: ResizeItemImgPayload, param: AbstractParam): Promise<boolean>;
|
|
54
55
|
}
|
|
@@ -153,6 +153,9 @@ let AmqpStoreItemService = class AmqpStoreItemService {
|
|
|
153
153
|
async resizeItemImg(payload, param) {
|
|
154
154
|
return this.amqpManager.call('상품 썸네일 이미지 리사이징 (version 0)', 'store-item.resize.item-img', payload, param, { isErrorThrowing: true });
|
|
155
155
|
}
|
|
156
|
+
async resizeItemImgOnlyPublish(payload, param) {
|
|
157
|
+
return this.amqpManager.onlyPublish('상품 썸네일 이미지 리사이징 (version 0)', 'store-item.resize.item-img', payload, param);
|
|
158
|
+
}
|
|
156
159
|
};
|
|
157
160
|
exports.AmqpStoreItemService = AmqpStoreItemService;
|
|
158
161
|
exports.AmqpStoreItemService = AmqpStoreItemService = __decorate([
|