@carsayo/types 1.1.891912 → 1.1.891914

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,12 +201,8 @@ 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
204
  /** 차량 사진 URL 리스트
205
+ * @note 첫번째 사진이 썸네일로 사용됩니다.
210
206
  * @direct 직접등록일 경우 고객이 업로드한 사진 리스트
211
207
  * @agency 카사요 퍼펙트 신청일 경우 관리자가 등록한 사진 리스트
212
208
  */
@@ -8,7 +8,7 @@ export declare const SellMyCarRegistryLienType: {
8
8
  readonly mortgage: "저당";
9
9
  };
10
10
  export type SellMyCarRegistryLienType = keyof typeof SellMyCarRegistryLienType;
11
- /** 내차팔기 - 딜러 분류 타입 - 국내/해외/폐차 */
11
+ /** 내차팔기 - 딜러가 입찰 후 어떻게 차량을 판매할지 분류하는 타입 - 국내/해외/폐차 */
12
12
  export declare const SellMyCarType: {
13
13
  readonly domestic: "국내";
14
14
  readonly export: "해외";
@@ -16,8 +16,12 @@ export declare const SellMyCarType: {
16
16
  };
17
17
  export type SellMyCarType = keyof typeof SellMyCarType;
18
18
  export declare const CurrentDealerPenaltyReason: {
19
- estimate_mistake: string;
20
- etc: string;
19
+ /** 견적 취소 (견적 취소 시 딜러에게 패널티 부여) */
20
+ estimate_cancel: string;
21
+ /** 판매요청 거절 */
22
+ sell_request_rejected: string;
23
+ /** 관리자가 임의로 생성한 패널티 */
24
+ admin_created: string;
21
25
  };
22
26
  export type CurrentDealerPenaltyReason = keyof typeof CurrentDealerPenaltyReason;
23
27
  /** 딜러가 선택한 판매 방법
@@ -9,15 +9,19 @@ exports.SellMyCarRegistryLienType = {
9
9
  lien: "압류",
10
10
  mortgage: "저당",
11
11
  };
12
- /** 내차팔기 - 딜러 분류 타입 - 국내/해외/폐차 */
12
+ /** 내차팔기 - 딜러가 입찰 후 어떻게 차량을 판매할지 분류하는 타입 - 국내/해외/폐차 */
13
13
  exports.SellMyCarType = {
14
14
  domestic: "국내",
15
15
  export: "해외",
16
16
  scrap: "폐차",
17
17
  };
18
18
  exports.CurrentDealerPenaltyReason = {
19
- estimate_mistake: "견적실수",
20
- etc: "기타",
19
+ /** 견적 취소 (견적 취소 시 딜러에게 패널티 부여) */
20
+ estimate_cancel: "견적 취소",
21
+ /** 판매요청 거절 */
22
+ sell_request_rejected: "판매요청 거절",
23
+ /** 관리자가 임의로 생성한 패널티 */
24
+ admin_created: "관리자 생성",
21
25
  };
22
26
  /** 딜러가 선택한 판매 방법
23
27
  * @note sell_car_bid.sell_type
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891912",
3
+ "version": "1.1.891914",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",