@carsayo/types 1.1.892030 → 1.1.892032
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.
|
@@ -136,3 +136,8 @@ export interface ReqUpdateSellMyCarDealerFile {
|
|
|
136
136
|
/** 무역업 고유번호 파일 Id */
|
|
137
137
|
sell_car_trade_business_reg_file_id: string | null;
|
|
138
138
|
}
|
|
139
|
+
/** 관리자 > 카사요 코멘트 업데이트 */
|
|
140
|
+
export interface ReqSellMyCarToggleAdminChecked {
|
|
141
|
+
/** 주문 ID (sell_car_order.id) */
|
|
142
|
+
sell_car_order_id: string;
|
|
143
|
+
}
|
|
@@ -431,6 +431,10 @@ export interface SellMyCarOrderPurchaseProcess {
|
|
|
431
431
|
/** [Agency] 탁송 만기 시점
|
|
432
432
|
* @note 카사요 퍼펙트 주문은 고객의 판매요청으로부터 5일 이내에 탁송 프로세스가 완료되어야 합니다. */
|
|
433
433
|
agency_process_expired_at: Date | null;
|
|
434
|
+
/** [Direct] 방문 정보 입력 만기 시점
|
|
435
|
+
* @note 딜러는 방문 정보 입력 만기 시점 전에 방문 정보를 입력해야 합니다.
|
|
436
|
+
*/
|
|
437
|
+
visit_select_expired_at: Date | null;
|
|
434
438
|
/** 고객이 입력한 계좌정보
|
|
435
439
|
* @note Direct: 판매요청시 입력
|
|
436
440
|
* @note Agency: 탁송 정보 입력 시 입력
|
|
@@ -626,6 +630,8 @@ export interface SellMyCarOrderBuyer {
|
|
|
626
630
|
* @example '424-01-0123456' // 법인등록번호
|
|
627
631
|
*/
|
|
628
632
|
registrationNumber: string;
|
|
633
|
+
/** 사업자등록증 첨부파일 URL */
|
|
634
|
+
businessRegistrationCertificate: string | null;
|
|
629
635
|
};
|
|
630
636
|
/** 매수자 구(도로명) 주소 */
|
|
631
637
|
oldAddress: string;
|
|
@@ -658,7 +664,7 @@ export interface SellMyCarOrderCustomerSellRequest {
|
|
|
658
664
|
/** 판매요청일 */
|
|
659
665
|
request_at: Date;
|
|
660
666
|
/** 판매요청 마감일
|
|
661
|
-
* @note
|
|
667
|
+
* @note 고객이 판매요청 마감일 전에 딜러를 선택하여야 합니다.
|
|
662
668
|
*/
|
|
663
669
|
request_expired_at: Date;
|
|
664
670
|
}
|