@carsayo/types 1.1.891910 → 1.1.891911

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.
@@ -201,6 +201,21 @@ export interface SellMyCarOrderSellCarInfo {
201
201
  carName: string;
202
202
  /** 소유자명 */
203
203
  ownerName: string;
204
+ /** 차량 사진 썸네일 URL
205
+ * @direct 직접등록일 경우 고객이 업로드한 사진 중 최초 1장
206
+ * @agency 카사요 퍼펙트 신청일 경우 관리자가 등록한 사진 중 최초 1장
207
+ */
208
+ thumbnail: string | null;
209
+ /** 차량 사진 URL 리스트
210
+ * @direct 직접등록일 경우 고객이 업로드한 사진 리스트
211
+ * @agency 카사요 퍼펙트 신청일 경우 관리자가 등록한 사진 리스트
212
+ */
213
+ pictures: string[] | null;
214
+ /** 구매방식 선택
215
+ * @direct 직접등록일 경우 고객이 견적요청시 선택한 구매방식
216
+ * @agency 카사요 퍼펙트 신청일 경우 고객이 문진표 작성 시 선택한 구매방식
217
+ */
218
+ purchaseMethod: SellMyCarOrderPurchaseMethod | null;
204
219
  /** 고객이 입력한 차량 정보 */
205
220
  customerInput: {
206
221
  /** 직접등록시 고객이 입력한 정보 */
@@ -213,8 +228,6 @@ export interface SellMyCarOrderSellCarInfo {
213
228
  accident: string | null;
214
229
  /** 차량정보 선택값 */
215
230
  state: string | null;
216
- /** 직접등록 고객이 올린 사진 리스트 */
217
- pictures: string[] | null;
218
231
  } | null;
219
232
  /** 카사요 퍼펙트 신청시 입력한 차량 정보 */
220
233
  agency: null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891910",
3
+ "version": "1.1.891911",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",