@carsayo/types 1.1.891757 → 1.1.891759
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.
|
@@ -27,6 +27,10 @@ export interface Repair {
|
|
|
27
27
|
accepted_bid: Repair_bid | null;
|
|
28
28
|
/** 견적 제출 일시 */
|
|
29
29
|
submitted_at: Date;
|
|
30
|
+
/** 만기 일시
|
|
31
|
+
* @note 견적 제출 후 만기 일시가 지나면 서버단에서 견적 제출 취소 처리
|
|
32
|
+
*/
|
|
33
|
+
expire_at: Date;
|
|
30
34
|
/** 견적 수락 일시 */
|
|
31
35
|
reserved_at: Date | null;
|
|
32
36
|
/** 견적 예약 취소 일시 */
|
|
@@ -153,11 +157,21 @@ export type RepairRequest = {
|
|
|
153
157
|
/**
|
|
154
158
|
* @condition 견인 선택 시
|
|
155
159
|
*/
|
|
156
|
-
견인주소:
|
|
160
|
+
견인주소: {
|
|
161
|
+
/** 견인 주소 (검색 주소) */
|
|
162
|
+
검색주소: RepairAddress;
|
|
163
|
+
/** 상세 위치 (고객 입력) */
|
|
164
|
+
상세위치: string;
|
|
165
|
+
} | null;
|
|
157
166
|
/** 차량을 인도받을 위치
|
|
158
167
|
* @condition 딜리버리 선택 시
|
|
159
168
|
*/
|
|
160
|
-
딜리버리주소:
|
|
169
|
+
딜리버리주소: {
|
|
170
|
+
/** 견인 주소 (검색 주소) */
|
|
171
|
+
검색주소: RepairAddress;
|
|
172
|
+
/** 상세 위치 (고객 입력) */
|
|
173
|
+
상세위치: string;
|
|
174
|
+
} | null;
|
|
161
175
|
};
|
|
162
176
|
} | null;
|
|
163
177
|
/** 외부수리 요청 내용 */
|
|
@@ -185,7 +199,12 @@ export type RepairRequest = {
|
|
|
185
199
|
/** 차량을 인도받을 위치
|
|
186
200
|
* @condition 딜리버리 선택 시
|
|
187
201
|
*/
|
|
188
|
-
딜리버리주소:
|
|
202
|
+
딜리버리주소: {
|
|
203
|
+
/** 견인 주소 (검색 주소) */
|
|
204
|
+
검색주소: RepairAddress;
|
|
205
|
+
/** 상세 위치 (고객 입력) */
|
|
206
|
+
상세위치: string;
|
|
207
|
+
} | null;
|
|
189
208
|
};
|
|
190
209
|
damagedParts: CarPartitionKey[];
|
|
191
210
|
} | null;
|