@carsayo/types 1.1.892061 → 1.1.892063
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { RepairEstimate } from "../repair";
|
|
2
|
-
|
|
2
|
+
import { SellMyCarOrderMethod } from "../sellMyCar";
|
|
3
|
+
export type ChatRoomAdditionalInfo = ChatRoomAdditionalInfo_Repair | ChatRoomAdditionalInfo_SellcarInquiry;
|
|
3
4
|
export type ChatRoomAdditionalInfo_Repair = {
|
|
4
5
|
/** 견적 요청 ID */
|
|
5
6
|
repairId: string;
|
|
@@ -12,3 +13,15 @@ export type ChatRoomAdditionalInfo_Repair = {
|
|
|
12
13
|
/** 예상 수리일 */
|
|
13
14
|
estimatedPeriod: RepairEstimate["estimatedPeriod"];
|
|
14
15
|
};
|
|
16
|
+
export type ChatRoomAdditionalInfo_SellcarInquiry = {
|
|
17
|
+
/** 견적 요청 ID */
|
|
18
|
+
sell_car_order_id: string;
|
|
19
|
+
/** 차량명 */
|
|
20
|
+
carName: string;
|
|
21
|
+
/** 견적 요청 방법 */
|
|
22
|
+
method: SellMyCarOrderMethod;
|
|
23
|
+
/** 대화 대상 유형 */
|
|
24
|
+
inquiryTargetType: "customer" | "dealer";
|
|
25
|
+
/** 대화 대상 본명 */
|
|
26
|
+
real_name: string;
|
|
27
|
+
};
|