@carsayo/types 1.1.892068 → 1.1.892070
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.
|
@@ -58,24 +58,24 @@ export interface ReqUpdateMyCarInspector extends ReqSellMyCarId {
|
|
|
58
58
|
/** 관리자 > 탁송기사 배정 */
|
|
59
59
|
export interface ReqSetMyCarTransport extends ReqSellMyCarId {
|
|
60
60
|
/** 탁송기사 이름 */
|
|
61
|
-
name
|
|
61
|
+
name?: string;
|
|
62
62
|
/** 탁송기사 전화번호 */
|
|
63
|
-
phone
|
|
63
|
+
phone?: string;
|
|
64
64
|
/** 탁송기사 프로필 이미지 */
|
|
65
|
-
profileUrl
|
|
65
|
+
profileUrl?: string | null;
|
|
66
66
|
/** 관리자가 입력한 탁송기사 방문 일시 (ISO 8601 형식) */
|
|
67
|
-
transportVisitedAt
|
|
67
|
+
transportVisitedAt?: Date;
|
|
68
68
|
/** 관리자가 입력한 진단사 방문 신주소 */
|
|
69
|
-
transportVisitedNewAddress
|
|
69
|
+
transportVisitedNewAddress?: string;
|
|
70
70
|
/** 관리자가 입력한 진단사 방문 구주소 */
|
|
71
|
-
transportVisitedOldAddress
|
|
71
|
+
transportVisitedOldAddress?: string;
|
|
72
72
|
/** 관리자가 입력한 진단사 방문 상세 주소 */
|
|
73
|
-
transportVisitedDetailAddress
|
|
73
|
+
transportVisitedDetailAddress?: string;
|
|
74
74
|
/** 탁송기사 가격
|
|
75
75
|
* @note 거래 종료 후 딜러에게 자동으로 청구될 수수료에 합산됩니다.
|
|
76
76
|
* @note 탁송 지역에 따라 가격이 달라집니다.
|
|
77
77
|
*/
|
|
78
|
-
transportPrice
|
|
78
|
+
transportPrice?: number;
|
|
79
79
|
}
|
|
80
80
|
/** 관리자 > 탁송기사 정보 변경 요청 DTO */
|
|
81
81
|
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
|
+
}
|