@yolo-croket-dev/amqp-access 0.4.84 → 0.4.86

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 AmqpImageService {
12
12
  getImageSizesByCloudflare(payload: GetImageSizesByCloudflarePayload, param: AbstractParam): Promise<GetImageSizesByCloudflareResult>;
13
13
  copyImg(payload: CopyImgPayload, param: AbstractParam): Promise<CopyImgResult>;
14
14
  resizeImg(payload: ResizeImgPayload, param: AbstractParam): Promise<void>;
15
+ resizeImgPublish(payload: ResizeImgPayload, param: AbstractParam): Promise<boolean>;
15
16
  }
@@ -44,6 +44,9 @@ let AmqpImageService = class AmqpImageService {
44
44
  async resizeImg(payload, param) {
45
45
  return this.amqpManager.call('이미지 리사이즈', 'image.resize', payload, param, { isErrorThrowing: true });
46
46
  }
47
+ async resizeImgPublish(payload, param) {
48
+ return this.amqpManager.onlyPublish('이미지 리사이즈', 'image.resize', payload, param);
49
+ }
47
50
  };
48
51
  exports.AmqpImageService = AmqpImageService;
49
52
  exports.AmqpImageService = AmqpImageService = __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.4.84",
3
+ "version": "0.4.86",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -20,6 +20,8 @@ export interface GetTestReviewResult {
20
20
  isPhotoReview: boolean;
21
21
  /** 사진 리뷰 리스트 */
22
22
  reviewPhotoList: string[];
23
+ /** 판매 수량 (정의 되지 않았다면, 0) */
24
+ soldNums: number;
23
25
  /** 상품 평점 */
24
26
  itemScore: number;
25
27
  /** 등록일 */