@carsayo/types 1.1.891979 → 1.1.891981
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 쿼리스트링으로 전달받은 바로 그 값
|
|
@@ -54,6 +54,10 @@ export interface SellMyCarAuctionSearchFilter {
|
|
|
54
54
|
* @note 딜러만 사용 가능한 필터 조건입니다
|
|
55
55
|
*/
|
|
56
56
|
myBidStatus?: SellMyCarOrderBidStatus[];
|
|
57
|
+
/** 내 입찰 취소 유형
|
|
58
|
+
* @note 딜러만 사용 가능한 필터 조건입니다
|
|
59
|
+
*/
|
|
60
|
+
myBidCancelType?: SellMyCarOrderBidCancelType[];
|
|
57
61
|
/** 내 입찰 여부
|
|
58
62
|
* @note 딜러만 사용 가능한 필터 조건입니다
|
|
59
63
|
*/
|
|
@@ -64,10 +68,16 @@ export interface SellMyCarAuctionSearchFilter {
|
|
|
64
68
|
isBookmark?: boolean;
|
|
65
69
|
/** 주문 상태 */
|
|
66
70
|
orderStatus?: SellMyCarOrderStatus[];
|
|
71
|
+
/** 주문 취소 유형 */
|
|
72
|
+
orderCancelType?: SellMyCarOrderCancelType[];
|
|
67
73
|
/** 선택된 입찰 상태
|
|
68
74
|
* @note 관리자만 사용 가능한 필터 조건입니다
|
|
69
75
|
*/
|
|
70
76
|
selectedBidStatus?: SellMyCarOrderBidStatus[];
|
|
77
|
+
/** 선택된 입찰 취소 유형
|
|
78
|
+
* @note 관리자만 사용 가능한 필터 조건입니다
|
|
79
|
+
*/
|
|
80
|
+
selectedBidCancelType?: SellMyCarOrderBidCancelType[];
|
|
71
81
|
/** 고객명 검색
|
|
72
82
|
* @note 관리자만 사용 가능한 필터 조건입니다
|
|
73
83
|
*/
|