@carsayo/types 1.1.89140 → 1.1.89142
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.
|
@@ -197,25 +197,18 @@ export interface SelectOrderDTO extends OrderIdDTO {
|
|
|
197
197
|
orderType: OrderType;
|
|
198
198
|
}
|
|
199
199
|
export interface OrderHoldDTO extends OrderIdDTO {
|
|
200
|
+
title: string;
|
|
200
201
|
reason: string;
|
|
201
202
|
}
|
|
202
203
|
export interface OrderCancelDTO extends OrderIdDTO {
|
|
204
|
+
title: string;
|
|
203
205
|
reason: string;
|
|
204
206
|
}
|
|
205
207
|
export interface OrderMeetingDateDTO extends OrderIdDTO {
|
|
206
208
|
/** 미팅 날짜 */
|
|
207
209
|
meeting_date?: Date;
|
|
208
210
|
}
|
|
209
|
-
/** @deprecated 240626 앞으로 계약서를 주문 종료 시 업로드 합니다. */
|
|
210
|
-
export interface OrderSubmitContractDTO extends OrderIdDTO {
|
|
211
|
-
/** 계약서 작성시 메시지 */
|
|
212
|
-
progressMessage: string;
|
|
213
|
-
/** 계약서 파일 Id */
|
|
214
|
-
contract_fileId: string;
|
|
215
|
-
}
|
|
216
211
|
export interface OrderFinishDTO extends OrderIdDTO {
|
|
217
|
-
/** 주문 종료시 메시지 */
|
|
218
|
-
finishMessage: string;
|
|
219
212
|
/** 차량 매도서류 파일 Id
|
|
220
213
|
* @deprecated 240626 내차팔기 종료시 이전된 자동차등록증 파일만 업로드합니다.
|
|
221
214
|
*/
|
|
@@ -298,15 +298,15 @@ export interface OrderListData extends OrderInfoTime {
|
|
|
298
298
|
/** 슈퍼카 여부 */
|
|
299
299
|
isSuperCar: boolean;
|
|
300
300
|
/** 보류 사유 */
|
|
301
|
+
title_hold: string | null;
|
|
301
302
|
reason_hold: string | null;
|
|
302
303
|
/** 취소 사유 */
|
|
304
|
+
title_cancel: string | null;
|
|
303
305
|
reason_cancel: string | null;
|
|
304
|
-
/** 계약서 작성시 메시지 */
|
|
305
|
-
progressMessage: string | null;
|
|
306
|
-
/** 주문 종료시 메시지 */
|
|
307
|
-
finishMessage: string | null;
|
|
308
306
|
/** 주문 완료 후 작성한 리뷰 */
|
|
309
307
|
review: OrderReview | null;
|
|
308
|
+
/** 마지막 업데이트 회원 Id (담당 카매니저 or 주문 일반회원) */
|
|
309
|
+
lastUpdateMemberId: string | null;
|
|
310
310
|
}
|
|
311
311
|
export interface CustomerOrderListData extends OrderListData {
|
|
312
312
|
/** 낙찰되었을 경우 담당 카매니저 */
|