@carsayo/types 1.1.892074 → 1.1.892075
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.
|
@@ -958,6 +958,8 @@ export interface SellMyCarOrderReview {
|
|
|
958
958
|
makerName: string;
|
|
959
959
|
/** 차량 모델명 */
|
|
960
960
|
modelName: string;
|
|
961
|
+
/** 차량 등급명 */
|
|
962
|
+
className: string;
|
|
961
963
|
/** 가격조정근거(검차결과)
|
|
962
964
|
* @note sell-car-direct.price_adjustment에서 조회
|
|
963
965
|
* @note Stringified JSON
|
|
@@ -965,6 +967,10 @@ export interface SellMyCarOrderReview {
|
|
|
965
967
|
priceAdjustment: string | null;
|
|
966
968
|
/** 등록일 */
|
|
967
969
|
createdAt: Date;
|
|
970
|
+
/** 수정일 */
|
|
971
|
+
updatedAt: Date;
|
|
972
|
+
/** 삭제일 */
|
|
973
|
+
deletedAt: Date | null;
|
|
968
974
|
}
|
|
969
975
|
export interface SellMyCarServiceAvailableRegion {
|
|
970
976
|
/** 시도 */
|