@yolo-croket-dev/amqp-access 0.5.131 → 0.5.132

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.5.131",
3
+ "version": "0.5.132",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -12,7 +12,7 @@ export declare class AmqpBrandService {
12
12
  getBrandsByBrandNames(payload: GetBrandsByBrandNamesPayload, param: AbstractParam): Promise<GetBrandsByBrandNamesResult>;
13
13
  getBrandsForAdmin(payload: GetBrandsForAdminPayload, param: AbstractParam): Promise<GetBrandsForAdminResult>;
14
14
  getBrandsByItemIds(payload: GetBrandsByItemIdsPayload, param: AbstractParam): Promise<GetBrandsByItemIdsResult>;
15
- getBrandRequiredCategories(payload: void, param: AbstractParam): Promise<GetBrandRequiredCategoriesResult>;
15
+ getBrandRequiredCategories(param: AbstractParam): Promise<GetBrandRequiredCategoriesResult>;
16
16
  getBrandByBrandName(payload: GetBrandByBrandNamePayload, param: AbstractParam): Promise<GetBrandByBrandNameResult>;
17
17
  autocompleteBrands(payload: AutocompleteBrandsPayload, param: AbstractParam): Promise<AutocompleteBrandsResult>;
18
18
  }
@@ -42,8 +42,8 @@ let AmqpBrandService = class AmqpBrandService {
42
42
  async getBrandsByItemIds(payload, param) {
43
43
  return this.amqpManager.call('브랜드 리스트 조회 -관리자-', 'brand.get.by-item-ids', payload, param);
44
44
  }
45
- async getBrandRequiredCategories(payload, param) {
46
- return this.amqpManager.call('브랜드 필수 카테고리 조회', 'brand.get.required-categories', payload, param);
45
+ async getBrandRequiredCategories(param) {
46
+ return this.amqpManager.call('브랜드 필수 카테고리 조회', 'brand.get.required-categories', {}, param);
47
47
  }
48
48
  async getBrandByBrandName(payload, param) {
49
49
  return this.amqpManager.call('브랜드 이름으로 브랜드 조회', 'brand.get.by-brand-name', payload, param);