@carsayo/types 1.1.891926 → 1.1.891928

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.
@@ -66,9 +66,13 @@ export interface SellMyCarAuctionSearchFilter {
66
66
  * @note 관리자만 사용 가능한 필터 조건입니다
67
67
  */
68
68
  selectedBidStatus?: SellMyCarOrderBidStatus[];
69
+ /** 고객명 검색
70
+ * @note 관리자만 사용 가능한 필터 조건입니다
71
+ */
72
+ customerName?: string;
69
73
  /** 차량번호 검색 */
70
74
  carNumber?: string;
71
- /** 진행방법 (selecting 제외) */
75
+ /** 진행방법 */
72
76
  type?: Exclude<SellMyCarOrderMethod, "selecting">[];
73
77
  /** 제조사 */
74
78
  maker?: CarMakerId[];
@@ -607,6 +607,8 @@ export interface SellMyCarOrder {
607
607
  viewCount: number;
608
608
  /** 판매 차량 정보 */
609
609
  carInfo: SellMyCarOrderSellCarInfo;
610
+ /** 판매지역 선택값 */
611
+ sellRegion: SellMyCarOrderSigunguInfo | null;
610
612
  /** 카사요 코멘트: 관리자가 이 주문건에 대하여 입력한 정보
611
613
  * @note 경매 승인 시 입력할 수 있는 내용입니다.
612
614
  * @note nullable
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891926",
3
+ "version": "1.1.891928",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",