@carsayo/types 1.1.891980 → 1.1.891982

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.
@@ -1,6 +1,6 @@
1
1
  import { CarMakerId, SidoId, SellCarTagId } from "../../../data";
2
2
  import { SellMyCarOrderInspection, SellMyCarRegistry, SellMyCarRegistryLien } from "./interface";
3
- import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod, SellMyCarOrderRegistrationType, SellMyCarOrderStatus_Admin } from "./type";
3
+ import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod, SellMyCarOrderRegistrationType, SellMyCarOrderStatus_Admin, SellMyCarOrderBidCancelType, SellMyCarOrderCancelType } from "./type";
4
4
  export interface ReqSellMyCarInspectorAuth {
5
5
  /** 인증 토큰
6
6
  * @note 쿼리스트링으로 전달받은 바로 그 값
@@ -48,12 +48,30 @@ export interface SellMyCarAuctionSearchDTO {
48
48
  direction: "asc" | "desc";
49
49
  };
50
50
  }
51
+ export declare const SellMyCarAuctionSearchSpecialCase: {
52
+ readonly 경매장: "경매장";
53
+ readonly 내입찰_북마크: "내입찰_북마크";
54
+ readonly 내입찰_거래진행중: "내입찰_거래진행중";
55
+ readonly 내입찰_종료: "내입찰_종료";
56
+ readonly 내거래_북마크: "내거래_북마크";
57
+ readonly 내거래_거래진행중: "내거래_거래진행중";
58
+ readonly 내거래_거래히스토리: "내거래_거래히스토리";
59
+ };
60
+ export type SellMyCarAuctionSearchSpecialCase = keyof typeof SellMyCarAuctionSearchSpecialCase;
51
61
  /** 주문 검색 필터 */
52
62
  export interface SellMyCarAuctionSearchFilter {
63
+ /** 특수한 케이스 (딜러용)
64
+ * @note 이걸 많이 쓰게 될듯
65
+ */
66
+ specialCase_dealer?: SellMyCarAuctionSearchSpecialCase;
53
67
  /** 내 입찰 상태
54
68
  * @note 딜러만 사용 가능한 필터 조건입니다
55
69
  */
56
70
  myBidStatus?: SellMyCarOrderBidStatus[];
71
+ /** 내 입찰 취소 유형
72
+ * @note 딜러만 사용 가능한 필터 조건입니다
73
+ */
74
+ myBidCancelType?: SellMyCarOrderBidCancelType[];
57
75
  /** 내 입찰 여부
58
76
  * @note 딜러만 사용 가능한 필터 조건입니다
59
77
  */
@@ -64,10 +82,16 @@ export interface SellMyCarAuctionSearchFilter {
64
82
  isBookmark?: boolean;
65
83
  /** 주문 상태 */
66
84
  orderStatus?: SellMyCarOrderStatus[];
85
+ /** 주문 취소 유형 */
86
+ orderCancelType?: SellMyCarOrderCancelType[];
67
87
  /** 선택된 입찰 상태
68
88
  * @note 관리자만 사용 가능한 필터 조건입니다
69
89
  */
70
90
  selectedBidStatus?: SellMyCarOrderBidStatus[];
91
+ /** 선택된 입찰 취소 유형
92
+ * @note 관리자만 사용 가능한 필터 조건입니다
93
+ */
94
+ selectedBidCancelType?: SellMyCarOrderBidCancelType[];
71
95
  /** 고객명 검색
72
96
  * @note 관리자만 사용 가능한 필터 조건입니다
73
97
  */
@@ -1,6 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ReqSetMyCarToggleLike = void 0;
3
+ exports.ReqSetMyCarToggleLike = exports.SellMyCarAuctionSearchSpecialCase = void 0;
4
+ exports.SellMyCarAuctionSearchSpecialCase = {
5
+ 경매장: "경매장",
6
+ 내입찰_북마크: "내입찰_북마크",
7
+ 내입찰_거래진행중: "내입찰_거래진행중",
8
+ 내입찰_종료: "내입찰_종료",
9
+ 내거래_북마크: "내거래_북마크",
10
+ 내거래_거래진행중: "내거래_거래진행중",
11
+ 내거래_거래히스토리: "내거래_거래히스토리",
12
+ };
4
13
  /** 딜러 > 좋아요 처리 DTO */
5
14
  class ReqSetMyCarToggleLike {
6
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891980",
3
+ "version": "1.1.891982",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",