@yolo-croket-dev/amqp-access 0.7.20 → 0.7.21

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.20",
3
+ "version": "0.7.21",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -27,4 +27,4 @@
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
29
29
  }
30
- }
30
+ }
@@ -27,4 +27,5 @@ export declare class AmqpStoreService {
27
27
  updateCommissionInfo(payload: UpdateCommissionInfoPayload, param: AbstractParam): Promise<void>;
28
28
  upsertCommissionPeriodInfo(payload: UpsertCommissionPeriodInfoPayload, param: AbstractParam): Promise<void>;
29
29
  getStoreCommissionRateById(payload: GetStoreCommissionRateByIdPayload, param: AbstractParam): Promise<GetStoreCommissionRateByIdResult>;
30
+ getSellerIdsWithCommissionChange(param: AbstractParam): Promise<string[]>;
30
31
  }
@@ -81,6 +81,9 @@ let AmqpStoreService = class AmqpStoreService {
81
81
  async getStoreCommissionRateById(payload, param) {
82
82
  return this.amqpManager.call('스토어 아이디로 수수료 비율 조회', 'store.get.commission-rate-by-id', payload, param, { isErrorThrowing: true });
83
83
  }
84
+ async getSellerIdsWithCommissionChange(param) {
85
+ return this.amqpManager.call('오늘 수수료 변경이 있는 셀러 ID 목록 조회', 'store.get.seller-ids-with-commission-change', {}, param, { isErrorThrowing: true });
86
+ }
84
87
  };
85
88
  exports.AmqpStoreService = AmqpStoreService;
86
89
  exports.AmqpStoreService = AmqpStoreService = __decorate([