@carsayo/types 1.1.892069 → 1.1.892071
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.
|
@@ -76,6 +76,15 @@ export interface ReqSetMyCarTransport extends ReqSellMyCarId {
|
|
|
76
76
|
* @note 탁송 지역에 따라 가격이 달라집니다.
|
|
77
77
|
*/
|
|
78
78
|
transportPrice?: number;
|
|
79
|
+
/**
|
|
80
|
+
* 관리자에서 입력되어 오는 값
|
|
81
|
+
* 값이 없으면 new Date(), '' 와 같은 초기값이 넘어옴
|
|
82
|
+
*/
|
|
83
|
+
customerVisitedAt: Date;
|
|
84
|
+
customerVisitedNewAddress: string;
|
|
85
|
+
customerVisitedOldAddress: string;
|
|
86
|
+
customerVisitedDetailAddress: string;
|
|
87
|
+
customerSettedAt: Date;
|
|
79
88
|
}
|
|
80
89
|
/** 관리자 > 탁송기사 정보 변경 요청 DTO */
|
|
81
90
|
export interface ReqUpdateMyCarTransport extends ReqSellMyCarId {
|
|
@@ -229,3 +229,24 @@ export interface SellCarComplexes {
|
|
|
229
229
|
name: string;
|
|
230
230
|
};
|
|
231
231
|
}
|
|
232
|
+
/** 내차팔기 주문 상태 카드 정보 */
|
|
233
|
+
export interface SellMyCarOrderStatusCard {
|
|
234
|
+
review: {
|
|
235
|
+
/** 평균평점 */
|
|
236
|
+
averageRating: number;
|
|
237
|
+
/** 좋아요 */
|
|
238
|
+
good: number;
|
|
239
|
+
/** 나쁘다 */
|
|
240
|
+
bad: number;
|
|
241
|
+
/** 미작성 (주문이 완료되었으나 리뷰를 아직 고객이 작성하지 않은 개수) */
|
|
242
|
+
noWrite: number;
|
|
243
|
+
};
|
|
244
|
+
order: {
|
|
245
|
+
/** 입찰중 */
|
|
246
|
+
in_pending: number;
|
|
247
|
+
/** 진행중 */
|
|
248
|
+
in_progress: number;
|
|
249
|
+
/** 거래종결 */
|
|
250
|
+
in_ended: number;
|
|
251
|
+
};
|
|
252
|
+
}
|