@yolo-croket-dev/amqp-access 0.5.130 → 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
|
@@ -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(
|
|
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,13 +42,13 @@ 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(
|
|
46
|
-
return this.amqpManager.call('브랜드 필수 카테고리 조회', 'brand.get.required-categories',
|
|
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);
|
|
50
50
|
}
|
|
51
|
-
async
|
|
51
|
+
async autocompleteBrands(payload, param) {
|
|
52
52
|
return this.amqpManager.call('자동완성 브랜드 리스트 조회', 'brand.get.autocomplete', payload, param);
|
|
53
53
|
}
|
|
54
54
|
};
|