@carsayo/types 1.1.891932 → 1.1.891934
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.
|
@@ -104,3 +104,12 @@ export interface ReqSellMyCarUploadAfterPurchaseFiles extends ReqSellMyCarId {
|
|
|
104
104
|
*/
|
|
105
105
|
performanceCheckImageFiles?: string[];
|
|
106
106
|
}
|
|
107
|
+
/** 주문 완료 후 고객 평가 작성 DTO */
|
|
108
|
+
export interface ReqSellMyCarUpsertCustomerReview extends ReqSellMyCarId {
|
|
109
|
+
/** 고객 평가 내용 */
|
|
110
|
+
content: string;
|
|
111
|
+
/** 고객 평가 평점 */
|
|
112
|
+
rate: number;
|
|
113
|
+
/** 블랙리스트 등록 요청 여부 */
|
|
114
|
+
is_blacklist_requested: boolean;
|
|
115
|
+
}
|
|
@@ -702,6 +702,15 @@ export interface SellMyCarOrder_Dealer extends SellMyCarOrder {
|
|
|
702
702
|
myErrorReport: SellMyCarOrderErrorReport[] | null;
|
|
703
703
|
/** 내가 해당 내차팔기에 대하여 작성한 최신 메모 내용 */
|
|
704
704
|
myMemo: SellMyCarOrderMemo | null;
|
|
705
|
+
/** 주문 완료 후 고객에 대해 내가 작성한 고객 평가 내용 */
|
|
706
|
+
customerReview: {
|
|
707
|
+
/** Int, 1~5 */
|
|
708
|
+
rate: number;
|
|
709
|
+
content: string;
|
|
710
|
+
/** 블랙리스트 등록 요청 여부 */
|
|
711
|
+
is_blacklist_requested: boolean;
|
|
712
|
+
created_at: Date;
|
|
713
|
+
} | null;
|
|
705
714
|
}
|
|
706
715
|
/** 관리자용 */
|
|
707
716
|
export interface SellMyCarOrder_Admin extends SellMyCarOrder {
|
|
@@ -130,10 +130,8 @@ export declare const SellMyCarOrderCancelType: {
|
|
|
130
130
|
};
|
|
131
131
|
export type SellMyCarOrderCancelType = keyof typeof SellMyCarOrderCancelType;
|
|
132
132
|
export declare const SellMyCarOrderBidCancelType: {
|
|
133
|
-
/**
|
|
133
|
+
/** 고객이 확인하기 전, 발송한 견적을 취소하는 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
134
134
|
readonly cancel_before_customer_confirm: "cancel_before_customer_confirm";
|
|
135
|
-
/** 딜러가 선택받은 후 판매요청을 거절하였을 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
136
|
-
readonly dealer_rejected: "dealer_rejected";
|
|
137
135
|
/** 딜러가 변경되어 취소되었을 경우 */
|
|
138
136
|
readonly dealer_changed: "dealer_changed";
|
|
139
137
|
};
|
|
@@ -119,10 +119,8 @@ exports.SellMyCarOrderCancelType = {
|
|
|
119
119
|
inspect_inspector_canceled: "inspect_inspector_canceled",
|
|
120
120
|
};
|
|
121
121
|
exports.SellMyCarOrderBidCancelType = {
|
|
122
|
-
/**
|
|
122
|
+
/** 고객이 확인하기 전, 발송한 견적을 취소하는 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
123
123
|
cancel_before_customer_confirm: "cancel_before_customer_confirm",
|
|
124
|
-
/** 딜러가 선택받은 후 판매요청을 거절하였을 경우 (이 경우 딜러에게 벌점이 부여됩니다) */
|
|
125
|
-
dealer_rejected: "dealer_rejected",
|
|
126
124
|
/** 딜러가 변경되어 취소되었을 경우 */
|
|
127
125
|
dealer_changed: "dealer_changed",
|
|
128
126
|
};
|