@carsayo/types 1.1.892073 → 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.
|
@@ -950,8 +950,16 @@ export interface SellMyCarOrderReview {
|
|
|
950
950
|
image: FileInfo | null;
|
|
951
951
|
/** 판매 가격 */
|
|
952
952
|
price: SellMyCarOrderPrice;
|
|
953
|
+
/** 딜러가 해당 리뷰를 신고했는지 여부 */
|
|
954
|
+
is_report: boolean;
|
|
953
955
|
/** 차량 이름 */
|
|
954
956
|
carName: string;
|
|
957
|
+
/** 차량 제조사명 */
|
|
958
|
+
makerName: string;
|
|
959
|
+
/** 차량 모델명 */
|
|
960
|
+
modelName: string;
|
|
961
|
+
/** 차량 등급명 */
|
|
962
|
+
className: string;
|
|
955
963
|
/** 가격조정근거(검차결과)
|
|
956
964
|
* @note sell-car-direct.price_adjustment에서 조회
|
|
957
965
|
* @note Stringified JSON
|
|
@@ -959,6 +967,10 @@ export interface SellMyCarOrderReview {
|
|
|
959
967
|
priceAdjustment: string | null;
|
|
960
968
|
/** 등록일 */
|
|
961
969
|
createdAt: Date;
|
|
970
|
+
/** 수정일 */
|
|
971
|
+
updatedAt: Date;
|
|
972
|
+
/** 삭제일 */
|
|
973
|
+
deletedAt: Date | null;
|
|
962
974
|
}
|
|
963
975
|
export interface SellMyCarServiceAvailableRegion {
|
|
964
976
|
/** 시도 */
|