@yolo-croket-dev/amqp-access 0.7.274 → 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 +1 -1
- package/payment-service/dto/ad-center-settle/query/get-ad-center-settles-for-google-sheet.dto.d.ts +1 -1
- package/payment-service/dto/refund/query/get-refund-notice.dto.d.ts +6 -0
- package/payment-service/dto/refund/query/get-refund-notice.dto.js +4 -1
- package/payment-service/services/amqp.refund.service.d.ts +2 -1
- package/payment-service/services/amqp.refund.service.js +3 -0
package/package.json
CHANGED
package/payment-service/dto/ad-center-settle/query/get-ad-center-settles-for-google-sheet.dto.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AdCenterSettle } from '@yolo-croket-dev/entity/src/ad-center-settle/ad-center-settle.schema';
|
|
2
2
|
import { BusinessInfo } from '@yolo-croket-dev/entity/src/store';
|
|
3
|
-
declare const AdCenterSettleForGoogleSheet_base: import("@nestjs/common
|
|
3
|
+
declare const AdCenterSettleForGoogleSheet_base: import("@nestjs/common").Type<Pick<AdCenterSettle, "_id" | "sellerId" | "publicId" | "couponInfo" | "pastStoreInfo" | "expectedSettleDateString" | "adType" | "adCenterStartDateString" | "adCenterEndDateString" | "actualSettleDateString" | "PInfoId" | "transactionInfo" | "subtractionSettleAmountInfo" | "bizMemo" | "financeMemo" | "settlementManagerInfo" | "googleSheetInfo">>;
|
|
4
4
|
/** 구글 시트용 광고센터정산 데이터 */
|
|
5
5
|
export declare class AdCenterSettleForGoogleSheet extends AdCenterSettleForGoogleSheet_base {
|
|
6
6
|
storeInfo: {
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.GetRefundNoticeResult = exports.GetRefundNoticePayload = exports.RefundNoticeType = void 0;
|
|
12
|
+
exports.GetRefundNoticeV2Result = exports.GetRefundNoticeResult = exports.GetRefundNoticePayload = exports.RefundNoticeType = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
var RefundNoticeType;
|
|
15
15
|
(function (RefundNoticeType) {
|
|
@@ -33,3 +33,6 @@ __decorate([
|
|
|
33
33
|
class GetRefundNoticeResult {
|
|
34
34
|
}
|
|
35
35
|
exports.GetRefundNoticeResult = GetRefundNoticeResult;
|
|
36
|
+
class GetRefundNoticeV2Result {
|
|
37
|
+
}
|
|
38
|
+
exports.GetRefundNoticeV2Result = GetRefundNoticeV2Result;
|
|
@@ -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([
|