@carsayo/types 1.1.891911 → 1.1.891913
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.
|
@@ -201,12 +201,8 @@ export interface SellMyCarOrderSellCarInfo {
|
|
|
201
201
|
carName: string;
|
|
202
202
|
/** 소유자명 */
|
|
203
203
|
ownerName: string;
|
|
204
|
-
/** 차량 사진 썸네일 URL
|
|
205
|
-
* @direct 직접등록일 경우 고객이 업로드한 사진 중 최초 1장
|
|
206
|
-
* @agency 카사요 퍼펙트 신청일 경우 관리자가 등록한 사진 중 최초 1장
|
|
207
|
-
*/
|
|
208
|
-
thumbnail: string | null;
|
|
209
204
|
/** 차량 사진 URL 리스트
|
|
205
|
+
* @note 첫번째 사진이 썸네일로 사용됩니다.
|
|
210
206
|
* @direct 직접등록일 경우 고객이 업로드한 사진 리스트
|
|
211
207
|
* @agency 카사요 퍼펙트 신청일 경우 관리자가 등록한 사진 리스트
|
|
212
208
|
*/
|
|
@@ -653,6 +649,24 @@ export interface SellMyCarOrder_Dealer extends SellMyCarOrder {
|
|
|
653
649
|
totalBidCount: number;
|
|
654
650
|
/** 북마크 정보(좋아요) */
|
|
655
651
|
bookmark: SellMyCarOrderBookmark | null;
|
|
652
|
+
/** 내가 해당 내차팔기에 대하여 신고한 오류 정보 */
|
|
653
|
+
myErrorReport: SellMyCarOrderErrorReport[] | null;
|
|
654
|
+
/** 내가 해당 내차팔기에 대하여 작성한 최신 메모 내용 */
|
|
655
|
+
myMemo: SellMyCarOrderMemo | null;
|
|
656
|
+
}
|
|
657
|
+
/** 해당 주문에 대하여 신고한 오류 정보 */
|
|
658
|
+
export interface SellMyCarOrderErrorReport {
|
|
659
|
+
/** 오류 신고 내용 */
|
|
660
|
+
memo: string;
|
|
661
|
+
/** 오류 신고 날짜 */
|
|
662
|
+
created_at: Date;
|
|
663
|
+
}
|
|
664
|
+
/** 해당 주문에 대하여 작성한 메모 내용 */
|
|
665
|
+
export interface SellMyCarOrderMemo {
|
|
666
|
+
/** 메모 내용 */
|
|
667
|
+
memo: string;
|
|
668
|
+
/** 메모 날짜 */
|
|
669
|
+
created_at: Date;
|
|
656
670
|
}
|
|
657
671
|
export interface SellMyCarOrderReview {
|
|
658
672
|
/** 내차팔기 id(리뷰 아이디로 사용) */
|