@yolo-croket-dev/amqp-access 0.5.181-beta.31 → 0.5.181-beta.33
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/order-server/amqp.order-server.module.js +2 -0
- package/order-server/dto/purchased-info.modules/purchased-info-coupon/index.d.ts +1 -0
- package/order-server/dto/purchased-info.modules/purchased-info-coupon/index.js +17 -0
- package/order-server/dto/purchased-info.modules/purchased-info-coupon/query/get-coupon-aggregation.dto.d.ts +74 -0
- package/order-server/dto/purchased-info.modules/purchased-info-coupon/query/get-coupon-aggregation.dto.js +61 -0
- package/order-server/dto/purchased-info.modules/purchased-info-coupon/query/index.d.ts +1 -0
- package/order-server/dto/purchased-info.modules/purchased-info-coupon/query/index.js +17 -0
- package/order-server/services/purchased-info.modules/amqp.purchased-info-coupon.service.d.ts +15 -0
- package/order-server/services/purchased-info.modules/amqp.purchased-info-coupon.service.js +44 -0
- package/order-server/services/purchased-info.modules/index.d.ts +1 -0
- package/order-server/services/purchased-info.modules/index.js +1 -0
- package/package.json +1 -1
- package/payment-service/amqp.payment-service.service.d.ts +3 -1
- package/payment-service/amqp.payment-service.service.js +4 -0
- package/payment-service/dto/index.d.ts +1 -0
- package/payment-service/dto/index.js +1 -0
- package/payment-service/dto/tosspay/index.d.ts +1 -0
- package/payment-service/dto/tosspay/index.js +17 -0
- package/payment-service/dto/tosspay/query/get-tosspay-promotion.dto.d.ts +10 -0
- package/payment-service/dto/tosspay/query/get-tosspay-promotion.dto.js +2 -0
- package/payment-service/dto/tosspay/query/index.d.ts +1 -0
- package/payment-service/dto/tosspay/query/index.js +17 -0
|
@@ -33,6 +33,7 @@ exports.AmqpOrderServerModule = AmqpOrderServerModule = __decorate([
|
|
|
33
33
|
services_1.AmqpPurchasedInfoAnalyticsAggregationService,
|
|
34
34
|
services_1.AmqpPurchaseReceiptSabangService,
|
|
35
35
|
services_1.AmqpPurchasedInfoSabangService,
|
|
36
|
+
services_1.AmqpPurchasedInfoCouponService,
|
|
36
37
|
],
|
|
37
38
|
exports: [
|
|
38
39
|
amqp_order_server_provider_1.OrderServerProvider,
|
|
@@ -51,6 +52,7 @@ exports.AmqpOrderServerModule = AmqpOrderServerModule = __decorate([
|
|
|
51
52
|
services_1.AmqpPurchasedInfoAnalyticsAggregationService,
|
|
52
53
|
services_1.AmqpPurchaseReceiptSabangService,
|
|
53
54
|
services_1.AmqpPurchasedInfoSabangService,
|
|
55
|
+
services_1.AmqpPurchasedInfoCouponService,
|
|
54
56
|
],
|
|
55
57
|
})
|
|
56
58
|
], AmqpOrderServerModule);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './query';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./query"), exports);
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
export declare class GetCouponAggregationPayload {
|
|
2
|
+
/** 조회 시작일 (ISO 8601) */
|
|
3
|
+
startDate: string;
|
|
4
|
+
/** 조회 종료일 (ISO 8601) */
|
|
5
|
+
endDate: string;
|
|
6
|
+
/** 포함할 쿠폰 코드 패턴 */
|
|
7
|
+
includeCodes?: string[];
|
|
8
|
+
/** 제외할 쿠폰 코드 패턴 */
|
|
9
|
+
excludeCodes?: string[];
|
|
10
|
+
/** 메모 AND 검색 키워드 */
|
|
11
|
+
memoKeywords?: string[];
|
|
12
|
+
/** 필터링할 상품 ID */
|
|
13
|
+
itemId?: string;
|
|
14
|
+
/** 쿠폰 생성일 시작 */
|
|
15
|
+
couponCreatedStartDate?: string;
|
|
16
|
+
/** 쿠폰 생성일 종료 */
|
|
17
|
+
couponCreatedEndDate?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface GrandTotal {
|
|
20
|
+
/** 총 쿠폰 할인 금액 */
|
|
21
|
+
grandTotalCouponDiscountPrice: number;
|
|
22
|
+
/** 총 크로켓 분담액 */
|
|
23
|
+
grandTotalCroketPrice: number;
|
|
24
|
+
/** 총 셀러 분담액 */
|
|
25
|
+
grandTotalSellerPrice: number;
|
|
26
|
+
/** 총 거래액 */
|
|
27
|
+
grandTotalPaidPrice: number;
|
|
28
|
+
/** 총 사용 건수 */
|
|
29
|
+
grandTotalUsageCount: number;
|
|
30
|
+
/** 고유 쿠폰 종류 수 */
|
|
31
|
+
uniqueCouponCount: number;
|
|
32
|
+
}
|
|
33
|
+
export interface CouponDetail {
|
|
34
|
+
/** 쿠폰 코드 */
|
|
35
|
+
couponCode: string;
|
|
36
|
+
/** 쿠폰명 */
|
|
37
|
+
couponName: string;
|
|
38
|
+
/** 담당자(메모) */
|
|
39
|
+
memo?: string;
|
|
40
|
+
/** 쿠폰 생성일 */
|
|
41
|
+
couponCreatedDate?: Date;
|
|
42
|
+
/** 쿠폰 할인 금액 합계 */
|
|
43
|
+
totalCouponDiscountPrice: number;
|
|
44
|
+
/** 크로켓 분담액 합계 */
|
|
45
|
+
totalCroketPrice: number;
|
|
46
|
+
/** 셀러 분담액 합계 */
|
|
47
|
+
totalSellerPrice: number;
|
|
48
|
+
/** 전체 비율 (광고센터 한일율 쿠폰일 때 존재) */
|
|
49
|
+
allRate?: number;
|
|
50
|
+
/** 크로켓 분담 비율 (광고센터 한일율 쿠폰일 때 존재) */
|
|
51
|
+
croketRate?: number;
|
|
52
|
+
/** 셀러 분담 비율 (광고센터 한일율 쿠폰일 때 존재) */
|
|
53
|
+
sellerRate?: number;
|
|
54
|
+
/** 거래액 합계 */
|
|
55
|
+
totalPaidPrice: number;
|
|
56
|
+
/** 사용 건수 */
|
|
57
|
+
usageCount: number;
|
|
58
|
+
/** 할인 타입 */
|
|
59
|
+
discountType?: string;
|
|
60
|
+
/** 광고센터 쿠폰 여부 */
|
|
61
|
+
isAdCenterCoupon?: boolean;
|
|
62
|
+
/** 테마전 제한 여부 */
|
|
63
|
+
isLimitTheme?: boolean;
|
|
64
|
+
/** 스토어 제한 여부 */
|
|
65
|
+
isLimitStore?: boolean;
|
|
66
|
+
/** 상품 제한 여부 */
|
|
67
|
+
isLimitStoreItem?: boolean;
|
|
68
|
+
}
|
|
69
|
+
export interface GetCouponAggregationResult {
|
|
70
|
+
/** 전체 총합계 */
|
|
71
|
+
grandTotal: GrandTotal;
|
|
72
|
+
/** 쿠폰별 상세 목록 */
|
|
73
|
+
couponDetails: CouponDetail[];
|
|
74
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.GetCouponAggregationPayload = void 0;
|
|
13
|
+
/**
|
|
14
|
+
* @description 쿠폰 집계 조회 DTO
|
|
15
|
+
*/
|
|
16
|
+
const class_validator_1 = require("class-validator");
|
|
17
|
+
const is_iso_8601_utc_decorator_1 = require("../../../../../decorator/is-iso-8601-utc.decorator");
|
|
18
|
+
class GetCouponAggregationPayload {
|
|
19
|
+
}
|
|
20
|
+
exports.GetCouponAggregationPayload = GetCouponAggregationPayload;
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, is_iso_8601_utc_decorator_1.IsIso8601Utc)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], GetCouponAggregationPayload.prototype, "startDate", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, is_iso_8601_utc_decorator_1.IsIso8601Utc)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], GetCouponAggregationPayload.prototype, "endDate", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsOptional)(),
|
|
31
|
+
(0, class_validator_1.IsArray)(),
|
|
32
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
33
|
+
__metadata("design:type", Array)
|
|
34
|
+
], GetCouponAggregationPayload.prototype, "includeCodes", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsOptional)(),
|
|
37
|
+
(0, class_validator_1.IsArray)(),
|
|
38
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
39
|
+
__metadata("design:type", Array)
|
|
40
|
+
], GetCouponAggregationPayload.prototype, "excludeCodes", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_validator_1.IsOptional)(),
|
|
43
|
+
(0, class_validator_1.IsArray)(),
|
|
44
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
45
|
+
__metadata("design:type", Array)
|
|
46
|
+
], GetCouponAggregationPayload.prototype, "memoKeywords", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_validator_1.IsOptional)(),
|
|
49
|
+
(0, class_validator_1.IsMongoId)(),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], GetCouponAggregationPayload.prototype, "itemId", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
(0, class_validator_1.IsDateString)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], GetCouponAggregationPayload.prototype, "couponCreatedStartDate", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_validator_1.IsOptional)(),
|
|
59
|
+
(0, class_validator_1.IsDateString)(),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], GetCouponAggregationPayload.prototype, "couponCreatedEndDate", void 0);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './get-coupon-aggregation.dto';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./get-coupon-aggregation.dto"), exports);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ClientProxy } from '@nestjs/microservices';
|
|
2
|
+
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
+
import { GetCouponAggregationPayload, GetCouponAggregationResult } from '../../dto/purchased-info.modules/purchased-info-coupon';
|
|
4
|
+
export declare class AmqpPurchasedInfoCouponService {
|
|
5
|
+
private readonly client;
|
|
6
|
+
private readonly amqpManager;
|
|
7
|
+
constructor(client: ClientProxy);
|
|
8
|
+
/**
|
|
9
|
+
* @description 쿠폰 집계 조회
|
|
10
|
+
* @param payload - 조회 조건
|
|
11
|
+
* @param param - 요청 파라미터 (traceId 포함)
|
|
12
|
+
* @returns 쿠폰 집계 결과
|
|
13
|
+
*/
|
|
14
|
+
getCouponAggregation(payload: GetCouponAggregationPayload, param: AbstractParam): Promise<GetCouponAggregationResult>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.AmqpPurchasedInfoCouponService = void 0;
|
|
16
|
+
/**
|
|
17
|
+
* @author jun
|
|
18
|
+
* @description 쿠폰 집계 AMQP 서비스
|
|
19
|
+
* @process order-server의 purchased-info-coupon 모듈과 통신
|
|
20
|
+
*/
|
|
21
|
+
const common_1 = require("@nestjs/common");
|
|
22
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
23
|
+
const functions_1 = require("@yolo-croket-dev/core/functions");
|
|
24
|
+
let AmqpPurchasedInfoCouponService = class AmqpPurchasedInfoCouponService {
|
|
25
|
+
constructor(client) {
|
|
26
|
+
this.client = client;
|
|
27
|
+
this.amqpManager = new functions_1.AmqpManagement(this.client);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @description 쿠폰 집계 조회
|
|
31
|
+
* @param payload - 조회 조건
|
|
32
|
+
* @param param - 요청 파라미터 (traceId 포함)
|
|
33
|
+
* @returns 쿠폰 집계 결과
|
|
34
|
+
*/
|
|
35
|
+
async getCouponAggregation(payload, param) {
|
|
36
|
+
return this.amqpManager.call('쿠폰 집계 조회', 'purchased-info-coupon.get.aggregation', payload, param, { isErrorThrowing: true });
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
exports.AmqpPurchasedInfoCouponService = AmqpPurchasedInfoCouponService;
|
|
40
|
+
exports.AmqpPurchasedInfoCouponService = AmqpPurchasedInfoCouponService = __decorate([
|
|
41
|
+
(0, common_1.Injectable)(),
|
|
42
|
+
__param(0, (0, common_1.Inject)('ORDER_SERVER_PROVIDER')),
|
|
43
|
+
__metadata("design:paramtypes", [microservices_1.ClientProxy])
|
|
44
|
+
], AmqpPurchasedInfoCouponService);
|
|
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./amqp.purchased-info-admin.service"), exports);
|
|
18
18
|
__exportStar(require("./amqp.purchased-info-analytics-aggregation.service"), exports);
|
|
19
19
|
__exportStar(require("./amqp.purchased-info-sabang.service"), exports);
|
|
20
|
+
__exportStar(require("./amqp.purchased-info-coupon.service"), exports);
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import { ClientProxy } from '@nestjs/microservices';
|
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core/interfaces';
|
|
3
3
|
import { GetAskUserAndCountByDatePayload, GetAskUserAndCountByDateResult } from '@yolo-croket-dev/dto-v2/payment-service/ask/query';
|
|
4
4
|
import { GetPurchasedInfoUserAndCountByDatePayload, GetPurchasedInfoUserAndCountByDateResult } from '@yolo-croket-dev/dto-v2/payment-service/purchased-info/query';
|
|
5
|
-
import { DeleteSettlesPayload, DeleteSettlesResult, GetLastSteadyStateTransactionPayload, GetLastSteadyStateTransactionResult, GetPurchasedInfosPayload, GetPurchasedInfosResult } from './dto';
|
|
5
|
+
import { DeleteSettlesPayload, DeleteSettlesResult, GetLastSteadyStateTransactionPayload, GetLastSteadyStateTransactionResult, GetPurchasedInfosPayload, GetPurchasedInfosResult, GetTosspayPromotionPayload, GetTosspayPromotionResult } from './dto';
|
|
6
6
|
export declare class AmqpPaymentService {
|
|
7
7
|
private readonly client;
|
|
8
8
|
private readonly amqpManager;
|
|
@@ -17,4 +17,6 @@ export declare class AmqpPaymentService {
|
|
|
17
17
|
getLastSteadyStateTransaction(payload: GetLastSteadyStateTransactionPayload, param: AbstractParam): Promise<GetLastSteadyStateTransactionResult | null>;
|
|
18
18
|
/** PurchasedInfo 필터에 맞게 목록 조회 */
|
|
19
19
|
getPurchasedInfos<PurchasedInfoEntityGenericType>(payload: GetPurchasedInfosPayload, param: AbstractParam): Promise<GetPurchasedInfosResult<PurchasedInfoEntityGenericType>>;
|
|
20
|
+
/** 토스페이먼츠 프로모션 조회 */
|
|
21
|
+
getTosspayPromotion(payload: GetTosspayPromotionPayload, param: AbstractParam): Promise<GetTosspayPromotionResult>;
|
|
20
22
|
}
|
|
@@ -41,6 +41,10 @@ let AmqpPaymentService = class AmqpPaymentService {
|
|
|
41
41
|
async getPurchasedInfos(payload, param) {
|
|
42
42
|
return this.amqpManager.call('PurchasedInfo 필터에 맞게 목록 조회', 'purchasedinfos.get', payload, param, { isErrorThrowing: true });
|
|
43
43
|
}
|
|
44
|
+
/** 토스페이먼츠 프로모션 조회 */
|
|
45
|
+
async getTosspayPromotion(payload, param) {
|
|
46
|
+
return this.amqpManager.call('토스페이먼츠 프로모션 조회', 'tosspay.promotion.get', payload, param, { isErrorThrowing: true });
|
|
47
|
+
}
|
|
44
48
|
};
|
|
45
49
|
exports.AmqpPaymentService = AmqpPaymentService;
|
|
46
50
|
exports.AmqpPaymentService = AmqpPaymentService = __decorate([
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './query';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./query"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface GetTosspayPromotionItem {
|
|
2
|
+
/** 카드사명 */
|
|
3
|
+
cardName: string;
|
|
4
|
+
/** 최소 결제 금액 */
|
|
5
|
+
minPrice: number;
|
|
6
|
+
/** 적용 개월 수 */
|
|
7
|
+
applyMonths: number[];
|
|
8
|
+
}
|
|
9
|
+
export type GetTosspayPromotionPayload = unknown;
|
|
10
|
+
export type GetTosspayPromotionResult = GetTosspayPromotionItem[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './get-tosspay-promotion.dto';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./get-tosspay-promotion.dto"), exports);
|