@yolo-croket-dev/amqp-access 0.6.16 → 0.6.18

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.6.16",
3
+ "version": "0.6.18",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -18,7 +18,7 @@
18
18
  "license": "UNLICENSED",
19
19
  "dependencies": {
20
20
  "@nestjs/common": "^10.3.10",
21
- "@yolo-croket-dev/core": "1.7.46-beta.2",
21
+ "@yolo-croket-dev/core": "1.8.7-beta.7",
22
22
  "@yolo-croket-dev/domain": "^0.2.12",
23
23
  "@yolo-croket-dev/dto-v2": "^0.1.20",
24
24
  "@yolo-croket-dev/entity": "^0.2.44",
@@ -27,4 +27,4 @@
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
29
29
  }
30
- }
30
+ }
@@ -23,4 +23,6 @@ export declare class AmqpBrandService {
23
23
  getBrandHallForBuyer(payload: GetBrandHallForBuyerPayload, param: AbstractParam): Promise<GetBrandHallForBuyerResult>;
24
24
  getBrandHallsBySearchKeyword(payload: GetBrandHallsBySearchKeywordPayload, param: AbstractParam): Promise<GetBrandHallsBySearchKeywordResult>;
25
25
  getBrandHallsForBuyer(payload: GetBrandHallsForBuyerPayload, param: AbstractParam): Promise<GetBrandHallsForBuyerResult>;
26
+ updateBrandHallByScheduler(param: AbstractParam): Promise<void>;
27
+ updateBrandSearchKeywordCountByScheduler(param: AbstractParam): Promise<void>;
26
28
  }
@@ -75,6 +75,12 @@ let AmqpBrandService = class AmqpBrandService {
75
75
  async getBrandHallsForBuyer(payload, param) {
76
76
  return this.amqpManager.call('브랜드 관 리스트 조회 -구매자-', 'brand.get.halls-for-buyer', payload, param, { isErrorThrowing: true });
77
77
  }
78
+ async updateBrandHallByScheduler(param) {
79
+ return this.amqpManager.call('브랜드 관 여부 자동 수정 (매일 23시 동작) -크론-', 'brand.update.hall-by-scheduler', {}, param, { isErrorThrowing: true });
80
+ }
81
+ async updateBrandSearchKeywordCountByScheduler(param) {
82
+ return this.amqpManager.call('브랜드 검색어 카운트 자동 업데이트 (1시간마다) -크론-', 'brand.update.search-keyword-count-by-scheduler', {}, param, { isErrorThrowing: true });
83
+ }
78
84
  };
79
85
  exports.AmqpBrandService = AmqpBrandService;
80
86
  exports.AmqpBrandService = AmqpBrandService = __decorate([