@carsayo/types 1.1.892011 → 1.1.892013
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,5 +1,5 @@
|
|
|
1
1
|
import { ReqSellMyCarId } from "./dto";
|
|
2
|
-
import { SellMyCarOrderAgencyCashflowStatus } from "./type";
|
|
2
|
+
import { SellMyCarCommissionExpenseProofStatus, SellMyCarOrderAgencyCashflowStatus } from "./type";
|
|
3
3
|
/** 관리자 > 진단사 배정 요청 DTO */
|
|
4
4
|
export interface ReqSetMyCarInspector extends ReqSellMyCarId {
|
|
5
5
|
/** 진단사 이름 */
|
|
@@ -77,3 +77,8 @@ export interface ReqSetMyCarCashflow extends ReqSellMyCarId {
|
|
|
77
77
|
deposit_request?: boolean;
|
|
78
78
|
};
|
|
79
79
|
}
|
|
80
|
+
/** 관리자 > 지출증빙자료 업데이트 DTO */
|
|
81
|
+
export interface ReqSetMyCarExpenseProof extends ReqSellMyCarId {
|
|
82
|
+
/** 지출증빙자료 처리 상태 */
|
|
83
|
+
expense_proof: Exclude<SellMyCarCommissionExpenseProofStatus, "submitted" | "request_edit">;
|
|
84
|
+
}
|
|
@@ -242,6 +242,17 @@ export interface SellMyCarOrderSellCarInfo {
|
|
|
242
242
|
carName: string;
|
|
243
243
|
/** 소유자명 */
|
|
244
244
|
ownerName: string;
|
|
245
|
+
/** 주행거리
|
|
246
|
+
* @note 초기값은 쿠콘 사고조회 데이터 내 주행거리 데이터
|
|
247
|
+
* @note 직접등록일 경우 고객이 입력한 주행거리
|
|
248
|
+
* @note 이후 원부등록 시 주행거리 변경
|
|
249
|
+
*/
|
|
250
|
+
distance: number;
|
|
251
|
+
/** 연식
|
|
252
|
+
* @note 초기값은 쿠콘 조회 데이터
|
|
253
|
+
* @note 원부등록시 업데이트
|
|
254
|
+
*/
|
|
255
|
+
year: number;
|
|
245
256
|
/** 차량 사진 URL 리스트
|
|
246
257
|
* @note 첫번째 사진이 썸네일로 사용됩니다.
|
|
247
258
|
* @direct 직접등록일 경우 고객이 업로드한 사진 리스트
|