@yolo-croket-dev/amqp-access 0.7.168 → 0.7.170
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/purchased-info.modules/purchased-info-admin/command/update-crawler-proxy-order-info-for-admin.dto.d.ts +2 -0
- package/order-server/dto/purchased-info.modules/purchased-info-admin/command/update-crawler-proxy-order-info-for-admin.dto.js +6 -0
- package/order-server/dto/purchased-info.modules/purchased-info-admin/query/get-crawler-proxy-order-list-for-admin.dto.d.ts +11 -0
- package/package.json +2 -2
|
@@ -11,6 +11,8 @@ export declare class UpdateCrawlerProxyOrderInfoForAdminPayload {
|
|
|
11
11
|
forwardingAddress?: string;
|
|
12
12
|
/** 배대지 금액 */
|
|
13
13
|
forwardingFee?: number;
|
|
14
|
+
/** 실제 사입금(원화). null이면 기존 값을 초기화한다. */
|
|
15
|
+
actualPurchaseAmount?: number | null;
|
|
14
16
|
/** 배대지 메모 */
|
|
15
17
|
forwardingMemo?: string;
|
|
16
18
|
proxyReceiverName?: string;
|
|
@@ -44,6 +44,12 @@ __decorate([
|
|
|
44
44
|
(0, class_validator_1.IsOptional)(),
|
|
45
45
|
__metadata("design:type", Number)
|
|
46
46
|
], UpdateCrawlerProxyOrderInfoForAdminPayload.prototype, "forwardingFee", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_validator_1.IsInt)(),
|
|
49
|
+
(0, class_validator_1.Min)(0),
|
|
50
|
+
(0, class_validator_1.IsOptional)(),
|
|
51
|
+
__metadata("design:type", Object)
|
|
52
|
+
], UpdateCrawlerProxyOrderInfoForAdminPayload.prototype, "actualPurchaseAmount", void 0);
|
|
47
53
|
__decorate([
|
|
48
54
|
(0, class_validator_1.IsString)(),
|
|
49
55
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -34,6 +34,16 @@ export interface CrawlerProxyOrderBuyerInfoForAdmin {
|
|
|
34
34
|
receiverInfo?: PInfoBuyerInfo;
|
|
35
35
|
pcccInfo?: PInfoPCCCInfo;
|
|
36
36
|
}
|
|
37
|
+
export interface CrawlerProxyOrderMarginInfoForAdmin {
|
|
38
|
+
isCalculable: boolean;
|
|
39
|
+
reason?: string;
|
|
40
|
+
netPaidAmount?: number;
|
|
41
|
+
paymentFeeAmount?: number;
|
|
42
|
+
actualPurchaseAmount?: number;
|
|
43
|
+
forwardingFee?: number;
|
|
44
|
+
marginAmount?: number;
|
|
45
|
+
marginRate?: number;
|
|
46
|
+
}
|
|
37
47
|
export interface CrawlerProxyOrderListItemForAdmin {
|
|
38
48
|
pInfoId: string;
|
|
39
49
|
publicId?: string;
|
|
@@ -49,6 +59,7 @@ export interface CrawlerProxyOrderListItemForAdmin {
|
|
|
49
59
|
buyerInfo: CrawlerProxyOrderBuyerInfoForAdmin;
|
|
50
60
|
crawlerPurchaseInfo: CrawlerPurchaseInfo;
|
|
51
61
|
crawlerProxyOrderInfo: CrawlerProxyOrderInfo;
|
|
62
|
+
marginInfo: CrawlerProxyOrderMarginInfoForAdmin;
|
|
52
63
|
deliveryData?: DeliveryData;
|
|
53
64
|
isSplitDelivery?: boolean;
|
|
54
65
|
splitDeliveryDataList?: SplitDeliveryData[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.170",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@yolo-croket-dev/domain": "0.2.38",
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "^0.2.15",
|
|
24
24
|
"@yolo-croket-dev/entity": "0.2.83",
|
|
25
|
-
"@yolo-croket-dev/entity-v2": "0.2.
|
|
25
|
+
"@yolo-croket-dev/entity-v2": "0.2.160",
|
|
26
26
|
"class-transformer": "^0.5.1",
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|