@carsayo/types 1.1.891961 → 1.1.891962
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.
|
@@ -143,6 +143,8 @@ export interface SellMyCarOrderAvaliableAction_Dealer {
|
|
|
143
143
|
export interface SellMyCarOrderBidAvaliableAction_Dealer {
|
|
144
144
|
/** 입찰 취소 가능 여부 */
|
|
145
145
|
is_cancelable: boolean;
|
|
146
|
+
/** 카사요 퍼펙트 > 탁송 일정 변경 가능 여부 */
|
|
147
|
+
is_agency_transport_changeable: boolean;
|
|
146
148
|
}
|
|
147
149
|
/** 입찰 정보 */
|
|
148
150
|
export interface SellMyCarOrderBid {
|
|
@@ -357,6 +359,9 @@ export interface SellMyCarOrderPurchaseProcess {
|
|
|
357
359
|
* @note 고객이 탁송 정보를 입력할 때 값이 존재합니다.
|
|
358
360
|
*/
|
|
359
361
|
agency: SellMyCarOrderAgencyTransport | null;
|
|
362
|
+
/** [Agency] 탁송 만기 시점
|
|
363
|
+
* @note 카사요 퍼펙트 주문은 고객의 판매요청으로부터 5일 이내에 탁송 프로세스가 완료되어야 합니다. */
|
|
364
|
+
agency_process_expired_at: Date | null;
|
|
360
365
|
/** 고객이 입력한 계좌정보
|
|
361
366
|
* @note Direct: 판매요청시 입력
|
|
362
367
|
* @note Agency: 탁송 정보 입력 시 입력
|
|
@@ -490,8 +495,8 @@ export interface SellMyCarOrderAgencyTransport {
|
|
|
490
495
|
visitedDetailAddress: string;
|
|
491
496
|
/** 틱송 일정을 등록한 날짜 */
|
|
492
497
|
visited_setted_at: Date;
|
|
493
|
-
/** 서류 받을 곳 주소 */
|
|
494
|
-
get_paper_address: string;
|
|
498
|
+
/** 서류 받을 곳 주소 (nullable) */
|
|
499
|
+
get_paper_address: string | null;
|
|
495
500
|
} | null;
|
|
496
501
|
/** 탁송기사 정보
|
|
497
502
|
* @note 관리자 페이지에서 등록
|