@carsayo/types 1.1.891753 → 1.1.891755

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.
@@ -120,6 +120,12 @@ export type RepairRequest = {
120
120
  type: RepairType;
121
121
  /** 선택 차량 정보 */
122
122
  selectedCar: CustomerCarInfo;
123
+ /** 견적 요청 위치
124
+ * @note 견적 요청 위치를 기준으로 공업사가 요청을 할 수 있습니다.
125
+ * @note 주문 유형에 따라 클라이언트에서 값을 잘 처리해야 합니다.
126
+ * @example ex) 사고접수 > 비보험사고일 경우 견적주소를 사용, 사고접수 > 보험사고 & 견인요청 시 견인주소를 사용 (견인 위치를 기준으로 공업사 호출하여야 하므로)
127
+ */
128
+ location: RepairAddress;
123
129
  /** 사고수리 요청 내용 */
124
130
  accident: {
125
131
  /** 수리 부분 사진 3장 이상 첨부 URL */
@@ -201,6 +207,8 @@ export type RepairRequest = {
201
207
  검색주소: RepairAddress;
202
208
  내차량상세위치: string;
203
209
  } | null;
210
+ /** 방문교환일 때 필수 */
211
+ 방문교환위치: RepairAddress | null;
204
212
  };
205
213
  /** 교환 내용 */
206
214
  method: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891753",
3
+ "version": "1.1.891755",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",