@carsayo/types 1.1.891933 → 1.1.891935

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.
@@ -57,3 +57,10 @@ export interface ReqSellMyCarSetOrderTag {
57
57
  /** 등록 / 제거 선택 (true: 등록, false: 제거) */
58
58
  is_add: boolean;
59
59
  }
60
+ /** 관리자 > 카사요 코멘트 업데이트 */
61
+ export interface ReqSellMyCarSetCarsayoComment {
62
+ /** 주문 ID (sell_car_order.id) */
63
+ sell_car_order_id: string;
64
+ /** 카사요 코멘트 */
65
+ content: string;
66
+ }
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891933",
3
+ "version": "1.1.891935",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",