@carsayo/types 1.1.891942 → 1.1.891944
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.
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ReqSellMyCarId } from "./dto";
|
|
2
|
+
/** 관리자 > 진단사 배정 요청 DTO */
|
|
3
|
+
export interface ReqSetMyCarInspector extends ReqSellMyCarId {
|
|
4
|
+
/** 진단사 이름 */
|
|
5
|
+
inspectorName: string;
|
|
6
|
+
/** 진단사 전화번호 */
|
|
7
|
+
inspectorPhone: string;
|
|
8
|
+
/** 관리자가 입력한 진단사 방문 일시 - mm월 dd일 금요일
|
|
9
|
+
* @example "7월 1일 금요일"
|
|
10
|
+
*/
|
|
11
|
+
inspectVisitedAt: string;
|
|
12
|
+
/** 관리자가 입력한 진단사 방문 일시 (ISO 8601 형식) */
|
|
13
|
+
/** @example "2025-07-01T10:00:00Z" */
|
|
14
|
+
inspectIsoVisitedAt: Date;
|
|
15
|
+
/** 방문 시간
|
|
16
|
+
* @example 15 (15분)
|
|
17
|
+
*/
|
|
18
|
+
inspectVisitedTime: number;
|
|
19
|
+
/** 관리자가 입력한 진단사 방문 신주소 */
|
|
20
|
+
inspectVisitedNewAddress: string;
|
|
21
|
+
/** 관리자가 입력한 진단사 방문 구주소 */
|
|
22
|
+
inspectVisitedOldAddress: string;
|
|
23
|
+
/** 관리자가 입력한 진단사 방문 상세 주소 */
|
|
24
|
+
inspectVisitedDetailAddress: string;
|
|
25
|
+
}
|
|
26
|
+
/** 관리자 > 경매 승인 DTO */
|
|
27
|
+
export interface ReqSetMyCarConfirmAuction extends ReqSellMyCarId {
|
|
28
|
+
/** 내일 경매 여부
|
|
29
|
+
* @note 금일 특정 시간 이후에 경매가 승인될 경우 내일 경매가 시작됩니다
|
|
30
|
+
*/
|
|
31
|
+
isTomorrowStart: boolean;
|
|
32
|
+
}
|
|
@@ -115,27 +115,11 @@ export interface ReqSellMyCarUpsertCustomerReview extends ReqSellMyCarId {
|
|
|
115
115
|
/** 블랙리스트 등록 요청 여부 */
|
|
116
116
|
is_blacklist_requested: boolean;
|
|
117
117
|
}
|
|
118
|
-
/**
|
|
119
|
-
export
|
|
120
|
-
/**
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
* @example "7월 1일 금요일"
|
|
126
|
-
*/
|
|
127
|
-
inspectVisitedAt: string;
|
|
128
|
-
/** 관리자가 입력한 진단사 방문 일시 (ISO 8601 형식) */
|
|
129
|
-
/** @example "2025-07-01T10:00:00Z" */
|
|
130
|
-
inspectIsoVisitedAt: Date;
|
|
131
|
-
/** 방문 시간
|
|
132
|
-
* @example 15 (15분)
|
|
133
|
-
*/
|
|
134
|
-
inspectVisitedTime: number;
|
|
135
|
-
/** 관리자가 입력한 진단사 방문 신주소 */
|
|
136
|
-
inspectVisitedNewAddress: string;
|
|
137
|
-
/** 관리자가 입력한 진단사 방문 구주소 */
|
|
138
|
-
inspectVisitedOldAddress: string;
|
|
139
|
-
/** 관리자가 입력한 진단사 방문 상세 주소 */
|
|
140
|
-
inspectVisitedDetailAddress: string;
|
|
118
|
+
/** 딜러 > 좋아요 처리 DTO */
|
|
119
|
+
export declare class ReqSetMyCarToggleLike {
|
|
120
|
+
/** 대상 주문 Id
|
|
121
|
+
* @note string | string[] */
|
|
122
|
+
sell_car_order_id: string | string[];
|
|
123
|
+
/** 좋아요 / 싫어요 처리 */
|
|
124
|
+
isLike: boolean;
|
|
141
125
|
}
|