@yolo-croket-dev/amqp-access 0.2.59 → 0.2.60-jun.1
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/query/search-seller-transaction-history-by-process.dto.d.ts
CHANGED
|
@@ -100,6 +100,8 @@ export declare class SellerTransactionHistory {
|
|
|
100
100
|
expectedAdCenterCouponSettlePrice?: number;
|
|
101
101
|
/** 부분 환불 프로세스 정보 */
|
|
102
102
|
partialRefundProcess?: string;
|
|
103
|
+
/** 정산 완료 금액 */
|
|
104
|
+
proceeds?: number;
|
|
103
105
|
}
|
|
104
106
|
export declare class SearchSellerTransactionHistoryByProcessResult {
|
|
105
107
|
sellerTransactionHistories: SellerTransactionHistory[];
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ export declare class RegStoreItemImgSizeInfo {
|
|
|
4
4
|
height: number;
|
|
5
5
|
}
|
|
6
6
|
export declare class RegStoreItemContentsData {
|
|
7
|
-
contentsType: StoreItemContentsTypeEnum;
|
|
7
|
+
contentsType: StoreItemContentsTypeEnum | string;
|
|
8
8
|
title: string;
|
|
9
9
|
explanation: string;
|
|
10
10
|
videoUrl?: string;
|
|
@@ -21,7 +21,7 @@ export declare class RegStoreItemOptionList {
|
|
|
21
21
|
isDelete: boolean;
|
|
22
22
|
}
|
|
23
23
|
export declare class RegStoreItemOptionInfo {
|
|
24
|
-
optionType: StoreItemOptionTypeEnum;
|
|
24
|
+
optionType: StoreItemOptionTypeEnum | string;
|
|
25
25
|
optionList: RegStoreItemOptionList[];
|
|
26
26
|
optionGroupFrameList?: RegStoreItemOptionGroupFrameList[];
|
|
27
27
|
}
|
|
@@ -36,7 +36,7 @@ export declare class RegStoreItemPayload {
|
|
|
36
36
|
sellingInfoLogId: string;
|
|
37
37
|
purchasedDate?: string;
|
|
38
38
|
contents?: string;
|
|
39
|
-
precautionCodeList?: PrecautionCodeEnum[];
|
|
39
|
+
precautionCodeList?: PrecautionCodeEnum[] | string[];
|
|
40
40
|
precautionEtc?: string;
|
|
41
41
|
contentsDataList?: RegStoreItemContentsData[];
|
|
42
42
|
}
|