@carsayo/types 1.1.891911 → 1.1.891912
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.
|
@@ -653,6 +653,24 @@ export interface SellMyCarOrder_Dealer extends SellMyCarOrder {
|
|
|
653
653
|
totalBidCount: number;
|
|
654
654
|
/** 북마크 정보(좋아요) */
|
|
655
655
|
bookmark: SellMyCarOrderBookmark | null;
|
|
656
|
+
/** 내가 해당 내차팔기에 대하여 신고한 오류 정보 */
|
|
657
|
+
myErrorReport: SellMyCarOrderErrorReport[] | null;
|
|
658
|
+
/** 내가 해당 내차팔기에 대하여 작성한 최신 메모 내용 */
|
|
659
|
+
myMemo: SellMyCarOrderMemo | null;
|
|
660
|
+
}
|
|
661
|
+
/** 해당 주문에 대하여 신고한 오류 정보 */
|
|
662
|
+
export interface SellMyCarOrderErrorReport {
|
|
663
|
+
/** 오류 신고 내용 */
|
|
664
|
+
memo: string;
|
|
665
|
+
/** 오류 신고 날짜 */
|
|
666
|
+
created_at: Date;
|
|
667
|
+
}
|
|
668
|
+
/** 해당 주문에 대하여 작성한 메모 내용 */
|
|
669
|
+
export interface SellMyCarOrderMemo {
|
|
670
|
+
/** 메모 내용 */
|
|
671
|
+
memo: string;
|
|
672
|
+
/** 메모 날짜 */
|
|
673
|
+
created_at: Date;
|
|
656
674
|
}
|
|
657
675
|
export interface SellMyCarOrderReview {
|
|
658
676
|
/** 내차팔기 id(리뷰 아이디로 사용) */
|