@carsayo/types 1.1.891955 → 1.1.891957
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.
|
@@ -139,7 +139,7 @@ export interface CurrentDealerPenalty {
|
|
|
139
139
|
/** 패널티 내용 */
|
|
140
140
|
content: string;
|
|
141
141
|
/** 패널티가 발생한 주문 id */
|
|
142
|
-
sell_car_order_id
|
|
142
|
+
sell_car_order_id: string | null;
|
|
143
143
|
/** 이 경고로 인해 발생한 패널티 정보 */
|
|
144
144
|
penalty: {
|
|
145
145
|
type: CurrentDealerPenaltyType;
|
|
@@ -471,28 +471,16 @@ export interface SellMyCarOrderAgencyTransport {
|
|
|
471
471
|
/** 탁송 시간 정보 */
|
|
472
472
|
times: {
|
|
473
473
|
customerInfo_setted_at: Date;
|
|
474
|
-
customerInfo_expired_at: Date;
|
|
475
|
-
customerInfo_completed_at: Date;
|
|
476
|
-
dealerInfo_setted_at: Date;
|
|
477
|
-
dealerInfo_expired_at: Date;
|
|
478
|
-
dealerInfo_completed_at: Date;
|
|
479
474
|
};
|
|
480
475
|
/** 차량 인도 일자
|
|
481
476
|
* @example '7월 1일 금요일'
|
|
482
|
-
* @deprecated
|
|
483
477
|
*/
|
|
484
478
|
deliveryDay: string;
|
|
485
|
-
/** 차량 인도 시간
|
|
486
|
-
* @deprecated
|
|
487
|
-
*/
|
|
479
|
+
/** 차량 인도 시간 */
|
|
488
480
|
deliveryTime: number;
|
|
489
|
-
/** 차량 인도 신주소
|
|
490
|
-
* @deprecated
|
|
491
|
-
*/
|
|
481
|
+
/** 차량 인도 신주소 */
|
|
492
482
|
deliveryNewAddress: string;
|
|
493
|
-
/** 차량 인도 구주소
|
|
494
|
-
* @deprecated
|
|
495
|
-
*/
|
|
483
|
+
/** 차량 인도 구주소 */
|
|
496
484
|
deliveryOldAddress: string;
|
|
497
485
|
/** 차량 인도 상세 주소 */
|
|
498
486
|
deliveryDetailAddress: string;
|