@yolo-croket-dev/amqp-access 0.0.170-jun.0 → 0.0.170-jun.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
-
import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult } from '../dto/purchasedinfos';
|
|
3
|
+
import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult, ReloadPInfosForManageBuyerPayload, ReloadPInfosForManageBuyerResult } from '../dto/purchasedinfos';
|
|
4
4
|
export declare class AmqpPurchasedInfoService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -14,4 +14,5 @@ export declare class AmqpPurchasedInfoService {
|
|
|
14
14
|
getPartialRefundProcessesByPublicIds(payload: GetPartialRefundProcessesByPublicIdsPayload, param: AbstractParam): Promise<GetPartialRefundProcessesByPublicIdsResult>;
|
|
15
15
|
getPInfosForManageBuyerByAtlas(payload: GetPInfosForManageBuyerByAtlasPayload, param: AbstractParam): Promise<GetPInfosForManageBuyerByAtlasResult>;
|
|
16
16
|
getFacetPInfosForManageBuyerByAtlas(payload: GetFacetPInfosForManageBuyerByAtlasPayload, param: AbstractParam): Promise<GetFacetPInfosForManageBuyerByAtlasResult>;
|
|
17
|
+
reloadPInfosForManageBuyer(payload: ReloadPInfosForManageBuyerPayload, param: AbstractParam): Promise<ReloadPInfosForManageBuyerResult>;
|
|
17
18
|
}
|
|
@@ -48,6 +48,9 @@ let AmqpPurchasedInfoService = class AmqpPurchasedInfoService {
|
|
|
48
48
|
async getFacetPInfosForManageBuyerByAtlas(payload, param) {
|
|
49
49
|
return this.amqpManager.call('셀러의 구매자 관리 facet 조회 api (atlas)', 'purchased-info.get.facet-p-infos-for-manage-buyer-by-atlas', payload, param, { isErrorThrowing: true });
|
|
50
50
|
}
|
|
51
|
+
async reloadPInfosForManageBuyer(payload, param) {
|
|
52
|
+
return this.amqpManager.call('셀러의 구매자 관리 새로고침 api', 'purchased-info.reload.p-infos-for-manage-buyer', payload, param, { isErrorThrowing: true });
|
|
53
|
+
}
|
|
51
54
|
};
|
|
52
55
|
AmqpPurchasedInfoService = __decorate([
|
|
53
56
|
(0, common_1.Injectable)(),
|