@yolo-croket-dev/amqp-access 0.0.177 → 0.0.178
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/dto/purchasedinfos/command/update-done-ad-center-coupon-infos.dto.d.ts +1 -0
- package/order-server/dto/purchasedinfos/command/update-done-ad-center-coupon-infos.dto.js +4 -0
- package/order-server/dto/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts +9 -3
- package/package.json +1 -1
|
@@ -30,4 +30,8 @@ __decorate([
|
|
|
30
30
|
(0, class_transformer_1.Type)(() => PInfoInfo),
|
|
31
31
|
__metadata("design:type", Array)
|
|
32
32
|
], UpdateDoneAdCenterCouponInfosPayload.prototype, "pInfoInfos", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsDateString)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], UpdateDoneAdCenterCouponInfosPayload.prototype, "currentDate", void 0);
|
|
33
37
|
exports.UpdateDoneAdCenterCouponInfosPayload = UpdateDoneAdCenterCouponInfosPayload;
|
package/order-server/dto/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts
CHANGED
|
@@ -83,10 +83,16 @@ export declare class SellerTransactionHistory {
|
|
|
83
83
|
selectionLargeTitles?: string;
|
|
84
84
|
/** 비고 */
|
|
85
85
|
note?: string;
|
|
86
|
-
/**
|
|
86
|
+
/** 쿠폰 총 사용 금액 */
|
|
87
|
+
totalCouponDiscountPrice?: number;
|
|
88
|
+
/** 광고센터 쿠폰 여부 */
|
|
87
89
|
isAdCenterCoupon?: boolean;
|
|
88
|
-
/**
|
|
89
|
-
|
|
90
|
+
/** 광고센터 쿠폰 정산완료 여부 */
|
|
91
|
+
isAdCenterCouponSettle?: boolean;
|
|
92
|
+
/** 광고센터 쿠폰 정산완료일 */
|
|
93
|
+
adCenterCouponSettleDate?: Date;
|
|
94
|
+
/** 광고센터 쿠폰 예상 정산 금액 (셀러 부담) */
|
|
95
|
+
expectedAdCenterCouponSettlePrice?: number;
|
|
90
96
|
}
|
|
91
97
|
export declare class SearchSellerTransactionHistoryByProcessResult {
|
|
92
98
|
sellerTransactionHistories: SellerTransactionHistory[];
|