@carsayo/types 1.1.891754 → 1.1.891756
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.
|
@@ -133,11 +133,13 @@ export type RepairRequest = {
|
|
|
133
133
|
/** 수리 부위에 대한 설명 */
|
|
134
134
|
description: string;
|
|
135
135
|
method: {
|
|
136
|
+
/** 견인요청과 픽업이 동시에 true일 수 없습니다. */
|
|
136
137
|
비보험수리: {
|
|
137
138
|
견인요청: boolean;
|
|
138
139
|
픽업: boolean;
|
|
139
140
|
딜리버리: boolean;
|
|
140
141
|
} | null;
|
|
142
|
+
/** 견인요청과 픽업이 동시에 true일 수 없습니다. */
|
|
141
143
|
보험수리: {
|
|
142
144
|
type: "자차" | "피해차";
|
|
143
145
|
견인요청: boolean;
|
|
@@ -147,7 +149,7 @@ export type RepairRequest = {
|
|
|
147
149
|
};
|
|
148
150
|
address: {
|
|
149
151
|
/** 견적주소를 기준으로 공업사에 견적 요청 */
|
|
150
|
-
견적주소: RepairAddress
|
|
152
|
+
견적주소: RepairAddress;
|
|
151
153
|
/** 견인 선택 시 픽업주소를 기준으로 공업사에 견적 요청
|
|
152
154
|
* @condition 견인 선택 시
|
|
153
155
|
*/
|
|
@@ -182,10 +184,8 @@ export type RepairRequest = {
|
|
|
182
184
|
} | null;
|
|
183
185
|
};
|
|
184
186
|
address: {
|
|
185
|
-
/** 견적주소를 기준으로 공업사에 견적 요청
|
|
186
|
-
|
|
187
|
-
*/
|
|
188
|
-
견적주소: RepairAddress | null;
|
|
187
|
+
/** 견적주소를 기준으로 공업사에 견적 요청 */
|
|
188
|
+
견적주소: RepairAddress;
|
|
189
189
|
/** 픽업 선택 시 픽업주소를 기준으로 공업사에 견적 요청
|
|
190
190
|
* @condition 픽업 선택 시
|
|
191
191
|
*/
|
|
@@ -207,6 +207,8 @@ export type RepairRequest = {
|
|
|
207
207
|
검색주소: RepairAddress;
|
|
208
208
|
내차량상세위치: string;
|
|
209
209
|
} | null;
|
|
210
|
+
/** 방문교환일 때 필수 */
|
|
211
|
+
방문교환위치: RepairAddress | null;
|
|
210
212
|
};
|
|
211
213
|
/** 교환 내용 */
|
|
212
214
|
method: {
|