@yolo-croket-dev/amqp-access 0.4.65-slowquery.0 → 0.4.65-slowquery.1

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.4.65-slowquery.0",
3
+ "version": "0.4.65-slowquery.1",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -2,7 +2,7 @@ import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core/interfaces';
3
3
  import { GetAskUserAndCountByDatePayload, GetAskUserAndCountByDateResult } from '@yolo-croket-dev/dto-v2/payment-service/ask/query';
4
4
  import { GetPurchasedInfoUserAndCountByDatePayload, GetPurchasedInfoUserAndCountByDateResult } from '@yolo-croket-dev/dto-v2/payment-service/purchased-info/query';
5
- import { DeleteSettlesPayload, DeleteSettlesResult, GetLastSteadyStateTransactionPayload, GetLastSteadyStateTransactionResult, GetPurchasedInfosPayload, GetPurchasedInfoResult } from './dto';
5
+ import { DeleteSettlesPayload, DeleteSettlesResult, GetLastSteadyStateTransactionPayload, GetLastSteadyStateTransactionResult, GetPurchasedInfosPayload, GetPurchasedInfosResult } from './dto';
6
6
  export declare class AmqpPaymentService {
7
7
  private readonly client;
8
8
  private readonly amqpManager;
@@ -16,5 +16,5 @@ export declare class AmqpPaymentService {
16
16
  /** 유저의 가장 마지막 정상 상태의 거래건 조회 */
17
17
  getLastSteadyStateTransaction(payload: GetLastSteadyStateTransactionPayload, param: AbstractParam): Promise<GetLastSteadyStateTransactionResult | null>;
18
18
  /** PurchasedInfo 필터에 맞게 목록 조회 */
19
- getPurchasedInfos<PurchasedInfoEntityGenericType>(payload: GetPurchasedInfosPayload, param: AbstractParam): Promise<GetPurchasedInfoResult<PurchasedInfoEntityGenericType>>;
19
+ getPurchasedInfos<PurchasedInfoEntityGenericType>(payload: GetPurchasedInfosPayload, param: AbstractParam): Promise<GetPurchasedInfosResult<PurchasedInfoEntityGenericType>>;
20
20
  }
@@ -4,4 +4,4 @@ export declare class GetPurchasedInfosPayload {
4
4
  query?: FilterQuery[];
5
5
  projection?: string[];
6
6
  }
7
- export type GetPurchasedInfoResult<T> = Partial<PurchasedInfoEntity[]> | T[];
7
+ export type GetPurchasedInfosResult<T> = Partial<PurchasedInfoEntity[]> | T[];