@yolo-croket-dev/amqp-access 0.7.275 → 0.7.276

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.275",
3
+ "version": "0.7.276",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,7 +1,7 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
3
  import { ReProcessNicepayBillingRefundByRefundErrorPayload, ReProcessTosspaymentsRefundByRefundErrorPayload, ResolveNicepayBillingRefundByRefundErrorPayload, ResolveTosspaymentsRefundByRefundErrorPayload, RefundWaitingBuyerActionPayload, ProcessRefundWaitingUnavailableByAdminPayload } from '../dto';
4
- import { CheckForImmediateRefundAvailabilityV2Payload, CheckForImmediateRefundAvailabilityV2Result, CheckRefundWaitingApplicabilityPayload, CheckRefundWaitingApplicabilityResult, GetRefundErrorsForAdminPayload, GetRefundsForAdminPayload, GetRefundsForAdminResult, GetRefundsAnalyticsAggregationRefundingTop3Payload, GetRefundsAnalyticsAggregationRefundingTop3Result, GetRefundNoticePayload, GetRefundNoticeResult } from '../dto/refund/query';
4
+ import { CheckForImmediateRefundAvailabilityV2Payload, CheckForImmediateRefundAvailabilityV2Result, CheckRefundWaitingApplicabilityPayload, CheckRefundWaitingApplicabilityResult, GetRefundErrorsForAdminPayload, GetRefundsForAdminPayload, GetRefundsForAdminResult, GetRefundsAnalyticsAggregationRefundingTop3Payload, GetRefundsAnalyticsAggregationRefundingTop3Result, GetRefundNoticePayload, GetRefundNoticeResult, GetRefundNoticeV2Result } from '../dto/refund/query';
5
5
  export declare class AmqpRefundService {
6
6
  private readonly client;
7
7
  private readonly amqpManager;
@@ -24,4 +24,5 @@ export declare class AmqpRefundService {
24
24
  /** 관리자의 환불 대기 이관 불가 처리를 실제 환불로 전환한다. */
25
25
  processRefundWaitingUnavailableByAdmin(payload: ProcessRefundWaitingUnavailableByAdminPayload, param: AbstractParam): Promise<void>;
26
26
  getRefundNotice(payload: GetRefundNoticePayload, param: AbstractParam): Promise<GetRefundNoticeResult>;
27
+ getRefundNoticeV2(payload: GetRefundNoticePayload, param: AbstractParam): Promise<GetRefundNoticeV2Result>;
27
28
  }
@@ -68,6 +68,9 @@ let AmqpRefundService = class AmqpRefundService {
68
68
  async getRefundNotice(payload, param) {
69
69
  return this.amqpManager.call('환불 안내 조회', 'refund.get.notice', payload, param, { isErrorThrowing: true });
70
70
  }
71
+ async getRefundNoticeV2(payload, param) {
72
+ return this.amqpManager.call('환불 안내 조회 v2', 'refund.get.notice-v2', payload, param, { isErrorThrowing: true });
73
+ }
71
74
  };
72
75
  exports.AmqpRefundService = AmqpRefundService;
73
76
  exports.AmqpRefundService = AmqpRefundService = __decorate([