@carsayo/types 1.1.891946 → 1.1.891947
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 } from "./type";
|
|
3
|
+
import { SellMyCarOrderStatus, SellMyCarOrderBidStatus, SellMyCarOrderMethod, SellMyCarFilterCategory, SellMyCarOrderKey, SellMyCarOrderPurchaseMethod, SellMyCarOrderRegistrationType, SellMyCarOrderStatus_Admin } from "./type";
|
|
4
4
|
export interface ReqSellMyCarInspectorAuth {
|
|
5
5
|
/** 인증 토큰
|
|
6
6
|
* @note 쿼리스트링으로 전달받은 바로 그 값
|
|
@@ -72,6 +72,10 @@ export interface SellMyCarAuctionSearchFilter {
|
|
|
72
72
|
* @note 관리자만 사용 가능한 필터 조건입니다
|
|
73
73
|
*/
|
|
74
74
|
customerName?: string;
|
|
75
|
+
/** 관리자 페이지용 상태 조회
|
|
76
|
+
* @note 관리자만 사용 가능한 필터 조건입니다
|
|
77
|
+
*/
|
|
78
|
+
adminStatus?: SellMyCarOrderStatus_Admin;
|
|
75
79
|
/** 차량번호 검색 */
|
|
76
80
|
carNumber?: string;
|
|
77
81
|
/** 진행방법 */
|
|
@@ -140,3 +140,9 @@ export declare const SellMyCarFilterCategory: readonly ["국산차", "수입차"
|
|
|
140
140
|
export type SellMyCarFilterCategory = (typeof SellMyCarFilterCategory)[number];
|
|
141
141
|
export declare const SellMyCarOrderKey: readonly ["auction_start_at", "totalBidCount", "accept_at"];
|
|
142
142
|
export type SellMyCarOrderKey = (typeof SellMyCarOrderKey)[number];
|
|
143
|
+
export interface SellMyCarOrderStatus_Admin {
|
|
144
|
+
판매검토상태?: "진단요청" | "진단대기" | "원부요청" | "검토대기" | "검토완료";
|
|
145
|
+
경매상태?: "경매중" | "경매종료";
|
|
146
|
+
판매요청상태?: "선택중" | "검토중" | "판매요청승인";
|
|
147
|
+
진행중주문?: "방문일정등록중" | "방문일정등록" | "구매완료";
|
|
148
|
+
}
|