@yolo-croket-dev/amqp-access 0.0.9 → 0.0.10

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.0.9",
3
+ "version": "0.0.10",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -20,7 +20,7 @@
20
20
  "@nestjs/common": "^10.3.10",
21
21
  "@nestjs/microservices": "9.0.8",
22
22
  "@yolo-croket-dev/core": "^1.4.52",
23
- "@yolo-croket-dev/dto-v2": "^0.0.117",
23
+ "@yolo-croket-dev/dto-v2": "^0.0.118",
24
24
  "@yolo-croket-dev/entity": "^0.1.101",
25
25
  "dotenv": "^16.3.1"
26
26
  }
@@ -7,7 +7,7 @@ export declare class AmqpPaymentService {
7
7
  private readonly amqpManager;
8
8
  constructor(client: ClientProxy);
9
9
  /** 지난달 요청 결제 중 거래종료 상태가 된 결제목록을 유저 아이디 그룹핑하여 가져오기 */
10
- getAskUserAndCountByDate(payload: GetAskUserAndCountByDatePayload, param: AbstractParam): Promise<GetAskUserAndCountByDateResult>;
10
+ getAskUserAndCountByDate(payload: GetAskUserAndCountByDatePayload, param: AbstractParam): Promise<GetAskUserAndCountByDateResult[]>;
11
11
  /** 지난달 스토어 결제 중 거래종료 상태가 된 결제목록을 유저 아이디 그룹핑하여 가져오기 */
12
- getStoreUserAndCountByDate(payload: GetPurchasedInfoUserAndCountByDatePayload, param: AbstractParam): Promise<GetPurchasedInfoUserAndCountByDateResult>;
12
+ getStoreUserAndCountByDate(payload: GetPurchasedInfoUserAndCountByDatePayload, param: AbstractParam): Promise<GetPurchasedInfoUserAndCountByDateResult[]>;
13
13
  }