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