@yolo-croket-dev/amqp-access 0.6.37-hj-2 → 0.6.38
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/manage-service/dto/event-banner/command/append-luxury-appraisal-item-n8n-trigger.dto.d.ts +4 -0
- package/manage-service/dto/event-banner/command/append-luxury-appraisal-item-n8n-trigger.dto.js +24 -0
- package/manage-service/dto/event-banner/command/index.d.ts +2 -0
- package/manage-service/dto/event-banner/command/index.js +2 -0
- package/manage-service/dto/event-banner/command/update-luxury-appraisal-item-n8n-trigger.dto.d.ts +4 -0
- package/manage-service/dto/event-banner/command/update-luxury-appraisal-item-n8n-trigger.dto.js +24 -0
- package/manage-service/services/event-banner.service.d.ts +3 -1
- package/manage-service/services/event-banner.service.js +6 -0
- package/order-server/amqp.order-server.module.js +2 -0
- package/order-server/dto/purchased-info.modules/index.d.ts +1 -0
- package/order-server/dto/purchased-info.modules/index.js +1 -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 +68 -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/manage-service/dto/event-banner/command/append-luxury-appraisal-item-n8n-trigger.dto.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
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.AppendLuxuryAppraisalItemN8nTriggerPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class AppendLuxuryAppraisalItemN8nTriggerPayload {
|
|
15
|
+
}
|
|
16
|
+
exports.AppendLuxuryAppraisalItemN8nTriggerPayload = AppendLuxuryAppraisalItemN8nTriggerPayload;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsMongoId)({ each: true }),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], AppendLuxuryAppraisalItemN8nTriggerPayload.prototype, "pInfoId", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsMongoId)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], AppendLuxuryAppraisalItemN8nTriggerPayload.prototype, "storeItemId", void 0);
|
|
@@ -17,3 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./create-event-banner.dto"), exports);
|
|
18
18
|
__exportStar(require("./delete-event-banner.dto"), exports);
|
|
19
19
|
__exportStar(require("./update-event-banner.dto"), exports);
|
|
20
|
+
__exportStar(require("./append-luxury-appraisal-item-n8n-trigger.dto"), exports);
|
|
21
|
+
__exportStar(require("./update-luxury-appraisal-item-n8n-trigger.dto"), exports);
|
package/manage-service/dto/event-banner/command/update-luxury-appraisal-item-n8n-trigger.dto.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
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.UpdateLuxuryAppraisalItemN8nTriggerPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class UpdateLuxuryAppraisalItemN8nTriggerPayload {
|
|
15
|
+
}
|
|
16
|
+
exports.UpdateLuxuryAppraisalItemN8nTriggerPayload = UpdateLuxuryAppraisalItemN8nTriggerPayload;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsMongoId)({ each: true }),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], UpdateLuxuryAppraisalItemN8nTriggerPayload.prototype, "pInfoId", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsMongoId)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], UpdateLuxuryAppraisalItemN8nTriggerPayload.prototype, "storeItemId", void 0);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
-
import { CreateEventBannerPayload, DeleteEventBannerPayload, UpdateEventBannerPayload, GetEventBannerForBuyerPayload, GetEventBannerForBuyerResult, GetIsLuxuryAppraisalItemsByStoreItemIdsPayload, GetIsLuxuryAppraisalItemsByStoreItemIdsResult } from '../dto';
|
|
3
|
+
import { CreateEventBannerPayload, DeleteEventBannerPayload, UpdateEventBannerPayload, GetEventBannerForBuyerPayload, GetEventBannerForBuyerResult, GetIsLuxuryAppraisalItemsByStoreItemIdsPayload, GetIsLuxuryAppraisalItemsByStoreItemIdsResult, AppendLuxuryAppraisalItemN8nTriggerPayload, UpdateLuxuryAppraisalItemN8nTriggerPayload } from '../dto';
|
|
4
4
|
export declare class AmqpEventBannerService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -10,4 +10,6 @@ export declare class AmqpEventBannerService {
|
|
|
10
10
|
deleteEventBanner(payload: DeleteEventBannerPayload, param: AbstractParam): Promise<void>;
|
|
11
11
|
getEventBannerForBuyer(payload: GetEventBannerForBuyerPayload, param: AbstractParam): Promise<GetEventBannerForBuyerResult>;
|
|
12
12
|
getIsLuxuryAppraisalItemsByStoreItemIds(payload: GetIsLuxuryAppraisalItemsByStoreItemIdsPayload, param: AbstractParam): Promise<GetIsLuxuryAppraisalItemsByStoreItemIdsResult[]>;
|
|
13
|
+
appendLuxuryAppraisalItemN8nTrigger(payload: AppendLuxuryAppraisalItemN8nTriggerPayload, param: AbstractParam): Promise<void>;
|
|
14
|
+
updateLuxuryAppraisalItemN8nTrigger(payload: UpdateLuxuryAppraisalItemN8nTriggerPayload, param: AbstractParam): Promise<void>;
|
|
13
15
|
}
|
|
@@ -36,6 +36,12 @@ let AmqpEventBannerService = class AmqpEventBannerService {
|
|
|
36
36
|
async getIsLuxuryAppraisalItemsByStoreItemIds(payload, param) {
|
|
37
37
|
return this.amqpManager.call('명품 라올스 상품 여부 조회', 'event-banner.get.is-luxury-appraisal-items-by-store-item-ids', payload, param, { isErrorThrowing: true });
|
|
38
38
|
}
|
|
39
|
+
async appendLuxuryAppraisalItemN8nTrigger(payload, param) {
|
|
40
|
+
return this.amqpManager.call('명품 라올스 상품 저장 n8n', 'event-banner.append.luxury-appraisal-item-n8n-trigger', payload, param, { isErrorThrowing: true });
|
|
41
|
+
}
|
|
42
|
+
async updateLuxuryAppraisalItemN8nTrigger(payload, param) {
|
|
43
|
+
return this.amqpManager.call('명품 라올스 상품 업데이트 n8n', 'event-banner.update.luxury-appraisal-item-n8n-trigger', payload, param, { isErrorThrowing: true });
|
|
44
|
+
}
|
|
39
45
|
};
|
|
40
46
|
exports.AmqpEventBannerService = AmqpEventBannerService;
|
|
41
47
|
exports.AmqpEventBannerService = AmqpEventBannerService = __decorate([
|
|
@@ -29,6 +29,7 @@ exports.AmqpOrderServerModule = AmqpOrderServerModule = __decorate([
|
|
|
29
29
|
services_1.AmqpDirectPaymentTosspaymentsService,
|
|
30
30
|
services_1.AmqpPurchaseReceiptService,
|
|
31
31
|
services_1.AmqpPurchasedInfoAdminService,
|
|
32
|
+
services_1.AmqpPurchasedInfoCouponService,
|
|
32
33
|
services_1.AmqpChangedPurchasedOptionLogService,
|
|
33
34
|
services_1.AmqpPurchasedInfoAnalyticsAggregationService,
|
|
34
35
|
services_1.AmqpPurchaseReceiptSabangService,
|
|
@@ -47,6 +48,7 @@ exports.AmqpOrderServerModule = AmqpOrderServerModule = __decorate([
|
|
|
47
48
|
services_1.AmqpDirectPaymentTosspaymentsService,
|
|
48
49
|
services_1.AmqpPurchaseReceiptService,
|
|
49
50
|
services_1.AmqpPurchasedInfoAdminService,
|
|
51
|
+
services_1.AmqpPurchasedInfoCouponService,
|
|
50
52
|
services_1.AmqpChangedPurchasedOptionLogService,
|
|
51
53
|
services_1.AmqpPurchasedInfoAnalyticsAggregationService,
|
|
52
54
|
services_1.AmqpPurchaseReceiptSabangService,
|
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./purchased-info-admin"), exports);
|
|
18
|
+
__exportStar(require("./purchased-info-coupon"), exports);
|
|
18
19
|
__exportStar(require("./purchased-info-sabang"), exports);
|
|
@@ -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,68 @@
|
|
|
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
|
+
totalPaidPrice: number;
|
|
50
|
+
/** 사용 건수 */
|
|
51
|
+
usageCount: number;
|
|
52
|
+
/** 광고센터 쿠폰 여부 */
|
|
53
|
+
isAdCenterCoupon?: boolean;
|
|
54
|
+
/** 광고센터 쿠폰 타입 */
|
|
55
|
+
adCenterCouponType?: string;
|
|
56
|
+
/** 테마전 제한 여부 */
|
|
57
|
+
isLimitTheme?: boolean;
|
|
58
|
+
/** 스토어 제한 여부 */
|
|
59
|
+
isLimitStore?: boolean;
|
|
60
|
+
/** 상품 제한 여부 */
|
|
61
|
+
isLimitStoreItem?: boolean;
|
|
62
|
+
}
|
|
63
|
+
export interface GetCouponAggregationResult {
|
|
64
|
+
/** 전체 총합계 */
|
|
65
|
+
grandTotal: GrandTotal;
|
|
66
|
+
/** 쿠폰별 상세 목록 */
|
|
67
|
+
couponDetails: CouponDetail[];
|
|
68
|
+
}
|
|
@@ -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);
|
|
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
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
|
+
__exportStar(require("./amqp.purchased-info-coupon.service"), exports);
|
|
19
20
|
__exportStar(require("./amqp.purchased-info-sabang.service"), exports);
|