@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,5 +5,5 @@ export declare class PaymentFeePercent {
5
5
  feePercent: number;
6
6
  }
7
7
  export declare class GetAllPaymentFeePercentResult {
8
- PaymentFeePercents: PaymentFeePercent[];
8
+ paymentFeePercents: PaymentFeePercent[];
9
9
  }
@@ -5,6 +5,6 @@ export declare class AmqpDataPaymentMethodService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
7
7
  constructor(client: ClientProxy);
8
- GetPaymentFeePercent(payload: GetPaymentFeePercentPayload, param: AbstractParam): Promise<GetPaymentFeePercentResult>;
9
- GetAllPaymentFeePercent(payload: void, param: AbstractParam): Promise<GetAllPaymentFeePercentResult>;
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 GetPaymentFeePercent(payload, param) {
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 GetAllPaymentFeePercent(payload, param) {
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.0.125",
3
+ "version": "0.0.127",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",