@yolo-croket-dev/amqp-access 0.0.54-jun.4 → 0.0.54-jun.5
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.
|
@@ -12,5 +12,5 @@ export declare class AmqpOrderServer {
|
|
|
12
12
|
/** 셀러 거래 내역 추출 (엑셀 생성에 쓰임) */
|
|
13
13
|
searchSellerTransactionHistoryByProcess(payload: SearchSellerTransactionHistoryByProcessPayload, param: AbstractParam): Promise<SearchSellerTransactionHistoryByProcessResult[]>;
|
|
14
14
|
/** 구매자 관리 조회 api */
|
|
15
|
-
|
|
15
|
+
getPInfosForManageBuyer(payload: GetPInfosForManageBuyerPayload, param: AbstractParam): Promise<GetPInfosForManageBuyerResult>;
|
|
16
16
|
}
|
|
@@ -33,7 +33,7 @@ let AmqpOrderServer = class AmqpOrderServer {
|
|
|
33
33
|
return this.amqpManager.call('셀러 거래 내역 데이터 조회', 'purchasedinfos.get.seller-transaction-history-by-process', payload, param, { isErrorThrowing: true });
|
|
34
34
|
}
|
|
35
35
|
/** 구매자 관리 조회 api */
|
|
36
|
-
async
|
|
36
|
+
async getPInfosForManageBuyer(payload, param) {
|
|
37
37
|
return this.amqpManager.call('셀러 거래 내역 데이터 조회', 'purchased-info.get.p-infos-for-manage-buyer', payload, param, { isErrorThrowing: true });
|
|
38
38
|
}
|
|
39
39
|
};
|