@carsayo/types 1.1.892029 → 1.1.892030
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.
|
@@ -413,6 +413,8 @@ export interface SellMyCarOrderInspection {
|
|
|
413
413
|
content: string;
|
|
414
414
|
canceledAt: Date;
|
|
415
415
|
} | null;
|
|
416
|
+
/** 관리자에서 진단 정보를 변경한 이력 */
|
|
417
|
+
change_history: SellMyCarOrder_Inspect_Change_History[];
|
|
416
418
|
}
|
|
417
419
|
/** 내차팔기 진행 과정
|
|
418
420
|
* @note 딜러 입찰 승인 이후 - 구매 완료까지의 프로세스입니다 */
|
|
@@ -864,6 +866,8 @@ export interface SellMyCarOrder_Dealer extends SellMyCarOrder {
|
|
|
864
866
|
}
|
|
865
867
|
/** 관리자용 */
|
|
866
868
|
export interface SellMyCarOrder_Admin extends SellMyCarOrder {
|
|
869
|
+
/** 검토완료 여부 */
|
|
870
|
+
is_reviewed: boolean;
|
|
867
871
|
/** 딜러 입찰 목록 */
|
|
868
872
|
bid: SellMyCarOrderBid[];
|
|
869
873
|
/** 선택된 입찰 */
|
|
@@ -943,6 +947,16 @@ export interface SellMyCarOrder_Inspect_Transport_ChangeRequest {
|
|
|
943
947
|
*/
|
|
944
948
|
processed_at: Date | null;
|
|
945
949
|
}
|
|
950
|
+
/** 진단사 변경 로그 */
|
|
951
|
+
export interface SellMyCarOrder_Inspect_Change_History {
|
|
952
|
+
inspector_name: String;
|
|
953
|
+
inspector_phone: String;
|
|
954
|
+
inspector_profile_url: String;
|
|
955
|
+
expected_visited_at: Date;
|
|
956
|
+
expected_visited_address: String;
|
|
957
|
+
expected_visited_detail_address: String;
|
|
958
|
+
created_at: Date;
|
|
959
|
+
}
|
|
946
960
|
export interface SellMyCarOrderDealerSearchCount {
|
|
947
961
|
내입찰: {
|
|
948
962
|
북마크: {
|