@carsayo/types 1.1.891985 → 1.1.891987

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.
@@ -50,56 +50,43 @@ export interface SellMyCarAuctionSearchDTO {
50
50
  }
51
51
  export declare const SellMyCarAuctionSearchSpecialCaseDealer: {
52
52
  readonly 경매장: "경매장";
53
- readonly 내입찰_북마크: "내입찰_북마크";
54
- readonly 내입찰_참여한경매: "내입찰_참여한경매";
55
- readonly 내입찰_종료: "내입찰_종료";
56
- readonly 내거래_북마크: "내거래_북마크";
57
- readonly 내거래_거래진행중: "내거래_거래진행중";
58
- readonly 내거래_거래히스토리: "내거래_거래히스토리";
53
+ readonly 내입찰_북마크: "북마크";
54
+ readonly 내입찰_진행중: "진행중";
55
+ readonly 내입찰_종료: "종료";
56
+ readonly 내거래_거래진행중: "거래 진행중";
57
+ readonly 내거래_거래히스토리: "거래 히스토리";
59
58
  };
60
59
  export type SellMyCarAuctionSearchSpecialCaseDealer = keyof typeof SellMyCarAuctionSearchSpecialCaseDealer;
61
60
  /** 주문 검색 필터 */
62
61
  export interface SellMyCarAuctionSearchFilter {
63
- /** 특수한 케이스 (딜러용)
64
- * @note 이걸 많이 쓰게 될듯
65
- */
66
- specialCaseDealer?: SellMyCarAuctionSearchSpecialCaseDealer;
67
- /** 내 입찰 상태
68
- * @note 딜러만 사용 가능한 필터 조건입니다
69
- */
70
- myBidStatus?: SellMyCarOrderBidStatus[];
71
- /** 내 입찰 취소 유형
72
- * @note 딜러만 사용 가능한 필터 조건입니다
73
- */
74
- myBidCancelType?: SellMyCarOrderBidCancelType[];
75
- /** 내 입찰 여부
76
- * @note 딜러만 사용 가능한 필터 조건입니다
77
- */
78
- isMyBid?: boolean;
79
- /** 북마크(좋아요) 여부
80
- * @note 딜러만 사용 가능한 필터 조건입니다
81
- */
82
- isBookmark?: boolean;
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
+ };
83
86
  /** 주문 상태 */
84
87
  orderStatus?: SellMyCarOrderStatus[];
85
88
  /** 주문 취소 유형 */
86
89
  orderCancelType?: SellMyCarOrderCancelType[];
87
- /** 선택된 입찰 상태
88
- * @note 관리자만 사용 가능한 필터 조건입니다
89
- */
90
- selectedBidStatus?: SellMyCarOrderBidStatus[];
91
- /** 선택된 입찰 취소 유형
92
- * @note 관리자만 사용 가능한 필터 조건입니다
93
- */
94
- selectedBidCancelType?: SellMyCarOrderBidCancelType[];
95
- /** 고객명 검색
96
- * @note 관리자만 사용 가능한 필터 조건입니다
97
- */
98
- customerName?: string;
99
- /** 관리자 페이지용 상태 조회
100
- * @note 관리자만 사용 가능한 필터 조건입니다
101
- */
102
- adminStatus?: SellMyCarOrderStatus_Admin;
103
90
  /** 차량번호 검색 */
104
91
  carNumber?: string;
105
92
  /** 진행방법 */
@@ -3,12 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ReqSetMyCarToggleLike = exports.SellMyCarAuctionSearchSpecialCaseDealer = void 0;
4
4
  exports.SellMyCarAuctionSearchSpecialCaseDealer = {
5
5
  경매장: "경매장",
6
- 내입찰_북마크: "내입찰_북마크",
7
- 내입찰_참여한경매: "내입찰_참여한경매",
8
- 내입찰_종료: "내입찰_종료",
9
- 내거래_북마크: "내거래_북마크",
10
- 내거래_거래진행중: "내거래_거래진행중",
11
- 내거래_거래히스토리: "내거래_거래히스토리",
6
+ 내입찰_북마크: "북마크",
7
+ 내입찰_진행중: "진행중",
8
+ 내입찰_종료: "종료",
9
+ 내거래_거래진행중: "거래 진행중",
10
+ 내거래_거래히스토리: "거래 히스토리",
12
11
  };
13
12
  /** 딜러 > 좋아요 처리 DTO */
14
13
  class ReqSetMyCarToggleLike {
@@ -907,7 +907,7 @@ export interface SellMyCarOrderDealerSearchCount {
907
907
  퍼펙트: number;
908
908
  };
909
909
  참여한경매: {
910
- 입찰중: {
910
+ 경매중: {
911
911
  셀프: number;
912
912
  퍼펙트: number;
913
913
  };
@@ -928,10 +928,6 @@ export interface SellMyCarOrderDealerSearchCount {
928
928
  };
929
929
  };
930
930
  내거래: {
931
- 북마크: {
932
- 셀프: number;
933
- 퍼펙트: number;
934
- };
935
931
  거래진행중: {
936
932
  판매요청: {
937
933
  셀프: number;
@@ -951,7 +947,7 @@ export interface SellMyCarOrderDealerSearchCount {
951
947
  셀프: number;
952
948
  퍼펙트: number;
953
949
  };
954
- 매입취소: {
950
+ 거래취소: {
955
951
  셀프: number;
956
952
  퍼펙트: number;
957
953
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891985",
3
+ "version": "1.1.891987",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",