@yolo-croket-dev/amqp-access 0.5.67 → 0.5.69
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.
|
|
3
|
+
"version": "0.5.69",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@nestjs/common": "^10.3.10",
|
|
21
21
|
"@yolo-croket-dev/core": "1.7.17",
|
|
22
|
-
"@yolo-croket-dev/domain": "^0.
|
|
22
|
+
"@yolo-croket-dev/domain": "^0.2.10",
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "^0.1.10",
|
|
24
24
|
"@yolo-croket-dev/entity": "^0.2.24",
|
|
25
25
|
"@yolo-croket-dev/entity-v2": "^0.2.23",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
-
import { CreateBrandPayload, UpdateBrandNamePayload, UpdateBrandEngNamePayload, DeleteBrandPayload, GetBrandsByBrandNamesPayload, GetBrandsByBrandNamesResult, GetBrandsForAdminPayload, GetBrandsForAdminResult } from '../dto/brand';
|
|
3
|
+
import { CreateBrandPayload, UpdateBrandNamePayload, UpdateBrandEngNamePayload, DeleteBrandPayload, GetBrandsByBrandNamesPayload, GetBrandsByBrandNamesResult, GetBrandsForAdminPayload, GetBrandsForAdminResult, GetBrandsByItemIdsResult, GetBrandsByItemIdsPayload } from '../dto/brand';
|
|
4
4
|
export declare class AmqpBrandService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -11,4 +11,5 @@ export declare class AmqpBrandService {
|
|
|
11
11
|
deleteBrand(payload: DeleteBrandPayload, param: AbstractParam): Promise<void>;
|
|
12
12
|
getBrandsByBrandNames(payload: GetBrandsByBrandNamesPayload, param: AbstractParam): Promise<GetBrandsByBrandNamesResult>;
|
|
13
13
|
getBrandsForAdmin(payload: GetBrandsForAdminPayload, param: AbstractParam): Promise<GetBrandsForAdminResult>;
|
|
14
|
+
getBrandsByItemIds(payload: GetBrandsByItemIdsPayload, param: AbstractParam): Promise<GetBrandsByItemIdsResult>;
|
|
14
15
|
}
|
|
@@ -39,6 +39,9 @@ let AmqpBrandService = class AmqpBrandService {
|
|
|
39
39
|
async getBrandsForAdmin(payload, param) {
|
|
40
40
|
return this.amqpManager.call('브랜드 리스트 조회 -관리자-', 'brand.get.for-admin', payload, param);
|
|
41
41
|
}
|
|
42
|
+
async getBrandsByItemIds(payload, param) {
|
|
43
|
+
return this.amqpManager.call('브랜드 리스트 조회 -관리자-', 'brand.get.by-item-ids', payload, param);
|
|
44
|
+
}
|
|
42
45
|
};
|
|
43
46
|
AmqpBrandService = __decorate([
|
|
44
47
|
(0, common_1.Injectable)(),
|