@yolo-croket-dev/amqp-access 0.3.19 → 0.3.20-hj-2
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/pay-try-log/query/store-item-payment/coupon/get-max-discount-coupons-for-payments.dto.d.ts +10 -0
- package/order-server/dto/pay-try-log/query/store-item-payment/coupon/get-max-discount-coupons-for-payments.dto.js +23 -0
- package/order-server/dto/pay-try-log/query/store-item-payment/coupon/index.d.ts +1 -0
- package/order-server/dto/pay-try-log/query/store-item-payment/coupon/index.js +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IssuedReceiptCouponForBuyer, LowestIssuedCoupon } from '@yolo-croket-dev/domain';
|
|
2
|
+
export declare class GetMaxDiscountCouponsForPaymentsPayload {
|
|
3
|
+
payTryLogId: string;
|
|
4
|
+
}
|
|
5
|
+
export declare class GetMaxDiscountCouponsForPaymentsResult {
|
|
6
|
+
/** @description 최저가 주문서 쿠폰 */
|
|
7
|
+
lowestIssuedReceiptCoupon?: IssuedReceiptCouponForBuyer;
|
|
8
|
+
/** @description 최저가 상품 쿠폰 리스트 */
|
|
9
|
+
lowestIssuedCoupons?: LowestIssuedCoupon[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
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.GetMaxDiscountCouponsForPaymentsResult = exports.GetMaxDiscountCouponsForPaymentsPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class GetMaxDiscountCouponsForPaymentsPayload {
|
|
15
|
+
}
|
|
16
|
+
exports.GetMaxDiscountCouponsForPaymentsPayload = GetMaxDiscountCouponsForPaymentsPayload;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsMongoId)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], GetMaxDiscountCouponsForPaymentsPayload.prototype, "payTryLogId", void 0);
|
|
21
|
+
class GetMaxDiscountCouponsForPaymentsResult {
|
|
22
|
+
}
|
|
23
|
+
exports.GetMaxDiscountCouponsForPaymentsResult = GetMaxDiscountCouponsForPaymentsResult;
|
|
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./get-applied-issued-coupon.dto"), exports);
|
|
18
18
|
__exportStar(require("./get-issued-coupons-for-payment.dto"), exports);
|
|
19
|
+
__exportStar(require("./get-max-discount-coupons-for-payments.dto"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20-hj-2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@nestjs/common": "^10.3.10",
|
|
21
21
|
"@yolo-croket-dev/core": "^1.7.8",
|
|
22
|
-
"@yolo-croket-dev/domain": "0.0.
|
|
22
|
+
"@yolo-croket-dev/domain": "0.0.37-hj-3",
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "^0.0.162",
|
|
24
24
|
"@yolo-croket-dev/entity": "0.1.150",
|
|
25
25
|
"@yolo-croket-dev/entity-v2": "0.0.134",
|