@carsayo/types 1.1.892052 → 1.1.892054
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.
|
@@ -205,8 +205,12 @@ export interface SellMyCarOrderBid {
|
|
|
205
205
|
history: SellMyCarOrderHistory[];
|
|
206
206
|
/** 생성일 */
|
|
207
207
|
createdAt: Date;
|
|
208
|
+
/** 딜러 선택 일시 */
|
|
209
|
+
selectedAt: Date | null;
|
|
208
210
|
/** 딜러가 판매요청을 승인한 날짜 */
|
|
209
211
|
acceptedAt: Date | null;
|
|
212
|
+
/** 입찰 실패 일시 */
|
|
213
|
+
failedBidAt: Date | null;
|
|
210
214
|
/** 입찰 취소 정보
|
|
211
215
|
* @case SellMyCarOrderBidCancelType
|
|
212
216
|
*/
|
|
@@ -698,8 +702,6 @@ export interface SellMyCarOrderAuction {
|
|
|
698
702
|
selected_at: Date;
|
|
699
703
|
/** 딜러 선택 마감 일시 */
|
|
700
704
|
expired_at: Date;
|
|
701
|
-
/** 입찰 실패 일시 */
|
|
702
|
-
failed_bid_at: Date | null;
|
|
703
705
|
} | null;
|
|
704
706
|
}
|
|
705
707
|
export interface SellMyCarOrderPrice {
|