@carsayo/types 1.1.891987 → 1.1.891988

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.
@@ -59,34 +59,46 @@ export declare const SellMyCarAuctionSearchSpecialCaseDealer: {
59
59
  export type SellMyCarAuctionSearchSpecialCaseDealer = keyof typeof SellMyCarAuctionSearchSpecialCaseDealer;
60
60
  /** 주문 검색 필터 */
61
61
  export interface SellMyCarAuctionSearchFilter {
62
- /** 딜러 전용 필터 */
63
- dealer?: {
64
- /** 특수한 케이스 (딜러 페이지 구성용) */
65
- specialCase?: SellMyCarAuctionSearchSpecialCaseDealer;
66
- /** 내 입찰 상태 */
67
- myBidStatus?: SellMyCarOrderBidStatus[];
68
- /** 내 입찰 취소 유형 */
69
- myBidCancelType?: SellMyCarOrderBidCancelType[];
70
- /** 내 입찰 여부 */
71
- isMyBid?: boolean;
72
- /** 북마크(좋아요) 여부 */
73
- isBookmark?: boolean;
74
- };
75
- /** 관리자 전용 필터 */
76
- admin?: {
77
- /** 선택된 입찰 상태 */
78
- selectedBidStatus?: SellMyCarOrderBidStatus[];
79
- /** 선택된 입찰 취소 유형 */
80
- selectedBidCancelType?: SellMyCarOrderBidCancelType[];
81
- /** 고객명 검색 */
82
- customerName?: string;
83
- /** 관리자 페이지용 상태 조회 */
84
- adminStatus?: SellMyCarOrderStatus_Admin;
85
- };
62
+ /** 특수한 케이스 (딜러용)
63
+ * @note 이걸 많이 쓰게 될듯
64
+ */
65
+ specialCaseDealer?: SellMyCarAuctionSearchSpecialCaseDealer;
66
+ /** 내 입찰 상태
67
+ * @note 딜러만 사용 가능한 필터 조건입니다
68
+ */
69
+ myBidStatus?: SellMyCarOrderBidStatus[];
70
+ /** 내 입찰 취소 유형
71
+ * @note 딜러만 사용 가능한 필터 조건입니다
72
+ */
73
+ myBidCancelType?: SellMyCarOrderBidCancelType[];
74
+ /** 내 입찰 여부
75
+ * @note 딜러만 사용 가능한 필터 조건입니다
76
+ */
77
+ isMyBid?: boolean;
78
+ /** 북마크(좋아요) 여부
79
+ * @note 딜러만 사용 가능한 필터 조건입니다
80
+ */
81
+ isBookmark?: boolean;
86
82
  /** 주문 상태 */
87
83
  orderStatus?: SellMyCarOrderStatus[];
88
84
  /** 주문 취소 유형 */
89
85
  orderCancelType?: SellMyCarOrderCancelType[];
86
+ /** 선택된 입찰 상태
87
+ * @note 관리자만 사용 가능한 필터 조건입니다
88
+ */
89
+ selectedBidStatus?: SellMyCarOrderBidStatus[];
90
+ /** 선택된 입찰 취소 유형
91
+ * @note 관리자만 사용 가능한 필터 조건입니다
92
+ */
93
+ selectedBidCancelType?: SellMyCarOrderBidCancelType[];
94
+ /** 고객명 검색
95
+ * @note 관리자만 사용 가능한 필터 조건입니다
96
+ */
97
+ customerName?: string;
98
+ /** 관리자 페이지용 상태 조회
99
+ * @note 관리자만 사용 가능한 필터 조건입니다
100
+ */
101
+ adminStatus?: SellMyCarOrderStatus_Admin;
90
102
  /** 차량번호 검색 */
91
103
  carNumber?: string;
92
104
  /** 진행방법 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891987",
3
+ "version": "1.1.891988",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",