@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
|
@@ -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,
|
|
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<
|
|
19
|
+
getPurchasedInfos<PurchasedInfoEntityGenericType>(payload: GetPurchasedInfosPayload, param: AbstractParam): Promise<GetPurchasedInfosResult<PurchasedInfoEntityGenericType>>;
|
|
20
20
|
}
|