@yolo-croket-dev/amqp-access 0.5.150 → 0.5.152
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/auth-service/dto/api-key.modules/api-secret-check/query/get-secret-check-list.dto.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApiSecretCheckEntityForAdmin } from '@yolo-croket-dev/domain/api-key.modules/api-secret-check/interface/api-secret-check.domain';
|
|
2
2
|
export declare const GetSecretCheckListMessagePattern = "api-secret-check.get.list";
|
|
3
3
|
/**
|
|
4
4
|
* Secret Check List 검색 타입 Enum
|
|
@@ -21,5 +21,5 @@ export declare class GetSecretCheckListPayload {
|
|
|
21
21
|
export declare class GetSecretCheckListResult {
|
|
22
22
|
allPage: number;
|
|
23
23
|
allCount: number;
|
|
24
|
-
list:
|
|
24
|
+
list: ApiSecretCheckEntityForAdmin[];
|
|
25
25
|
}
|
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.152",
|
|
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
|
+
}
|
|
@@ -23,7 +23,7 @@ let AmqpItemReviewService = class AmqpItemReviewService {
|
|
|
23
23
|
this.amqpManager = new functions_1.AmqpManagement(this.client);
|
|
24
24
|
}
|
|
25
25
|
async getItemReviewAvgScoresByNaver(payload, param) {
|
|
26
|
-
return this.amqpManager.call('상품 리뷰 평점 평균 조회 - 네이버 쇼핑용', 'item-review.get
|
|
26
|
+
return this.amqpManager.call('상품 리뷰 평점 평균 조회 - 네이버 쇼핑용', 'item-review.get.avg-scores-by-naver', payload, param, { isErrorThrowing: true });
|
|
27
27
|
}
|
|
28
28
|
};
|
|
29
29
|
exports.AmqpItemReviewService = AmqpItemReviewService;
|