@yolo-croket-dev/amqp-access 0.7.294 → 0.7.296
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/query/get-refund-waiting-purchased-info-detail-for-admin.dto.d.ts +7 -0
- package/order-server/dto/purchased-info.modules/purchased-info-admin/query/get-refund-waiting-purchased-infos-for-admin.dto.d.ts +7 -0
- package/package.json +3 -3
- package/store-item-server/dto/store-item/query/get-used-store-items-by-brand-category.dto.d.ts +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PInfoPOptionInfo, RefundWaitingInfo } from '@yolo-croket-dev/entity-v2/purchased-info';
|
|
2
2
|
import { Types } from 'mongoose';
|
|
3
|
+
import { PInfoDetailStandAdCenterCouponInfo } from '@yolo-croket-dev/domain/purchased-info/interface/purchased-info-detail-for-admin.domain';
|
|
3
4
|
import { AdditionalPaymentOperationStatusEnum } from './get-refund-waiting-purchased-infos-for-admin.dto';
|
|
4
5
|
/** @author sj */
|
|
5
6
|
export declare class GetRefundWaitingPurchasedInfoDetailForAdminPayload {
|
|
@@ -84,6 +85,12 @@ export declare class RefundWaitingPurchasedInfoDetailForAdmin {
|
|
|
84
85
|
paidPrice?: number;
|
|
85
86
|
/** 결제 당시 확정된 배송비 */
|
|
86
87
|
shippingFee?: number;
|
|
88
|
+
/** 기존 관리자 결제 상세와 동일한 셀러·크로켓 쿠폰 부담액 정보 */
|
|
89
|
+
standAdCenterCouponInfo?: PInfoDetailStandAdCenterCouponInfo;
|
|
90
|
+
/** 결제에 사용된 크레딧 금액. 미사용 결제건은 0으로 반환한다. */
|
|
91
|
+
usedCredit: number;
|
|
92
|
+
/** 결제 당시 계산된 예상 정산 금액 */
|
|
93
|
+
expectedProceeds: number;
|
|
87
94
|
process: string;
|
|
88
95
|
processV2?: string;
|
|
89
96
|
refundWaitingInfo: RefundWaitingInfo;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PurchasedProcessV2Enum, RefundWaitingStatusEnum } from '@yolo-croket-dev/entity-v2/purchased-info';
|
|
2
|
+
import { PInfoDetailStandAdCenterCouponInfo } from '@yolo-croket-dev/domain/purchased-info/interface/purchased-info-detail-for-admin.domain';
|
|
2
3
|
/** @description 관리자 환불 대기 운영 화면에서 사용하는 상태 그룹 */
|
|
3
4
|
export declare enum RefundWaitingAdminStatusEnum {
|
|
4
5
|
/** 구매자의 상품 기다리기/환불 받기 응답을 기다리는 상태 */
|
|
@@ -107,6 +108,12 @@ export declare class RefundWaitingPurchasedInfoForAdmin {
|
|
|
107
108
|
latestTransferDate?: Date;
|
|
108
109
|
/** 관리자가 이관 불가를 확정한 일시. UNAVAILABLE 상태가 아니면 없다. */
|
|
109
110
|
unavailableDate?: Date;
|
|
111
|
+
/** 기존 관리자 결제 상세와 동일한 셀러·크로켓 쿠폰 부담액 정보 */
|
|
112
|
+
standAdCenterCouponInfo?: PInfoDetailStandAdCenterCouponInfo;
|
|
113
|
+
/** 결제에 사용된 크레딧 금액. 미사용 결제건은 0으로 반환한다. */
|
|
114
|
+
usedCredit: number;
|
|
115
|
+
/** 결제 당시 계산된 예상 정산 금액 */
|
|
116
|
+
expectedProceeds: number;
|
|
110
117
|
/** 추가금 요청이 있는 거래에만 서버가 계산하여 반환하는 운영 상태다. */
|
|
111
118
|
additionalPaymentOperationStatus?: AdditionalPaymentOperationStatusEnum;
|
|
112
119
|
}
|
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.296",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@yolo-croket-dev/core": "^1.9.3",
|
|
23
23
|
"@yolo-croket-dev/domain": "0.2.45",
|
|
24
24
|
"@yolo-croket-dev/dto-v2": "0.2.23",
|
|
25
|
-
"@yolo-croket-dev/entity": "0.2.
|
|
26
|
-
"@yolo-croket-dev/entity-v2": "0.3.
|
|
25
|
+
"@yolo-croket-dev/entity": "0.2.105",
|
|
26
|
+
"@yolo-croket-dev/entity-v2": "0.3.36",
|
|
27
27
|
"class-transformer": "^0.5.1",
|
|
28
28
|
"class-validator": "^0.13.2",
|
|
29
29
|
"dotenv": "^16.3.1"
|
package/store-item-server/dto/store-item/query/get-used-store-items-by-brand-category.dto.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare class GetUsedStoreItemsByBrandCategoryPayload {
|
|
|
18
18
|
/** 조회 상품 수 */
|
|
19
19
|
limit?: number;
|
|
20
20
|
}
|
|
21
|
-
export type UsedStoreItemByBrandCategory = Pick<StoreItemLegacyEntity, 'itemId' | 'itemImg' | 'itemName' | 'previewOptionName' | 'itemPriceForBuyer' | 'regularPrice' | 'maxDiscountCouponPriceInfo' | 'selectionInfos'> & {
|
|
21
|
+
export type UsedStoreItemByBrandCategory = Pick<StoreItemLegacyEntity, 'itemId' | 'itemImg' | 'itemName' | 'previewOptionName' | 'previewText' | 'itemPriceForBuyer' | 'regularPrice' | 'maxDiscountCouponPriceInfo' | 'selectionInfos'> & {
|
|
22
22
|
itemType: StoreItemTypeEnum.used;
|
|
23
23
|
nation?: StoreItemLegacyEntity['nation'];
|
|
24
24
|
city?: StoreItemLegacyEntity['city'];
|