@carsayo/types 1.1.891959 → 1.1.891961
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.
|
@@ -131,6 +131,8 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
|
|
|
131
131
|
workingSidoId: SidoId | null;
|
|
132
132
|
/** 알림설정 정보 */
|
|
133
133
|
setting: Member["setting"];
|
|
134
|
+
/** 추가 정보 (값 뭐들어갈지모름) */
|
|
135
|
+
additional_info: Record<string, string>;
|
|
134
136
|
}
|
|
135
137
|
/** 딜러 패널티 리스트 (견적실수, 경고 등) */
|
|
136
138
|
export interface CurrentDealerPenalty {
|
|
@@ -127,6 +127,8 @@ export interface SellMyCarOrderAvaliableAction_Customer {
|
|
|
127
127
|
* @condition 문진표 작성 완료 시 불가능 & 진단 당일 가능
|
|
128
128
|
*/
|
|
129
129
|
is_questionnaire_writable: boolean;
|
|
130
|
+
/** 탁송 일정 변경 가능 여부 */
|
|
131
|
+
is_agency_transport_changeable: boolean;
|
|
130
132
|
} | null;
|
|
131
133
|
}
|
|
132
134
|
/** 입찰에 대하여 고객이 할 수 있는 동작 */
|
|
@@ -366,7 +368,7 @@ export interface SellMyCarOrderPurchaseProcess {
|
|
|
366
368
|
transportBankOwner: string;
|
|
367
369
|
/** 은행 계좌번호 */
|
|
368
370
|
transportBankAccount: string;
|
|
369
|
-
};
|
|
371
|
+
} | null;
|
|
370
372
|
/** 매수자 정보 (방문 일정 등록 후 딜러가 등록) */
|
|
371
373
|
buyer: SellMyCarOrderBuyer | null;
|
|
372
374
|
/** 압류/저당 해지 동의 (null일 경우 미동의)
|
|
@@ -479,7 +481,18 @@ export interface SellMyCarOrderAgencyTransport {
|
|
|
479
481
|
*/
|
|
480
482
|
customerTransportInfo: SellMyCarOrderVisitFormInfo;
|
|
481
483
|
/** 딜러가 입력한 탁송 정보 (딜러가 탁송기사를 통해 차량을 배송받을 위치) */
|
|
482
|
-
dealerTransportInfo:
|
|
484
|
+
dealerTransportInfo: {
|
|
485
|
+
/** 틱송 신주소 */
|
|
486
|
+
visitedNewAddress: string;
|
|
487
|
+
/** 틱송 구주소 */
|
|
488
|
+
visitedOldAddress: string;
|
|
489
|
+
/** 틱송 상세 주소 */
|
|
490
|
+
visitedDetailAddress: string;
|
|
491
|
+
/** 틱송 일정을 등록한 날짜 */
|
|
492
|
+
visited_setted_at: Date;
|
|
493
|
+
/** 서류 받을 곳 주소 */
|
|
494
|
+
get_paper_address: string;
|
|
495
|
+
} | null;
|
|
483
496
|
/** 탁송기사 정보
|
|
484
497
|
* @note 관리자 페이지에서 등록
|
|
485
498
|
*/
|