@carsayo/types 1.1.891927 → 1.1.891929
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CarMakerId, SidoId, SellCarTagId } from "../../../data";
|
|
2
2
|
import { SellMyCarOrderInspection, SellMyCarRegistry } from "./interface";
|
|
3
|
-
import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod } from "./type";
|
|
3
|
+
import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod, SellMyCarOrderRegistrationType } from "./type";
|
|
4
4
|
export interface ReqSellMyCarInspectorAuth {
|
|
5
5
|
/** 인증 토큰
|
|
6
6
|
* @note 쿼리스트링으로 전달받은 바로 그 값
|
|
@@ -87,3 +87,20 @@ export interface SellMyCarAuctionSearchFilter {
|
|
|
87
87
|
/** 태그 검색 */
|
|
88
88
|
tags?: SellCarTagId[];
|
|
89
89
|
}
|
|
90
|
+
/** 등록증, 계약서, 성능점검지 파일 업로드 요청 DTO */
|
|
91
|
+
export interface ReqSellMyCarUploadAfterPurchaseFiles extends ReqSellMyCarId {
|
|
92
|
+
/** 등록증 파일 업로드 시 */
|
|
93
|
+
registration: {
|
|
94
|
+
type: SellMyCarOrderRegistrationType;
|
|
95
|
+
/** File url string[] */
|
|
96
|
+
files: string[];
|
|
97
|
+
} | undefined;
|
|
98
|
+
/** 계약서 파일 업로드 시
|
|
99
|
+
* @note File url string[]
|
|
100
|
+
*/
|
|
101
|
+
contractImageFiles?: string[];
|
|
102
|
+
/** 성능점검지 파일 업로드 시
|
|
103
|
+
* @note File url string[]
|
|
104
|
+
*/
|
|
105
|
+
performanceCheckImageFiles?: string[];
|
|
106
|
+
}
|
|
@@ -607,6 +607,8 @@ export interface SellMyCarOrder {
|
|
|
607
607
|
viewCount: number;
|
|
608
608
|
/** 판매 차량 정보 */
|
|
609
609
|
carInfo: SellMyCarOrderSellCarInfo;
|
|
610
|
+
/** 판매지역 선택값 */
|
|
611
|
+
sellRegion: SellMyCarOrderSigunguInfo | null;
|
|
610
612
|
/** 카사요 코멘트: 관리자가 이 주문건에 대하여 입력한 정보
|
|
611
613
|
* @note 경매 승인 시 입력할 수 있는 내용입니다.
|
|
612
614
|
* @note nullable
|