@yolo-croket-dev/amqp-access 0.0.125 → 0.0.127
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.
|
@@ -5,6 +5,6 @@ export declare class AmqpDataPaymentMethodService {
|
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
7
7
|
constructor(client: ClientProxy);
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
getPaymentFeePercent(payload: GetPaymentFeePercentPayload, param: AbstractParam): Promise<GetPaymentFeePercentResult>;
|
|
9
|
+
getAllPaymentFeePercent(payload: void, param: AbstractParam): Promise<GetAllPaymentFeePercentResult>;
|
|
10
10
|
}
|
|
@@ -22,11 +22,11 @@ let AmqpDataPaymentMethodService = class AmqpDataPaymentMethodService {
|
|
|
22
22
|
this.client = client;
|
|
23
23
|
this.amqpManager = new functions_1.AmqpManagement(this.client);
|
|
24
24
|
}
|
|
25
|
-
async
|
|
25
|
+
async getPaymentFeePercent(payload, param) {
|
|
26
26
|
// eslint-disable-next-line max-len
|
|
27
27
|
return this.amqpManager.call('조건에 맞는 결제수단 수수료 조회', 'data-payment-method.get.paymene-fee-percent', payload, param, { isErrorThrowing: true });
|
|
28
28
|
}
|
|
29
|
-
async
|
|
29
|
+
async getAllPaymentFeePercent(payload, param) {
|
|
30
30
|
// eslint-disable-next-line max-len
|
|
31
31
|
return this.amqpManager.call('전체 결제수단 수수료 조회', 'data-payment-method.get.all-paymene-fee-percent', payload, param, { isErrorThrowing: true });
|
|
32
32
|
}
|