@carsayo/types 1.1.891925 → 1.1.891927

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.
@@ -46,17 +46,33 @@ export interface SellMyCarAuctionSearchDTO {
46
46
  direction: "asc" | "desc";
47
47
  };
48
48
  }
49
- /** 딜러용 주문 검색 필터 */
49
+ /** 주문 검색 필터 */
50
50
  export interface SellMyCarAuctionSearchFilter {
51
- /** 주문 상태 */
52
- orderStatus?: SellMyCarOrderStatus[];
53
- /** 내 입찰 상태 */
51
+ /** 입찰 상태
52
+ * @note 딜러만 사용 가능한 필터 조건입니다
53
+ */
54
54
  myBidStatus?: SellMyCarOrderBidStatus[];
55
- /** 북마크(좋아요) 여부 */
55
+ /** 입찰 여부
56
+ * @note 딜러만 사용 가능한 필터 조건입니다
57
+ */
58
+ isMyBid?: boolean;
59
+ /** 북마크(좋아요) 여부
60
+ * @note 딜러만 사용 가능한 필터 조건입니다
61
+ */
56
62
  isBookmark?: boolean;
63
+ /** 주문 상태 */
64
+ orderStatus?: SellMyCarOrderStatus[];
65
+ /** 선택된 입찰 상태
66
+ * @note 관리자만 사용 가능한 필터 조건입니다
67
+ */
68
+ selectedBidStatus?: SellMyCarOrderBidStatus[];
69
+ /** 고객명 검색
70
+ * @note 관리자만 사용 가능한 필터 조건입니다
71
+ */
72
+ customerName?: string;
57
73
  /** 차량번호 검색 */
58
74
  carNumber?: string;
59
- /** 진행방법 (selecting 제외) */
75
+ /** 진행방법 */
60
76
  type?: Exclude<SellMyCarOrderMethod, "selecting">[];
61
77
  /** 제조사 */
62
78
  maker?: CarMakerId[];
@@ -66,8 +82,6 @@ export interface SellMyCarAuctionSearchFilter {
66
82
  region?: SidoId[];
67
83
  /** 재경매 여부 */
68
84
  isReAuction?: boolean;
69
- /** 내 입찰 여부 */
70
- isMyBid?: boolean;
71
85
  /** 구매 방식 */
72
86
  buyMethod?: SellMyCarOrderPurchaseMethod[];
73
87
  /** 태그 검색 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891925",
3
+ "version": "1.1.891927",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",